Mt. Silver - finished

This commit is contained in:
infinitefusion
2022-11-27 14:11:41 -05:00
parent 1482c4c1d0
commit 572796d7cc
68 changed files with 37132 additions and 29 deletions

View File

@@ -126,6 +126,10 @@ module PokeBattle_BattleCommon
pbDisplay(_INTL("Gah! It was so close, too!"))
BallHandlers.onFailCatch(ball,self,battler)
when 4
if $game_switches[SWITCH_SILVERBOSS_BATTLE]
pkmn.species=:PALDIATINA
pkmn.name = "Paldiatina"
end
pbDisplayBrief(_INTL("Gotcha! {1} was caught!",pkmn.name))
@scene.pbThrowSuccess # Play capture success jingle
pbRemoveFromParty(battler.index,battler.pokemonIndex)

View File

@@ -202,8 +202,12 @@ class PokeBattle_Battle
msg += _INTL("{1} sent out {2} and {3}!",t.full_name,
@battlers[sent[0]].name,@battlers[sent[1]].name)
when 3
if $game_switches[SWITCH_BIRDBOSS_BATTLE]
msg += _INTL("{1} sent out Zapmolcuno!",t.full_name)
if $game_switches[SWITCH_TRIPLE_BOSS_BATTLE]
if $game_switches[SWITCH_SILVERBOSS_BATTLE]
msg += _INTL("A wild Paldiatina appeared!",t.full_name)
else
msg += _INTL("{1} sent out Zapmolcuno!",t.full_name)
end
else
msg += _INTL("{1} sent out {2}, {3} and {4}!",t.full_name,
@battlers[sent[0]].name,@battlers[sent[1]].name,@battlers[sent[2]].name)