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 ## Backgrounds
- Squip (Paid Commissions) - Squip (Paid Commissions)
- Contributions by Someonealive-QN - Contributions by Someonealive-QN
- Contributions by redactedinlight
## UI ## UI
- GAMEFREAK - GAMEFREAK

View File

@ -15,4 +15,6 @@ post-merge:
post-checkout: post-checkout:
commands: commands:
update-submodules: 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( globalScene.phaseManager.queueMessage(
i18next.t("arenaTag:trickRoomOnAdd", { i18next.t("arenaTag:trickRoomOnAdd", {
moveName: this.getMoveName(), moveName: this.getMoveName(),
opponentDesc: source.getOpponentDescriptor(),
}), }),
); );
} }

View File

@ -925,6 +925,7 @@ export function getBiomeKey(biome: BiomeId): string {
export function getBiomeHasProps(biomeType: BiomeId): boolean { export function getBiomeHasProps(biomeType: BiomeId): boolean {
switch (biomeType) { switch (biomeType) {
case BiomeId.PLAINS:
case BiomeId.METROPOLIS: case BiomeId.METROPOLIS:
case BiomeId.BEACH: case BiomeId.BEACH:
case BiomeId.LAKE: case BiomeId.LAKE:

View File

@ -3382,10 +3382,6 @@ export abstract class Pokemon extends Phaser.GameObjects.Container {
} }
getOpponentDescriptor(): string { 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"); return this.isPlayer() ? i18next.t("arenaTag:opposingTeam") : i18next.t("arenaTag:yourTeam");
} }