Add some new battle backgrounds

This commit is contained in:
Flashfyre 2023-04-30 18:08:22 -04:00
parent f98a271ca0
commit 6e6d54cbbb
8 changed files with 0 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 499 B

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 969 B

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 624 B

After

Width:  |  Height:  |  Size: 639 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 643 B

View File

@ -99,8 +99,6 @@ export class Arena {
getBiomeKey(): string {
switch (this.biomeType) {
case Biome.TOWN:
return 'plains';
case Biome.TALL_GRASS:
return 'grass';
case Biome.CITY:

View File

@ -36,8 +36,6 @@ export enum Biome {
export function getBiomeName(biome: Biome) {
switch (biome) {
case Biome.TOWN:
return 'TOWN';
case Biome.GRASS:
return 'GRASSY FIELD';
case Biome.RUINS: