Add missing and updated biome art
|
@ -44,6 +44,7 @@ Check out our [Trello Board](https://trello.com/b/z10B703R/pokerogue-board) to s
|
||||||
- Arata Iiyoshi
|
- Arata Iiyoshi
|
||||||
- Atsuhiro Ishizuna
|
- Atsuhiro Ishizuna
|
||||||
- Pokémon Black/White 2
|
- Pokémon Black/White 2
|
||||||
|
- Firel (Additional biome themes)
|
||||||
- edifette (Title screen music)
|
- edifette (Title screen music)
|
||||||
|
|
||||||
### 🎵 Sound Effects
|
### 🎵 Sound Effects
|
||||||
|
|
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 910 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1022 B |
After Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 931 B |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 821 B |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 752 B |
Before Width: | Height: | Size: 776 B After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 750 B |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 885 B |
After Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 921 B |
After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 781 B After Width: | Height: | Size: 4.7 KiB |
|
@ -582,7 +582,7 @@ export class Arena {
|
||||||
case Biome.TALL_GRASS:
|
case Biome.TALL_GRASS:
|
||||||
return 9.608;
|
return 9.608;
|
||||||
case Biome.METROPOLIS:
|
case Biome.METROPOLIS:
|
||||||
return 4.867;
|
return 141.470;
|
||||||
case Biome.FOREST:
|
case Biome.FOREST:
|
||||||
return 4.294;
|
return 4.294;
|
||||||
case Biome.SEA:
|
case Biome.SEA:
|
||||||
|
@ -636,7 +636,7 @@ export class Arena {
|
||||||
case Biome.ISLAND:
|
case Biome.ISLAND:
|
||||||
return 2.751;
|
return 2.751;
|
||||||
case Biome.LABORATORY:
|
case Biome.LABORATORY:
|
||||||
return 0.797;
|
return 114.862;
|
||||||
case Biome.SLUM:
|
case Biome.SLUM:
|
||||||
return 1.221;
|
return 1.221;
|
||||||
case Biome.SNOWY_FOREST:
|
case Biome.SNOWY_FOREST:
|
||||||
|
@ -646,19 +646,12 @@ export class Arena {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getBiomeKey(biome: Biome): string {
|
export function getBiomeKey(biome: Biome): string {
|
||||||
switch (biome) {
|
|
||||||
case Biome.METROPOLIS:
|
|
||||||
return 'slum';
|
|
||||||
case Biome.JUNGLE:
|
|
||||||
return 'tall_grass';
|
|
||||||
case Biome.ISLAND:
|
|
||||||
return 'beach';
|
|
||||||
}
|
|
||||||
return Biome[biome].toLowerCase();
|
return Biome[biome].toLowerCase();
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getBiomeHasProps(biomeType: Biome): boolean {
|
export function getBiomeHasProps(biomeType: Biome): boolean {
|
||||||
switch (biomeType) {
|
switch (biomeType) {
|
||||||
|
case Biome.METROPOLIS:
|
||||||
case Biome.BEACH:
|
case Biome.BEACH:
|
||||||
case Biome.LAKE:
|
case Biome.LAKE:
|
||||||
case Biome.SEABED:
|
case Biome.SEABED:
|
||||||
|
@ -676,8 +669,11 @@ export function getBiomeHasProps(biomeType: Biome): boolean {
|
||||||
case Biome.WASTELAND:
|
case Biome.WASTELAND:
|
||||||
case Biome.ABYSS:
|
case Biome.ABYSS:
|
||||||
case Biome.CONSTRUCTION_SITE:
|
case Biome.CONSTRUCTION_SITE:
|
||||||
|
case Biome.JUNGLE:
|
||||||
case Biome.FAIRY_CAVE:
|
case Biome.FAIRY_CAVE:
|
||||||
case Biome.TEMPLE:
|
case Biome.TEMPLE:
|
||||||
|
case Biome.SNOWY_FOREST:
|
||||||
|
case Biome.ISLAND:
|
||||||
case Biome.LABORATORY:
|
case Biome.LABORATORY:
|
||||||
case Biome.END:
|
case Biome.END:
|
||||||
return true;
|
return true;
|
||||||
|
|