Add abyss background

pull/2/head
Flashfyre 2023-06-05 23:25:17 -04:00
parent 6b1f96e0c1
commit 59c63234a5
7 changed files with 1 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 631 B

View File

@ -312,8 +312,6 @@ export class Arena {
export function getBiomeKey(biome: Biome): string { export function getBiomeKey(biome: Biome): string {
switch (biome) { switch (biome) {
case Biome.ABYSS:
return 'wasteland';
case Biome.POWER_PLANT: case Biome.POWER_PLANT:
return 'ruins'; return 'ruins';
case Biome.END: case Biome.END:
@ -337,6 +335,7 @@ export function getBiomeHasProps(biomeType: Biome): boolean {
case Biome.GRAVEYARD: case Biome.GRAVEYARD:
case Biome.FACTORY: case Biome.FACTORY:
case Biome.WASTELAND: case Biome.WASTELAND:
case Biome.ABYSS:
return true; return true;
} }