Add some new biome backgrounds by @Someonealive-QN

pull/14/head
Flashfyre 2023-12-14 13:50:25 -05:00
parent 590483f3af
commit 58fba9d966
22 changed files with 3 additions and 7 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -441,21 +441,14 @@ export class Arena {
export function getBiomeKey(biome: Biome): string {
switch (biome) {
case Biome.POWER_PLANT:
case Biome.TEMPLE:
return 'ruins';
case Biome.METROPOLIS:
case Biome.CONSTRUCTION_SITE:
return 'slum';
case Biome.JUNGLE:
return 'tall_grass';
case Biome.FAIRY_CAVE:
return 'cave';
case Biome.ISLAND:
return 'beach';
case Biome.LABORATORY:
return 'factory';
case Biome.SNOWY_FOREST:
return 'ice_cave';
case Biome.END:
return 'wasteland';
}
@ -479,6 +472,9 @@ export function getBiomeHasProps(biomeType: Biome): boolean {
case Biome.RUINS:
case Biome.WASTELAND:
case Biome.ABYSS:
case Biome.FAIRY_CAVE:
case Biome.TEMPLE:
case Biome.LABORATORY:
return true;
}