diff --git a/public/images/arenas/fairy_cave_a.png b/public/images/arenas/fairy_cave_a.png new file mode 100644 index 000000000..f2636d6f6 Binary files /dev/null and b/public/images/arenas/fairy_cave_a.png differ diff --git a/public/images/arenas/fairy_cave_b.png b/public/images/arenas/fairy_cave_b.png new file mode 100644 index 000000000..5d9f4e8ca Binary files /dev/null and b/public/images/arenas/fairy_cave_b.png differ diff --git a/public/images/arenas/fairy_cave_b_1.png b/public/images/arenas/fairy_cave_b_1.png new file mode 100644 index 000000000..e1c86ddfc Binary files /dev/null and b/public/images/arenas/fairy_cave_b_1.png differ diff --git a/public/images/arenas/fairy_cave_b_2.png b/public/images/arenas/fairy_cave_b_2.png new file mode 100644 index 000000000..2b73e8111 Binary files /dev/null and b/public/images/arenas/fairy_cave_b_2.png differ diff --git a/public/images/arenas/fairy_cave_b_3.png b/public/images/arenas/fairy_cave_b_3.png new file mode 100644 index 000000000..8e0459f94 Binary files /dev/null and b/public/images/arenas/fairy_cave_b_3.png differ diff --git a/public/images/arenas/fairy_cave_bg.png b/public/images/arenas/fairy_cave_bg.png new file mode 100644 index 000000000..729f447ea Binary files /dev/null and b/public/images/arenas/fairy_cave_bg.png differ diff --git a/public/images/arenas/laboratory_a.png b/public/images/arenas/laboratory_a.png new file mode 100644 index 000000000..c9875ae40 Binary files /dev/null and b/public/images/arenas/laboratory_a.png differ diff --git a/public/images/arenas/laboratory_b.png b/public/images/arenas/laboratory_b.png new file mode 100644 index 000000000..3cd283226 Binary files /dev/null and b/public/images/arenas/laboratory_b.png differ diff --git a/public/images/arenas/laboratory_b_1.png b/public/images/arenas/laboratory_b_1.png new file mode 100644 index 000000000..f9f7567a1 Binary files /dev/null and b/public/images/arenas/laboratory_b_1.png differ diff --git a/public/images/arenas/laboratory_b_2.png b/public/images/arenas/laboratory_b_2.png new file mode 100644 index 000000000..d5b783ce0 Binary files /dev/null and b/public/images/arenas/laboratory_b_2.png differ diff --git a/public/images/arenas/laboratory_b_3.png b/public/images/arenas/laboratory_b_3.png new file mode 100644 index 000000000..90954be71 Binary files /dev/null and b/public/images/arenas/laboratory_b_3.png differ diff --git a/public/images/arenas/laboratory_bg.png b/public/images/arenas/laboratory_bg.png new file mode 100644 index 000000000..bfd857730 Binary files /dev/null and b/public/images/arenas/laboratory_bg.png differ diff --git a/public/images/arenas/snowy_forest_a.png b/public/images/arenas/snowy_forest_a.png new file mode 100644 index 000000000..7fcc26245 Binary files /dev/null and b/public/images/arenas/snowy_forest_a.png differ diff --git a/public/images/arenas/snowy_forest_b.png b/public/images/arenas/snowy_forest_b.png new file mode 100644 index 000000000..88025db58 Binary files /dev/null and b/public/images/arenas/snowy_forest_b.png differ diff --git a/public/images/arenas/snowy_forest_bg.png b/public/images/arenas/snowy_forest_bg.png new file mode 100644 index 000000000..89197c6ab Binary files /dev/null and b/public/images/arenas/snowy_forest_bg.png differ diff --git a/public/images/arenas/temple_a.png b/public/images/arenas/temple_a.png new file mode 100644 index 000000000..aa6b3b2eb Binary files /dev/null and b/public/images/arenas/temple_a.png differ diff --git a/public/images/arenas/temple_b.png b/public/images/arenas/temple_b.png new file mode 100644 index 000000000..07d4c2b86 Binary files /dev/null and b/public/images/arenas/temple_b.png differ diff --git a/public/images/arenas/temple_b_1.png b/public/images/arenas/temple_b_1.png new file mode 100644 index 000000000..971a890c8 Binary files /dev/null and b/public/images/arenas/temple_b_1.png differ diff --git a/public/images/arenas/temple_b_2.png b/public/images/arenas/temple_b_2.png new file mode 100644 index 000000000..30ab56537 Binary files /dev/null and b/public/images/arenas/temple_b_2.png differ diff --git a/public/images/arenas/temple_b_3.png b/public/images/arenas/temple_b_3.png new file mode 100644 index 000000000..3ea879352 Binary files /dev/null and b/public/images/arenas/temple_b_3.png differ diff --git a/public/images/arenas/temple_bg.png b/public/images/arenas/temple_bg.png new file mode 100644 index 000000000..960b01c14 Binary files /dev/null and b/public/images/arenas/temple_bg.png differ diff --git a/src/arena.ts b/src/arena.ts index fc1ee4893..406fd2bd4 100644 --- a/src/arena.ts +++ b/src/arena.ts @@ -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; }