diff --git a/public/images/arenas/graveyard_a.png b/public/images/arenas/graveyard_a.png index 4a41fcb13..c7ee580dd 100644 Binary files a/public/images/arenas/graveyard_a.png and b/public/images/arenas/graveyard_a.png differ diff --git a/public/images/arenas/graveyard_b.png b/public/images/arenas/graveyard_b.png index dec80c690..e8980bd85 100644 Binary files a/public/images/arenas/graveyard_b.png and b/public/images/arenas/graveyard_b.png differ diff --git a/public/images/arenas/graveyard_b_1.png b/public/images/arenas/graveyard_b_1.png new file mode 100644 index 000000000..1d6938656 Binary files /dev/null and b/public/images/arenas/graveyard_b_1.png differ diff --git a/public/images/arenas/graveyard_b_2.png b/public/images/arenas/graveyard_b_2.png new file mode 100644 index 000000000..7e99aa4a3 Binary files /dev/null and b/public/images/arenas/graveyard_b_2.png differ diff --git a/public/images/arenas/graveyard_b_3.png b/public/images/arenas/graveyard_b_3.png new file mode 100644 index 000000000..b7879e9df Binary files /dev/null and b/public/images/arenas/graveyard_b_3.png differ diff --git a/public/images/arenas/graveyard_bg.png b/public/images/arenas/graveyard_bg.png index e66f14124..f545d3d03 100644 Binary files a/public/images/arenas/graveyard_bg.png and b/public/images/arenas/graveyard_bg.png differ diff --git a/public/images/arenas/meadow_a.png b/public/images/arenas/meadow_a.png new file mode 100644 index 000000000..1069d0fab Binary files /dev/null and b/public/images/arenas/meadow_a.png differ diff --git a/public/images/arenas/meadow_b.png b/public/images/arenas/meadow_b.png new file mode 100644 index 000000000..50db00262 Binary files /dev/null and b/public/images/arenas/meadow_b.png differ diff --git a/public/images/arenas/meadow_b_1.png b/public/images/arenas/meadow_b_1.png new file mode 100644 index 000000000..82dbbdcda Binary files /dev/null and b/public/images/arenas/meadow_b_1.png differ diff --git a/public/images/arenas/meadow_b_2.png b/public/images/arenas/meadow_b_2.png new file mode 100644 index 000000000..547e0a2b8 Binary files /dev/null and b/public/images/arenas/meadow_b_2.png differ diff --git a/public/images/arenas/meadow_b_3.png b/public/images/arenas/meadow_b_3.png new file mode 100644 index 000000000..5a763e19b Binary files /dev/null and b/public/images/arenas/meadow_b_3.png differ diff --git a/public/images/arenas/meadow_bg.png b/public/images/arenas/meadow_bg.png new file mode 100644 index 000000000..237ba7e11 Binary files /dev/null and b/public/images/arenas/meadow_bg.png differ diff --git a/public/images/arenas/volcano_a.png b/public/images/arenas/volcano_a.png new file mode 100644 index 000000000..ab98acabd Binary files /dev/null and b/public/images/arenas/volcano_a.png differ diff --git a/public/images/arenas/volcano_b.png b/public/images/arenas/volcano_b.png new file mode 100644 index 000000000..5a5b27d62 Binary files /dev/null and b/public/images/arenas/volcano_b.png differ diff --git a/public/images/arenas/volcano_b_1.png b/public/images/arenas/volcano_b_1.png new file mode 100644 index 000000000..0d6c29162 Binary files /dev/null and b/public/images/arenas/volcano_b_1.png differ diff --git a/public/images/arenas/volcano_b_2.png b/public/images/arenas/volcano_b_2.png new file mode 100644 index 000000000..30677ca16 Binary files /dev/null and b/public/images/arenas/volcano_b_2.png differ diff --git a/public/images/arenas/volcano_b_3.png b/public/images/arenas/volcano_b_3.png new file mode 100644 index 000000000..5b0401ebf Binary files /dev/null and b/public/images/arenas/volcano_b_3.png differ diff --git a/public/images/arenas/volcano_bg.png b/public/images/arenas/volcano_bg.png new file mode 100644 index 000000000..ce63113ee Binary files /dev/null and b/public/images/arenas/volcano_bg.png differ diff --git a/src/arena.ts b/src/arena.ts index 0e7c30647..2b325e87b 100644 --- a/src/arena.ts +++ b/src/arena.ts @@ -312,10 +312,6 @@ export function getBiomeKey(biome: Biome): string { switch (biome) { case Biome.ABYSS: return 'wasteland'; - case Biome.MEADOW: - return 'grass'; - case Biome.VOLCANO: - return 'cave'; case Biome.POWER_PLANT: return 'ruins'; case Biome.FACTORY: @@ -336,6 +332,9 @@ export function getBiomeHasProps(biomeType: Biome): boolean { case Biome.CAVE: case Biome.DESERT: case Biome.ICE_CAVE: + case Biome.MEADOW: + case Biome.VOLCANO: + case Biome.GRAVEYARD: case Biome.WASTELAND: return true; }