Merge branch 'beta' into to-title-screen

This commit is contained in:
Bertie690 2025-07-19 11:57:08 -04:00 committed by GitHub
commit 1e50af672d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 6 additions and 7 deletions

View File

@ -40,6 +40,7 @@
## Backgrounds
- Squip (Paid Commissions)
- Contributions by Someonealive-QN
- Contributions by redactedinlight
## UI
- GAMEFREAK

View File

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

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

View File

@ -1117,7 +1117,6 @@ export class TrickRoomTag extends ArenaTag {
globalScene.phaseManager.queueMessage(
i18next.t("arenaTag:trickRoomOnAdd", {
moveName: this.getMoveName(),
opponentDesc: source.getOpponentDescriptor(),
}),
);
}

View File

@ -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:

View File

@ -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");
}