pokecrystal-board/data/text/battle.asm

1109 lines
16 KiB
NASM
Raw Normal View History

BattleText:: ; used only for BANK(BattleText)
BattleText_PlayerPickedUpPayDayCoins:
text "<PLAYER> picked up"
line "<COIN>@"
text_decimal wPayDayCoins, 3, 6
2014-03-05 21:45:28 -08:00
text "!"
prompt
2013-05-12 03:38:49 -07:00
WildPokemonAppearedText:
2014-03-05 21:45:28 -08:00
text "Wild @"
text_ram wEnemyMonNickname
text_start
2014-03-05 21:45:28 -08:00
line "appeared!"
prompt
2013-05-12 03:38:49 -07:00
HookedPokemonAttackedText:
2014-03-05 21:45:28 -08:00
text "The hooked"
line "@"
text_ram wEnemyMonNickname
text_start
cont "attacked!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
PokemonFellFromTreeText:
text_ram wEnemyMonNickname
2014-03-05 21:45:28 -08:00
text " fell"
line "out of the tree!"
prompt
2013-05-12 03:38:49 -07:00
WildCelebiAppearedText:
2014-03-05 21:45:28 -08:00
text "Wild @"
text_ram wEnemyMonNickname
text_start
2014-03-05 21:45:28 -08:00
line "appeared!"
prompt
2013-05-12 03:38:49 -07:00
WantsToBattleText::
text "<ENEMY>"
2014-03-05 21:45:28 -08:00
line "wants to battle!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_WildFled:
2014-03-05 21:45:28 -08:00
text "Wild @"
text_ram wEnemyMonNickname
text_start
2014-03-05 21:45:28 -08:00
line "fled!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_EnemyFled:
2014-03-05 21:45:28 -08:00
text "Enemy @"
text_ram wEnemyMonNickname
text_start
2014-03-05 21:45:28 -08:00
line "fled!"
prompt
2013-05-12 03:38:49 -07:00
HurtByPoisonText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "is hurt by poison!"
prompt
2013-05-12 03:38:49 -07:00
HurtByBurnText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "hurt by its burn!"
prompt
2013-05-12 03:38:49 -07:00
LeechSeedSapsText:
2014-03-05 21:45:28 -08:00
text "LEECH SEED saps"
line "<USER>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
HasANightmareText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "has a NIGHTMARE!"
prompt
2013-05-12 03:38:49 -07:00
HurtByCurseText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "hurt by the CURSE!"
prompt
2013-05-12 03:38:49 -07:00
SandstormHitsText:
2014-03-05 21:45:28 -08:00
text "The SANDSTORM hits"
line "<USER>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
PerishCountText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "PERISH count is @"
text_decimal wTextDecimalByte, 1, 1
2014-03-05 21:45:28 -08:00
text "!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_TargetRecoveredWithItem:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "recovered with"
cont "@"
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text "."
prompt
2013-05-12 03:38:49 -07:00
BattleText_UserRecoveredPPUsing:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "recovered PP using"
cont "@"
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text "."
prompt
2013-05-12 03:38:49 -07:00
BattleText_TargetWasHitByFutureSight:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "was hit by FUTURE"
cont "SIGHT!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_SafeguardFaded:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "SAFEGUARD faded!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_MonsLightScreenFell:
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text " #MON's"
line "LIGHT SCREEN fell!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_MonsReflectFaded:
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text " #MON's"
line "REFLECT faded!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_RainContinuesToFall:
2014-03-05 21:45:28 -08:00
text "Rain continues to"
line "fall."
prompt
2013-05-12 03:38:49 -07:00
BattleText_TheSunlightIsStrong:
2014-03-05 21:45:28 -08:00
text "The sunlight is"
line "strong."
prompt
2013-05-12 03:38:49 -07:00
BattleText_TheSandstormRages:
2014-03-05 21:45:28 -08:00
text "The SANDSTORM"
line "rages."
prompt
2013-05-12 03:38:49 -07:00
BattleText_TheRainStopped:
2014-03-05 21:45:28 -08:00
text "The rain stopped."
prompt
2013-05-12 03:38:49 -07:00
BattleText_TheSunlightFaded:
2014-03-05 21:45:28 -08:00
text "The sunlight"
line "faded."
prompt
2013-05-12 03:38:49 -07:00
BattleText_TheSandstormSubsided:
2014-03-05 21:45:28 -08:00
text "The SANDSTORM"
line "subsided."
prompt
2013-05-12 03:38:49 -07:00
BattleText_EnemyMonFainted:
2014-03-05 21:45:28 -08:00
text "Enemy @"
text_ram wEnemyMonNickname
text_start
2014-03-05 21:45:28 -08:00
line "fainted!"
prompt
2013-05-12 03:38:49 -07:00
GotCoinsForWinningText:
text "<PLAYER> got <COIN>@"
text_decimal wBattleReward, 3, 6
text_start
2014-03-05 21:45:28 -08:00
line "for winning!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_EnemyWasDefeated:
text "<ENEMY>"
2014-03-05 21:45:28 -08:00
line "was defeated!"
prompt
2013-05-12 03:38:49 -07:00
TiedAgainstText:
2014-03-05 21:45:28 -08:00
text "Tied against"
line "<ENEMY>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
2015-06-11 09:57:45 -07:00
SentSomeToMomText:
text "<PLAYER> got <COIN>@"
text_decimal wBattleReward, 3, 6
text_start
2014-03-05 21:45:28 -08:00
line "for winning!"
cont "Sent some to MOM!"
prompt
2013-05-12 03:38:49 -07:00
2015-06-11 09:57:45 -07:00
SentHalfToMomText:
2014-03-05 21:45:28 -08:00
text "Sent half to MOM!"
prompt
2013-05-12 03:38:49 -07:00
2015-06-11 09:57:45 -07:00
SentAllToMomText:
2014-03-05 21:45:28 -08:00
text "Sent all to MOM!"
prompt
2013-05-12 03:38:49 -07:00
UnusedRivalLossText: ; unreferenced
text "<RIVAL>: Huh? I"
2014-03-05 21:45:28 -08:00
line "should've chosen"
cont "your #MON!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_MonFainted:
text_ram wBattleMonNickname
text_start
2014-03-05 21:45:28 -08:00
line "fainted!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_UseNextMon:
2014-03-05 21:45:28 -08:00
text "Use next #MON?"
done
2013-05-12 03:38:49 -07:00
UnusedRivalWinText: ; unreferenced
text "<RIVAL>: Yes!"
2014-03-05 21:45:28 -08:00
line "I guess I chose a"
cont "good #MON!"
prompt
2013-05-12 03:38:49 -07:00
LostAgainstText:
2014-03-05 21:45:28 -08:00
text "Lost against"
line "<ENEMY>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
BattleText_EnemyIsAboutToUseWillPlayerChangeMon:
text "<ENEMY>"
2014-03-05 21:45:28 -08:00
line "is about to use"
cont "@"
text_ram wEnemyMonNickname
2014-03-05 21:45:28 -08:00
text "."
para "Will <PLAYER>"
2014-03-05 21:45:28 -08:00
line "change #MON?"
done
2013-05-12 03:38:49 -07:00
BattleText_EnemySentOut:
text "<ENEMY>"
2014-03-05 21:45:28 -08:00
line "sent out"
cont "@"
text_ram wEnemyMonNickname
2014-03-05 21:45:28 -08:00
text "!"
done
2013-05-12 03:38:49 -07:00
BattleText_TheresNoWillToBattle:
2014-03-05 21:45:28 -08:00
text "There's no will to"
line "battle!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_AnEGGCantBattle:
2014-03-05 21:45:28 -08:00
text "An EGG can't"
line "battle!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_CantEscape2:
2014-03-05 21:45:28 -08:00
text "Can't escape!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_TheresNoEscapeFromTrainerBattle:
2014-03-05 21:45:28 -08:00
text "No! There's no"
line "running from a"
cont "trainer battle!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_GotAwaySafely:
2014-03-05 21:45:28 -08:00
text "Got away safely!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_UserFledUsingAStringBuffer1:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "fled using a"
cont "@"
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text "!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_CantEscape:
2014-03-05 21:45:28 -08:00
text "Can't escape!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_UserHurtBySpikes:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "hurt by SPIKES!"
prompt
2013-05-12 03:38:49 -07:00
RecoveredUsingText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "recovered using a"
cont "@"
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text "!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_UsersStringBuffer1Activated:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "@"
text_ram wStringBuffer1
text_start
cont "activated!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
BattleText_ItemsCantBeUsedHere:
2014-03-05 21:45:28 -08:00
text "Items can't be"
line "used here."
prompt
2013-05-12 03:38:49 -07:00
BattleText_MonIsAlreadyOut:
text_ram wBattleMonNickname
text_start
2014-03-05 21:45:28 -08:00
line "is already out."
prompt
2013-05-12 03:38:49 -07:00
BattleText_MonCantBeRecalled:
text_ram wBattleMonNickname
text_start
2014-03-05 21:45:28 -08:00
line "can't be recalled!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_TheresNoPPLeftForThisMove:
2014-03-05 21:45:28 -08:00
text "There's no PP left"
line "for this move!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_TheMoveIsDisabled:
2014-03-05 21:45:28 -08:00
text "The move is"
line "DISABLED!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_MonHasNoMovesLeft:
text_ram wBattleMonNickname
text_start
2014-03-05 21:45:28 -08:00
line "has no moves left!"
done
2013-05-12 03:38:49 -07:00
BattleText_TargetsEncoreEnded:
text "<TARGET>'s"
2014-03-05 21:45:28 -08:00
line "ENCORE ended!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_StringBuffer1GrewToLevel:
text_ram wStringBuffer1
text " grew to"
line "level @"
text_decimal wCurPartyLevel, 1, 3
text "!@"
2015-11-23 18:19:53 -08:00
sound_dex_fanfare_50_79
text_end
text_end ; unreferenced
2013-05-12 03:38:49 -07:00
BattleText_WildMonIsEating:
2014-03-05 21:45:28 -08:00
text "Wild @"
text_ram wEnemyMonNickname
text_start
2014-03-05 21:45:28 -08:00
line "is eating!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_WildMonIsAngry:
2014-03-05 21:45:28 -08:00
text "Wild @"
text_ram wEnemyMonNickname
text_start
2014-03-05 21:45:28 -08:00
line "is angry!"
prompt
2013-05-12 03:38:49 -07:00
FastAsleepText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "is fast asleep!"
prompt
2013-05-12 03:38:49 -07:00
WokeUpText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "woke up!"
prompt
2013-05-12 03:38:49 -07:00
FrozenSolidText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "is frozen solid!"
prompt
2013-05-12 03:38:49 -07:00
FlinchedText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "flinched!"
prompt
2013-05-12 03:38:49 -07:00
MustRechargeText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "must recharge!"
prompt
2013-05-12 03:38:49 -07:00
DisabledNoMoreText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "disabled no more!"
prompt
2013-05-12 03:38:49 -07:00
IsConfusedText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "is confused!"
prompt
2013-05-12 03:38:49 -07:00
HurtItselfText:
2014-03-05 21:45:28 -08:00
text "It hurt itself in"
line "its confusion!"
prompt
2013-05-12 03:38:49 -07:00
ConfusedNoMoreText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "confused no more!"
prompt
2013-05-12 03:38:49 -07:00
BecameConfusedText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "became confused!"
prompt
2013-05-12 03:38:49 -07:00
2019-06-04 04:31:22 -07:00
BattleText_ItemHealedConfusion:
2014-03-05 21:45:28 -08:00
text "A @"
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text " rid"
line "<TARGET>"
2014-03-05 21:45:28 -08:00
cont "of its confusion."
prompt
2013-05-12 03:38:49 -07:00
AlreadyConfusedText:
text "<TARGET>'s"
2014-03-05 21:45:28 -08:00
line "already confused!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_UsersHurtByStringBuffer1:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "hurt by"
cont "@"
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text "!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_UserWasReleasedFromStringBuffer1:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "was released from"
cont "@"
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text "!"
prompt
2013-05-12 03:38:49 -07:00
UsedBindText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "used BIND on"
cont "<TARGET>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
WhirlpoolTrapText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "was trapped!"
prompt
2013-05-12 03:38:49 -07:00
FireSpinTrapText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "was trapped!"
prompt
2013-05-12 03:38:49 -07:00
WrappedByText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "was WRAPPED by"
cont "<USER>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
ClampedByText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "was CLAMPED by"
cont "<USER>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
StoringEnergyText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "is storing energy!"
prompt
2013-05-12 03:38:49 -07:00
UnleashedEnergyText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "unleashed energy!"
prompt
2013-05-12 03:38:49 -07:00
HungOnText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "hung on with"
cont "@"
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text "!"
prompt
2013-05-12 03:38:49 -07:00
EnduredText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "ENDURED the hit!"
prompt
2013-05-12 03:38:49 -07:00
InLoveWithText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "is in love with"
cont "<TARGET>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
InfatuationText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "infatuation kept"
cont "it from attacking!"
prompt
2013-05-12 03:38:49 -07:00
DisabledMoveText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "@"
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text " is"
cont "DISABLED!"
prompt
2013-05-12 03:38:49 -07:00
LoafingAroundText:
text_ram wBattleMonNickname
2014-03-05 21:45:28 -08:00
text " is"
line "loafing around."
prompt
2013-05-12 03:38:49 -07:00
BeganToNapText:
text_ram wBattleMonNickname
2014-03-05 21:45:28 -08:00
text " began"
line "to nap!"
prompt
2013-05-12 03:38:49 -07:00
WontObeyText:
text_ram wBattleMonNickname
2014-03-05 21:45:28 -08:00
text " won't"
line "obey!"
prompt
2013-05-12 03:38:49 -07:00
TurnedAwayText:
text_ram wBattleMonNickname
2014-03-05 21:45:28 -08:00
text " turned"
line "away!"
prompt
2013-05-12 03:38:49 -07:00
IgnoredOrdersText:
text_ram wBattleMonNickname
2014-03-05 21:45:28 -08:00
text " ignored"
line "orders!"
prompt
2013-05-12 03:38:49 -07:00
IgnoredSleepingText:
text_ram wBattleMonNickname
2014-03-05 21:45:28 -08:00
text " ignored"
line "orders…sleeping!"
prompt
2013-05-12 03:38:49 -07:00
NoPPLeftText:
2014-03-05 21:45:28 -08:00
text "But no PP is left"
line "for the move!"
prompt
2013-05-12 03:38:49 -07:00
HasNoPPLeftText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "has no PP left for"
cont "@"
text_ram wStringBuffer2
2014-03-05 21:45:28 -08:00
text "!"
prompt
2013-05-12 03:38:49 -07:00
WentToSleepText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "went to sleep!"
done
2013-05-12 03:38:49 -07:00
RestedText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "fell asleep and"
cont "became healthy!"
done
2013-05-12 03:38:49 -07:00
RegainedHealthText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "regained health!"
prompt
2013-05-12 03:38:49 -07:00
AttackMissedText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "attack missed!"
prompt
2013-05-12 03:38:49 -07:00
AttackMissed2Text:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "attack missed!"
prompt
2013-05-12 03:38:49 -07:00
CrashedText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "kept going and"
cont "crashed!"
prompt
2013-05-12 03:38:49 -07:00
UnaffectedText:
text "<TARGET>'s"
2014-03-05 21:45:28 -08:00
line "unaffected!"
prompt
2013-05-12 03:38:49 -07:00
DoesntAffectText:
2014-03-05 21:45:28 -08:00
text "It doesn't affect"
line "<TARGET>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
CriticalHitText:
2014-03-05 21:45:28 -08:00
text "A critical hit!"
prompt
2013-05-12 03:38:49 -07:00
OneHitKOText:
2014-03-05 21:45:28 -08:00
text "It's a one-hit KO!"
prompt
2013-05-12 03:38:49 -07:00
SuperEffectiveText:
2014-03-05 21:45:28 -08:00
text "It's super-"
line "effective!"
prompt
2013-05-12 03:38:49 -07:00
NotVeryEffectiveText:
2014-03-05 21:45:28 -08:00
text "It's not very"
line "effective…"
prompt
2013-05-12 03:38:49 -07:00
TookDownWithItText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "took down with it,"
cont "<USER>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
RageBuildingText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "RAGE is building!"
prompt
2013-05-12 03:38:49 -07:00
GotAnEncoreText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "got an ENCORE!"
prompt
2013-05-12 03:38:49 -07:00
SharedPainText:
2014-03-05 21:45:28 -08:00
text "The battlers"
line "shared pain!"
prompt
2013-05-12 03:38:49 -07:00
TookAimText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "took aim!"
prompt
2013-05-12 03:38:49 -07:00
SketchedText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "SKETCHED"
cont "@"
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text "!"
prompt
2013-05-12 03:38:49 -07:00
DestinyBondEffectText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "trying to take its"
cont "opponent with it!"
prompt
2013-05-12 03:38:49 -07:00
SpiteEffectText:
text "<TARGET>'s"
2014-03-05 21:45:28 -08:00
line "@"
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text " was"
cont "reduced by @"
text_decimal wTextDecimalByte, 1, 1
2014-03-05 21:45:28 -08:00
text "!"
prompt
2013-05-12 03:38:49 -07:00
BellChimedText:
text "A bell chimed!"
line ""
prompt
2013-05-12 03:38:49 -07:00
FellAsleepText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "fell asleep!"
prompt
2013-05-12 03:38:49 -07:00
AlreadyAsleepText:
text "<TARGET>'s"
2014-03-05 21:45:28 -08:00
line "already asleep!"
prompt
2013-05-12 03:38:49 -07:00
WasPoisonedText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "was poisoned!"
prompt
2013-05-12 03:38:49 -07:00
BadlyPoisonedText:
text "<TARGET>'s"
2014-03-05 21:45:28 -08:00
line "badly poisoned!"
prompt
2013-05-12 03:38:49 -07:00
AlreadyPoisonedText:
text "<TARGET>'s"
2014-03-05 21:45:28 -08:00
line "already poisoned!"
prompt
2013-05-12 03:38:49 -07:00
SuckedHealthText:
2014-03-05 21:45:28 -08:00
text "Sucked health from"
line "<TARGET>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
DreamEatenText:
text "<TARGET>'s"
2014-03-05 21:45:28 -08:00
line "dream was eaten!"
prompt
2013-05-12 03:38:49 -07:00
WasBurnedText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "was burned!"
prompt
2013-05-12 03:38:49 -07:00
DefrostedOpponentText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "was defrosted!"
prompt
2013-05-12 03:38:49 -07:00
WasFrozenText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "was frozen solid!"
prompt
2013-05-12 03:38:49 -07:00
WontRiseAnymoreText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "@"
text_ram wStringBuffer2
2014-03-05 21:45:28 -08:00
text " won't"
cont "rise anymore!"
prompt
2013-05-12 03:38:49 -07:00
WontDropAnymoreText:
text "<TARGET>'s"
2014-03-05 21:45:28 -08:00
line "@"
text_ram wStringBuffer2
2014-03-05 21:45:28 -08:00
text " won't"
cont "drop anymore!"
prompt
2013-05-12 03:38:49 -07:00
FledFromBattleText::
text "<USER>"
2014-03-05 21:45:28 -08:00
line "fled from battle!"
prompt
2013-05-12 03:38:49 -07:00
FledInFearText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "fled in fear!"
prompt
2013-05-12 03:38:49 -07:00
BlownAwayText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "was blown away!"
prompt
2013-05-12 03:38:49 -07:00
PlayerHitTimesText:
2014-03-05 21:45:28 -08:00
text "Hit @"
text_decimal wPlayerDamageTaken, 1, 1
2014-03-05 21:45:28 -08:00
text " times!"
prompt
2013-05-12 03:38:49 -07:00
EnemyHitTimesText:
2014-03-05 21:45:28 -08:00
text "Hit @"
text_decimal wEnemyDamageTaken, 1, 1
2014-03-05 21:45:28 -08:00
text " times!"
prompt
2013-05-12 03:38:49 -07:00
MistText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "shrouded in MIST!"
prompt
2013-05-12 03:38:49 -07:00
ProtectedByMistText:
text "<TARGET>'s"
2014-03-05 21:45:28 -08:00
line "protected by MIST."
prompt
2013-05-12 03:38:49 -07:00
GettingPumpedText:
text_pause
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "getting pumped!"
prompt
2013-05-12 03:38:49 -07:00
RecoilText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "hit with recoil!"
prompt
2013-05-12 03:38:49 -07:00
MadeSubstituteText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "made a SUBSTITUTE!"
prompt
2013-05-12 03:38:49 -07:00
HasSubstituteText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "has a SUBSTITUTE!"
prompt
2013-05-12 03:38:49 -07:00
TooWeakSubText:
2014-03-05 21:45:28 -08:00
text "Too weak to make"
line "a SUBSTITUTE!"
prompt
2013-05-12 03:38:49 -07:00
SubTookDamageText:
2014-03-05 21:45:28 -08:00
text "The SUBSTITUTE"
line "took damage for"
cont "<TARGET>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
SubFadedText:
text "<TARGET>'s"
2014-03-05 21:45:28 -08:00
line "SUBSTITUTE faded!"
prompt
2013-05-12 03:38:49 -07:00
MimicLearnedMoveText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "learned"
cont "@"
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text "!"
prompt
2013-05-12 03:38:49 -07:00
WasSeededText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "was seeded!"
prompt
2013-05-12 03:38:49 -07:00
EvadedText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "evaded the attack!"
prompt
2013-05-12 03:38:49 -07:00
WasDisabledText:
text "<TARGET>'s"
2014-03-05 21:45:28 -08:00
line "@"
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text " was"
cont "DISABLED!"
prompt
2013-05-12 03:38:49 -07:00
ChipsScatteredText:
text "Chips scattered"
2014-03-05 21:45:28 -08:00
line "everywhere!"
prompt
2013-05-12 03:38:49 -07:00
TransformedTypeText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "transformed into"
cont "the @"
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text "-type!"
prompt
2013-05-12 03:38:49 -07:00
EliminatedStatsText:
2014-03-05 21:45:28 -08:00
text "All stat changes"
line "were eliminated!"
prompt
2013-05-12 03:38:49 -07:00
TransformedText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "TRANSFORMED into"
cont "@"
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text "!"
prompt
2013-05-12 03:38:49 -07:00
LightScreenEffectText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "SPCL.DEF rose!"
prompt
2013-05-12 03:38:49 -07:00
ReflectEffectText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "DEFENSE rose!"
prompt
2013-05-12 03:38:49 -07:00
NothingHappenedText:
2014-03-05 21:45:28 -08:00
text "But nothing"
line "happened."
prompt
2013-05-12 03:38:49 -07:00
ButItFailedText:
2014-03-05 21:45:28 -08:00
text "But it failed!"
prompt
2013-05-12 03:38:49 -07:00
ItFailedText:
2014-03-05 21:45:28 -08:00
text "It failed!"
prompt
2013-05-12 03:38:49 -07:00
DidntAffect1Text:
2014-03-05 21:45:28 -08:00
text "It didn't affect"
line "<TARGET>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
DidntAffect2Text:
2014-03-05 21:45:28 -08:00
text "It didn't affect"
line "<TARGET>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
HPIsFullText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "HP is full!"
prompt
2013-05-12 03:38:49 -07:00
DraggedOutText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "was dragged out!"
prompt
2013-05-12 03:38:49 -07:00
ParalyzedText:
text "<TARGET>'s"
2014-03-05 21:45:28 -08:00
line "paralyzed! Maybe"
cont "it can't attack!"
prompt
2013-05-12 03:38:49 -07:00
FullyParalyzedText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "fully paralyzed!"
prompt
2013-05-12 03:38:49 -07:00
AlreadyParalyzedText:
text "<TARGET>'s"
2014-03-05 21:45:28 -08:00
line "already paralyzed!"
prompt
2013-05-12 03:38:49 -07:00
ProtectedByText:
text "<TARGET>'s"
2014-03-05 21:45:28 -08:00
line "protected by"
cont "@"
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text "!"
prompt
2013-05-12 03:38:49 -07:00
MirrorMoveFailedText:
text "The MIRROR MOVE"
next "failed!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
StoleText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "stole @"
text_ram wStringBuffer1
text_start
cont "from its foe!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
CantEscapeNowText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "can't escape now!"
prompt
2013-05-12 03:38:49 -07:00
StartedNightmareText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "started to have a"
cont "NIGHTMARE!"
prompt
2013-05-12 03:38:49 -07:00
WasDefrostedText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "was defrosted!"
prompt
2013-05-12 03:38:49 -07:00
PutACurseText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "cut its own HP and"
para "put a CURSE on"
line "<TARGET>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
ProtectedItselfText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "PROTECTED itself!"
prompt
2013-05-12 03:38:49 -07:00
ProtectingItselfText:
text "<TARGET>'s"
2014-03-05 21:45:28 -08:00
line "PROTECTING itself!"
done
2013-05-12 03:38:49 -07:00
SpikesText:
2014-03-05 21:45:28 -08:00
text "SPIKES scattered"
line "all around"
cont "<TARGET>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
IdentifiedText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "identified"
cont "<TARGET>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
StartPerishText:
2014-03-05 21:45:28 -08:00
text "Both #MON will"
line "faint in 3 turns!"
prompt
2013-05-12 03:38:49 -07:00
SandstormBrewedText:
2014-03-05 21:45:28 -08:00
text "A SANDSTORM"
line "brewed!"
prompt
2013-05-12 03:38:49 -07:00
BracedItselfText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "braced itself!"
prompt
2013-05-12 03:38:49 -07:00
FellInLoveText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "fell in love!"
prompt
2013-05-12 03:38:49 -07:00
CoveredByVeilText:
text "<USER>'s"
2014-03-05 21:45:28 -08:00
line "covered by a veil!"
prompt
2013-05-12 03:38:49 -07:00
SafeguardProtectText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "is protected by"
cont "SAFEGUARD!"
prompt
2013-05-12 03:38:49 -07:00
MagnitudeText:
2014-03-05 21:45:28 -08:00
text "Magnitude @"
text_decimal wTextDecimalByte, 1, 1
2014-03-05 21:45:28 -08:00
text "!"
prompt
2013-05-12 03:38:49 -07:00
ReleasedByText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "was released by"
cont "<TARGET>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
ShedLeechSeedText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "shed LEECH SEED!"
prompt
2013-05-12 03:38:49 -07:00
BlewSpikesText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "blew away SPIKES!"
prompt
2013-05-12 03:38:49 -07:00
DownpourText:
2014-03-05 21:45:28 -08:00
text "A downpour"
line "started!"
prompt
2013-05-12 03:38:49 -07:00
SunGotBrightText:
2014-03-05 21:45:28 -08:00
text "The sunlight got"
line "bright!"
prompt
2013-05-12 03:38:49 -07:00
BellyDrumText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "cut its HP and"
cont "maximized ATTACK!"
prompt
2013-05-12 03:38:49 -07:00
CopiedStatsText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "copied the stat"
para "changes of"
line "<TARGET>!"
2014-03-05 21:45:28 -08:00
prompt
2013-05-12 03:38:49 -07:00
ForesawAttackText:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "foresaw an attack!"
prompt
2013-05-12 03:38:49 -07:00
BeatUpAttackText:
text_ram wStringBuffer1
2014-03-05 21:45:28 -08:00
text "'s"
line "attack!"
done
2013-05-12 03:38:49 -07:00
PresentFailedText:
text "<TARGET>"
2014-03-05 21:45:28 -08:00
line "refused the gift!"
prompt
2013-05-12 03:38:49 -07:00
IgnoredOrders2Text:
text "<USER>"
2014-03-05 21:45:28 -08:00
line "ignored orders!"
prompt
2013-05-12 03:38:49 -07:00
BattleText_LinkErrorBattleCanceled:
2014-03-05 21:45:28 -08:00
text "Link error…"
para "The battle has"
line "been canceled…"
prompt
2013-05-12 03:38:49 -07:00
BattleText_NoTimeLeftToday: ; unreferenced
2014-03-05 21:45:28 -08:00
text "There is no time"
line "left today!"
done