Add some new biome backgrounds by @Someonealive-QN
BIN
public/images/arenas/fairy_cave_a.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
public/images/arenas/fairy_cave_b.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
public/images/arenas/fairy_cave_b_1.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
public/images/arenas/fairy_cave_b_2.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
public/images/arenas/fairy_cave_b_3.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
public/images/arenas/fairy_cave_bg.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
public/images/arenas/laboratory_a.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
public/images/arenas/laboratory_b.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
public/images/arenas/laboratory_b_1.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
public/images/arenas/laboratory_b_2.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
public/images/arenas/laboratory_b_3.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
public/images/arenas/laboratory_bg.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
public/images/arenas/snowy_forest_a.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
public/images/arenas/snowy_forest_b.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
public/images/arenas/snowy_forest_bg.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
public/images/arenas/temple_a.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
public/images/arenas/temple_b.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
public/images/arenas/temple_b_1.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
public/images/arenas/temple_b_2.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
public/images/arenas/temple_b_3.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
public/images/arenas/temple_bg.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
10
src/arena.ts
@ -441,21 +441,14 @@ export class Arena {
|
|||||||
export function getBiomeKey(biome: Biome): string {
|
export function getBiomeKey(biome: Biome): string {
|
||||||
switch (biome) {
|
switch (biome) {
|
||||||
case Biome.POWER_PLANT:
|
case Biome.POWER_PLANT:
|
||||||
case Biome.TEMPLE:
|
|
||||||
return 'ruins';
|
return 'ruins';
|
||||||
case Biome.METROPOLIS:
|
case Biome.METROPOLIS:
|
||||||
case Biome.CONSTRUCTION_SITE:
|
case Biome.CONSTRUCTION_SITE:
|
||||||
return 'slum';
|
return 'slum';
|
||||||
case Biome.JUNGLE:
|
case Biome.JUNGLE:
|
||||||
return 'tall_grass';
|
return 'tall_grass';
|
||||||
case Biome.FAIRY_CAVE:
|
|
||||||
return 'cave';
|
|
||||||
case Biome.ISLAND:
|
case Biome.ISLAND:
|
||||||
return 'beach';
|
return 'beach';
|
||||||
case Biome.LABORATORY:
|
|
||||||
return 'factory';
|
|
||||||
case Biome.SNOWY_FOREST:
|
|
||||||
return 'ice_cave';
|
|
||||||
case Biome.END:
|
case Biome.END:
|
||||||
return 'wasteland';
|
return 'wasteland';
|
||||||
}
|
}
|
||||||
@ -479,6 +472,9 @@ export function getBiomeHasProps(biomeType: Biome): boolean {
|
|||||||
case Biome.RUINS:
|
case Biome.RUINS:
|
||||||
case Biome.WASTELAND:
|
case Biome.WASTELAND:
|
||||||
case Biome.ABYSS:
|
case Biome.ABYSS:
|
||||||
|
case Biome.FAIRY_CAVE:
|
||||||
|
case Biome.TEMPLE:
|
||||||
|
case Biome.LABORATORY:
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|