mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-10 01:19:29 +02:00
Merge branch 'beta' into to-title-screen
This commit is contained in:
commit
1e50af672d
@ -40,6 +40,7 @@
|
||||
## Backgrounds
|
||||
- Squip (Paid Commissions)
|
||||
- Contributions by Someonealive-QN
|
||||
- Contributions by redactedinlight
|
||||
|
||||
## UI
|
||||
- GAMEFREAK
|
||||
|
@ -15,4 +15,6 @@ post-merge:
|
||||
post-checkout:
|
||||
commands:
|
||||
update-submodules:
|
||||
run: git submodule update --init --recursive
|
||||
# cf https://git-scm.com/docs/githooks#_post_checkout:
|
||||
# The 3rd argument is 1 for branch checkouts and 0 for file checkouts.
|
||||
run: if test {3} -eq "1"; then git submodule update --init --recursive; fi
|
BIN
public/images/arenas/plains_b_1.png
Normal file
BIN
public/images/arenas/plains_b_1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
BIN
public/images/arenas/plains_b_2.png
Normal file
BIN
public/images/arenas/plains_b_2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
BIN
public/images/arenas/plains_b_3.png
Normal file
BIN
public/images/arenas/plains_b_3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 2.4 KiB |
@ -1 +1 @@
|
||||
Subproject commit 288ffa034d07a90ea227710703eb1331b99ffed0
|
||||
Subproject commit 362b2c4fcc20b31a7be6c2dab537055fbaeb247f
|
@ -1117,7 +1117,6 @@ export class TrickRoomTag extends ArenaTag {
|
||||
globalScene.phaseManager.queueMessage(
|
||||
i18next.t("arenaTag:trickRoomOnAdd", {
|
||||
moveName: this.getMoveName(),
|
||||
opponentDesc: source.getOpponentDescriptor(),
|
||||
}),
|
||||
);
|
||||
}
|
||||
|
@ -925,6 +925,7 @@ export function getBiomeKey(biome: BiomeId): string {
|
||||
|
||||
export function getBiomeHasProps(biomeType: BiomeId): boolean {
|
||||
switch (biomeType) {
|
||||
case BiomeId.PLAINS:
|
||||
case BiomeId.METROPOLIS:
|
||||
case BiomeId.BEACH:
|
||||
case BiomeId.LAKE:
|
||||
|
@ -3382,10 +3382,6 @@ export abstract class Pokemon extends Phaser.GameObjects.Container {
|
||||
}
|
||||
|
||||
getOpponentDescriptor(): string {
|
||||
const opponents = this.getOpponents();
|
||||
if (opponents.length === 1) {
|
||||
return opponents[0].name;
|
||||
}
|
||||
return this.isPlayer() ? i18next.t("arenaTag:opposingTeam") : i18next.t("arenaTag:yourTeam");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user