summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/constants/text_constants.asm5
-rwxr-xr-xsrc/engine/bank1.asm8
-rwxr-xr-xsrc/engine/home.asm4
-rw-r--r--src/gfx.asm2
-rwxr-xr-xsrc/macros.asm45
-rwxr-xr-xsrc/text/text1.asm1067
-rw-r--r--src/text/text2.asm1809
-rw-r--r--src/text/text3.asm1987
-rw-r--r--src/text/text4.asm1430
-rw-r--r--src/text/text5.asm1283
-rw-r--r--src/text/text6.asm1435
-rw-r--r--src/text/text7.asm1419
-rw-r--r--src/text/text8.asm1533
-rw-r--r--src/text/text9.asm1664
-rwxr-xr-xsrc/text/text_offsets.asm5978
-rw-r--r--src/text/texta.asm1608
-rw-r--r--src/text/textb.asm1507
-rw-r--r--src/text/textc.asm1498
-rw-r--r--src/text/textd.asm212
-rwxr-xr-xsrc/wram.asm2
20 files changed, 13781 insertions, 10715 deletions
diff --git a/src/constants/text_constants.asm b/src/constants/text_constants.asm
index a018be1..674037e 100755
--- a/src/constants/text_constants.asm
+++ b/src/constants/text_constants.asm
@@ -1,10 +1,15 @@
TX_START EQU $06
+TX_LINE EQU "\n"
TX_END EQU $00
TX_RAM1 EQU $09
TX_RAM2 EQU $0B
TX_RAM3 EQU $0C
+text EQUS "db TX_START,"
+line EQUS "db TX_LINE,"
+done EQUS "db TX_END"
+
TX_FIRE EQUS "$05,$01"
TX_GRASS EQUS "$05,$02"
TX_LIGHTNING EQUS "$05,$03"
diff --git a/src/engine/bank1.asm b/src/engine/bank1.asm
index 4d4582f..94172c5 100755
--- a/src/engine/bank1.asm
+++ b/src/engine/bank1.asm
@@ -477,7 +477,7 @@ PlayerUseEnergyCard: ; 4477 (1:4477)
jr c, .waterEnergy
.notWaterEnergy
- ld a, [wDuelHasPlayedEnergy]
+ ld a, [wAlreadyPlayedEnergy]
or a
jr nz, .alreadyPlayedEnergy
call $5fdd
@@ -485,7 +485,7 @@ PlayerUseEnergyCard: ; 4477 (1:4477)
jp c, Func_426d ; exit if no card was chosen
.asm_4490
ld a, $1
- ld [wDuelHasPlayedEnergy], a
+ ld [wAlreadyPlayedEnergy], a
.asm_4495
ld a, [$ff9d]
ld [$ffa1], a
@@ -505,7 +505,7 @@ PlayerUseEnergyCard: ; 4477 (1:4477)
jp c, Func_426d ; exit if no card was chosen
call $3622
jr c, .asm_4495
- ld a, [wDuelHasPlayedEnergy]
+ ld a, [wAlreadyPlayedEnergy]
or a
jr z, .asm_4490
text_hl OnlyOneEnergyCardText
@@ -1039,7 +1039,7 @@ AIUseEnergyCard: ; 69a5 (1:69a5)
call $5e75
call $68e4
ld a, $1
- ld [wDuelHasPlayedEnergy], a
+ ld [wAlreadyPlayedEnergy], a
call $4f9d
ret
; 0x69c5
diff --git a/src/engine/home.asm b/src/engine/home.asm
index 5d1938b..15368bd 100755
--- a/src/engine/home.asm
+++ b/src/engine/home.asm
@@ -1,4 +1,4 @@
-GLOBAL GrassEnergyCardGfx
+GLOBAL CardGraphics
GLOBAL TextOffsets
; rst vectors
@@ -5456,7 +5456,7 @@ LoadCardGfx: ; 2fa0 (0:2fa0)
srl h
srl h
srl h
- ld a, BANK(GrassEnergyCardGfx)
+ ld a, BANK(CardGraphics)
add h
call BankswitchHome
pop hl
diff --git a/src/gfx.asm b/src/gfx.asm
index 888be64..9714ff3 100644
--- a/src/gfx.asm
+++ b/src/gfx.asm
@@ -895,6 +895,8 @@ SECTION "bank30",ROMX,BANK[$30]
emptybank
SECTION "bank31",ROMX,BANK[$31]
+CardGraphics:: ; c4000 (31:4000)
+
GrassEnergyCardGfx:: ; c4000 (31:4000)
INCBIN "gfx/cards/grassenergy.8x6.2bpp"
INCBIN "gfx/cards/grassenergy.pal"
diff --git a/src/macros.asm b/src/macros.asm
index ab169cc..5a79e0b 100755
--- a/src/macros.asm
+++ b/src/macros.asm
@@ -1,10 +1,48 @@
;;; engine macros
+const_def: MACRO
+IF _NARG > 0
+const_value = \1
+ELSE
+const_value = 0
+ENDC
+ENDM
+
+const: MACRO
+\1 EQU const_value
+const_value = const_value + 1
+ENDM
+
dbw: MACRO
db \1
dw \2
ENDM
+dwb: MACRO
+ dw \1
+ db \2
+ENDM
+
+dx: MACRO
+x = 8 * ((\1) - 1)
+ rept \1
+ db ((\2) >> x) & $ff
+x = x + -8
+ endr
+ ENDM
+
+dt: MACRO ; three-byte (big-endian)
+ dx 3, \1
+ ENDM
+
+dd: MACRO ; four-byte (big-endian)
+ dx 4, \1
+ ENDM
+
+bigdw: MACRO ; big-endian word
+ dx 2, \1
+ ENDM
+
lb: MACRO ; r, hi, lo
ld \1, (\2) << 8 + ((\3) & $ff)
ENDM
@@ -38,12 +76,11 @@ rgb: MACRO
dw (\3 << 10 | \2 << 5 | \1)
ENDM
-text: MACRO
+textpointer: MACRO
dw ((\1 + ($4000 * (BANK(\1) - 1))) - (TextOffsets + ($4000 * (BANK(TextOffsets) - 1)))) & $ffff
db ((\1 + ($4000 * (BANK(\1) - 1))) - (TextOffsets + ($4000 * (BANK(TextOffsets) - 1)))) >> 16
-\1_ EQU const_value
+ const \1_
GLOBAL \1_
-const_value = const_value + 1
ENDM
text_hl: MACRO
@@ -317,7 +354,7 @@ c_ = c_ + \2 * $10
ENDM
gfx: MACRO
- dw ($4000 * (BANK(\1) - BANK(GrassEnergyCardGfx)) + (\1 - $4000)) / 8
+ dw ($4000 * (BANK(\1) - BANK(CardGraphics)) + (\1 - $4000)) / 8
ENDM
tx: MACRO
diff --git a/src/text/text1.asm b/src/text/text1.asm
index d03d1b5..5464784 100755
--- a/src/text/text1.asm
+++ b/src/text/text1.asm
@@ -1,894 +1,1147 @@
HandText: ; 3630a (d:630a)
- db TX_START,"Hand",TX_END
+ text "Hand"
+ done
CheckText: ; 36310 (d:6310)
- db TX_START,"Check",TX_END
+ text "Check"
+ done
AttackText: ; 36317 (d:6317)
- db TX_START,"Attack",TX_END
+ text "Attack"
+ done
PKMNPowerText: ; 3631f (d:631f)
- db TX_START,"PKMN Power",TX_END
+ text "PKMN Power"
+ done
DoneText: ; 3632b (d:632b)
- db TX_START,"Done",TX_END
+ text "Done"
+ done
TypeText: ; 36331 (d:6331)
- db TX_START,"Type",TX_END
+ text "Type"
+ done
RetreatText: ; 36337 (d:6337)
- db TX_START,"Retreat",TX_END
+ text "Retreat"
+ done
WeaknessText: ; 36340 (d:6340)
- db TX_START,"Weakness",TX_END
+ text "Weakness"
+ done
ResistanceText: ; 3634a (d:634a)
- db TX_START,"Resistance",TX_END
+ text "Resistance"
+ done
PKMNPWRText: ; 36356 (d:6356)
- db TX_START,"PKMN PWR",TX_END
+ text "PKMN PWR"
+ done
Text000b: ; 36360 (d:6360)
- db $56,$19,$33,$3d,$16,$78,$4c,TX_END
+ db $56,$19,$33,$3d,$16,$78,$4c
+ done
LengthText: ; 36368 (d:6368)
- db TX_START,"Length",TX_END
+ text "Length"
+ done
WeightText: ; 36370 (d:6370)
- db TX_START,"Weight",TX_END
+ text "Weight"
+ done
PokemonText: ; 36378 (d:6378)
- db TX_START," Pok`mon",TX_END
+ text " Pok`mon"
+ done
Text000f: ; 36382 (d:6382)
- db $03,$4c,TX_END
+ db $03,$4c
+ done
lbsText: ; 36385 (d:6385)
- db TX_START,"lbs.",TX_END
+ text "lbs."
+ done
Text0011: ; 3638b (d:638b)
- db $70,TX_END
+ db $70
+ done
Text0012: ; 3638d (d:638d)
- db $03,$52,TX_END
+ db $03,$52
+ done
Text0013: ; 36390 (d:6390)
- db $03,$53,TX_END
+ db $03,$53
+ done
Text0014: ; 36393 (d:6393)
- db $03,$54,TX_END
+ db $03,$54
+ done
Text0015: ; 36396 (d:6396)
- db TX_START," All cards owned:",TX_END
+ text " All cards owned:"
+ done
Text0016: ; 363a9 (d:63a9)
- db TX_START,"Total number of cards",TX_END
+ text "Total number of cards"
+ done
Text0017: ; 363c0 (d:63c0)
- db TX_START,"Types of cards",TX_END
+ text "Types of cards"
+ done
Text0018: ; 363d0 (d:63d0)
- db TX_START,"Grass Pok`mon",TX_END
+ text "Grass Pok`mon"
+ done
Text0019: ; 363df (d:63df)
- db TX_START,"Fire Pok`mon",TX_END
+ text "Fire Pok`mon"
+ done
Text001a: ; 363ed (d:63ed)
- db TX_START,"Water Pok`mon",TX_END
+ text "Water Pok`mon"
+ done
Text001b: ; 363fc (d:63fc)
- db TX_START,"Lightning Pok`mon",TX_END
+ text "Lightning Pok`mon"
+ done
Text001c: ; 3640f (d:640f)
- db TX_START,"Fighting Pok`mon",TX_END
+ text "Fighting Pok`mon"
+ done
Text001d: ; 36421 (d:6421)
- db TX_START,"Psychic Pok`mon",TX_END
+ text "Psychic Pok`mon"
+ done
Text001e: ; 36432 (d:6432)
- db TX_START,"Colorless Pok`mon",TX_END
+ text "Colorless Pok`mon"
+ done
Text001f: ; 36445 (d:6445)
- db TX_START,"Trainer Card",TX_END
+ text "Trainer Card"
+ done
Text0020: ; 36453 (d:6453)
- db TX_START,"Energy Card",TX_END
+ text "Energy Card"
+ done
Text0021: ; 36460 (d:6460)
- db TX_START,"Deck",TX_END
+ text "Deck"
+ done
Text0022: ; 36466 (d:6466)
- db TX_START,"Attack",TX_END
+ text "Attack"
+ done
NoPokemonOnTheBenchText: ; 3646e (d:646e)
- db TX_START,"No Pok`mon on the Bench.",TX_END
+ text "No Pok`mon on the Bench."
+ done
UnableDueToSleepText: ; 36488 (d:6488)
- db TX_START,"Unable to due to Sleep.",TX_END
+ text "Unable to due to Sleep."
+ done
UnableDueToParalysisText: ; 364a1 (d:64a1)
- db TX_START,"Unable to due to Paralysis.",TX_END
+ text "Unable to due to Paralysis."
+ done
Received10DamageDueToPoisonText: ; 364be (d:64be)
- db TX_START,TX_RAM2," received\n"
- db "10 damage due to Poison.",TX_END
+ text TX_RAM2," received"
+ line "10 damage due to Poison."
+ done
Received20DamageDueToPoisonText: ; 364e3 (d:64e3)
- db TX_START,TX_RAM2," received\n"
- db "20 damage due to Double Poison.",TX_END
+ text TX_RAM2," received"
+ line "20 damage due to Double Poison."
+ done
IsStillAsleepText: ; 3650f (d:650f)
- db TX_START,TX_RAM2," is\n"
- db "still Asleep.",TX_END
+ text TX_RAM2," is"
+ line "still Asleep."
+ done
IsCuredOfSleepText: ; 36523 (d:6523)
- db TX_START,TX_RAM2," is\n"
- db "cured of Sleep.",TX_END
+ text TX_RAM2," is"
+ line "cured of Sleep."
+ done
IsCuredOfParalysisText: ; 36539 (d:6539)
- db TX_START,TX_RAM2," is\n"
- db "cured of Paralysis.",TX_END
+ text TX_RAM2," is"
+ line "cured of Paralysis."
+ done
Text002b: ; 36553 (d:6553)
- db TX_START,"Between Turns.",TX_END
+ text "Between Turns."
+ done
Text002c: ; 36563 (d:6563)
- db TX_START,"Unable to use it.",TX_END
+ text "Unable to use it."
+ done
Text002d: ; 36576 (d:6576)
- db TX_START,"No Energy cards.",TX_END
+ text "No Energy cards."
+ done
Text002e: ; 36588 (d:6588)
- db TX_START,"Is this OK?",TX_END
+ text "Is this OK?"
+ done
YesOrNoText: ; 36595 (d:6595)
- db TX_START,"Yes No",TX_END
+ text "Yes No"
+ done
DiscardName: ; 365a1 (d:65a1)
- db TX_START,"Discard",TX_END
+ text "Discard"
+ done
Text0031: ; 365aa (d:65aa)
- db TX_START,"Incomplete",TX_END
+ text "Incomplete"
+ done
Text0032: ; 365b6 (d:65b6)
- db TX_START,"Damage",TX_END
+ text "Damage"
+ done
Text0033: ; 365be (d:65be)
- db TX_START,"Used ",TX_RAM2,".",TX_END
+ text "Used ",TX_RAM2,"."
+ done
Text0034: ; 365c7 (d:65c7)
- db TX_START,"Received damage",TX_END
+ text "Received damage"
+ done
PokemonsAttackText: ; 365d8 (d:65d8)
- db TX_START,TX_RAM2,"'s\n"
- db TX_START,TX_RAM2,"!",TX_END
+ text TX_RAM2,"'s"
+ line ""
+ text TX_RAM2,"!"
+ done
Text0036: ; 365e1 (d:65e1)
- db TX_START,TX_RAM2," received\n"
- db TX_RAM3," damage due to Resistance!",TX_END
+ text TX_RAM2," received"
+ line TX_RAM3," damage due to Resistance!"
+ done
Text0037: ; 36609 (d:6609)
- db TX_START,TX_RAM2," received\n"
- db TX_RAM3," damage due to Weakness!",TX_END
+ text TX_RAM2," received"
+ line TX_RAM3," damage due to Weakness!"
+ done
Text0038: ; 3662f (d:662f)
- db TX_START,TX_RAM2," received\n"
- db TX_RAM3," damage due to Weakness!",TX_END
+ text TX_RAM2," received"
+ line TX_RAM3," damage due to Weakness!"
+ done
Text0039: ; 36655 (d:6655)
- db TX_START,TX_RAM2," did not\n"
- db "receive damage due to Resistance.",TX_END
+ text TX_RAM2," did not"
+ line "receive damage due to Resistance."
+ done
Text003a: ; 36682 (d:6682)
- db TX_START,TX_RAM2," took\n"
- db TX_RAM3," damage.",TX_END
+ text TX_RAM2," took"
+ line TX_RAM3," damage."
+ done
Text003b: ; 36694 (d:6694)
- db TX_START,TX_RAM2," did not\n"
- db "receive damage!",TX_END
+ text TX_RAM2," did not"
+ line "receive damage!"
+ done
NoSelectableAttackText: ; 366af (d:66af)
- db TX_START,"No selectable Attack",TX_END
+ text "No selectable Attack"
+ done
UnableToRetreatText: ; 366c5 (d:66c5)
- db TX_START,"Unable to Retreat.",TX_END
+ text "Unable to Retreat."
+ done
OnlyOneEnergyCardText: ; 366d9 (d:66d9)
- db TX_START,"You may only attach 1 Energy card\n"
- db "per turn.",TX_END
+ text "You may only attach 1 Energy card"
+ line "per turn."
+ done
Text003f: ; 36706 (d:6706)
- db TX_START,"Use this Pok`mon Power?",TX_END
+ text "Use this Pok`mon Power?"
+ done
Text0040: ; 3671f (d:671f)
- db TX_START,"You do not need to select the\n"
- db "Pok`mon Power to use it.",TX_END
+ text "You do not need to select the"
+ line "Pok`mon Power to use it."
+ done
DiscardDescription: ; 36757 (d:6757)
- db TX_START,"You may discard this card during\n"
- db "your turn.\n"
- db "It will be counted as a Knock Out\n"
- db "(This Discard is not\n"
- db "a Pok`mon Power)",TX_END
+ text "You may discard this card during"
+ line "your turn."
+ line "It will be counted as a Knock Out"
+ line "(This Discard is not"
+ line "a Pok`mon Power)"
+ done
Text0042: ; 367cc (d:67cc)
- db TX_START,TX_RAM1," will draw ",TX_RAM3," Prize(s).",TX_END
+ text TX_RAM1," will draw ",TX_RAM3," Prize(s)."
+ done
Text0043: ; 367e5 (d:67e5)
- db TX_START,TX_RAM1," drew ",TX_RAM3," Prize(s).",TX_END
+ text TX_RAM1," drew ",TX_RAM3," Prize(s)."
+ done
Text0044: ; 367f9 (d:67f9)
- db TX_START,TX_RAM1," placed\n"
- db "a ",TX_RAM2,".",TX_END
+ text TX_RAM1," placed"
+ line "a ",TX_RAM2,"."
+ done
Text0045: ; 36808 (d:6808)
- db TX_START,"Unable to select.",TX_END
+ text "Unable to select."
+ done
Text0046: ; 3681b (d:681b)
- db TX_START,"Grass\n"
- db "Fire\n"
- db "Water\n"
- db "Lightning\n"
- db "Fighting\n"
- db "Psychic",TX_END
+ text "Grass"
+ line "Fire"
+ line "Water"
+ line "Lightning"
+ line "Fighting"
+ line "Psychic"
+ done
Text0047: ; 36848 (d:6848)
- db TX_GRASS,TX_END
+ db TX_GRASS
+ done
Text0048: ; 3684b (d:684b)
- db TX_FIRE,TX_END
+ db TX_FIRE
+ done
Text0049: ; 3684e (d:684e)
- db TX_WATER,TX_END
+ db TX_WATER
+ done
Text004a: ; 36851 (d:6851)
- db TX_LIGHTNING,TX_END
+ db TX_LIGHTNING
+ done
Text004b: ; 36854 (d:6854)
- db TX_FIGHTING,TX_END
+ db TX_FIGHTING
+ done
Text004c: ; 36857 (d:6857)
- db TX_PSYCHIC,TX_END
+ db TX_PSYCHIC
+ done
Text004d: ; 3685a (d:685a)
- db TX_START,"Bench",TX_END
+ text "Bench"
+ done
Text004e: ; 36861 (d:6861)
- db TX_START,"Knock Out",TX_END
+ text "Knock Out"
+ done
DamageToSelfDueToConfusionText: ; 3686c (d:686c)
- db TX_START,"20 damage to Self due to Confusion.",TX_END
+ text "20 damage to Self due to Confusion."
+ done
Text0050: ; 36891 (d:6891)
- db TX_START,"Choose the Energy card\n"
- db "you wish to discard.",TX_END
+ text "Choose the Energy card"
+ line "you wish to discard."
+ done
Text0051: ; 368be (d:68be)
- db TX_START,"The Active Pok`mon was Knocked Out.\n"
- db "Please choose the next Pok`mon.",TX_END
+ text "The Active Pok`mon was Knocked Out."
+ line "Please choose the next Pok`mon."
+ done
Text0052: ; 36903 (d:6903)
- db TX_START,"Press START\n"
- db "When you are ready.",TX_END
+ text "Press START"
+ line "When you are ready."
+ done
Text0053: ; 36924 (d:6924)
- db TX_START,"You play first.",TX_END
+ text "You play first."
+ done
Text0054: ; 36935 (d:6935)
- db TX_START,"You play second.",TX_END
+ text "You play second."
+ done
TransmissionErrorText: ; 36947 (d:6947)
- db TX_START,"Transmission Error.\n"
- db "Start again from the beginning.",TX_END
+ text "Transmission Error."
+ line "Start again from the beginning."
+ done
Text0056: ; 3697c (d:697c)
- db TX_START,"Choose the card\n"
- db "you wish to examine.",TX_END
+ text "Choose the card"
+ line "you wish to examine."
+ done
Text0057: ; 369a2 (d:69a2)
- db TX_START,"Transmitting data...",TX_END
+ text "Transmitting data..."
+ done
Text0058: ; 369b8 (d:69b8)
- db TX_START,"Waiting...\n"
- db " Hand Examine",TX_END
+ text "Waiting..."
+ line " Hand Examine"
+ done
Text0059: ; 369dc (d:69dc)
- db TX_START,"Selecting Bench Pok`mon...\n"
- db " Hand Examine Back",TX_END
+ text "Selecting Bench Pok`mon..."
+ line " Hand Examine Back"
+ done
Text005a: ; 36a19 (d:6a19)
- db TX_START,TX_RAM2,"\n"
- db "Retreated to the Bench.",TX_END
+ text TX_RAM2,""
+ line "Retreated to the Bench."
+ done
Text005b: ; 36a34 (d:6a34)
- db TX_START,TX_RAM2,"'s\n"
- db "Retreat was unsuccessful.",TX_END
+ text TX_RAM2,"'s"
+ line "Retreat was unsuccessful."
+ done
Text005c: ; 36a53 (d:6a53)
- db TX_START,TX_RAM2," will use the\n"
- db "Pok`mon Power ",TX_RAM2,".",TX_END
+ text TX_RAM2," will use the"
+ line "Pok`mon Power ",TX_RAM2,"."
+ done
Text005d: ; 36a74 (d:6a74)
- db TX_START,"Finished the Turn\n"
- db "without Attacking.",TX_END
+ text "Finished the Turn"
+ line "without Attacking."
+ done
Text005e: ; 36a9a (d:6a9a)
- db TX_START,TX_RAM1,"'s Turn.",TX_END
+ text TX_RAM1,"'s Turn."
+ done
Text005f: ; 36aa5 (d:6aa5)
- db TX_START,"Attached ",TX_RAM2,"\n"
- db "to ",TX_RAM2,".",TX_END
+ text "Attached ",TX_RAM2,""
+ line "to ",TX_RAM2,"."
+ done
Text0060: ; 36ab7 (d:6ab7)
- db TX_START,TX_RAM2," evolved\n"
- db "into ",TX_RAM2,".",TX_END
+ text TX_RAM2," evolved"
+ line "into ",TX_RAM2,"."
+ done
Text0061: ; 36aca (d:6aca)
- db TX_START,"Placed ",TX_RAM2,"\n"
- db "on the Bench.",TX_END
+ text "Placed ",TX_RAM2,""
+ line "on the Bench."
+ done
Text0062: ; 36ae2 (d:6ae2)
- db TX_START,TX_RAM2,"\n"
- db "was placed in the Arena.",TX_END
+ text TX_RAM2,""
+ line "was placed in the Arena."
+ done
Text0063: ; 36afe (d:6afe)
- db TX_START,TX_RAM1," shuffles the Deck.",TX_END
+ text TX_RAM1," shuffles the Deck."
+ done
Text0064: ; 36b14 (d:6b14)
- db TX_START,"Since this is just practice,\n"
- db "Do not shuffle the Deck.",TX_END
+ text "Since this is just practice,"
+ line "Do not shuffle the Deck."
+ done
Text0065: ; 36b4b (d:6b4b)
- db TX_START,"Each player will\n"
- db "shuffle the opponent's Deck.",TX_END
+ text "Each player will"
+ line "shuffle the opponent's Deck."
+ done
Text0066: ; 36b7a (d:6b7a)
- db TX_START,"Each player will draw 7 cards.",TX_END
+ text "Each player will draw 7 cards."
+ done
Text0067: ; 36b9a (d:6b9a)
- db TX_START,TX_RAM1,"\n"
- db "drew 7 cards.",TX_END
+ text TX_RAM1,""
+ line "drew 7 cards."
+ done
Text0068: ; 36bab (d:6bab)
- db TX_START,TX_RAM1,"'s deck has ",TX_RAM3," cards.",TX_END
+ text TX_RAM1,"'s deck has ",TX_RAM3," cards."
+ done
Text0069: ; 36bc2 (d:6bc2)
- db TX_START,"Choose a Basic Pok`mon\n"
- db "to place in the Arena.",TX_END
+ text "Choose a Basic Pok`mon"
+ line "to place in the Arena."
+ done
Text006a: ; 36bf1 (d:6bf1)
- db TX_START,"There are no Basic Pok`mon\n"
- db "in ",TX_RAM1,"'s hand.",TX_END
+ text "There are no Basic Pok`mon"
+ line "in ",TX_RAM1,"'s hand."
+ done
Text006b: ; 36c1a (d:6c1a)
- db TX_START,"Neither player has any Basic\n"
- db "Pok`mon in his or her hand.",TX_END
+ text "Neither player has any Basic"
+ line "Pok`mon in his or her hand."
+ done
Text006c: ; 36c54 (d:6c54)
- db TX_START,"Return the cards to the Deck\n"
- db "and draw again.",TX_END
+ text "Return the cards to the Deck"
+ line "and draw again."
+ done
Text006d: ; 36c82 (d:6c82)
- db TX_START,"You may choose up to 5 Basic Pok`mon\n"
- db "to place on the Bench.",TX_END
+ text "You may choose up to 5 Basic Pok`mon"
+ line "to place on the Bench."
+ done
Text006e: ; 36cbf (d:6cbf)
- db TX_START,"Please choose an\n"
- db "Active Pok`mon.",TX_END
+ text "Please choose an"
+ line "Active Pok`mon."
+ done
Text006f: ; 36ce1 (d:6ce1)
- db TX_START,"Choose your\n"
- db "Bench Pok`mon.",TX_END
+ text "Choose your"
+ line "Bench Pok`mon."
+ done
Text0070: ; 36cfd (d:6cfd)
- db TX_START,"You drew ",TX_RAM2,".",TX_END
+ text "You drew ",TX_RAM2,"."
+ done
Text0071: ; 36d0a (d:6d0a)
- db TX_START,"You cannot select this card.",TX_END
+ text "You cannot select this card."
+ done
Text0072: ; 36d28 (d:6d28)
- db TX_START,"Placing the Prizes...",TX_END
+ text "Placing the Prizes..."
+ done
Text0073: ; 36d3f (d:6d3f)
- db TX_START,"Please place\n"
- db TX_RAM3," Prizes.",TX_END
+ text "Please place"
+ line TX_RAM3," Prizes."
+ done
Text0074: ; 36d57 (d:6d57)
- db TX_START,"If heads,\n"
- db TX_START,TX_RAM2," plays first.",TX_END
+ text "If heads,"
+ line ""
+ text TX_RAM2," plays first."
+ done
Text0075: ; 36d72 (d:6d72)
- db TX_START,"A coin will be tossed\n"
- db "to decide who plays first.",TX_END
+ text "A coin will be tossed"
+ line "to decide who plays first."
+ done
DecisionText: ; 36da4 (d:6da4)
- db TX_START,"Decision...",TX_END
+ text "Decision..."
+ done
DuelWasDrawText: ; 36db1 (d:6db1)
- db TX_START,"The Duel with ",TX_RAM1,"\n"
- db "was a Draw!",TX_END
+ text "The Duel with ",TX_RAM1,""
+ line "was a Draw!"
+ done
WonDuelText: ; 36dce (d:6dce)
- db TX_START,"You won the Duel with ",TX_RAM1,"!",TX_END
+ text "You won the Duel with ",TX_RAM1,"!"
+ done
LostDuelText: ; 36de8 (d:6de8)
- db TX_START,"You lost the Duel\n"
- db "with ",TX_RAM1,"...",TX_END
+ text "You lost the Duel"
+ line "with ",TX_RAM1,"..."
+ done
StartSuddenDeathMatchText: ; 36e05 (d:6e05)
- db TX_START,"Start a Sudden-Death\n"
- db "Match for 1 Prize!",TX_END
+ text "Start a Sudden-Death"
+ line "Match for 1 Prize!"
+ done
Text007b: ; 36e2e (d:6e2e)
- db TX_START,"Prizes Left\n"
- db "Active Pok`mon\n"
- db "Cards in Deck",TX_END
+ text "Prizes Left"
+ line "Active Pok`mon"
+ line "Cards in Deck"
+ done
Text007c: ; 36e58 (d:6e58)
- db TX_START,"None",TX_END
+ text "None"
+ done
Text007d: ; 36e5e (d:6e5e)
- db TX_START,"Yes",TX_END
+ text "Yes"
+ done
Text007e: ; 36e63 (d:6e63)
- db TX_START,"Cards",TX_END
+ text "Cards"
+ done
Text007f: ; 36e6a (d:6e6a)
- db TX_START,TX_RAM1," took\n"
- db "all the Prizes!",TX_END
+ text TX_RAM1," took"
+ line "all the Prizes!"
+ done
Text0080: ; 36e82 (d:6e82)
- db TX_START,"There are no Pok`mon\n"
- db "in ",TX_RAM1,"'s Play Area!",TX_END
+ text "There are no Pok`mon"
+ line "in ",TX_RAM1,"'s Play Area!"
+ done
WasKnockedOutText: ; 36eaa (d:6eaa)
- db TX_START,TX_RAM2," was\n"
- db "Knocked Out!",TX_END
+ text TX_RAM2," was"
+ line "Knocked Out!"
+ done
Text0082: ; 36ebe (d:6ebe)
- db TX_START,TX_RAM2," have\n"
- db "Pok`mon Power.",TX_END
+ text TX_RAM2," have"
+ line "Pok`mon Power."
+ done
Text0083: ; 36ed5 (d:6ed5)
- db TX_START,"Unable to us Pok`mon Power due to\n"
- db "the effect of Toxic Gas.",TX_END
+ text "Unable to us Pok`mon Power due to"
+ line "the effect of Toxic Gas."
+ done
Text0084: ; 36f11 (d:6f11)
- db TX_START," Play\n"
- db " Check",TX_END
+ text " Play"
+ line " Check"
+ done
Text0085: ; 36f21 (d:6f21)
- db TX_START," Play\n"
- db " Check",TX_END
+ text " Play"
+ line " Check"
+ done
Text0086: ; 36f31 (d:6f31)
- db TX_START," Select\n"
- db " Check",TX_END
+ text " Select"
+ line " Check"
+ done
Text0087: ; 36f43 (d:6f43)
- db $03,$31,$0c,$03,$42,$0c,TX_END
+ db $03,$31,$0c,$03,$42,$0c
+ done
DuelistIsThinkingText: ; 36f4a (d:6f4a)
- db TX_START,TX_RAM1," is thinking.",TX_END
+ text TX_RAM1," is thinking."
+ done
Text0089: ; 36f5a (d:6f5a)
- db $70,$70,$70,$70,$70,$70,$70,$70,$70,$70,TX_END
+ db $70,$70,$70,$70,$70,$70,$70,$70,$70,$70
+ done
Text008a: ; 36f65 (d:6f65)
- db TX_START,"Select a computer opponent.",TX_END
+ text "Select a computer opponent."
+ done
Text008b: ; 36f82 (d:6f82)
- db TX_START,"Number of Prizes",TX_END
+ text "Number of Prizes"
+ done
Text008c: ; 36f94 (d:6f94)
- db TX_START,"Random 1",TX_END
+ text "Random 1"
+ done
Text008d: ; 36f9e (d:6f9e)
- db TX_START,"Random 2",TX_END
+ text "Random 2"
+ done
Text008e: ; 36fa8 (d:6fa8)
- db TX_START,"Random 3",TX_END
+ text "Random 3"
+ done
Text008f: ; 36fb2 (d:6fb2)
- db TX_START,"Random 4",TX_END
+ text "Random 4"
+ done
Text0090: ; 36fbc (d:6fbc)
- db TX_START,"Training COM",TX_END
+ text "Training COM"
+ done
Text0091: ; 36fca (d:6fca)
- db TX_START,"Player 1",TX_END
+ text "Player 1"
+ done
Player2: ; 36fd4 (d:6fd4)
- db TX_START,"Player 2",TX_END
+ text "Player 2"
+ done
Text0093: ; 36fde (d:6fde)
- db TX_START,"Left to Right",TX_END
+ text "Left to Right"
+ done
Text0094: ; 36fed (d:6fed)
- db TX_START,"Right to Left",TX_END
+ text "Right to Left"
+ done
Text0095: ; 36ffc (d:6ffc)
- db TX_START,"START: Change\n"
- db " A: Execute\n"
- db " B: End",TX_END
+ text "START: Change"
+ line " A: Execute"
+ line " B: End"
+ done
Text0096: ; 37025 (d:7025)
- db TX_START,"Other\n"
- db "Poison\n"
- db "Sleep\n"
- db "Payalysis\n"
- db "Confusion\n"
- db "Double Poison\n"
- db "Clear\n"
- db "Foul Gas\n"
- db "Opponent's Hand\n"
- db "Discard from Hand\n"
- db "Select Deck\n"
- db "Select Discard\n"
- db "From Hand to Deck\n"
- db "Take Prize\n"
- db "Change Player\n"
- db "Shuffle Deck\n"
- db "Discard Bench\n"
- db "Change Card",TX_END
+ text "Other"
+ line "Poison"
+ line "Sleep"
+ line "Payalysis"
+ line "Confusion"
+ line "Double Poison"
+ line "Clear"
+ line "Foul Gas"
+ line "Opponent's Hand"
+ line "Discard from Hand"
+ line "Select Deck"
+ line "Select Discard"
+ line "From Hand to Deck"
+ line "Take Prize"
+ line "Change Player"
+ line "Shuffle Deck"
+ line "Discard Bench"
+ line "Change Card"
+ done
Text0097: ; 370f9 (d:70f9)
- db TX_START,"WIN GAME\n"
- db "LOSE GAME\n"
- db "DRAW GAME\n"
- db "CHANGE CASE\n"
- db "PAUSE MODE\n"
- db "CHANGE COMPUTER OPPONENT\n"
- db "CHANGE PLAYER 2 TO COM\n"
- db "FLIP 20\n"
- db "SAVE NOW\n"
- db "LOAD FILE",TX_END
+ text "WIN GAME"
+ line "LOSE GAME"
+ line "DRAW GAME"
+ line "CHANGE CASE"
+ line "PAUSE MODE"
+ line "CHANGE COMPUTER OPPONENT"
+ line "CHANGE PLAYER 2 TO COM"
+ line "FLIP 20"
+ line "SAVE NOW"
+ line "LOAD FILE"
+ done
Text0098: ; 37179 (d:7179)
- db TX_START,"Save File",TX_END
+ text "Save File"
+ done
Text0099: ; 37184 (d:7184)
- db TX_START,"Load File\n"
- db " ",$07,$60,$06," Last Saved File",TX_END
+ text "Load File"
+ line " ",$07,$60,$06," Last Saved File"
+ done
Text009a: ; 371a6 (d:71a6)
- db TX_START,"Pause Mode is ON\n"
- db "Press SELECT to Pause",TX_END
+ text "Pause Mode is ON"
+ line "Press SELECT to Pause"
+ done
Text009b: ; 371ce (d:71ce)
- db TX_START,"Pause Mode is OFF",TX_END
+ text "Pause Mode is OFF"
+ done
Text009c: ; 371e1 (d:71e1)
- db TX_START,"Computer Mode is OFF",TX_END
+ text "Computer Mode is OFF"
+ done
Text009d: ; 371f7 (d:71f7)
- db TX_START,"Computer Mode is ON",TX_END
+ text "Computer Mode is ON"
+ done
Text009e: ; 3720c (d:720c)
- db TX_START,TX_GRASS," Pok`mon\n"
- db TX_START,TX_FIRE," Pok`mon\n"
- db TX_START,TX_WATER," Pok`mon\n"
- db TX_START,TX_LIGHTNING," Pok`mon\n"
- db TX_START,TX_FIGHTING," Pok`mon\n"
- db TX_START,TX_PSYCHIC," Pok`mon\n"
- db TX_START,TX_COLORLESS," Pok`mon\n"
- db "Trainer Card\n"
- db "Energy Card",TX_END
+ text TX_GRASS," Pok`mon"
+ line ""
+ text TX_FIRE," Pok`mon"
+ line ""
+ text TX_WATER," Pok`mon"
+ line ""
+ text TX_LIGHTNING," Pok`mon"
+ line ""
+ text TX_FIGHTING," Pok`mon"
+ line ""
+ text TX_PSYCHIC," Pok`mon"
+ line ""
+ text TX_COLORLESS," Pok`mon"
+ line "Trainer Card"
+ line "Energy Card"
+ done
Text009f: ; 37279 (d:7279)
- db TX_START,"Card List",TX_END
+ text "Card List"
+ done
Text00a0: ; 37284 (d:7284)
- db TX_START,"Test Coin Flip",TX_END
+ text "Test Coin Flip"
+ done
Text00a1: ; 37294 (d:7294)
- db TX_START,"End without Prizes?",TX_END
+ text "End without Prizes?"
+ done
ResetBackUpRamText: ; 372a9 (d:72a9)
- db TX_START,"Reset Back Up RAM?",TX_END
+ text "Reset Back Up RAM?"
+ done
Text00a3: ; 372bd (d:72bd)
- db TX_START,"Your Data was destroyed\n"
- db "somehow.\n\n"
- db "The game cannot be continued\n"
- db "in its present condition.\n"
- db "Please restart the game after\n"
- db "the Data is reset.",TX_END
+ text "Your Data was destroyed"
+ line "somehow."
+ line ""
+ line "The game cannot be continued"
+ line "in its present condition."
+ line "Please restart the game after"
+ line "the Data is reset."
+ done
NoCardsInHandText: ; 37348 (d:7348)
- db TX_START,"No cards in hand.",TX_END
+ text "No cards in hand."
+ done
Text00a5: ; 3735b (d:735b)
- db TX_START,"The Discard Pile has no cards.",TX_END
+ text "The Discard Pile has no cards."
+ done
Text00a6: ; 3737b (d:737b)
- db TX_START,"Player's Discard Pile",TX_END
+ text "Player's Discard Pile"
+ done
Text00a7: ; 37392 (d:7392)
- db TX_START,TX_RAM1,"'s Hand",TX_END
+ text TX_RAM1,"'s Hand"
+ done
Text00a8: ; 3739c (d:739c)
- db TX_START,TX_RAM1,"'s Play Area",TX_END
+ text TX_RAM1,"'s Play Area"
+ done
Text00a9: ; 373ab (d:73ab)
- db TX_START,TX_RAM1,"'s Deck",TX_END
+ text TX_RAM1,"'s Deck"
+ done
Text00aa: ; 373b5 (d:73b5)
- db TX_START,"Please select\n"
- db "Hand.",TX_END
+ text "Please select"
+ line "Hand."
+ done
Text00ab: ; 373ca (d:73ca)
- db TX_START,"Please select\n"
- db "Card.",TX_END
+ text "Please select"
+ line "Card."
+ done
Text00ac: ; 373df (d:73df)
- db TX_START,"There are no Pok`mon\n"
- db "with Damage Counters.",TX_END
+ text "There are no Pok`mon"
+ line "with Damage Counters."
+ done
Text00ad: ; 3740b (d:740b)
- db TX_START,"There are no Damage Counters.",TX_END
+ text "There are no Damage Counters."
+ done
Text00ae: ; 3742a (d:742a)
- db TX_START,"No Energy cards are attached to\n"
- db "the opponent's Active Pok`mon.",TX_END
+ text "No Energy cards are attached to"
+ line "the opponent's Active Pok`mon."
+ done
Text00af: ; 3746a (d:746a)
- db TX_START,"There are no Energy cards\n"
- db "in the the Discard Pile.",TX_END
+ text "There are no Energy cards"
+ line "in the the Discard Pile."
+ done
Text00b0: ; 3749e (d:749e)
- db TX_START,"There are no Basic Energy cards\n"
- db "in the Discard Pile.",TX_END
+ text "There are no Basic Energy cards"
+ line "in the Discard Pile."
+ done
Text00b1: ; 374d4 (d:74d4)
- db TX_START,"There are no cards left in the Deck.",TX_END
+ text "There are no cards left in the Deck."
+ done
Text00b2: ; 374fa (d:74fa)
- db TX_START,"There is no space on the Bench.",TX_END
+ text "There is no space on the Bench."
+ done
Text00b3: ; 3751b (d:751b)
- db TX_START,"There are no Pok`mon capable\n"
- db "of Evolving.",TX_END
+ text "There are no Pok`mon capable"
+ line "of Evolving."
+ done
Text00b4: ; 37546 (d:7546)
- db TX_START,"You cannot Evolve a Pok`mon\n"
- db "in the same turn it was placed.",TX_END
+ text "You cannot Evolve a Pok`mon"
+ line "in the same turn it was placed."
+ done
Text00b5: ; 37583 (d:7583)
- db TX_START,"Not affected by Poison,\n"
- db "Sleep, Paralysis, or Confusion.",TX_END
+ text "Not affected by Poison,"
+ line "Sleep, Paralysis, or Confusion."
+ done
Text00b6: ; 375bc (d:75bc)
- db TX_START,"Not enough cards in Hand.",TX_END
+ text "Not enough cards in Hand."
+ done
Text00b7: ; 375d7 (d:75d7)
- db TX_START,"No Pok`mon on the Bench.",TX_END
+ text "No Pok`mon on the Bench."
+ done
Text00b8: ; 375f1 (d:75f1)
- db TX_START,"There are no Pok`mon\n"
- db "in the Discard Pile.",TX_END
+ text "There are no Pok`mon"
+ line "in the Discard Pile."
+ done
Text00b9: ; 3761c (d:761c)
- db TX_START,"Conditions for evolving to\n"
- db "Stage 2 not fulfilled.",TX_END
+ text "Conditions for evolving to"
+ line "Stage 2 not fulfilled."
+ done
Text00ba: ; 3764f (d:764f)
- db TX_START,"There are no cards in Hand\n"
- db "that you can change.",TX_END
+ text "There are no cards in Hand"
+ line "that you can change."
+ done
Text00bb: ; 37680 (d:7680)
- db TX_START,"There are no cards in the\n"
- db "Discard Pile.",TX_END
+ text "There are no cards in the"
+ line "Discard Pile."
+ done
Text00bc: ; 376a9 (d:76a9)
- db TX_START,"There are no Stage 1 Pok`mon\n"
- db "in the Play Area.",TX_END
+ text "There are no Stage 1 Pok`mon"
+ line "in the Play Area."
+ done
Text00bd: ; 376d9 (d:76d9)
- db TX_START,"No Energy cards are attached to\n"
- db "Pok`mon in your Play Area.",TX_END
+ text "No Energy cards are attached to"
+ line "Pok`mon in your Play Area."
+ done
Text00be: ; 37715 (d:7715)
- db TX_START,"No Energy cards attached to Pok`mon\n"
- db "in your opponent's Play Area.",TX_END
+ text "No Energy cards attached to Pok`mon"
+ line "in your opponent's Play Area."
+ done
Text00bf: ; 37758 (d:7758)
- db TX_START,TX_RAM3," Energy cards\n"
- db "are required to Retreat.",TX_END
+ text TX_RAM3," Energy cards"
+ line "are required to Retreat."
+ done
NotEnoughEnergyCardsText: ; 37781 (d:7781)
- db TX_START,"Not enough Energy cards.",TX_END
+ text "Not enough Energy cards."
+ done
Text00c1: ; 3779b (d:779b)
- db TX_START,"Not enough Fire Energy.",TX_END
+ text "Not enough Fire Energy."
+ done
Text00c2: ; 377b4 (d:77b4)
- db TX_START,"Not enough Psychic Energy.",TX_END
+ text "Not enough Psychic Energy."
+ done
Text00c3: ; 377d0 (d:77d0)
- db TX_START,"Not enough Water Energy.",TX_END
+ text "Not enough Water Energy."
+ done
Text00c4: ; 377ea (d:77ea)
- db TX_START,"There are no Trainer Cards\n"
- db "in the Discard Pile.",TX_END
+ text "There are no Trainer Cards"
+ line "in the Discard Pile."
+ done
Text00c5: ; 3781b (d:781b)
- db TX_START,"No Attacks may be choosen.",TX_END
+ text "No Attacks may be choosen."
+ done
Text00c6: ; 37837 (d:7837)
- db TX_START,"You did not receive an Attack\n"
- db "to Mirror Move.",TX_END
+ text "You did not receive an Attack"
+ line "to Mirror Move."
+ done
Text00c7: ; 37866 (d:7866)
- db TX_START,"This attack cannot\n"
- db "be used twice.",TX_END
+ text "This attack cannot"
+ line "be used twice."
+ done
Text00c8: ; 37889 (d:7889)
- db TX_START,"No Weakness.",TX_END
+ text "No Weakness."
+ done
Text00c9: ; 37897 (d:7897)
- db TX_START,"No Resistance.",TX_END
+ text "No Resistance."
+ done
Text00ca: ; 378a7 (d:78a7)
- db TX_START,"Only once per turn.",TX_END
+ text "Only once per turn."
+ done
CannotUseDueToStatusText: ; 378bc (d:78bc)
- db TX_START,"Cannot use due to Sleep, Paralysis,\n"
- db "or Confusion.",TX_END
+ text "Cannot use due to Sleep, Paralysis,"
+ line "or Confusion."
+ done
Text00cc: ; 378ef (d:78ef)
- db TX_START,"Cannot be used in the turn in\n"
- db "which it was played.",TX_END
+ text "Cannot be used in the turn in"
+ line "which it was played."
+ done
Text00cd: ; 37923 (d:7923)
- db TX_START,"There is no Energy card attached.",TX_END
+ text "There is no Energy card attached."
+ done
Text00ce: ; 37946 (d:7946)
- db TX_START,"No Grass Energy.",TX_END
+ text "No Grass Energy."
+ done
Text00cf: ; 37958 (d:7958)
- db TX_START,"Cannot use since there's only\n"
- db "1 Pok`mon.",TX_END
+ text "Cannot use since there's only"
+ line "1 Pok`mon."
+ done
Text00d0: ; 37982 (d:7982)
- db TX_START,"Cannot use because\n"
- db "it will be Knocked Out.",TX_END
+ text "Cannot use because"
+ line "it will be Knocked Out."
+ done
Text00d1: ; 379ae (d:79ae)
- db TX_START,"Can only be used on the Bench.",TX_END
+ text "Can only be used on the Bench."
+ done
Text00d2: ; 379ce (d:79ce)
- db TX_START,"There are no Pok`mon on the Bench.",TX_END
+ text "There are no Pok`mon on the Bench."
+ done
Text00d3: ; 379f2 (d:79f2)
- db TX_START,"Opponent is not Asleep",TX_END
+ text "Opponent is not Asleep"
+ done
UnableDueToToxicGasText: ; 37a0a (d:7a0a)
- db TX_START,"Unable to use due to the\n"
- db "effects of Toxic Gas.",TX_END
+ text "Unable to use due to the"
+ line "effects of Toxic Gas."
+ done
Text00d5: ; 37a3a (d:7a3a)
- db TX_START,"A Transmission Error occured.",TX_END
+ text "A Transmission Error occured."
+ done
Text00d6: ; 37a59 (d:7a59)
- db TX_START,"Back Up is broken.",TX_END
+ text "Back Up is broken."
+ done
Text00d7: ; 37a6d (d:7a6d)
- db TX_START,"Error No. 02:\n"
- db "Printer is not connected.",TX_END
+ text "Error No. 02:"
+ line "Printer is not connected."
+ done
Text00d8: ; 37a96 (d:7a96)
- db TX_START,"Error No. 01:\n"
- db "Batteries have lost their charge.",TX_END
+ text "Error No. 01:"
+ line "Batteries have lost their charge."
+ done
Text00d9: ; 37ac7 (d:7ac7)
- db TX_START,"Error No. 03:\n"
- db "Printer paper is jammed.",TX_END
+ text "Error No. 03:"
+ line "Printer paper is jammed."
+ done
Text00da: ; 37aef (d:7aef)
- db TX_START,"Error No. 02:\n"
- db "Check cable or printer switch.",TX_END
+ text "Error No. 02:"
+ line "Check cable or printer switch."
+ done
Text00db: ; 37b1d (d:7b1d)
- db TX_START,"Error No. 04:\n"
- db "Printer Packet Error.",TX_END
+ text "Error No. 04:"
+ line "Printer Packet Error."
+ done
Text00dc: ; 37b42 (d:7b42)
- db TX_START,"Printing was interrupted.",TX_END
+ text "Printing was interrupted."
+ done
Text00dd: ; 37b5d (d:7b5d)
- db TX_START,"Card Pop! cannot be played\n"
- db "with the Game Boy.\n"
- db "Please use a\n"
- db "Game Boy Color.",TX_END
+ text "Card Pop! cannot be played"
+ line "with the Game Boy."
+ line "Please use a"
+ line "Game Boy Color."
+ done
SandAttackCheckText: ; 37ba9 (d:7ba9)
- db TX_START,"Sand-attack check!\n"
- db "If Tails, Attack is unsuccessful.",TX_END
+ text "Sand-attack check!"
+ line "If Tails, Attack is unsuccessful."
+ done
SmokescreenCheckText: ; 37bdf (d:7bdf)
- db TX_START,"Smokescreen check!\n"
- db "If Tails, Attack is unsuccessful.",TX_END
+ text "Smokescreen check!"
+ line "If Tails, Attack is unsuccessful."
+ done
ParalysisCheckText: ; 37c15 (d:7c15)
- db TX_START,"Paralysis check!\n"
- db "If Heads, opponent is Paralyzed.",TX_END
+ text "Paralysis check!"
+ line "If Heads, opponent is Paralyzed."
+ done
SleepCheckText: ; 37c48 (d:7c48)
- db TX_START,"Sleep check!\n"
- db "If Heads, opponent becomes Asleep.",TX_END
+ text "Sleep check!"
+ line "If Heads, opponent becomes Asleep."
+ done
PoisonCheckText: ; 37c79 (d:7c79)
- db TX_START,"Poison check!\n"
- db "If Heads, opponent is Poisoned.",TX_END
+ text "Poison check!"
+ line "If Heads, opponent is Poisoned."
+ done
ConfusionCheckText: ; 37ca8 (d:7ca8)
- db TX_START,"Confusion check! If Heads,\n"
- db "opponent becomes Confused.",TX_END
+ text "Confusion check! If Heads,"
+ line "opponent becomes Confused."
+ done
VenomPowderCheckText: ; 37cdf (d:7cdf)
- db TX_START,"Venom Powder check! If Heads,\n"
- db "opponent is Poisoned & Confused.",TX_END
+ text "Venom Powder check! If Heads,"
+ line "opponent is Poisoned & Confused."
+ done
Text00e5: ; 37d1f (d:7d1f)
- db TX_START,"If Tails, your Pok`mon\n"
- db "becomes Confused.",TX_END
+ text "If Tails, your Pok`mon"
+ line "becomes Confused."
+ done
Text00e6: ; 37d4a (d:7d4a)
- db TX_START,"Damage check!\n"
- db "If Tails, no damage!!!",TX_END
+ text "Damage check!"
+ line "If Tails, no damage!!!"
+ done
Text00e7: ; 37d70 (d:7d70)
- db TX_START,"If Heads,\n"
- db "Draw 1 card from Deck!",TX_END
+ text "If Heads,"
+ line "Draw 1 card from Deck!"
+ done
Text00e8: ; 37d92 (d:7d92)
- db TX_START,"Flip until Tails appears.\n"
- db "10 damage for each Heads!!!",TX_END
+ text "Flip until Tails appears."
+ line "10 damage for each Heads!!!"
+ done
Text00e9: ; 37dc9 (d:7dc9)
- db TX_START,"If Heads, + 10 damage!\n"
- db "If Tails, +10 damage to yourself!",TX_END
+ text "If Heads, + 10 damage!"
+ line "If Tails, +10 damage to yourself!"
+ done
Text00ea: ; 37e03 (d:7e03)
- db TX_START,"10 damage to opponent's Bench if\n"
- db "Heads, damage to yours if Tails.",TX_END
+ text "10 damage to opponent's Bench if"
+ line "Heads, damage to yours if Tails."
+ done
Text00eb: ; 37e46 (d:7e46)
- db TX_START,"If Heads, change opponent's\n"
- db "Active Pok`mon.",TX_END
+ text "If Heads, change opponent's"
+ line "Active Pok`mon."
+ done
Text00ec: ; 37e73 (d:7e73)
- db TX_START,"If Heads,\n"
- db "Heal is successful.",TX_END
+ text "If Heads,"
+ line "Heal is successful."
+ done
Text00ed: ; 37e92 (d:7e92)
- db TX_START,"If Tails, ",TX_RAM3," damage\n"
- db "to yourself, too.",TX_END
+ text "If Tails, ",TX_RAM3," damage"
+ line "to yourself, too."
+ done
Text00ee: ; 37eb8 (d:7eb8)
- db TX_START,"Success check!!!\n"
- db "If Heads, Attack is successful!",TX_END
+ text "Success check!!!"
+ line "If Heads, Attack is successful!"
+ done
Text00ef: ; 37eea (d:7eea)
- db TX_START,"Trainer card success check!\n"
- db "If Heads, you're successful!",TX_END
+ text "Trainer card success check!"
+ line "If Heads, you're successful!"
+ done
Text00f0: ; 37f24 (d:7f24)
- db TX_START,"Card check!\n"
- db "If Heads, 8 cards! If Tails, 1 card!",TX_END
+ text "Card check!"
+ line "If Heads, 8 cards! If Tails, 1 card!"
+ done
Text00f1: ; 37f56 (d:7f56)
- db TX_START,"If Heads, you will not receive\n"
- db "damage during opponent's next turn!",TX_END
+ text "If Heads, you will not receive"
+ line "damage during opponent's next turn!"
+ done
Text00f2: ; 37f9a (d:7f9a)
- db TX_START,"Damage check",TX_END
+ text "Damage check"
+ done
Text00f3: ; 37fa8 (d:7fa8)
- db TX_START,"Damage check!\n"
- db "If Heads, +",TX_RAM3," damage!!",TX_END
+ text "Damage check!"
+ line "If Heads, +",TX_RAM3," damage!!"
+ done
Text00f4: ; 37fcd (d:7fcd)
- db TX_START,"Damage check!\n"
- db "If Heads, x ",TX_RAM3," damage!!",TX_END
+ text "Damage check!"
+ line "If Heads, x ",TX_RAM3," damage!!"
+ done
diff --git a/src/text/text2.asm b/src/text/text2.asm
index 4c8d86f..fce9e7e 100644
--- a/src/text/text2.asm
+++ b/src/text/text2.asm
@@ -1,1466 +1,1847 @@
Text00f5: ; 38000 (e:4000)
- db TX_START,"Acid check! If Heads,\n"
- db "unable to Retreat during next turn.",TX_END
+ text "Acid check! If Heads,"
+ line "unable to Retreat during next turn."
+ done
Text00f6: ; 3803b (e:403b)
- db TX_START,"Transparency check! If Heads,\n"
- db "do not receive opponent's Attack!",TX_END
+ text "Transparency check! If Heads,"
+ line "do not receive opponent's Attack!"
+ done
Text00f7: ; 3807c (e:407c)
- db TX_START,"Confusion check,\n"
- db "If Tails, damage to yourself!",TX_END
+ text "Confusion check,"
+ line "If Tails, damage to yourself!"
+ done
Text00f8: ; 380ac (e:40ac)
- db TX_START,"Confusion check!\n"
- db "If Tails, unable to Retreat.",TX_END
+ text "Confusion check!"
+ line "If Tails, unable to Retreat."
+ done
Text00f9: ; 380db (e:40db)
- db TX_START,TX_RAM2,"'s Sleep check.",TX_END
+ text TX_RAM2,"'s Sleep check."
+ done
Text00fa: ; 380ed (e:40ed)
- db TX_START,"Opponent is Poisoned if Heads,\n"
- db "and Confused if Tails.",TX_END
+ text "Opponent is Poisoned if Heads,"
+ line "and Confused if Tails."
+ done
Text00fb: ; 38124 (e:4124)
- db TX_START,"If Heads, do not receive damage\n"
- db "or effect of opponent's next Attack!",TX_END
+ text "If Heads, do not receive damage"
+ line "or effect of opponent's next Attack!"
+ done
Text00fc: ; 3816a (e:416a)
- db TX_START,"If Heads, opponent cannot Attack\n"
- db "next turn!",TX_END
+ text "If Heads, opponent cannot Attack"
+ line "next turn!"
+ done
AttackUnsuccessfulText: ; 38197 (e:4197)
- db TX_START,"Attack unsuccessful.",TX_END
+ text "Attack unsuccessful."
+ done
UnableToRetreatDueToAcidText: ; 381ad (e:41ad)
- db TX_START,"Unable to Retreat due to\n"
- db "the effects of Acid.",TX_END
+ text "Unable to Retreat due to"
+ line "the effects of Acid."
+ done
UnableToUseTrainerDueToHeadacheText: ; 381dc (e:41dc)
- db TX_START,"Unable to use a Trainer card\n"
- db "due to the effects of Headache.",TX_END
+ text "Unable to use a Trainer card"
+ line "due to the effects of Headache."
+ done
UnableToAttackDueToTailWagText: ; 3821a (e:421a)
- db TX_START,"Unable to Attack due to\n"
- db "the effects of Tail wag.",TX_END
+ text "Unable to Attack due to"
+ line "the effects of Tail wag."
+ done
UnableToAttackDueToLeerText: ; 3824c (e:424c)
- db TX_START,"Unable to Attack due to\n"
- db "the effects of Leer.",TX_END
+ text "Unable to Attack due to"
+ line "the effects of Leer."
+ done
UnableToAttackDueToBoneAttackText: ; 3827a (e:427a)
- db TX_START,"Unable to Attack due to\n"
- db "the effects of Bone attack.",TX_END
+ text "Unable to Attack due to"
+ line "the effects of Bone attack."
+ done
UnableToUseAttackDueToAmnesiaText: ; 382af (e:42af)
- db TX_START,"Unable to use this Attack\n"
- db "due to the effects of Amnesia.",TX_END
+ text "Unable to use this Attack"
+ line "due to the effects of Amnesia."
+ done
KnockedOutDueToDestinyBondText: ; 382e9 (e:42e9)
- db TX_START,TX_RAM2," was Knocked Out\n"
- db "due to the effects of Destiny Bond.",TX_END
+ text TX_RAM2," was Knocked Out"
+ line "due to the effects of Destiny Bond."
+ done
ReceivesDamageDueToStrikesBackText: ; 38320 (e:4320)
- db TX_START,TX_RAM2," receives ",TX_RAM3," damage\n"
- db "due to the effects of Strikes Back.",TX_END
+ text TX_RAM2," receives ",TX_RAM3," damage"
+ line "due to the effects of Strikes Back."
+ done
UnableToEvolveDueToPrehistoricPowerText: ; 38359 (e:4359)
- db TX_START,"Unable to evolve due to the\n"
- db "effects of Prehistoric Power.",TX_END
+ text "Unable to evolve due to the"
+ line "effects of Prehistoric Power."
+ done
NoDamageOrEffectDueToFlyText: ; 38394 (e:4394)
- db TX_START,"No damage or effect on next Attack\n"
- db "due to the effects of Fly.",TX_END
+ text "No damage or effect on next Attack"
+ line "due to the effects of Fly."
+ done
NoDamageOrEffectDueToBarrierText: ; 383d3 (e:43d3)
- db TX_START,"No damage or effect on next Attack\n"
- db "due to the effects of Barrier.",TX_END
+ text "No damage or effect on next Attack"
+ line "due to the effects of Barrier."
+ done
NoDamageOrEffectDueToAgilityText: ; 38416 (e:4416)
- db TX_START,"No damage or effect on next Attack\n"
- db "due to the effects of Agility.",TX_END
+ text "No damage or effect on next Attack"
+ line "due to the effects of Agility."
+ done
UnableToUseAttackDueToNShieldText: ; 38459 (e:4459)
- db TX_START,"Unable to use this Attack due to\n"
- db "the effects of N Shield.",TX_END
+ text "Unable to use this Attack due to"
+ line "the effects of N Shield."
+ done
NoDamageOrEffectDueToNShieldText: ; 38494 (e:4494)
- db TX_START,"No damage or effect on next Attack\n"
- db "due to the effects of N Shield.",TX_END
+ text "No damage or effect on next Attack"
+ line "due to the effects of N Shield."
+ done
NoDamageOrEffectDueToTransparencyText: ; 384d8 (e:44d8)
- db TX_START,"No damage or effect on next Attack\n"
- db "due to the effects of Transparency",TX_END
+ text "No damage or effect on next Attack"
+ line "due to the effects of Transparency"
+ done
Text010d: ; 3851f (e:451f)
- db TX_START,TX_RAM2,"\n"
- db "metamorphs to ",TX_RAM2,".",TX_END
+ text TX_RAM2,""
+ line "metamorphs to ",TX_RAM2,"."
+ done
SelectMonOnBenchToSwitchWithActiveText: ; 38533 (e:4533)
- db TX_START,"Select a Pok`mon on the Bench\n"
- db "to switch with the Active Pok`mon.",TX_END
+ text "Select a Pok`mon on the Bench"
+ line "to switch with the Active Pok`mon."
+ done
Text010f: ; 38575 (e:4575)
- db TX_START,"Select a Pok`mon to place\n"
- db "in the Arena.",TX_END
+ text "Select a Pok`mon to place"
+ line "in the Arena."
+ done
Text0110: ; 3859e (e:459e)
- db TX_START,TX_RAM1," is selecting a Pok`mon\n"
- db "to place in the Arena.",TX_END
+ text TX_RAM1," is selecting a Pok`mon"
+ line "to place in the Arena."
+ done
Text0111: ; 385cf (e:45cf)
- db TX_START,"Choose the Weakness you wish\n"
- db "to change with Conversion 1.",TX_END
+ text "Choose the Weakness you wish"
+ line "to change with Conversion 1."
+ done
Text0112: ; 3860a (e:460a)
- db TX_START,"Choose the Resistance you wish\n"
- db "to change with Conversion 2.",TX_END
+ text "Choose the Resistance you wish"
+ line "to change with Conversion 2."
+ done
Text0113: ; 38647 (e:4647)
- db TX_START,"Choose the Pok`mon whose color you\n"
- db "wish to change with Color change.",TX_END
+ text "Choose the Pok`mon whose color you"
+ line "wish to change with Color change."
+ done
Text0114: ; 3868d (e:468d)
- db TX_START,"Changed the Weakness of\n"
- db TX_START,TX_RAM2," to ",TX_RAM2,".",TX_END
+ text "Changed the Weakness of"
+ line ""
+ text TX_RAM2," to ",TX_RAM2,"."
+ done
Text0115: ; 386af (e:46af)
- db TX_START,"Changed the Resistance of\n"
- db TX_START,TX_RAM2," to ",TX_RAM2,".",TX_END
+ text "Changed the Resistance of"
+ line ""
+ text TX_RAM2," to ",TX_RAM2,"."
+ done
Text0116: ; 386d3 (e:46d3)
- db TX_START,"Changed the color of\n"
- db TX_START,TX_RAM2," to ",TX_RAM2,".",TX_END
+ text "Changed the color of"
+ line ""
+ text TX_RAM2," to ",TX_RAM2,"."
+ done
Text0117: ; 386f2 (e:46f2)
- db TX_START,"Draw 1 card from the Deck.",TX_END
+ text "Draw 1 card from the Deck."
+ done
Text0118: ; 3870e (e:470e)
- db TX_START,"Draw ",TX_RAM3," card(s) from the Deck.",TX_END
+ text "Draw ",TX_RAM3," card(s) from the Deck."
+ done
Text0119: ; 3872d (e:472d)
- db TX_START,"Cannot draw a card because\n"
- db "there are no cards in the Deck.",TX_END
+ text "Cannot draw a card because"
+ line "there are no cards in the Deck."
+ done
Text011a: ; 38769 (e:4769)
- db TX_START,"Choose a Pok`mon on the Bench\n"
- db "to give damage to.",TX_END
+ text "Choose a Pok`mon on the Bench"
+ line "to give damage to."
+ done
Text011b: ; 3879b (e:479b)
- db TX_START,"Choose up to 3 Pok`mon on the\n"
- db "Bench to give damage to.",TX_END
+ text "Choose up to 3 Pok`mon on the"
+ line "Bench to give damage to."
+ done
Text011c: ; 387d3 (e:47d3)
- db TX_START,"Choose 1 Basic Energy card\n"
- db "from the Deck.",TX_END
+ text "Choose 1 Basic Energy card"
+ line "from the Deck."
+ done
Text011d: ; 387fe (e:47fe)
- db TX_START,"Choose a Pok`mon to attach\n"
- db "the Energy card to.",TX_END
+ text "Choose a Pok`mon to attach"
+ line "the Energy card to."
+ done
Text011e: ; 3882e (e:482e)
- db TX_START,"Choose and Discard\n"
- db "1 Fire Energy card.",TX_END
+ text "Choose and Discard"
+ line "1 Fire Energy card."
+ done
Text011f: ; 38856 (e:4856)
- db TX_START,"Choose and Discard\n"
- db "2 Fire Energy cards.",TX_END
+ text "Choose and Discard"
+ line "2 Fire Energy cards."
+ done
Text0120: ; 3887f (e:487f)
- db TX_START,"Discard from opponent's Deck as many\n"
- db "Fire Energy cards as were discarded.",TX_END
+ text "Discard from opponent's Deck as many"
+ line "Fire Energy cards as were discarded."
+ done
Text0121: ; 388ca (e:48ca)
- db TX_START,"Choose and Discard\n"
- db "2 Energy cards.",TX_END
+ text "Choose and Discard"
+ line "2 Energy cards."
+ done
Text0122: ; 388ee (e:48ee)
- db TX_START,"Choose a Krabby\n"
- db "from the Deck.",TX_END
+ text "Choose a Krabby"
+ line "from the Deck."
+ done
Text0123: ; 3890e (e:490e)
- db TX_START,"Choose and Discard an Energy card\n"
- db "from the opponent's Active Pok`mon.",TX_END
+ text "Choose and Discard an Energy card"
+ line "from the opponent's Active Pok`mon."
+ done
Text0124: ; 38955 (e:4955)
- db TX_START,"Choose the Attack the opponent will\n"
- db "not be able to use on the next turn.",TX_END
+ text "Choose the Attack the opponent will"
+ line "not be able to use on the next turn."
+ done
Text0125: ; 3899f (e:499f)
- db TX_START,"Choose a Basic Fighting Pok`mon\n"
- db "from the Deck.",TX_END
+ text "Choose a Basic Fighting Pok`mon"
+ line "from the Deck."
+ done
Text0126: ; 389cf (e:49cf)
- db TX_START,"Choose an Oddish\n"
- db "from the Deck.",TX_END
+ text "Choose an Oddish"
+ line "from the Deck."
+ done
Text0127: ; 389f0 (e:49f0)
- db TX_START,"Choose an Oddish",TX_END
+ text "Choose an Oddish"
+ done
Text0128: ; 38a02 (e:4a02)
- db TX_START,"Choose a Krabby.",TX_END
+ text "Choose a Krabby."
+ done
Text0129: ; 38a14 (e:4a14)
- db TX_START,"Choose a Basic\n"
- db "Energy card.",TX_END
+ text "Choose a Basic"
+ line "Energy card."
+ done
Text012a: ; 38a31 (e:4a31)
- db TX_START,"Choose a Nidoran% or a\n"
- db "Nidoran$ from the Deck.",TX_END
+ text "Choose a Nidoran% or a"
+ line "Nidoran$ from the Deck."
+ done
Text012b: ; 38a61 (e:4a61)
- db TX_START,"Choose a Nidoran%\n"
- db "or a Nidoran$.",TX_END
+ text "Choose a Nidoran%"
+ line "or a Nidoran$."
+ done
Text012c: ; 38a83 (e:4a83)
- db TX_START,"Choose a Basic\n"
- db "Fighting Pok`mon",TX_END
+ text "Choose a Basic"
+ line "Fighting Pok`mon"
+ done
Text012d: ; 38aa4 (e:4aa4)
- db TX_START,"Procedure for Energy Transfer:\n\n"
- db "1. Choose the Pok`mon to move Grass\n"
- db " Energy from. Press the A Button.\n\n"
- db "2. Choose the Pok`mon to move the\n"
- db " energy to and press the A Button.\n\n"
- db "3. Repeat steps 1 and 2.\n\n"
- db "4. Press the B Button to end.",TX_END
+ text "Procedure for Energy Transfer:\n"
+ line "1. Choose the Pok`mon to move Grass"
+ line " Energy from. Press the A Button.\n"
+ line "2. Choose the Pok`mon to move the"
+ line " energy to and press the A Button.\n"
+ line "3. Repeat steps 1 and 2.\n"
+ line "4. Press the B Button to end."
+ done
Text012e: ; 38b8f (e:4b8f)
- db TX_START,"Choose a Bellsprout\n"
- db "from the Deck.",TX_END
+ text "Choose a Bellsprout"
+ line "from the Deck."
+ done
Text012f: ; 38bb3 (e:4bb3)
- db TX_START,"Choose a Bellsprout.",TX_END
+ text "Choose a Bellsprout."
+ done
Text0130: ; 38bc9 (e:4bc9)
- db TX_START,"Choose a Pok`mon to remove\n"
- db "the Damage counter from.",TX_END
+ text "Choose a Pok`mon to remove"
+ line "the Damage counter from."
+ done
Text0131: ; 38bfe (e:4bfe)
- db TX_START,"Procedure for Curse:\n\n"
- db "1. Choose a Pok`mon to move the\n"
- db " Damage counter from and press\n"
- db " the A Button.\n\n"
- db "2. Choose a Pok`mon to move the\n"
- db " Damage counter to and press\n"
- db " the A Button.\n\n"
- db "3. Press the B Button to cancel.",TX_END
+ text "Procedure for Curse:\n"
+ line "1. Choose a Pok`mon to move the"
+ line " Damage counter from and press"
+ line " the A Button.\n"
+ line "2. Choose a Pok`mon to move the"
+ line " Damage counter to and press"
+ line " the A Button.\n"
+ line "3. Press the B Button to cancel."
+ done
Text0132: ; 38cda (e:4cda)
- db TX_START,"Choose 2 Energy cards from the\n"
- db "Discard Pileto attach to a Pok`mon.",TX_END
+ text "Choose 2 Energy cards from the"
+ line "Discard Pileto attach to a Pok`mon."
+ done
Text0133: ; 38d1e (e:4d1e)
- db TX_START,"Choose 2 Energy cards from the\n"
- db "Discard Pile for your Hand.",TX_END
+ text "Choose 2 Energy cards from the"
+ line "Discard Pile for your Hand."
+ done
Text0134: ; 38d5a (e:4d5a)
- db TX_START,"Choose an Energy\n"
- db "card.",TX_END
+ text "Choose an Energy"
+ line "card."
+ done
Text0135: ; 38d72 (e:4d72)
- db TX_START,"Procedure for Prophecy:\n\n"
- db "1. Choose either your Deck\n"
- db " or your opponent's Deck\n\n"
- db "2. Choose the cards you wish to\n"
- db " place on top and press the\n"
- db " A Button.\n\n"
- db "3. Select Yes after you choose\n"
- db " the 3 cards and their order.\n\n"
- db "4. Press the B Button to cancel.",TX_END
+ text "Procedure for Prophecy:\n"
+ line "1. Choose either your Deck"
+ line " or your opponent's Deck\n"
+ line "2. Choose the cards you wish to"
+ line " place on top and press the"
+ line " A Button.\n"
+ line "3. Select Yes after you choose"
+ line " the 3 cards and their order.\n"
+ line "4. Press the B Button to cancel."
+ done
Text0136: ; 38e70 (e:4e70)
- db TX_START,"Choose the order\n"
- db "of the cards.",TX_END
+ text "Choose the order"
+ line "of the cards."
+ done
Text0137: ; 38e90 (e:4e90)
- db TX_START,"Procedure for Damage Swap:\n\n"
- db "1. Choose a Pok`mon to move a\n"
- db " Damage counter from and press\n"
- db " the A Button.\n\n"
- db "2. Choose a Pok`mon to move the\n"
- db " Damage counter to and press\n"
- db " the A Button.\n\n"
- db "3. Repeat steps 1 and 2.\n\n"
- db "4. Press the B Button to end.\n\n"
- db "5. You cannot move the counter if\n"
- db " it will Knock Out the Pok`mon.",TX_END
+ text "Procedure for Damage Swap:\n"
+ line "1. Choose a Pok`mon to move a"
+ line " Damage counter from and press"
+ line " the A Button.\n"
+ line "2. Choose a Pok`mon to move the"
+ line " Damage counter to and press"
+ line " the A Button.\n"
+ line "3. Repeat steps 1 and 2.\n"
+ line "4. Press the B Button to end.\n"
+ line "5. You cannot move the counter if"
+ line " it will Knock Out the Pok`mon."
+ done
Text0138: ; 38fcc (e:4fcc)
- db TX_START,"Procedure for Devolution Beam.\n\n"
- db "1. Choose either a Pok`mon in your\n"
- db " Play Area or your opponent's\n"
- db " Play Area and press the A Button.\n\n"
- db "2. Choose the Pok`mon to Devolve\n"
- db " and press the A Button.\n\n"
- db "3. Press the B Button to cancel.",TX_END
+ text "Procedure for Devolution Beam.\n"
+ line "1. Choose either a Pok`mon in your"
+ line " Play Area or your opponent's"
+ line " Play Area and press the A Button.\n"
+ line "2. Choose the Pok`mon to Devolve"
+ line " and press the A Button.\n"
+ line "3. Press the B Button to cancel."
+ done
Text0139: ; 390b4 (e:50b4)
- db TX_START,"Procedure for Strange Behavior:\n\n"
- db "1. Choose the Pok`mon with the\n"
- db " Damage counters to move to\n"
- db " Slowbro and press the A Button.\n\n"
- db "2. Repeat step 1 as many times as\n"
- db " you wish to move the counters.\n\n"
- db "3. Press the B Button to end.\n\n"
- db "4. You cannot move the damage if\n"
- db " Slowbro will be Knocked Out.",TX_END
+ text "Procedure for Strange Behavior:\n"
+ line "1. Choose the Pok`mon with the"
+ line " Damage counters to move to"
+ line " Slowbro and press the A Button.\n"
+ line "2. Repeat step 1 as many times as"
+ line " you wish to move the counters.\n"
+ line "3. Press the B Button to end.\n"
+ line "4. You cannot move the damage if"
+ line " Slowbro will be Knocked Out."
+ done
Text013a: ; 391dc (e:51dc)
- db TX_START,"Choose the opponent's Attack\n"
- db "to be used with Metronome.",TX_END
+ text "Choose the opponent's Attack"
+ line "to be used with Metronome."
+ done
Text013b: ; 39215 (e:5215)
- db TX_START,"There is no ",TX_RAM2,"\n"
- db "in the Deck.",TX_END
+ text "There is no ",TX_RAM2,""
+ line "in the Deck."
+ done
Text013c: ; 39231 (e:5231)
- db TX_START,"Would you like to check the Deck?",TX_END
+ text "Would you like to check the Deck?"
+ done
Text013d: ; 39254 (e:5254)
- db TX_START,"Please select the Deck:\n"
- db " Yours Opponent's",TX_END
+ text "Please select the Deck:"
+ line " Yours Opponent's"
+ done
Text013e: ; 3928c (e:528c)
- db TX_START,"Please select the Play Area:\n"
- db " Yours Opponent's",TX_END
+ text "Please select the Play Area:"
+ line " Yours Opponent's"
+ done
Text013f: ; 392c9 (e:52c9)
- db TX_START,"Nidoran$ Nidoran%",TX_END
+ text "Nidoran$ Nidoran%"
+ done
Text0140: ; 392dc (e:52dc)
- db TX_START,"Oddish",TX_END
+ text "Oddish"
+ done
Text0141: ; 392e4 (e:52e4)
- db TX_START,"Bellsprout",TX_END
+ text "Bellsprout"
+ done
Text0142: ; 392f0 (e:52f0)
- db TX_START,"Krabby",TX_END
+ text "Krabby"
+ done
Text0143: ; 392f8 (e:52f8)
- db TX_START,"Fighting Pok`mon",TX_END
+ text "Fighting Pok`mon"
+ done
Text0144: ; 3930a (e:530a)
- db TX_START,"Basic Energy",TX_END
+ text "Basic Energy"
+ done
Text0145: ; 39318 (e:5318)
- db TX_START,"Peek was used to look at the\n"
- db TX_RAM2," in your Hand.",TX_END
+ text "Peek was used to look at the"
+ line TX_RAM2," in your Hand."
+ done
Text0146: ; 39346 (e:5346)
- db TX_START,"Card Peek was used on",TX_END
+ text "Card Peek was used on"
+ done
Text0147: ; 3935d (e:535d)
- db TX_START,TX_RAM2," and all attached\n"
- db "cards were returned to the Hand.",TX_END
+ text TX_RAM2," and all attached"
+ line "cards were returned to the Hand."
+ done
Text0148: ; 39392 (e:5392)
- db TX_START,TX_RAM2," was chosen\n"
- db "for the effect of Amnesia.",TX_END
+ text TX_RAM2," was chosen"
+ line "for the effect of Amnesia."
+ done
Text0149: ; 393bb (e:53bb)
- db TX_START,"A Basic Pok`mon was placed\n"
- db "on each Bench.",TX_END
+ text "A Basic Pok`mon was placed"
+ line "on each Bench."
+ done
WasUnsuccessfulText: ; 393e6 (e:53e6)
- db TX_START,TX_RAM2,"'s\n"
- db TX_RAM2," was unsuccessful.",TX_END
+ text TX_RAM2,"'s"
+ line TX_RAM2," was unsuccessful."
+ done
Text014b: ; 393ff (e:53ff)
- db TX_START,"There was no effect\n"
- db "from ",TX_RAM2,".",TX_END
+ text "There was no effect"
+ line "from ",TX_RAM2,"."
+ done
Text014c: ; 3941c (e:541c)
- db TX_START,"The Energy card from ",TX_RAM1,"'s\n"
- db "Play Area was moved.",TX_END
+ text "The Energy card from ",TX_RAM1,"'s"
+ line "Play Area was moved."
+ done
Text014d: ; 3944b (e:544b)
- db TX_START,TX_RAM1," drew\n"
- db TX_RAM3," Fire Energy from the Hand.",TX_END
+ text TX_RAM1," drew"
+ line TX_RAM3," Fire Energy from the Hand."
+ done
Text014e: ; 39470 (e:5470)
- db TX_START,"The Pok`mon cards in ",TX_RAM1,"'s\n"
- db "Hand and Deck were shuffled",TX_END
+ text "The Pok`mon cards in ",TX_RAM1,"'s"
+ line "Hand and Deck were shuffled"
+ done
Text014f: ; 394a6 (e:54a6)
- db TX_START,"Remove Damage counter each time the\n"
- db "A Button is pressed. B Button quits.",TX_END
+ text "Remove Damage counter each time the"
+ line "A Button is pressed. B Button quits."
+ done
Text0150: ; 394f0 (e:54f0)
- db TX_START,"Choose a Pok`mon to remove\n"
- db "the Damage counter from.",TX_END
+ text "Choose a Pok`mon to remove"
+ line "the Damage counter from."
+ done
Text0151: ; 39525 (e:5525)
- db TX_START,"Choose the card to Discard\n"
- db "from the Hand.",TX_END
+ text "Choose the card to Discard"
+ line "from the Hand."
+ done
Text0152: ; 39550 (e:5550)
- db TX_START,"Choose a Pok`mon to remove\n"
- db "Energy from and choose the Energy.",TX_END
+ text "Choose a Pok`mon to remove"
+ line "Energy from and choose the Energy."
+ done
Text0153: ; 3958f (e:558f)
- db TX_START,"Choose 2 Basic Energy cards\n"
- db "from the Discard Pile.",TX_END
+ text "Choose 2 Basic Energy cards"
+ line "from the Discard Pile."
+ done
Text0154: ; 395c3 (e:55c3)
- db TX_START,"Choose a Pok`mon and press the A\n"
- db "Button to remove Damage counters.",TX_END
+ text "Choose a Pok`mon and press the A"
+ line "Button to remove Damage counters."
+ done
Text0155: ; 39607 (e:5607)
- db TX_START,"Choose 2 cards from the Hand\n"
- db "to Discard.",TX_END
+ text "Choose 2 cards from the Hand"
+ line "to Discard."
+ done
Text0156: ; 39631 (e:5631)
- db TX_START,"Choose 2 cards from the Hand\n"
- db "to return to the Deck.",TX_END
+ text "Choose 2 cards from the Hand"
+ line "to return to the Deck."
+ done
Text0157: ; 39666 (e:5666)
- db TX_START,"Choose a card to\n"
- db "place in the Hand.",TX_END
+ text "Choose a card to"
+ line "place in the Hand."
+ done
Text0158: ; 3968b (e:568b)
- db TX_START,"Choose a Pok`mon to\n"
- db "attach Defender to.",TX_END
+ text "Choose a Pok`mon to"
+ line "attach Defender to."
+ done
Text0159: ; 396b4 (e:56b4)
- db TX_START,"You can draw up to ",TX_RAM3," cards.\n"
- db "A to Draw, B to End.",TX_END
+ text "You can draw up to ",TX_RAM3," cards."
+ line "A to Draw, B to End."
+ done
Text015a: ; 396e6 (e:56e6)
- db TX_START,"Choose a Pok`mon to\n"
- db "return to the Deck.",TX_END
+ text "Choose a Pok`mon to"
+ line "return to the Deck."
+ done
Text015b: ; 3970f (e:570f)
- db TX_START,"Choose a Pok`mon to\n"
- db "place in play.",TX_END
+ text "Choose a Pok`mon to"
+ line "place in play."
+ done
Text015c: ; 39733 (e:5733)
- db TX_START,"Choose a Basic Pok`mon\n"
- db "to Evolve.",TX_END
+ text "Choose a Basic Pok`mon"
+ line "to Evolve."
+ done
Text015d: ; 39756 (e:5756)
- db TX_START,"Choose a Pok`mon to\n"
- db "Scoop Up.",TX_END
+ text "Choose a Pok`mon to"
+ line "Scoop Up."
+ done
Text015e: ; 39775 (e:5775)
- db TX_START,"Choose a card from your\n"
- db "Hand to Switch.",TX_END
+ text "Choose a card from your"
+ line "Hand to Switch."
+ done
Text015f: ; 3979e (e:579e)
- db TX_START,"Choose a card to\n"
- db "Switch.",TX_END
+ text "Choose a card to"
+ line "Switch."
+ done
Text0160: ; 397b8 (e:57b8)
- db TX_START,"Choose a Basic or Evolution\n"
- db "Pok`mon card from the Deck.",TX_END
+ text "Choose a Basic or Evolution"
+ line "Pok`mon card from the Deck."
+ done
Text0161: ; 397f1 (e:57f1)
- db TX_START,"Choose\n"
- db "a Pok`mon card.",TX_END
+ text "Choose"
+ line "a Pok`mon card."
+ done
Text0162: ; 39809 (e:5809)
- db TX_START,"Rearrange the 5 cards at\n"
- db "the top of the Deck.",TX_END
+ text "Rearrange the 5 cards at"
+ line "the top of the Deck."
+ done
Text0163: ; 39838 (e:5838)
- db TX_START,"Please check the opponent's\n"
- db "Hand.",TX_END
+ text "Please check the opponent's"
+ line "Hand."
+ done
Text0164: ; 3985b (e:585b)
- db TX_START,"Evolution card",TX_END
+ text "Evolution card"
+ done
Text0165: ; 3986b (e:586b)
- db TX_START,TX_RAM2," was chosen.",TX_END
+ text TX_RAM2," was chosen."
+ done
Text0166: ; 3987a (e:587a)
- db TX_START,"Choose a Basic Pok`mon\n"
- db "to place on the Bench.",TX_END
+ text "Choose a Basic Pok`mon"
+ line "to place on the Bench."
+ done
Text0167: ; 398a9 (e:58a9)
- db TX_START,"Choose an Evolution card and\n"
- db "press the A Button to Devolve 1.",TX_END
+ text "Choose an Evolution card and"
+ line "press the A Button to Devolve 1."
+ done
Text0168: ; 398e8 (e:58e8)
- db TX_START,"Choose a Pok`mon in your Area, then\n"
- db "a Pok`mon in your opponent's.",TX_END
+ text "Choose a Pok`mon in your Area, then"
+ line "a Pok`mon in your opponent's."
+ done
Text0169: ; 3992b (e:592b)
- db TX_START,"Choose up to 4\n"
- db "from the Discard Pile.",TX_END
+ text "Choose up to 4"
+ line "from the Discard Pile."
+ done
Text016a: ; 39952 (e:5952)
- db TX_START,"Choose a Pok`mon to switch\n"
- db "with the Active Pok`mon.",TX_END
+ text "Choose a Pok`mon to switch"
+ line "with the Active Pok`mon."
+ done
Text016b: ; 39987 (e:5987)
- db TX_START,TX_RAM2," and all attached\n"
- db "cards were returned to the Deck.",TX_END
+ text TX_RAM2," and all attached"
+ line "cards were returned to the Deck."
+ done
Text016c: ; 399bc (e:59bc)
- db TX_START,TX_RAM2," was returned\n"
- db "from the Arena to the Hand.",TX_END
+ text TX_RAM2," was returned"
+ line "from the Arena to the Hand."
+ done
Text016d: ; 399e8 (e:59e8)
- db TX_START,TX_RAM2," was returned\n"
- db "from the Bench to the Hand.",TX_END
+ text TX_RAM2," was returned"
+ line "from the Bench to the Hand."
+ done
Text016e: ; 39a14 (e:5a14)
- db TX_START,TX_RAM2," was returned\n"
- db "to the Deck.",TX_END
+ text TX_RAM2," was returned"
+ line "to the Deck."
+ done
Text016f: ; 39a31 (e:5a31)
- db TX_START,TX_RAM2," was placed\n"
- db "in the Hand.",TX_END
+ text TX_RAM2," was placed"
+ line "in the Hand."
+ done
Text0170: ; 39a4c (e:5a4c)
- db TX_START,"The card you received",TX_END
+ text "The card you received"
+ done
Text0171: ; 39a63 (e:5a63)
- db TX_START,"You received these cards:",TX_END
+ text "You received these cards:"
+ done
Text0172: ; 39a7e (e:5a7e)
- db TX_START,"Choose the card\n"
- db "to put back.",TX_END
+ text "Choose the card"
+ line "to put back."
+ done
Text0173: ; 39a9c (e:5a9c)
- db TX_START,"Choose the card\n"
- db "to Discard.",TX_END
+ text "Choose the card"
+ line "to Discard."
+ done
Text0174: ; 39ab9 (e:5ab9)
- db TX_START,"Discarded ",TX_RAM3," cards\n"
- db "from ",TX_RAM1,"'s Deck.",TX_END
+ text "Discarded ",TX_RAM3," cards"
+ line "from ",TX_RAM1,"'s Deck."
+ done
Text0175: ; 39adb (e:5adb)
- db TX_START,"Discarded ",TX_RAM2,"\n"
- db "from the Hand.",TX_END
+ text "Discarded ",TX_RAM2,""
+ line "from the Hand."
+ done
Text0176: ; 39af7 (e:5af7)
- db TX_START,"None came!",TX_END
+ text "None came!"
+ done
Text0177: ; 39b03 (e:5b03)
- db TX_START,TX_RAM2,"\n"
- db "came to the Bench!",TX_END
+ text TX_RAM2,""
+ line "came to the Bench!"
+ done
Text0178: ; 39b19 (e:5b19)
- db TX_START,TX_RAM1," has\n"
- db "no cards in Hand!",TX_END
+ text TX_RAM1," has"
+ line "no cards in Hand!"
+ done
Text0179: ; 39b32 (e:5b32)
- db TX_START,TX_RAM2," healed\n"
- db TX_RAM3," damage!",TX_END
+ text TX_RAM2," healed"
+ line TX_RAM3," damage!"
+ done
Text017a: ; 39b46 (e:5b46)
- db TX_START,TX_RAM2," devolved\n"
- db "to ",TX_RAM2,"!",TX_END
+ text TX_RAM2," devolved"
+ line "to ",TX_RAM2,"!"
+ done
Text017b: ; 39b58 (e:5b58)
- db TX_START,"There was no Fire Energy.",TX_END
+ text "There was no Fire Energy."
+ done
Text017c: ; 39b73 (e:5b73)
- db TX_START,"You can select ",TX_RAM3," more cards. Quit?",TX_END
+ text "You can select ",TX_RAM3," more cards. Quit?"
+ done
Text017d: ; 39b97 (e:5b97)
- db TX_START,"There was no effect!",TX_END
+ text "There was no effect!"
+ done
Text017e: ; 39bad (e:5bad)
- db TX_START,"There was no effect\n"
- db "from Toxic",TX_END
+ text "There was no effect"
+ line "from Toxic"
+ done
Text017f: ; 39bcd (e:5bcd)
- db TX_START,"There was no effect\n"
- db "from Poison.",TX_END
+ text "There was no effect"
+ line "from Poison."
+ done
Text0180: ; 39bef (e:5bef)
- db TX_START,"There was no effect\n"
- db "from Sleep.",TX_END
+ text "There was no effect"
+ line "from Sleep."
+ done
Text0181: ; 39c10 (e:5c10)
- db TX_START,"There was no effect\n"
- db "from Paralysis.",TX_END
+ text "There was no effect"
+ line "from Paralysis."
+ done
Text0182: ; 39c35 (e:5c35)
- db TX_START,"There was no effect\n"
- db "from Confusion.",TX_END
+ text "There was no effect"
+ line "from Confusion."
+ done
Text0183: ; 39c5a (e:5c5a)
- db TX_START,"There was no effet\n"
- db "from Poison, Confusion.",TX_END
+ text "There was no effet"
+ line "from Poison, Confusion."
+ done
Text0184: ; 39c86 (e:5c86)
- db TX_START,"Exchanged the cards\n"
- db "in ",TX_RAM1,"'s Hand.",TX_END
+ text "Exchanged the cards"
+ line "in ",TX_RAM1,"'s Hand."
+ done
Text0185: ; 39ca8 (e:5ca8)
- db TX_START,"Battle Center",TX_END
+ text "Battle Center"
+ done
Text0186: ; 39cb7 (e:5cb7)
- db TX_START,"Prizes\n"
- db " cards",TX_END
+ text "Prizes"
+ line " cards"
+ done
Text0187: ; 39ccc (e:5ccc)
- db TX_START,"Choose the number\n"
- db "of Prizes.",TX_END
+ text "Choose the number"
+ line "of Prizes."
+ done
Text0188: ; 39cea (e:5cea)
- db TX_START,"Please wait...\n"
- db "Deciding the number of Prizes...",TX_END
+ text "Please wait..."
+ line "Deciding the number of Prizes..."
+ done
Text0189: ; 39d1b (e:5d1b)
- db TX_START,"Begin a ",TX_RAM3,"-Prize Duel\n"
- db "with ",TX_RAM1,".",TX_END
+ text "Begin a ",TX_RAM3,"-Prize Duel"
+ line "with ",TX_RAM1,"."
+ done
Text018a: ; 39d39 (e:5d39)
- db TX_START,"Are you both ready\n"
- db "to Card Pop! ?",TX_END
+ text "Are you both ready"
+ line "to Card Pop! ?"
+ done
Text018b: ; 39d5c (e:5d5c)
- db TX_START,"The Pop! wasn't successful.\n"
- db "Please try again.",TX_END
+ text "The Pop! wasn't successful."
+ line "Please try again."
+ done
Text018c: ; 39d8b (e:5d8b)
- db TX_START,"You cannot Card Pop! with a\n"
- db "friend you previously Popped! with.",TX_END
+ text "You cannot Card Pop! with a"
+ line "friend you previously Popped! with."
+ done
Text018d: ; 39dcc (e:5dcc)
- db TX_START,"Position the Game Boy Colors\n"
- db "and press the A Button.",TX_END
+ text "Position the Game Boy Colors"
+ line "and press the A Button."
+ done
Text018e: ; 39e02 (e:5e02)
- db TX_START,"Received ",TX_RAM2,"\n"
- db "through Card Pop!",TX_END
+ text "Received ",TX_RAM2,""
+ line "through Card Pop!"
+ done
ReceivedCardText: ; 39e20 (e:5e20)
- db TX_START,TX_RAM1," received\n"
- db "a ",TX_RAM2,"!",TX_END
+ text TX_RAM1," received"
+ line "a ",TX_RAM2,"!"
+ done
ReceivedPromotionalCardText: ; 39e31 (e:5e31)
- db TX_START,TX_RAM1," received a Promotional\n"
- db "card ",TX_RAM2,"!",TX_END
+ text TX_RAM1," received a Promotional"
+ line "card ",TX_RAM2,"!"
+ done
ReceivedLegendaryCardText: ; 39e53 (e:5e53)
- db TX_START,TX_RAM1," received the Legendary\n"
- db "card ",TX_RAM2,"!",TX_END
+ text TX_RAM1," received the Legendary"
+ line "card ",TX_RAM2,"!"
+ done
ReceivedPromotionalFlyingPikachuText: ; 39e75 (e:5e75)
- db TX_START,TX_RAM1," received a Promotinal\n"
- db "card Flyin' Pikachu!",TX_END
+ text TX_RAM1," received a Promotinal"
+ line "card Flyin' Pikachu!"
+ done
ReceivedPromotionalSurfingPikachuText: ; 39ea3 (e:5ea3)
- db TX_START,TX_RAM1," received a Promotional\n"
- db "card Surfin' Pikachu!",TX_END
+ text TX_RAM1," received a Promotional"
+ line "card Surfin' Pikachu!"
+ done
Text0194: ; 39ed3 (e:5ed3)
- db TX_START,"Received a Flareon!!!\n"
- db "Looked at the card list!",TX_END
+ text "Received a Flareon!!!"
+ line "Looked at the card list!"
+ done
Text0195: ; 39f03 (e:5f03)
- db TX_START,"Now printing.\n"
- db "Please wait...",TX_END
+ text "Now printing."
+ line "Please wait..."
+ done
Text0196: ; 39f21 (e:5f21)
- db TX_START,"Booster Pack",TX_END
+ text "Booster Pack"
+ done
Text0197: ; 39f2f (e:5f2f)
- db TX_START,"Would you like to try again?",TX_END
+ text "Would you like to try again?"
+ done
Text0198: ; 39f4d (e:5f4d)
- db TX_START,"Sent to ",TX_RAM1,".",TX_END
+ text "Sent to ",TX_RAM1,"."
+ done
Text0199: ; 39f59 (e:5f59)
- db TX_START,"Received from ",TX_RAM1,".",TX_END
+ text "Received from ",TX_RAM1,"."
+ done
Text019a: ; 39f6b (e:5f6b)
- db TX_START,"Sending a card...Move the Game\n"
- db "Boys close and press the A Button.",TX_END
+ text "Sending a card...Move the Game"
+ line "Boys close and press the A Button."
+ done
Text019b: ; 39fae (e:5fae)
- db TX_START,"Receiving a card...Move\n"
- db "the Game Boys close together.",TX_END
+ text "Receiving a card...Move"
+ line "the Game Boys close together."
+ done
Text019c: ; 39fe5 (e:5fe5)
- db TX_START,"Sending a Deck Configuration...\n"
- db "Position the Game Boys and press A.",TX_END
+ text "Sending a Deck Configuration..."
+ line "Position the Game Boys and press A."
+ done
Text019d: ; 3a02a (e:602a)
- db TX_START,"Receiving Deck configuration...\n"
- db "Position the Game Boys and press A.",TX_END
+ text "Receiving Deck configuration..."
+ line "Position the Game Boys and press A."
+ done
Text019e: ; 3a06f (e:606f)
- db TX_START,"Card transfer wasn't successful.",TX_END
+ text "Card transfer wasn't successful."
+ done
Text019f: ; 3a091 (e:6091)
- db TX_START,"Card transfer wasn't successful",TX_END
+ text "Card transfer wasn't successful"
+ done
Text01a0: ; 3a0b2 (e:60b2)
- db TX_START,"Deck configuration transfer\n"
- db "wasn't successful",TX_END
+ text "Deck configuration transfer"
+ line "wasn't successful"
+ done
Text01a1: ; 3a0e1 (e:60e1)
- db TX_START,"Deck configuration transfer\n"
- db "wasn't successful.",TX_END
+ text "Deck configuration transfer"
+ line "wasn't successful."
+ done
Text01a2: ; 3a111 (e:6111)
- db TX_START,"Now printing...",TX_END
+ text "Now printing..."
+ done
Text01a3: ; 3a122 (e:6122)
- db TX_START,"Dr. Mason",TX_END
+ text "Dr. Mason"
+ done
Text01a4: ; 3a12d (e:612d)
- db TX_START,"Draw 7 cards,\n\n"
- db "and get ready for the battle!\n"
- db "Choose your Active Pok`mon.\n"
- db "You can only choose Basic Pok`mon\n"
- db "as your Active Pok`mon,\n"
- db "so you can choose either Goldeen\n"
- db "or Staryu.\n"
- db "For our practice duel,\n"
- db "choose Goldeen.",TX_END
+ text "Draw 7 cards,\n"
+ line "and get ready for the battle!"
+ line "Choose your Active Pok`mon."
+ line "You can only choose Basic Pok`mon"
+ line "as your Active Pok`mon,"
+ line "so you can choose either Goldeen"
+ line "or Staryu."
+ line "For our practice duel,"
+ line "choose Goldeen."
+ done
Text01a5: ; 3a204 (e:6204)
- db TX_START,"Choose Goldeen for this\n"
- db "practice duel, OK?",TX_END
+ text "Choose Goldeen for this"
+ line "practice duel, OK?"
+ done
Text01a6: ; 3a230 (e:6230)
- db TX_START,"Next, put your Pok`mon on your\n"
- db "Bench.\n"
- db "You can switch Benched Pok`mon\n"
- db "with your Active Pok`mon.\n"
- db "Again, only Basic Pok`mon can be\n"
- db "placed on your Bench.\n"
- db "Choose Staryu from your hand and\n"
- db "put it there.",TX_END
+ text "Next, put your Pok`mon on your"
+ line "Bench."
+ line "You can switch Benched Pok`mon"
+ line "with your Active Pok`mon."
+ line "Again, only Basic Pok`mon can be"
+ line "placed on your Bench."
+ line "Choose Staryu from your hand and"
+ line "put it there."
+ done
Text01a7: ; 3a2f6 (e:62f6)
- db TX_START,"Choose Staryu for this\n"
- db "practice duel, OK?",TX_END
+ text "Choose Staryu for this"
+ line "practice duel, OK?"
+ done
Text01a8: ; 3a321 (e:6321)
- db TX_START,"When you have no Pok`mon to put on\n"
- db "your Bench, press the B Button to\n"
- db "finish.",TX_END
+ text "When you have no Pok`mon to put on"
+ line "your Bench, press the B Button to"
+ line "finish."
+ done
Text01a9: ; 3a36f (e:636f)
- db TX_START,"1. Choose Hand from the Menu.\n"
- db " Select a Water Energy card.",TX_END
+ text "1. Choose Hand from the Menu."
+ line " Select a Water Energy card."
+ done
Text01aa: ; 3a3ad (e:63ad)
- db TX_START,"2. Attach a Water Energy card to\n"
- db " your Active Pok`mon, Goldeen.",TX_END
+ text "2. Attach a Water Energy card to"
+ line " your Active Pok`mon, Goldeen."
+ done
Text01ab: ; 3a3f0 (e:63f0)
- db TX_START,"3. Choose Attack from the Menu\n"
- db " and select Horn Attack.",TX_END
+ text "3. Choose Attack from the Menu"
+ line " and select Horn Attack."
+ done
Text01ac: ; 3a42b (e:642b)
- db TX_START,"1. Evolve Goldeen by\n"
- db " attaching Seaking to it.",TX_END
+ text "1. Evolve Goldeen by"
+ line " attaching Seaking to it."
+ done
Text01ad: ; 3a45d (e:645d)
- db TX_START,"2. Attach a Psychic Energy card\n"
- db " to the evolved Seaking.",TX_END
+ text "2. Attach a Psychic Energy card"
+ line " to the evolved Seaking."
+ done
Text01ae: ; 3a499 (e:6499)
- db TX_START,"3. Choose Attack and select\n"
- db " Waterfall to attack your\n"
- db " opponent.",TX_END
+ text "3. Choose Attack and select"
+ line " Waterfall to attack your"
+ line " opponent."
+ done
Text01af: ; 3a4df (e:64df)
- db TX_START,"1. Attach a Water Energy card to\n"
- db " your Benched Staryu.",TX_END
+ text "1. Attach a Water Energy card to"
+ line " your Benched Staryu."
+ done
Text01b0: ; 3a519 (e:6519)
- db TX_START,"2. Choose Attack and attack your\n"
- db " opponent with Horn Attack.",TX_END
+ text "2. Choose Attack and attack your"
+ line " opponent with Horn Attack."
+ done
Text01b1: ; 3a559 (e:6559)
db TX_END
Text01b2: ; 3a55a (e:655a)
- db TX_START,"1. Take Drowzee from your hand\n"
- db " and put it on your Bench.",TX_END
+ text "1. Take Drowzee from your hand"
+ line " and put it on your Bench."
+ done
Text01b3: ; 3a597 (e:6597)
- db TX_START,"2. Attach a Water Energy card to\n"
- db " your Benched Drowzee.",TX_END
+ text "2. Attach a Water Energy card to"
+ line " your Benched Drowzee."
+ done
Text01b4: ; 3a5d2 (e:65d2)
- db TX_START,"3. Choose Seaking and attack your\n"
- db " opponent with Waterfall.",TX_END
+ text "3. Choose Seaking and attack your"
+ line " opponent with Waterfall."
+ done
Text01b5: ; 3a611 (e:6611)
- db TX_START,"1. Choose a Water Energy card from\n"
- db " your hand and attach it to\n"
- db " Staryu.",TX_END
+ text "1. Choose a Water Energy card from"
+ line " your hand and attach it to"
+ line " Staryu."
+ done
Text01b6: ; 3a65e (e:665e)
- db TX_START,"2. Choose Staryu and attack your\n"
- db " opponent with Slap.",TX_END
+ text "2. Choose Staryu and attack your"
+ line " opponent with Slap."
+ done
Text01b7: ; 3a697 (e:6697)
- db TX_START,"1. Choose the Potion card in your\n"
- db " hand to recover Staryu's HP.",TX_END
+ text "1. Choose the Potion card in your"
+ line " hand to recover Staryu's HP."
+ done
Text01b8: ; 3a6da (e:66da)
- db TX_START,"2. Attach a Water Energy card to\n"
- db " Staryu.",TX_END
+ text "2. Attach a Water Energy card to"
+ line " Staryu."
+ done
Text01b9: ; 3a707 (e:6707)
- db TX_START,"3. Choose Staryu and attack your\n"
- db " opponent with Slap.",TX_END
+ text "3. Choose Staryu and attack your"
+ line " opponent with Slap."
+ done
Text01ba: ; 3a740 (e:6740)
- db TX_START,"1. Evolve Staryu by\n"
- db " attaching Starmie to it.",TX_END
+ text "1. Evolve Staryu by"
+ line " attaching Starmie to it."
+ done
Text01bb: ; 3a771 (e:6771)
- db TX_START,"2. Select the evolved Starmie and\n"
- db " attack your opponent with Star \n"
- db " Freeze.",TX_END
+ text "2. Select the evolved Starmie and"
+ line " attack your opponent with Star "
+ line " Freeze."
+ done
Text01bc: ; 3a7c2 (e:67c2)
- db TX_START,"1. Select Starmie and attack your\n"
- db " opponent with Star Freeze.",TX_END
+ text "1. Select Starmie and attack your"
+ line " opponent with Star Freeze."
+ done
Text01bd: ; 3a803 (e:6803)
- db TX_START,"2. You Knocked Machop Out.\n"
- db " Now you can draw a Prize.",TX_END
+ text "2. You Knocked Machop Out."
+ line " Now you can draw a Prize."
+ done
Text01be: ; 3a83c (e:683c)
- db TX_START,"1. Your Seaking was Knocked Out.\n"
- db " Choose your Benched Staryu\n"
- db " and press the A Button to set\n"
- db " it as your Active Pok`mon.",TX_END
+ text "1. Your Seaking was Knocked Out."
+ line " Choose your Benched Staryu"
+ line " and press the A Button to set"
+ line " it as your Active Pok`mon."
+ done
Text01bf: ; 3a8bb (e:68bb)
- db TX_START,"2. You can check Pok`mon data by\n"
- db " pressing SELECT.",TX_END
+ text "2. You can check Pok`mon data by"
+ line " pressing SELECT."
+ done
Text01c0: ; 3a8f1 (e:68f1)
- db TX_START,"To use the attack command, you need\n"
- db "to attach Energy cards to your\n"
- db "Pok`mon.\n\n"
- db "Choose Cards from the Menu, and\n"
- db "select a Water Energy card.",TX_END
+ text "To use the attack command, you need"
+ line "to attach Energy cards to your"
+ line "Pok`mon.\n"
+ line "Choose Cards from the Menu, and"
+ line "select a Water Energy card."
+ done
Text01c1: ; 3a97b (e:697b)
- db TX_START,"Next, choose your Active Pok`mon,\n"
- db "Goldeen, and press the A Button.\n"
- db "Then the Water Energy card will\n"
- db "be attached to Goldeen.",TX_END
+ text "Next, choose your Active Pok`mon,"
+ line "Goldeen, and press the A Button."
+ line "Then the Water Energy card will"
+ line "be attached to Goldeen."
+ done
Text01c2: ; 3a9f7 (e:69f7)
- db TX_START,"Finally, attack your opponent by\n"
- db "selecting an attack command.\n"
- db "Choose Attack from the Menu, and\n"
- db "select Horn Attack.",TX_END
+ text "Finally, attack your opponent by"
+ line "selecting an attack command."
+ line "Choose Attack from the Menu, and"
+ line "select Horn Attack."
+ done
Text01c3: ; 3aa6b (e:6a6b)
- db TX_START,"Your Goldeen's gonna get Knocked\n"
- db "Out. Let's evolve it!\n"
- db "Choose Seaking from your hand and\n"
- db "attach it to Goldeen to\n"
- db "Evolve it.\n"
- db "Its HP increases from 40 to 70.",TX_END
+ text "Your Goldeen's gonna get Knocked"
+ line "Out. Let's evolve it!"
+ line "Choose Seaking from your hand and"
+ line "attach it to Goldeen to"
+ line "Evolve it."
+ line "Its HP increases from 40 to 70."
+ done
Text01c4: ; 3ab08 (e:6b08)
- db TX_START,"Your Seaking doesn't have enough\n"
- db "Energy to use Waterfall.\n"
- db "You need to attach a Psychic Energy\n"
- db "card to Seaking.\n"
- db TX_COLORLESS," means any Energy card.\n"
- db "Now you can use Waterfall.\n"
- db "Keep the Water Energy card for\n"
- db "other Pok`mon.",TX_END
+ text "Your Seaking doesn't have enough"
+ line "Energy to use Waterfall."
+ line "You need to attach a Psychic Energy"
+ line "card to Seaking."
+ line TX_COLORLESS," means any Energy card."
+ line "Now you can use Waterfall."
+ line "Keep the Water Energy card for"
+ line "other Pok`mon."
+ done
Text01c5: ; 3abdb (e:6bdb)
- db TX_START,"Now let's attack your opponent with\n"
- db "Seaking's Waterfall!",TX_END
+ text "Now let's attack your opponent with"
+ line "Seaking's Waterfall!"
+ done
Text01c6: ; 3ac15 (e:6c15)
- db TX_START,"Seaking's got enough Energy, so\n"
- db "you don't need to attach any more.\n"
- db "Attach Energy cards to your Benched\n"
- db "Pok`mon to get them ready for\n"
- db "battle.\n\n"
- db "Attach a Water Energy card to your\n"
- db "Benched Staryu.",TX_END
+ text "Seaking's got enough Energy, so"
+ line "you don't need to attach any more."
+ line "Attach Energy cards to your Benched"
+ line "Pok`mon to get them ready for"
+ line "battle.\n"
+ line "Attach a Water Energy card to your"
+ line "Benched Staryu."
+ done
Text01c7: ; 3acd7 (e:6cd7)
- db TX_START,"Next, select the attack command.\n"
- db "Machop has 10 HP left.\n"
- db "Seaking's Horn Attack will be\n"
- db "enough to Knock out Machop.\n"
- db "Now, choose Seaking's\n"
- db "Horn Attack.",TX_END
+ text "Next, select the attack command."
+ line "Machop has 10 HP left."
+ line "Seaking's Horn Attack will be"
+ line "enough to Knock out Machop."
+ line "Now, choose Seaking's"
+ line "Horn Attack."
+ done
Text01c8: ; 3ad6d (e:6d6d)
- db TX_START,"Now Machop's HP is 0 and it is\n"
- db "Knocked Out.\n"
- db "When you Knock Out the Defending\n"
- db "Pok`mon, you can pick up a\n"
- db "Prize.",TX_END
+ text "Now Machop's HP is 0 and it is"
+ line "Knocked Out."
+ line "When you Knock Out the Defending"
+ line "Pok`mon, you can pick up a"
+ line "Prize."
+ done
Text01c9: ; 3addd (e:6ddd)
- db TX_START,"When all your Pok`mon are Knocked\n"
- db "Out and there are no Pok`mon on your\n"
- db "Bench, you lose the game.\n\n"
- db "Put Drowzee, the Basic Pok`mon\n"
- db "you just drew, on your Bench.",TX_END
+ text "When all your Pok`mon are Knocked"
+ line "Out and there are no Pok`mon on your"
+ line "Bench, you lose the game.\n"
+ line "Put Drowzee, the Basic Pok`mon"
+ line "you just drew, on your Bench."
+ done
Text01ca: ; 3ae7d (e:6e7d)
- db TX_START,"Attach a Water Energy card to\n"
- db "Drowzee to get it ready to\n"
- db "attack.",TX_END
+ text "Attach a Water Energy card to"
+ line "Drowzee to get it ready to"
+ line "attack."
+ done
Text01cb: ; 3aebf (e:6ebf)
- db TX_START,"Choose your Active Seaking and\n"
- db "attack your opponent with\n"
- db "Waterfall.",TX_END
+ text "Choose your Active Seaking and"
+ line "attack your opponent with"
+ line "Waterfall."
+ done
Text01cc: ; 3af04 (e:6f04)
- db TX_START,"Staryu evolves into Starmie!\n\n"
- db "Let's get Staryu ready to use\n"
- db "Starmie's attack command when it\n"
- db "evolves to Starmie.\n\n"
- db "Choose the Water Energy card from\n"
- db "your hand and attach it to Staryu.",TX_END
+ text "Staryu evolves into Starmie!\n"
+ line "Let's get Staryu ready to use"
+ line "Starmie's attack command when it"
+ line "evolves to Starmie.\n"
+ line "Choose the Water Energy card from"
+ line "your hand and attach it to Staryu."
+ done
Text01cd: ; 3afbc (e:6fbc)
- db TX_START,"Attack your opponent with Staryu's\n"
- db "Slap.",TX_END
+ text "Attack your opponent with Staryu's"
+ line "Slap."
+ done
Text01ce: ; 3afe6 (e:6fe6)
- db TX_START,"Now, recover Staryu with a Trainer\n"
- db "card.\n"
- db "Choose Potion from your hand.",TX_END
+ text "Now, recover Staryu with a Trainer"
+ line "card."
+ line "Choose Potion from your hand."
+ done
Text01cf: ; 3b02e (e:702e)
- db TX_START,"Now let's get ready to evolve\n"
- db "it to Starmie.\n"
- db "Also, attach a Water Energy card to\n"
- db "Staryu.",TX_END
+ text "Now let's get ready to evolve"
+ line "it to Starmie."
+ line "Also, attach a Water Energy card to"
+ line "Staryu."
+ done
Text01d0: ; 3b088 (e:7088)
- db TX_START,"Attack your opponent with Staryu's\n"
- db "Slap to end your turn.",TX_END
+ text "Attack your opponent with Staryu's"
+ line "Slap to end your turn."
+ done
Text01d1: ; 3b0c3 (e:70c3)
- db TX_START,"Now you have finally drawn a\n"
- db "Starmie card!\n"
- db "Choose Starmie from your hand and\n"
- db "use it to evolve Staryu.",TX_END
+ text "Now you have finally drawn a"
+ line "Starmie card!"
+ line "Choose Starmie from your hand and"
+ line "use it to evolve Staryu."
+ done
Text01d2: ; 3b12a (e:712a)
- db TX_START,"You've already attached enough\n"
- db "Energy to use Star Freeze.\n"
- db "Attack your opponent with\n"
- db "Starmie's Star Freeze.",TX_END
+ text "You've already attached enough"
+ line "Energy to use Star Freeze."
+ line "Attack your opponent with"
+ line "Starmie's Star Freeze."
+ done
Text01d3: ; 3b196 (e:7196)
- db TX_START,"Now Machop has only 10 HP left.\n"
- db "Let's finish the battle!\n"
- db "Attack with Starmie's Star Freeze.\n"
- db TX_END
+ text "Now Machop has only 10 HP left."
+ line "Let's finish the battle!"
+ line "Attack with Starmie's Star Freeze."
+ line TX_END
Text01d4: ; 3b1f4 (e:71f4)
- db TX_START,"You've Knocked Out your opponent!\n\n"
- db "Pick up the last Prize.\n"
- db TX_START,TX_RAM1," is the winner!",TX_END
+ text "You've Knocked Out your opponent!\n"
+ line "Pick up the last Prize."
+ line ""
+ text TX_RAM1," is the winner!"
+ done
Text01d5: ; 3b242 (e:7242)
- db TX_START,"Choose a Benched Pok`mon to replace\n"
- db "your Knocked Out Pok`mon.\n"
- db "You now have Drowzee and Staryu\n"
- db "on your Bench.\n"
- db "Choose Staryu as the Active Pok`mon\n"
- db "for this practice duel.",TX_END
+ text "Choose a Benched Pok`mon to replace"
+ line "your Knocked Out Pok`mon."
+ line "You now have Drowzee and Staryu"
+ line "on your Bench."
+ line "Choose Staryu as the Active Pok`mon"
+ line "for this practice duel."
+ done
Text01d6: ; 3b2ec (e:72ec)
- db TX_START,"Here, press SELECT to\n"
- db "check Pok`mon data.\n"
- db "It is important to know your cards\n"
- db "and the status of your Pok`mon.",TX_END
+ text "Here, press SELECT to"
+ line "check Pok`mon data."
+ line "It is important to know your cards"
+ line "and the status of your Pok`mon."
+ done
Text01d7: ; 3b35a (e:735a)
- db TX_START,"Select Staryu for this practice,\n"
- db "OK?",TX_END
+ text "Select Staryu for this practice,"
+ line "OK?"
+ done
Text01d8: ; 3b380 (e:7380)
- db TX_START,"Now, let's play the game!",TX_END
+ text "Now, let's play the game!"
+ done
Text01d9: ; 3b39b (e:739b)
- db TX_START,"Do you need to practice again?",TX_END
+ text "Do you need to practice again?"
+ done
Text01da: ; 3b3bb (e:73bb)
- db TX_START,"This is Practice Mode, so\n"
- db "please follow my guidance.\n"
- db "Do it again.",TX_END
+ text "This is Practice Mode, so"
+ line "please follow my guidance."
+ line "Do it again."
+ done
Text01db: ; 3b3fe (e:73fe)
- db TX_START,TX_RAM1,"'s turn ",TX_RAM3,TX_END
+ text TX_RAM1,"'s turn ",TX_RAM3
+ done
Text01dc: ; 3b40a (e:740a)
- db TX_START," Replace due to Knockout ",TX_END
+ text " Replace due to Knockout "
+ done
Text01dd: ; 3b425 (e:7425)
- db TX_START,"Dummy",TX_END
+ text "Dummy"
+ done
PracticePlayerDeckName: ; 3b42c (e:742c)
- db TX_START,"Practice Player",TX_END
+ text "Practice Player"
+ done
SamsPracticeDeckName: ; 3b43d (e:743d)
- db TX_START,"Sam's Practice",TX_END
+ text "Sam's Practice"
+ done
CharmanderAndFriendsDeckName: ; 3b44d (e:744d)
- db TX_START,"Charmander & Friends",TX_END
+ text "Charmander & Friends"
+ done
CharmanderExtraDeckName: ; 3b463 (e:7463)
- db TX_START,"Charmander extra",TX_END
+ text "Charmander extra"
+ done
SquirtleAndFriendsDeckName: ; 3b475 (e:7475)
- db TX_START,"Squirtle & Friends",TX_END
+ text "Squirtle & Friends"
+ done
SquirtleExtraDeckName: ; 3b489 (e:7489)
- db TX_START,"Squirtle extra",TX_END
+ text "Squirtle extra"
+ done
BulbasaurAndFriendsDeckName: ; 3b499 (e:7499)
- db TX_START,"Bulbasaur & Friends",TX_END
+ text "Bulbasaur & Friends"
+ done
BulbasaurExtraDeckName: ; 3b4ae (e:74ae)
- db TX_START,"Bulbasaur extra",TX_END
+ text "Bulbasaur extra"
+ done
FirstStrikeDeckName: ; 3b4bf (e:74bf)
- db TX_START,"First-Strike",TX_END
+ text "First-Strike"
+ done
RockCrusherDeckName: ; 3b4cd (e:74cd)
- db TX_START,"Rock Crusher",TX_END
+ text "Rock Crusher"
+ done
GoGoRainDanceDeckName: ; 3b4db (e:74db)
- db TX_START,"Go Go Rain Dance",TX_END
+ text "Go Go Rain Dance"
+ done
ZappingSelfdestructDeckName: ; 3b4ed (e:74ed)
- db TX_START,"Zapping Selfdestruct",TX_END
+ text "Zapping Selfdestruct"
+ done
FlowerPowerDeckName: ; 3b503 (e:7503)
- db TX_START,"Flower Power",TX_END
+ text "Flower Power"
+ done
StrangePsyshockDeckName: ; 3b511 (e:7511)
- db TX_START,"Strange Psyshock",TX_END
+ text "Strange Psyshock"
+ done
WondersofScienceDeckName: ; 3b523 (e:7523)
- db TX_START,"Wonders of Science",TX_END
+ text "Wonders of Science"
+ done
FireChargeDeckName: ; 3b537 (e:7537)
- db TX_START,"Fire Charge",TX_END
+ text "Fire Charge"
+ done
LegendaryMoltresDeckName: ; 3b544 (e:7544)
- db TX_START,"Legendary Moltres",TX_END
+ text "Legendary Moltres"
+ done
LegendaryZapdosDeckName: ; 3b557 (e:7557)
- db TX_START,"Legendary Zapdos",TX_END
+ text "Legendary Zapdos"
+ done
LegendaryArticunoDeckName: ; 3b569 (e:7569)
- db TX_START,"Legendary Articuno",TX_END
+ text "Legendary Articuno"
+ done
LegendaryDragoniteDeckName: ; 3b57d (e:757d)
- db TX_START,"Legendary Dragonite",TX_END
+ text "Legendary Dragonite"
+ done
ImRonaldDeckName: ; 3b592 (e:7592)
- db TX_START,"I'm Ronald!",TX_END
+ text "I'm Ronald!"
+ done
PowerfulRonaldDeckName: ; 3b59f (e:759f)
- db TX_START,"Powerful Ronald",TX_END
+ text "Powerful Ronald"
+ done
InvincibleRonaldDeckName: ; 3b5b0 (e:75b0)
- db TX_START,"Invincible Ronald",TX_END
+ text "Invincible Ronald"
+ done
LegendaryRonaldDeckName: ; 3b5c3 (e:75c3)
- db TX_START,"Legendary Ronald",TX_END
+ text "Legendary Ronald"
+ done
WaterfrontPokemonDeckName: ; 3b5d5 (e:75d5)
- db TX_START,"Waterfront Pok`mon",TX_END
+ text "Waterfront Pok`mon"
+ done
LonelyFriendsDeckName: ; 3b5e9 (e:75e9)
- db TX_START,"Lonely Friends",TX_END
+ text "Lonely Friends"
+ done
SoundoftheWavesDeckName: ; 3b5f9 (e:75f9)
- db TX_START,"Sound of the Waves",TX_END
+ text "Sound of the Waves"
+ done
AngerDeckName: ; 3b60d (e:760d)
- db TX_START,"Anger",TX_END
+ text "Anger"
+ done
FlamethrowerDeckName: ; 3b614 (e:7614)
- db TX_START,"Flamethrower",TX_END
+ text "Flamethrower"
+ done
ReshuffleDeckName: ; 3b622 (e:7622)
- db TX_START,"Reshuffle",TX_END
+ text "Reshuffle"
+ done
ExcavationDeckName: ; 3b62d (e:762d)
- db TX_START,"Excavation",TX_END
+ text "Excavation"
+ done
BlisteringPokemonDeckName: ; 3b639 (e:7639)
- db TX_START,"Blistering Pok`mon",TX_END
+ text "Blistering Pok`mon"
+ done
HardPokemonDeckName: ; 3b64d (e:764d)
- db TX_START,"Hard Pok`mon",TX_END
+ text "Hard Pok`mon"
+ done
EtceteraDeckName: ; 3b65b (e:765b)
- db TX_START,"Etcetera",TX_END
+ text "Etcetera"
+ done
FlowerGardenDeckName: ; 3b665 (e:7665)
- db TX_START,"Flower Garden",TX_END
+ text "Flower Garden"
+ done
KaleidoscopeDeckName: ; 3b674 (e:7674)
- db TX_START,"Kaleidoscope",TX_END
+ text "Kaleidoscope"
+ done
MusclesforBrainsDeckName: ; 3b682 (e:7682)
- db TX_START,"Muscles for Brains",TX_END
+ text "Muscles for Brains"
+ done
HeatedBattleDeckName: ; 3b696 (e:7696)
- db TX_START,"Heated Battle",TX_END
+ text "Heated Battle"
+ done
LovetoBattleDeckName: ; 3b6a5 (e:76a5)
- db TX_START,"Love to Battle",TX_END
+ text "Love to Battle"
+ done
PikachuDeckName: ; 3b6b5 (e:76b5)
- db TX_START,"Pikachu",TX_END
+ text "Pikachu"
+ done
BoomBoomSelfdestructDeckName: ; 3b6be (e:76be)
- db TX_START,"Boom Boom Selfdestruct",TX_END
+ text "Boom Boom Selfdestruct"
+ done
PowerGeneratorDeckName: ; 3b6d6 (e:76d6)
- db TX_START,"Power Generator",TX_END
+ text "Power Generator"
+ done
GhostDeckName: ; 3b6e7 (e:76e7)
- db TX_START,"Ghost",TX_END
+ text "Ghost"
+ done
NapTimeDeckName: ; 3b6ee (e:76ee)
- db TX_START,"Nap Time",TX_END
+ text "Nap Time"
+ done
StrangePowerDeckName: ; 3b6f8 (e:76f8)
- db TX_START,"Strange Power",TX_END
+ text "Strange Power"
+ done
FlyinPokemonDeckName: ; 3b707 (e:7707)
- db TX_START,"Flyin' Pok`mon",TX_END
+ text "Flyin' Pok`mon"
+ done
LovelyNidoranDeckName: ; 3b717 (e:7717)
- db TX_START,"Lovely Nidoran",TX_END
+ text "Lovely Nidoran"
+ done
PoisonDeckName: ; 3b727 (e:7727)
- db TX_START,"Poison",TX_END
+ text "Poison"
+ done
ImakuniDeckName: ; 3b72f (e:772f)
- db TX_START,"Imakuni?",TX_END
+ text "Imakuni?"
+ done
LightningAndFireDeckName: ; 3b739 (e:7739)
- db TX_START,"Lightning & Fire",TX_END
+ text "Lightning & Fire"
+ done
WaterAndFightingDeckName: ; 3b74b (e:774b)
- db TX_START,"Water & Fighting",TX_END
+ text "Water & Fighting"
+ done
GrassAndPsychicDeckName: ; 3b75d (e:775d)
- db TX_START,"Grass & Psychic",TX_END
+ text "Grass & Psychic"
+ done
Text0212: ; 3b76e (e:776e)
- db TX_START,"Retreat Cost",TX_END
+ text "Retreat Cost"
+ done
Text0213: ; 3b77c (e:777c)
- db $03,$42,$03,$46,$03,$38,$03,$43,$03,$32,$03,$37,$70,$03,$43,$03,$3e,$70,$03,$44,$03,$3f,$03,$3f,$03,$34,$03,$41,TX_END
+ db $03,$42,$03,$46,$03,$38,$03,$43,$03,$32,$03,$37,$70,$03,$43,$03,$3e,$70,$03,$44,$03,$3f,$03,$3f,$03,$34,$03,$41
+ done
Text0214: ; 3b799 (e:7799)
- db $03,$42,$03,$46,$03,$38,$03,$43,$03,$32,$03,$37,$70,$03,$43,$03,$3e,$70,$03,$3b,$03,$3e,$03,$46,$03,$34,$03,$41,TX_END
+ db $03,$42,$03,$46,$03,$38,$03,$43,$03,$32,$03,$37,$70,$03,$43,$03,$3e,$70,$03,$3b,$03,$3e,$03,$46,$03,$34,$03,$41
+ done
Text0215: ; 3b7b6 (e:77b6)
- db $03,$7a,TX_END
+ db $03,$7a
+ done
Text0216: ; 3b7b9 (e:77b9)
- db $03,$7b,TX_END
+ db $03,$7b
+ done
Text0217: ; 3b7bc (e:77bc)
- db TX_START,"Your Discard Pile",TX_END
+ text "Your Discard Pile"
+ done
Text0218: ; 3b7cf (e:77cf)
- db TX_START,"Opponent's Discard Pile",TX_END
+ text "Opponent's Discard Pile"
+ done
Text0219: ; 3b7e8 (e:77e8)
- db TX_START,"Deck",TX_END
+ text "Deck"
+ done
Text021a: ; 3b7ee (e:77ee)
- db $0e,$2b,$37,$3e,$25,TX_END
+ db $0e,$2b,$37,$3e,$25
+ done
Text021b: ; 3b7f4 (e:77f4)
- db $16,$20,$16,$25,TX_END
+ db $16,$20,$16,$25
+ done
Text021c: ; 3b7f9 (e:77f9)
- db $03,$30,$03,$31,$03,$32,TX_END
+ db $03,$30,$03,$31,$03,$32
+ done
Text021d: ; 3b800 (e:7800)
- db TX_START,"End",TX_END
+ text "End"
+ done
Text021e: ; 3b805 (e:7805)
- db TX_START,"What is your name?",TX_END
+ text "What is your name?"
+ done
Text021f: ; 3b819 (e:7819)
- db $0e,$11,$70,$16,$70,$1b,$70,$20,$70,$25,$70,$2a,$70,$2f,$70,$34,$70,$37,"\n"
- db $12,$70,$17,$70,$1c,$70,$21,$70,$26,$70,$2b,$70,$30,$70,$35,$70,$38,"\n"
- db $13,$70,$18,$70,$1d,$70,$22,$70,$27,$70,$2c,$70,$31,$70,$36,$70,$39,"\n"
- db $14,$70,$19,$70,$1e,$70,$23,$70,$28,$70,$2d,$70,$32,$70,$3c,$70,$3a,"\n"
- db $15,$70,$1a,$70,$1f,$70,$24,$70,$29,$70,$2e,$70,$33,$70,$3d,$70,$3b,"\n"
- db $5c,$70,$5d,$70,$5e,$70,$5f,$70,$10,$70,$03,$59,$70,$03,$5b,$70,$78,TX_END
+ db $0e,$11,$70,$16,$70,$1b,$70,$20,$70,$25,$70,$2a,$70,$2f,$70,$34,$70,$37,""
+ line $12,$70,$17,$70,$1c,$70,$21,$70,$26,$70,$2b,$70,$30,$70,$35,$70,$38,""
+ line $13,$70,$18,$70,$1d,$70,$22,$70,$27,$70,$2c,$70,$31,$70,$36,$70,$39,""
+ line $14,$70,$19,$70,$1e,$70,$23,$70,$28,$70,$2d,$70,$32,$70,$3c,$70,$3a,""
+ line $15,$70,$1a,$70,$1f,$70,$24,$70,$29,$70,$2e,$70,$33,$70,$3d,$70,$3b,""
+ line $5c,$70,$5d,$70,$5e,$70,$5f,$70,$10,$70,$03,$59,$70,$03,$5b,$70,$78
+ done
Text0220: ; 3b886 (e:7886)
- db $11,$70,$16,$70,$1b,$70,$20,$70,$25,$70,$2a,$70,$2f,$70,$34,$70,$37,"\n"
- db $12,$70,$17,$70,$1c,$70,$21,$70,$26,$70,$2b,$70,$30,$70,$35,$70,$38,"\n"
- db $13,$70,$18,$70,$1d,$70,$22,$70,$27,$70,$2c,$70,$31,$70,$36,$70,$39,"\n"
- db $14,$70,$19,$70,$1e,$70,$23,$70,$28,$70,$2d,$70,$32,$70,$3c,$70,$3a,"\n"
- db $15,$70,$1a,$70,$1f,$70,$24,$70,$29,$70,$2e,$70,$33,$70,$3d,$70,$3b,"\n"
- db $5c,$70,$5d,$70,$5e,$70,$5f,$70,$10,$70,$03,$59,$70,$03,$5b,$70,$78,TX_END
+ db $11,$70,$16,$70,$1b,$70,$20,$70,$25,$70,$2a,$70,$2f,$70,$34,$70,$37,""
+ line $12,$70,$17,$70,$1c,$70,$21,$70,$26,$70,$2b,$70,$30,$70,$35,$70,$38,""
+ line $13,$70,$18,$70,$1d,$70,$22,$70,$27,$70,$2c,$70,$31,$70,$36,$70,$39,""
+ line $14,$70,$19,$70,$1e,$70,$23,$70,$28,$70,$2d,$70,$32,$70,$3c,$70,$3a,""
+ line $15,$70,$1a,$70,$1f,$70,$24,$70,$29,$70,$2e,$70,$33,$70,$3d,$70,$3b,""
+ line $5c,$70,$5d,$70,$5e,$70,$5f,$70,$10,$70,$03,$59,$70,$03,$5b,$70,$78
+ done
Text0221: ; 3b8f2 (e:78f2)
- db $03,$30,$70,$03,$31,$70,$03,$32,$70,$03,$33,$70,$03,$34,$70,$03,$35,$70,$03,$36,$70,$03,$37,$70,$03,$38,"\n"
- db $03,$39,$70,$03,$3a,$70,$03,$3b,$70,$03,$3c,$70,$03,$3d,$70,$03,$3e,$70,$03,$3f,$70,$03,$40,$70,$03,$41,"\n"
- db $03,$42,$70,$03,$43,$70,$03,$44,$70,$03,$45,$70,$03,$46,$70,$03,$47,$70,$03,$48,$70,$03,$49,$70,$6e,"\n"
- db $6f,$70,$03,$5d,$70,$6a,$70,$6b,$70,$77,$70,$60,$70,$61,$70,$62,$70,$63,"\n"
- db $64,$70,$65,$70,$66,$70,$67,$70,$68,$70,$69,$70,$05,$13,$70,TX_LVL,$70,$70,"\n"
- db $70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,TX_END
+ db $03,$30,$70,$03,$31,$70,$03,$32,$70,$03,$33,$70,$03,$34,$70,$03,$35,$70,$03,$36,$70,$03,$37,$70,$03,$38,""
+ line $03,$39,$70,$03,$3a,$70,$03,$3b,$70,$03,$3c,$70,$03,$3d,$70,$03,$3e,$70,$03,$3f,$70,$03,$40,$70,$03,$41,""
+ line $03,$42,$70,$03,$43,$70,$03,$44,$70,$03,$45,$70,$03,$46,$70,$03,$47,$70,$03,$48,$70,$03,$49,$70,$6e,""
+ line $6f,$70,$03,$5d,$70,$6a,$70,$6b,$70,$77,$70,$60,$70,$61,$70,$62,$70,$63,""
+ line $64,$70,$65,$70,$66,$70,$67,$70,$68,$70,$69,$70,$05,$13,$70,TX_LVL,$70,$70,""
+ line $70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70
+ done
Text0222: ; 3b97b (e:797b)
- db $03,$30,$70,$03,$31,$70,$03,$32,$70,$03,$33,$70,$03,$34,$70,$03,$35,$70,$03,$36,$70,$03,$37,$70,$03,$38,"\n"
- db $03,$39,$70,$03,$3a,$70,$03,$3b,$70,$03,$3c,$70,$03,$3d,$70,$03,$3e,$70,$03,$3f,$70,$03,$40,$70,$03,$41,"\n"
- db $03,$42,$70,$03,$43,$70,$03,$44,$70,$03,$45,$70,$03,$46,$70,$03,$47,$70,$03,$48,$70,$03,$49,$70,$6e,"\n"
- db $6f,$70,$03,$5d,$70,$6a,$70,$6b,$70,$03,$7a,$70,$60,$70,$61,$70,$62,$70,$63,"\n"
- db $64,$70,$65,$70,$66,$70,$67,$70,$68,$70,$69,$70,$70,$70,$70,$70,$70,"\n"
- db $70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,TX_END
+ db $03,$30,$70,$03,$31,$70,$03,$32,$70,$03,$33,$70,$03,$34,$70,$03,$35,$70,$03,$36,$70,$03,$37,$70,$03,$38,""
+ line $03,$39,$70,$03,$3a,$70,$03,$3b,$70,$03,$3c,$70,$03,$3d,$70,$03,$3e,$70,$03,$3f,$70,$03,$40,$70,$03,$41,""
+ line $03,$42,$70,$03,$43,$70,$03,$44,$70,$03,$45,$70,$03,$46,$70,$03,$47,$70,$03,$48,$70,$03,$49,$70,$6e,""
+ line $6f,$70,$03,$5d,$70,$6a,$70,$6b,$70,$03,$7a,$70,$60,$70,$61,$70,$62,$70,$63,""
+ line $64,$70,$65,$70,$66,$70,$67,$70,$68,$70,$69,$70,$70,$70,$70,$70,$70,""
+ line $70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70
+ done
NewDeckText: ; 3ba03 (e:7a03)
- db TX_START,"New deck",TX_END
+ text "New deck"
+ done
PleaseSelectDeckText: ; 3ba0d (e:7a0d)
- db TX_START,"Please select deck.",TX_END
+ text "Please select deck."
+ done
Text0225: ; 3ba22 (e:7a22)
- db TX_START,"Modify deck",TX_END
+ text "Modify deck"
+ done
Text0226: ; 3ba2f (e:7a2f)
- db TX_START,"Change name",TX_END
+ text "Change name"
+ done
Text0227: ; 3ba3c (e:7a3c)
- db TX_START,"Select deck",TX_END
+ text "Select deck"
+ done
Text0228: ; 3ba49 (e:7a49)
- db TX_START,"Cancel",TX_END
+ text "Cancel"
+ done
Text0229: ; 3ba51 (e:7a51)
- db TX_START,"as",TX_END
+ text "as"
+ done
ChosenAsDuelingDeckText: ; 3ba55 (e:7a55)
- db TX_START,TX_RAM2," was\n"
- db "chosen as the dueling deck!",TX_END
+ text TX_RAM2," was"
+ line "chosen as the dueling deck!"
+ done
Text022b: ; 3ba78 (e:7a78)
- db $61,$77,TX_END
+ db $61,$77
+ done
Text022c: ; 3ba7b (e:7a7b)
- db $62,$77,TX_END
+ db $62,$77
+ done
Text022d: ; 3ba7e (e:7a7e)
- db $63,$77,TX_END
+ db $63,$77
+ done
Text022e: ; 3ba81 (e:7a81)
- db $64,$77,TX_END
+ db $64,$77
+ done
ThereIsNoDeckHereText: ; 3ba84 (e:7a84)
- db TX_START,"There is no Deck here!",TX_END
+ text "There is no Deck here!"
+ done
Text0230: ; 3ba9c (e:7a9c)
- db TX_START,"Confirm",TX_END
+ text "Confirm"
+ done
Text0231: ; 3baa5 (e:7aa5)
- db TX_START,"Dismantle",TX_END
+ text "Dismantle"
+ done
Text0232: ; 3bab0 (e:7ab0)
- db TX_START,"Modify",TX_END
+ text "Modify"
+ done
Text0233: ; 3bab8 (e:7ab8)
- db TX_START,"Save",TX_END
+ text "Save"
+ done
Text0234: ; 3babe (e:7abe)
- db TX_START,"Name",TX_END
+ text "Name"
+ done
Text0235: ; 3bac4 (e:7ac4)
- db TX_START,"There is only 1 Deck, so this\n"
- db "Deck cannot be dismantled.",TX_END
+ text "There is only 1 Deck, so this"
+ line "Deck cannot be dismantled."
+ done
Text0236: ; 3bafe (e:7afe)
- db TX_START,"There are no Basic Pok`mon\n"
- db "in this Deck!",TX_END
+ text "There are no Basic Pok`mon"
+ line "in this Deck!"
+ done
Text0237: ; 3bb28 (e:7b28)
- db TX_START,"You must include a Basic Pok`mon\n"
- db "in the Deck!",TX_END
+ text "You must include a Basic Pok`mon"
+ line "in the Deck!"
+ done
Text0238: ; 3bb57 (e:7b57)
- db TX_START,"This isn't a 60-card deck!",TX_END
+ text "This isn't a 60-card deck!"
+ done
Text0239: ; 3bb73 (e:7b73)
- db TX_START,"The Deck must include 60 cards!",TX_END
+ text "The Deck must include 60 cards!"
+ done
Text023a: ; 3bb94 (e:7b94)
- db TX_START,"Return to original configuration?",TX_END
+ text "Return to original configuration?"
+ done
Text023b: ; 3bbb7 (e:7bb7)
- db TX_START,"Save this Deck?",TX_END
+ text "Save this Deck?"
+ done
Text023c: ; 3bbc8 (e:7bc8)
- db TX_START,"Quit modifying the Deck?",TX_END
+ text "Quit modifying the Deck?"
+ done
Text023d: ; 3bbe2 (e:7be2)
- db TX_START,"Dismantle this Deck?",TX_END
+ text "Dismantle this Deck?"
+ done
Text023e: ; 3bbf8 (e:7bf8)
- db TX_START,"No cards chosen.",TX_END
+ text "No cards chosen."
+ done
Text023f: ; 3bc0a (e:7c0a)
- db TX_START,"Your Pok`mon",TX_END
+ text "Your Pok`mon"
+ done
Text0240: ; 3bc18 (e:7c18)
- db TX_START,"Your Discard Pile",TX_END
+ text "Your Discard Pile"
+ done
Text0241: ; 3bc2b (e:7c2b)
- db TX_START,"Your Hand",TX_END
+ text "Your Hand"
+ done
Text0242: ; 3bc36 (e:7c36)
- db TX_START,"To Your Play Area",TX_END
+ text "To Your Play Area"
+ done
Text0243: ; 3bc49 (e:7c49)
- db TX_START,"Opponent's Pok`mon",TX_END
+ text "Opponent's Pok`mon"
+ done
Text0244: ; 3bc5d (e:7c5d)
- db TX_START,"Opponent's Discard Pile",TX_END
+ text "Opponent's Discard Pile"
+ done
Text0245: ; 3bc76 (e:7c76)
- db TX_START,"Opponent Hand",TX_END
+ text "Opponent Hand"
+ done
Text0246: ; 3bc85 (e:7c85)
- db TX_START,"To Opponent's Play Area",TX_END
+ text "To Opponent's Play Area"
+ done
Text0247: ; 3bc9e (e:7c9e)
- db TX_START,TX_RAM1,"'s Play Area",TX_END
+ text TX_RAM1,"'s Play Area"
+ done
Text0248: ; 3bcad (e:7cad)
- db TX_START,"Your Play Area",TX_END
+ text "Your Play Area"
+ done
Text0249: ; 3bcbd (e:7cbd)
- db TX_START,"Opp. Play Area",TX_END
+ text "Opp. Play Area"
+ done
Text024a: ; 3bccd (e:7ccd)
- db TX_START,"In Play Area",TX_END
+ text "In Play Area"
+ done
Text024b: ; 3bcdb (e:7cdb)
- db TX_START,"Glossary",TX_END
+ text "Glossary"
+ done
Text024c: ; 3bce5 (e:7ce5)
- db TX_START,"Which card would you like to see?",TX_END
+ text "Which card would you like to see?"
+ done
Text024d: ; 3bd08 (e:7d08)
- db TX_START,"Please choose a Prize.",TX_END
+ text "Please choose a Prize."
+ done
Text024e: ; 3bd20 (e:7d20)
- db TX_START,"Hand",TX_END
+ text "Hand"
+ done
Text024f: ; 3bd26 (e:7d26)
- db TX_START,TX_RAM1,"'s Hand",TX_END
+ text TX_RAM1,"'s Hand"
+ done
Text0250: ; 3bd30 (e:7d30)
- db TX_START,TX_RAM1,"'s Discard Pile",TX_END
+ text TX_RAM1,"'s Discard Pile"
+ done
Text0251: ; 3bd42 (e:7d42)
- db $70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,TX_END
+ db $70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70,$70
+ done
Text0252: ; 3bd55 (e:7d55)
- db TX_START,"Booster Pack",TX_END
+ text "Booster Pack"
+ done
Text0253: ; 3bd63 (e:7d63)
- db TX_START,"1. Colosseum",TX_END
+ text "1. Colosseum"
+ done
Text0254: ; 3bd71 (e:7d71)
- db TX_START,"2. Evolution",TX_END
+ text "2. Evolution"
+ done
Text0255: ; 3bd7f (e:7d7f)
- db TX_START,"3. Mystery",TX_END
+ text "3. Mystery"
+ done
Text0256: ; 3bd8b (e:7d8b)
- db TX_START,"4. Laboratory",TX_END
+ text "4. Laboratory"
+ done
Text0257: ; 3bd9a (e:7d9a)
- db TX_START,"5. Promotional Card",TX_END
+ text "5. Promotional Card"
+ done
Text0258: ; 3bdaf (e:7daf)
- db TX_START,"View which Card File?",TX_END
+ text "View which Card File?"
+ done
Text0259: ; 3bdc6 (e:7dc6)
- db $6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,TX_END
+ db $6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b
+ done
Text025a: ; 3bdd1 (e:7dd1)
- db TX_START,"'s Cards",TX_END
+ text "'s Cards"
+ done
Text025b: ; 3bddb (e:7ddb)
- db $6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,TX_END
+ db $6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b,$6b
+ done
Text025c: ; 3bdea (e:7dea)
- db TX_START," Deck Save Machine ",TX_END
+ text " Deck Save Machine "
+ done
Text025d: ; 3be02 (e:7e02)
- db TX_START,"Save a Deck",TX_END
+ text "Save a Deck"
+ done
Text025e: ; 3be0f (e:7e0f)
- db TX_START,"Delete a Deck",TX_END
+ text "Delete a Deck"
+ done
Text025f: ; 3be1e (e:7e1e)
- db TX_START,"Build a Deck",TX_END
+ text "Build a Deck"
+ done
Text0260: ; 3be2c (e:7e2c)
- db TX_START,"Choose a Deck to Save.",TX_END
+ text "Choose a Deck to Save."
+ done
Text0261: ; 3be44 (e:7e44)
- db TX_START,"You may only Save 60 Decks.\n"
- db "Please Delete a Deck first.",TX_END
+ text "You may only Save 60 Decks."
+ line "Please Delete a Deck first."
+ done
Text0262: ; 3be7d (e:7e7d)
- db TX_START,"for",TX_END
+ text "for"
+ done
Text0263: ; 3be82 (e:7e82)
- db TX_START,"Saved the configuration for\n"
- db TX_START,TX_RAM2,"! ",TX_END
+ text "Saved the configuration for"
+ line ""
+ text TX_RAM2,"! "
+ done
Text0264: ; 3bea4 (e:7ea4)
- db TX_START,"No Deck is saved.",TX_END
+ text "No Deck is saved."
+ done
Text0265: ; 3beb7 (e:7eb7)
- db TX_START,"Please choose a Deck \n"
- db "configuration to delete.",TX_END
+ text "Please choose a Deck "
+ line "configuration to delete."
+ done
Text0266: ; 3bee7 (e:7ee7)
- db TX_START,"Do you really wish to delete?",TX_END
+ text "Do you really wish to delete?"
+ done
Text0267: ; 3bf06 (e:7f06)
- db TX_START,"Deleted the configuration for\n"
- db TX_START,TX_RAM2,".",TX_END
+ text "Deleted the configuration for"
+ line ""
+ text TX_RAM2,"."
+ done
Text0268: ; 3bf29 (e:7f29)
- db TX_START,"You may only carry 4 Decks!",TX_END
+ text "You may only carry 4 Decks!"
+ done
Text0269: ; 3bf46 (e:7f46)
- db TX_START,"Choose a deck to dismantle.",TX_END
+ text "Choose a deck to dismantle."
+ done
Text026a: ; 3bf63 (e:7f63)
- db TX_START,"Dismantled\n"
- db TX_START,TX_RAM2,".",TX_END
+ text "Dismantled"
+ line ""
+ text TX_RAM2,"."
+ done
Text026b: ; 3bf73 (e:7f73)
- db TX_START,"Please choose the Deck\n"
- db "you wish to Build.",TX_END
+ text "Please choose the Deck"
+ line "you wish to Build."
+ done
Text026c: ; 3bf9e (e:7f9e)
- db TX_START,"This Deck can only be built if\n"
- db "you dismantle another Deck.",TX_END
+ text "This Deck can only be built if"
+ line "you dismantle another Deck."
+ done
diff --git a/src/text/text3.asm b/src/text/text3.asm
index f780c92..1f730ec 100644
--- a/src/text/text3.asm
+++ b/src/text/text3.asm
@@ -1,1607 +1,2012 @@
Text026d: ; 3c000 (f:4000)
- db TX_START,"You do not own all cards needed\n"
- db "to build this Deck.",TX_END
+ text "You do not own all cards needed"
+ line "to build this Deck."
+ done
Text026e: ; 3c035 (f:4035)
- db TX_START,"Built\n"
- db TX_RAM2,TX_END
+ text "Built"
+ line TX_RAM2
+ done
Text026f: ; 3c03e (f:403e)
- db TX_START,"These cards are needed\n"
- db "to build this Deck:",TX_END
+ text "These cards are needed"
+ line "to build this Deck:"
+ done
Text0270: ; 3c06a (f:406a)
- db TX_START,"Dismantle these Decks?",TX_END
+ text "Dismantle these Decks?"
+ done
Text0271: ; 3c082 (f:4082)
- db TX_START,"Dismantled the Deck.",TX_END
+ text "Dismantled the Deck."
+ done
Text0272: ; 3c098 (f:4098)
- db TX_START,"OK if this file is deleted?",TX_END
+ text "OK if this file is deleted?"
+ done
Text0273: ; 3c0b5 (f:40b5)
- db TX_START,"Read the Instructions",TX_END
+ text "Read the Instructions"
+ done
Text0274: ; 3c0cc (f:40cc)
- db TX_START,"Print this card?\n"
- db " Yes No",TX_END
+ text "Print this card?"
+ line " Yes No"
+ done
Text0275: ; 3c0ef (f:40ef)
- db TX_START,"Please choose a Deck configuration\n"
- db "to print.",TX_END
+ text "Please choose a Deck configuration"
+ line "to print."
+ done
Text0276: ; 3c11d (f:411d)
- db TX_START,"Print this Deck?",TX_END
+ text "Print this Deck?"
+ done
Text0277: ; 3c12f (f:412f)
- db TX_START,"Print the card list?\n"
- db " Yes No",TX_END
+ text "Print the card list?"
+ line " Yes No"
+ done
Text0278: ; 3c156 (f:4156)
- db TX_START,"Pok`mon Cards\n"
- db "Deck Configuration\n"
- db "Card List\n"
- db "Print Quality\n"
- db "Quit Print",TX_END
+ text "Pok`mon Cards"
+ line "Deck Configuration"
+ line "Card List"
+ line "Print Quality"
+ line "Quit Print"
+ done
Text0279: ; 3c19b (f:419b)
- db TX_START,"What would you like to print?",TX_END
+ text "What would you like to print?"
+ done
Text027a: ; 3c1ba (f:41ba)
- db TX_START,"Please set the contrast:\n"
- db " Light 1 2 3 4 5 Dark",TX_END
+ text "Please set the contrast:"
+ line " Light 1 2 3 4 5 Dark"
+ done
Text027b: ; 3c1f7 (f:41f7)
- db TX_START,"Please make sure to turn\n"
- db "the Game Boy Printer OFF.",TX_END
+ text "Please make sure to turn"
+ line "the Game Boy Printer OFF."
+ done
Text027c: ; 3c22b (f:422b)
- db TX_START,"Procedures for sending cards:",TX_END
+ text "Procedures for sending cards:"
+ done
Text027d: ; 3c24a (f:424a)
- db TX_START,"1. Choose the card you wish to send.\n"
- db " Press left/right to choose more.\n\n"
- db "2. Choose all the cards. Then press\n"
- db " the B Button to open the menu.\n\n"
- db "3. Choose Send to finish\n"
- db " the process.",TX_END
+ text "1. Choose the card you wish to send."
+ line " Press left/right to choose more.\n"
+ line "2. Choose all the cards. Then press"
+ line " the B Button to open the menu.\n"
+ line "3. Choose Send to finish"
+ line " the process."
+ done
Text027e: ; 3c305 (f:4305)
- db TX_START,"Please read the procedures\n"
- db "for sending cards.",TX_END
+ text "Please read the procedures"
+ line "for sending cards."
+ done
Text027f: ; 3c334 (f:4334)
- db TX_START,"Send",TX_END
+ text "Send"
+ done
Text0280: ; 3c33a (f:433a)
- db TX_START,"Card received",TX_END
+ text "Card received"
+ done
Text0281: ; 3c349 (f:4349)
- db TX_START,"Card to send",TX_END
+ text "Card to send"
+ done
Text0282: ; 3c357 (f:4357)
- db TX_START,"Send these cards?",TX_END
+ text "Send these cards?"
+ done
Text0283: ; 3c36a (f:436a)
- db TX_START,"Received these cards\n"
- db "from ",TX_RAM2,"!",TX_END
+ text "Received these cards"
+ line "from ",TX_RAM2,"!"
+ done
Text0284: ; 3c389 (f:4389)
- db TX_START,"Please choose a Deck \n"
- db "configuration to send.",TX_END
+ text "Please choose a Deck "
+ line "configuration to send."
+ done
Text0285: ; 3c3b7 (f:43b7)
- db TX_START,"Please choose a Save Slot.",TX_END
+ text "Please choose a Save Slot."
+ done
Text0286: ; 3c3d3 (f:43d3)
- db TX_START,"Receive configuration.",TX_END
+ text "Receive configuration."
+ done
Text0287: ; 3c3eb (f:43eb)
- db TX_START,"Received a deck configuration\n"
- db "from ",TX_RAM2,"!",TX_END
+ text "Received a deck configuration"
+ line "from ",TX_RAM2,"!"
+ done
Text0288: ; 3c413 (f:4413)
- db TX_START," Fighting Machine ",TX_END
+ text " Fighting Machine "
+ done
Text0289: ; 3c429 (f:4429)
- db TX_START," Rock Machine ",TX_END
+ text " Rock Machine "
+ done
Text028a: ; 3c43b (f:443b)
- db TX_START," Water Machine ",TX_END
+ text " Water Machine "
+ done
Text028b: ; 3c44f (f:444f)
- db TX_START," Lightning Machine ",TX_END
+ text " Lightning Machine "
+ done
Text028c: ; 3c467 (f:4467)
- db TX_START," Grass Machine ",TX_END
+ text " Grass Machine "
+ done
Text028d: ; 3c47b (f:447b)
- db TX_START," Psychic Machine ",TX_END
+ text " Psychic Machine "
+ done
Text028e: ; 3c491 (f:4491)
- db TX_START," Science Machine ",TX_END
+ text " Science Machine "
+ done
Text028f: ; 3c4a7 (f:44a7)
- db TX_START," Fire Machine ",TX_END
+ text " Fire Machine "
+ done
Text0290: ; 3c4b9 (f:44b9)
- db TX_START," Auto Machine ",TX_END
+ text " Auto Machine "
+ done
Text0291: ; 3c4cb (f:44cb)
- db TX_START," Legendary Machine ",TX_END
+ text " Legendary Machine "
+ done
Text0292: ; 3c4e3 (f:44e3)
- db TX_START,"All Fighting Pok`mon",TX_END
+ text "All Fighting Pok`mon"
+ done
Text0293: ; 3c4f9 (f:44f9)
- db TX_START,"Bench Attack",TX_END
+ text "Bench Attack"
+ done
Text0294: ; 3c507 (f:4507)
- db TX_START,"Battle Contest",TX_END
+ text "Battle Contest"
+ done
Text0295: ; 3c517 (f:4517)
- db TX_START,"Heated Battle",TX_END
+ text "Heated Battle"
+ done
Text0296: ; 3c526 (f:4526)
- db TX_START,"First-Strike",TX_END
+ text "First-Strike"
+ done
Text0297: ; 3c534 (f:4534)
- db TX_START,"Squeaking Mouse",TX_END
+ text "Squeaking Mouse"
+ done
Text0298: ; 3c545 (f:4545)
- db TX_START,"Great Quake",TX_END
+ text "Great Quake"
+ done
Text0299: ; 3c552 (f:4552)
- db TX_START,"Bone Attack",TX_END
+ text "Bone Attack"
+ done
Text029a: ; 3c55f (f:455f)
- db TX_START,"Excavation",TX_END
+ text "Excavation"
+ done
Text029b: ; 3c56b (f:456b)
- db TX_START,"Rock Crusher",TX_END
+ text "Rock Crusher"
+ done
Text029c: ; 3c579 (f:4579)
- db TX_START,"Blue Water",TX_END
+ text "Blue Water"
+ done
Text029d: ; 3c585 (f:4585)
- db TX_START,"On the Beach",TX_END
+ text "On the Beach"
+ done
Text029e: ; 3c593 (f:4593)
- db TX_START,"Paralyze!",TX_END
+ text "Paralyze!"
+ done
Text029f: ; 3c59e (f:459e)
- db TX_START,"Energy Removal",TX_END
+ text "Energy Removal"
+ done
Text02a0: ; 3c5ae (f:45ae)
- db TX_START,"Rain Dancer",TX_END
+ text "Rain Dancer"
+ done
Text02a1: ; 3c5bb (f:45bb)
- db TX_START,"Cute Pok`mon",TX_END
+ text "Cute Pok`mon"
+ done
Text02a2: ; 3c5c9 (f:45c9)
- db TX_START,"Pok`mon Flute",TX_END
+ text "Pok`mon Flute"
+ done
Text02a3: ; 3c5d8 (f:45d8)
- db TX_START,"Yellow Flash",TX_END
+ text "Yellow Flash"
+ done
Text02a4: ; 3c5e6 (f:45e6)
- db TX_START,"Electric Shock",TX_END
+ text "Electric Shock"
+ done
Text02a5: ; 3c5f6 (f:45f6)
- db TX_START,"Zapping Selfdestruct",TX_END
+ text "Zapping Selfdestruct"
+ done
Text02a6: ; 3c60c (f:460c)
- db TX_START,"Insect Collection",TX_END
+ text "Insect Collection"
+ done
Text02a7: ; 3c61f (f:461f)
- db TX_START,"Jungle",TX_END
+ text "Jungle"
+ done
Text02a8: ; 3c627 (f:4627)
- db TX_START,"Flower Garden",TX_END
+ text "Flower Garden"
+ done
Text02a9: ; 3c636 (f:4636)
- db TX_START,"Kaleidoscope",TX_END
+ text "Kaleidoscope"
+ done
Text02aa: ; 3c644 (f:4644)
- db TX_START,"Flower Power",TX_END
+ text "Flower Power"
+ done
Text02ab: ; 3c652 (f:4652)
- db TX_START,"Psychic Power",TX_END
+ text "Psychic Power"
+ done
Text02ac: ; 3c661 (f:4661)
- db TX_START,"Dream Eater Haunter",TX_END
+ text "Dream Eater Haunter"
+ done
Text02ad: ; 3c676 (f:4676)
- db TX_START,"Scavenging Slowbro",TX_END
+ text "Scavenging Slowbro"
+ done
Text02ae: ; 3c68a (f:468a)
- db TX_START,"Strange Power",TX_END
+ text "Strange Power"
+ done
Text02af: ; 3c699 (f:4699)
- db TX_START,"Strange Psyshock",TX_END
+ text "Strange Psyshock"
+ done
Text02b0: ; 3c6ab (f:46ab)
- db TX_START,"Lovely Nidoran",TX_END
+ text "Lovely Nidoran"
+ done
Text02b1: ; 3c6bb (f:46bb)
- db TX_START,"Science Corps",TX_END
+ text "Science Corps"
+ done
Text02b2: ; 3c6ca (f:46ca)
- db TX_START,"Flyin' Pok`mon",TX_END
+ text "Flyin' Pok`mon"
+ done
Text02b3: ; 3c6da (f:46da)
- db TX_START,"Poison",TX_END
+ text "Poison"
+ done
Text02b4: ; 3c6e2 (f:46e2)
- db TX_START,"Wonders of Science",TX_END
+ text "Wonders of Science"
+ done
Text02b5: ; 3c6f6 (f:46f6)
- db TX_START,"Replace 'Em All",TX_END
+ text "Replace 'Em All"
+ done
Text02b6: ; 3c707 (f:4707)
- db TX_START,"Chari-Saur",TX_END
+ text "Chari-Saur"
+ done
Text02b7: ; 3c713 (f:4713)
- db TX_START,"Traffic Light",TX_END
+ text "Traffic Light"
+ done
Text02b8: ; 3c722 (f:4722)
- db TX_START,"Fire Pok`mon",TX_END
+ text "Fire Pok`mon"
+ done
Text02b9: ; 3c730 (f:4730)
- db TX_START,"Fire Charge",TX_END
+ text "Fire Charge"
+ done
Text02ba: ; 3c73d (f:473d)
- db TX_START,"Charmander & Friends",TX_END
+ text "Charmander & Friends"
+ done
Text02bb: ; 3c753 (f:4753)
- db TX_START,"Squirtle & Friends",TX_END
+ text "Squirtle & Friends"
+ done
Text02bc: ; 3c767 (f:4767)
- db TX_START,"Bulbasaur & Friends",TX_END
+ text "Bulbasaur & Friends"
+ done
Text02bd: ; 3c77c (f:477c)
- db TX_START,"Psychic Machamp",TX_END
+ text "Psychic Machamp"
+ done
Text02be: ; 3c78d (f:478d)
- db TX_START,"Water Beetle",TX_END
+ text "Water Beetle"
+ done
Text02bf: ; 3c79b (f:479b)
- db TX_START,"Legendary Moltres",TX_END
+ text "Legendary Moltres"
+ done
Text02c0: ; 3c7ae (f:47ae)
- db TX_START,"Legendary Zapdos",TX_END
+ text "Legendary Zapdos"
+ done
Text02c1: ; 3c7c0 (f:47c0)
- db TX_START,"Legendary Articuno",TX_END
+ text "Legendary Articuno"
+ done
Text02c2: ; 3c7d4 (f:47d4)
- db TX_START,"Legendary Dragonite",TX_END
+ text "Legendary Dragonite"
+ done
Text02c3: ; 3c7e9 (f:47e9)
- db TX_START,"Mysterious Pok`mon",TX_END
+ text "Mysterious Pok`mon"
+ done
Text02c4: ; 3c7fd (f:47fd)
- db TX_START,"A Deck of Fighting Pok`mon:\n"
- db "Feel their Fighting power!",TX_END
+ text "A Deck of Fighting Pok`mon:"
+ line "Feel their Fighting power!"
+ done
Text02c5: ; 3c835 (f:4835)
- db TX_START,"A Deck of Pok`mon that can\n"
- db "attack the Bench.",TX_END
+ text "A Deck of Pok`mon that can"
+ line "attack the Bench."
+ done
Text02c6: ; 3c863 (f:4863)
- db TX_START,"A Deck which uses Fighting Attacks\n"
- db "such as Slash and Punch.",TX_END
+ text "A Deck which uses Fighting Attacks"
+ line "such as Slash and Punch."
+ done
Text02c7: ; 3c8a0 (f:48a0)
- db TX_START,"A powerful Deck with both Fire\n"
- db "and Fighting Pok`mon.",TX_END
+ text "A powerful Deck with both Fire"
+ line "and Fighting Pok`mon."
+ done
Text02c8: ; 3c8d6 (f:48d6)
- db TX_START,"A Deck for fast and furious \n"
- db "attacks.",TX_END
+ text "A Deck for fast and furious "
+ line "attacks."
+ done
Text02c9: ; 3c8fd (f:48fd)
- db TX_START,"A Deck made of Mouse Pok`mon.\n"
- db "Uses PlusPower to Power up!",TX_END
+ text "A Deck made of Mouse Pok`mon."
+ line "Uses PlusPower to Power up!"
+ done
Text02ca: ; 3c938 (f:4938)
- db TX_START,"Use Dugtrio's Earthquake\n"
- db "to cause great damage.",TX_END
+ text "Use Dugtrio's Earthquake"
+ line "to cause great damage."
+ done
Text02cb: ; 3c969 (f:4969)
- db TX_START,"A Deck of Cubone and Marowak - \n"
- db "A call for help.",TX_END
+ text "A Deck of Cubone and Marowak - "
+ line "A call for help."
+ done
Text02cc: ; 3c99b (f:499b)
- db TX_START,"A Deck which creates Pok`mon by\n"
- db "evolving Mysterious Fossils.",TX_END
+ text "A Deck which creates Pok`mon by"
+ line "evolving Mysterious Fossils."
+ done
Text02cd: ; 3c9d9 (f:49d9)
- db TX_START,"A Deck of Rock Pok`mon. It's\n"
- db "Strong against Lightning Pok`mon.",TX_END
+ text "A Deck of Rock Pok`mon. It's"
+ line "Strong against Lightning Pok`mon."
+ done
Text02ce: ; 3ca19 (f:4a19)
- db TX_START,"A Deck of Water Pok`mon: Their\n"
- db "Blue Horror washes over enemies.",TX_END
+ text "A Deck of Water Pok`mon: Their"
+ line "Blue Horror washes over enemies."
+ done
Text02cf: ; 3ca5a (f:4a5a)
- db TX_START,"A well balanced Deck\n"
- db "of Sandshrew and Water Pok`mon!",TX_END
+ text "A well balanced Deck"
+ line "of Sandshrew and Water Pok`mon!"
+ done
Text02d0: ; 3ca90 (f:4a90)
- db TX_START,"Paralyze the opponent's Pok`mon:\n"
- db "Stop 'em and drop 'em!",TX_END
+ text "Paralyze the opponent's Pok`mon:"
+ line "Stop 'em and drop 'em!"
+ done
Text02d1: ; 3cac9 (f:4ac9)
- db TX_START,"Uses Whirlpool and Hyper Beam to\n"
- db "remove opponents' Energy cards.",TX_END
+ text "Uses Whirlpool and Hyper Beam to"
+ line "remove opponents' Energy cards."
+ done
Text02d2: ; 3cb0b (f:4b0b)
- db TX_START,"Use Rain Dance to attach Water\n"
- db "Energy for powerful Attacks!",TX_END
+ text "Use Rain Dance to attach Water"
+ line "Energy for powerful Attacks!"
+ done
Text02d3: ; 3cb48 (f:4b48)
- db TX_START,"A Deck of cute Pok`mon such as\n"
- db "Pikachu and Eevee.",TX_END
+ text "A Deck of cute Pok`mon such as"
+ line "Pikachu and Eevee."
+ done
Text02d4: ; 3cb7b (f:4b7b)
- db TX_START,"Use the Pok`mon Flute to revive\n"
- db "opponents' Pok`mon and Attack!",TX_END
+ text "Use the Pok`mon Flute to revive"
+ line "opponents' Pok`mon and Attack!"
+ done
Text02d5: ; 3cbbb (f:4bbb)
- db TX_START,"A deck of Pok`mon that use Lightning\n"
- db "Energy to zap opponents.",TX_END
+ text "A deck of Pok`mon that use Lightning"
+ line "Energy to zap opponents."
+ done
Text02d6: ; 3cbfa (f:4bfa)
- db TX_START,"A Deck which Shocks and Paralyzes\n"
- db "opponents with its Attacks.",TX_END
+ text "A Deck which Shocks and Paralyzes"
+ line "opponents with its Attacks."
+ done
Text02d7: ; 3cc39 (f:4c39)
- db TX_START,"Selfdestruct causes great damage \n"
- db "- even to the opponent's Bench.",TX_END
+ text "Selfdestruct causes great damage "
+ line "- even to the opponent's Bench."
+ done
Text02d8: ; 3cc7c (f:4c7c)
- db TX_START,"A Deck made of Insect Pok`mon\n"
- db "Go Bug Power!",TX_END
+ text "A Deck made of Insect Pok`mon"
+ line "Go Bug Power!"
+ done
Text02d9: ; 3cca9 (f:4ca9)
- db TX_START,"A Deck of Grass Pok`mon: There \n"
- db "are many dangers in the Jungle.",TX_END
+ text "A Deck of Grass Pok`mon: There "
+ line "are many dangers in the Jungle."
+ done
Text02da: ; 3ccea (f:4cea)
- db TX_START,"A Deck of Flower Pok`mon:\n"
- db "Beautiful but Dangerous",TX_END
+ text "A Deck of Flower Pok`mon:"
+ line "Beautiful but Dangerous"
+ done
Text02db: ; 3cd1d (f:4d1d)
- db TX_START,"Uses Venomoth's Pok`mon Power to\n"
- db "change the opponent's Weakness.",TX_END
+ text "Uses Venomoth's Pok`mon Power to"
+ line "change the opponent's Weakness."
+ done
Text02dc: ; 3cd5f (f:4d5f)
- db TX_START,"A powerful Big Eggsplosion \n"
- db "and Energy Transfer combo!",TX_END
+ text "A powerful Big Eggsplosion "
+ line "and Energy Transfer combo!"
+ done
Text02dd: ; 3cd97 (f:4d97)
- db TX_START,"Use the Psychic power of the\n"
- db "Psychic Pok`mon to Attack!",TX_END
+ text "Use the Psychic power of the"
+ line "Psychic Pok`mon to Attack!"
+ done
Text02de: ; 3cdd0 (f:4dd0)
- db TX_START,"Uses Haunter's Dream Eater\n"
- db "to cause great damage!",TX_END
+ text "Uses Haunter's Dream Eater"
+ line "to cause great damage!"
+ done
Text02df: ; 3ce03 (f:4e03)
- db TX_START,"Continually draw Trainer \n"
- db "Cards from the Discard Pile!",TX_END
+ text "Continually draw Trainer "
+ line "Cards from the Discard Pile!"
+ done
Text02e0: ; 3ce3b (f:4e3b)
- db TX_START,"Confuse opponents with\n"
- db "mysterious power!",TX_END
+ text "Confuse opponents with"
+ line "mysterious power!"
+ done
Text02e1: ; 3ce65 (f:4e65)
- db TX_START,"Use Alakazam's Damage Swap\n"
- db "to move damage counters!",TX_END
+ text "Use Alakazam's Damage Swap"
+ line "to move damage counters!"
+ done
Text02e2: ; 3ce9a (f:4e9a)
- db TX_START,"Uses Nidoqueen's Boyfriends to cause\n"
- db "great damage to the opponent.",TX_END
+ text "Uses Nidoqueen's Boyfriends to cause"
+ line "great damage to the opponent."
+ done
Text02e3: ; 3cede (f:4ede)
- db TX_START,"The march of the Science Corps!\n"
- db "Attack with the power of science!",TX_END
+ text "The march of the Science Corps!"
+ line "Attack with the power of science!"
+ done
Text02e4: ; 3cf21 (f:4f21)
- db TX_START,"Pok`mon with feathers flock \n"
- db "together! Retreating is easy!",TX_END
+ text "Pok`mon with feathers flock "
+ line "together! Retreating is easy!"
+ done
Text02e5: ; 3cf5d (f:4f5d)
- db TX_START,"A Deck that uses Poison to \n"
- db "slowly Knock Out the opponent.",TX_END
+ text "A Deck that uses Poison to "
+ line "slowly Knock Out the opponent."
+ done
Text02e6: ; 3cf99 (f:4f99)
- db TX_START,"Block Pok`mon Powers with \n"
- db "Muk and attack with Mewtwo!",TX_END
+ text "Block Pok`mon Powers with "
+ line "Muk and attack with Mewtwo!"
+ done
Text02e7: ; 3cfd1 (f:4fd1)
- db TX_START,"A Deck that shuffles\n"
- db "the opponent's cards",TX_END
+ text "A Deck that shuffles"
+ line "the opponent's cards"
+ done
Text02e8: ; 3cffc (f:4ffc)
- db TX_START,"Attack with Charizard - with \n"
- db "just a few Fire Energy cards!",TX_END
+ text "Attack with Charizard - with "
+ line "just a few Fire Energy cards!"
+ done
Text02e9: ; 3d039 (f:5039)
- db TX_START,"Pok`mon that can Attack with\n"
- db "Fire, Water or Lightning Energy!",TX_END
+ text "Pok`mon that can Attack with"
+ line "Fire, Water or Lightning Energy!"
+ done
Text02ea: ; 3d078 (f:5078)
- db TX_START,"With Fire Pok`mon like Charizard, \n"
- db "Rapidash and Magmar, it's hot!",TX_END
+ text "With Fire Pok`mon like Charizard, "
+ line "Rapidash and Magmar, it's hot!"
+ done
Text02eb: ; 3d0bb (f:50bb)
- db TX_START,"Desperate attacks Damage your \n"
- db "opponent and you!",TX_END
+ text "Desperate attacks Damage your "
+ line "opponent and you!"
+ done
Text02ec: ; 3d0ed (f:50ed)
- db TX_START,"A Fire, Grass and Water Deck:\n"
- db "Charmander, Pinsir and Seel",TX_END
+ text "A Fire, Grass and Water Deck:"
+ line "Charmander, Pinsir and Seel"
+ done
Text02ed: ; 3d128 (f:5128)
- db TX_START,"A Water, Fire, and Lightning Deck:\n"
- db "Squirtle, Charmander and Pikachu",TX_END
+ text "A Water, Fire, and Lightning Deck:"
+ line "Squirtle, Charmander and Pikachu"
+ done
Text02ee: ; 3d16d (f:516d)
- db TX_START,"A Grass, Lightning and Psychic Deck:\n"
- db "Bulbasaur, Pikachu and Abra",TX_END
+ text "A Grass, Lightning and Psychic Deck:"
+ line "Bulbasaur, Pikachu and Abra"
+ done
Text02ef: ; 3d1af (f:51af)
- db TX_START,"Machamp, Hitmonlee, Hitmonchan\n"
- db "Gengar and Alakazam are furious!",TX_END
+ text "Machamp, Hitmonlee, Hitmonchan"
+ line "Gengar and Alakazam are furious!"
+ done
Text02f0: ; 3d1f0 (f:51f0)
- db TX_START,"An Evolution Deck with Weedle, \n"
- db "Nidoran$ and Bellsprout.",TX_END
+ text "An Evolution Deck with Weedle, "
+ line "Nidoran$ and Bellsprout."
+ done
Text02f1: ; 3d22a (f:522a)
- db TX_START,"Gather Fire Energy with the\n"
- db "Legendary Moltres!",TX_END
+ text "Gather Fire Energy with the"
+ line "Legendary Moltres!"
+ done
Text02f2: ; 3d25a (f:525a)
- db TX_START,"Zap opponents with the\n"
- db "Legandary Zapdos!",TX_END
+ text "Zap opponents with the"
+ line "Legandary Zapdos!"
+ done
Text02f3: ; 3d284 (f:5284)
- db TX_START,"Paralyze opponents with the\n"
- db "Legendary Articuno!",TX_END
+ text "Paralyze opponents with the"
+ line "Legendary Articuno!"
+ done
Text02f4: ; 3d2b5 (f:52b5)
- db TX_START,"Heal your Pok`mon with the\n"
- db "Legendary Dragonite!",TX_END
+ text "Heal your Pok`mon with the"
+ line "Legendary Dragonite!"
+ done
Text02f5: ; 3d2e6 (f:52e6)
- db TX_START,"A very special Deck made of\n"
- db "very rare Pok`mon cards!",TX_END
+ text "A very special Deck made of"
+ line "very rare Pok`mon cards!"
+ done
Text02f6: ; 3d31c (f:531c)
- db TX_START,"Pok`mon Card Glossary",TX_END
+ text "Pok`mon Card Glossary"
+ done
Text02f7: ; 3d333 (f:5333)
- db TX_START,"Deck Active Pok`mon\n"
- db "Discard Pile Bench Pok`mon\n"
- db "Hand Prizes \n"
- db "Arena Damage Counter\n"
- db "Bench To next page ",TX_END
+ text "Deck Active Pok`mon"
+ line "Discard Pile Bench Pok`mon"
+ line "Hand Prizes "
+ line "Arena Damage Counter"
+ line "Bench To next page "
+ done
Text02f8: ; 3d3e0 (f:53e0)
- db TX_START,"Energy Card Pok`mon Power \n"
- db "Trainer Card Weakness \n"
- db "Basic Pok`mon Resistance\n"
- db "Evolution Card Retreat \n"
- db "Attack To previous page",TX_END
+ text "Energy Card Pok`mon Power "
+ line "Trainer Card Weakness "
+ line "Basic Pok`mon Resistance"
+ line "Evolution Card Retreat "
+ line "Attack To previous page"
+ done
Text02f9: ; 3d48f (f:548f)
- db TX_START,"Choose a word and press the\n"
- db "A button.",TX_END
+ text "Choose a word and press the"
+ line "A button."
+ done
Text02fa: ; 3d4b6 (f:54b6)
- db TX_START,"About the Deck",TX_END
+ text "About the Deck"
+ done
Text02fb: ; 3d4c6 (f:54c6)
- db TX_START,"About the Discard Pile",TX_END
+ text "About the Discard Pile"
+ done
Text02fc: ; 3d4de (f:54de)
- db TX_START,"About the Hand",TX_END
+ text "About the Hand"
+ done
Text02fd: ; 3d4ee (f:54ee)
- db TX_START,"About the Arena",TX_END
+ text "About the Arena"
+ done
Text02fe: ; 3d4ff (f:54ff)
- db TX_START,"About the Bench",TX_END
+ text "About the Bench"
+ done
Text02ff: ; 3d510 (f:5510)
- db TX_START,"About the Active Pok`mon",TX_END
+ text "About the Active Pok`mon"
+ done
Text0300: ; 3d52a (f:552a)
- db TX_START,"About Bench Pok`mon",TX_END
+ text "About Bench Pok`mon"
+ done
Text0301: ; 3d53f (f:553f)
- db TX_START,"About Prizes",TX_END
+ text "About Prizes"
+ done
Text0302: ; 3d54d (f:554d)
- db TX_START,"About Damage Counters",TX_END
+ text "About Damage Counters"
+ done
Text0303: ; 3d564 (f:5564)
- db TX_START,"About Energy Cards",TX_END
+ text "About Energy Cards"
+ done
Text0304: ; 3d578 (f:5578)
- db TX_START,"About Trainer Cards",TX_END
+ text "About Trainer Cards"
+ done
Text0305: ; 3d58d (f:558d)
- db TX_START,"About Basic Pok`mon",TX_END
+ text "About Basic Pok`mon"
+ done
Text0306: ; 3d5a2 (f:55a2)
- db TX_START,"About Evolution Cards",TX_END
+ text "About Evolution Cards"
+ done
Text0307: ; 3d5b9 (f:55b9)
- db TX_START,"About Attacking",TX_END
+ text "About Attacking"
+ done
Text0308: ; 3d5ca (f:55ca)
- db TX_START,"About Pok`mon Power",TX_END
+ text "About Pok`mon Power"
+ done
Text0309: ; 3d5df (f:55df)
- db TX_START,"About Weakness",TX_END
+ text "About Weakness"
+ done
Text030a: ; 3d5ef (f:55ef)
- db TX_START,"About Resistance",TX_END
+ text "About Resistance"
+ done
Text030b: ; 3d601 (f:5601)
- db TX_START,"About Retreating",TX_END
+ text "About Retreating"
+ done
Text030c: ; 3d613 (f:5613)
- db TX_START,"The Deck is the pile of cards\n"
- db "you will be drawing from.\n"
- db "At the beginning of your turn, you\n"
- db "will draw 1 card from your Deck.\n"
- db "If there are no cards to draw\n"
- db "from the Deck, you lose the game.",TX_END
+ text "The Deck is the pile of cards"
+ line "you will be drawing from."
+ line "At the beginning of your turn, you"
+ line "will draw 1 card from your Deck."
+ line "If there are no cards to draw"
+ line "from the Deck, you lose the game."
+ done
Text030d: ; 3d6d0 (f:56d0)
- db TX_START,"The pile in which you place used\n"
- db "cards is called the Discard Pile.\n"
- db "You can look at both yours and your\n"
- db "opponent's Discard Pile \n"
- db "with the Check command.",TX_END
+ text "The pile in which you place used"
+ line "cards is called the Discard Pile."
+ line "You can look at both yours and your"
+ line "opponent's Discard Pile "
+ line "with the Check command."
+ done
Text030e: ; 3d769 (f:5769)
- db TX_START,"The cards held by each player\n"
- db "are called a Hand.\n"
- db "There is no restriction to the\n"
- db "number of cards in the Hand.\n"
- db "You may even have 10 or 20 \n"
- db "cards in your Hand.",TX_END
+ text "The cards held by each player"
+ line "are called a Hand."
+ line "There is no restriction to the"
+ line "number of cards in the Hand."
+ line "You may even have 10 or 20 "
+ line "cards in your Hand."
+ done
Text030f: ; 3d807 (f:5807)
- db TX_START,"The place where the Pok`mon\n"
- db "that is actively fighting\n"
- db "is placed is called the Arena.\n"
- db "The game proceeds by using the\n"
- db "Active Pok`mon in the Arena.",TX_END
+ text "The place where the Pok`mon"
+ line "that is actively fighting"
+ line "is placed is called the Arena."
+ line "The game proceeds by using the"
+ line "Active Pok`mon in the Arena."
+ done
Text0310: ; 3d899 (f:5899)
- db TX_START,"The Bench is where your Pok`mon\n"
- db "that are in play but aren't actively\n"
- db "fighting sit.\n"
- db "They're ready to come out and fight\n"
- db "if the Active Pok`mon retreats or\n"
- db "is Knocked Out.\n"
- db "You can have up to 5 Pok`mon on\n"
- db "the Bench.",TX_END
+ text "The Bench is where your Pok`mon"
+ line "that are in play but aren't actively"
+ line "fighting sit."
+ line "They're ready to come out and fight"
+ line "if the Active Pok`mon retreats or"
+ line "is Knocked Out."
+ line "You can have up to 5 Pok`mon on"
+ line "the Bench."
+ done
Text0311: ; 3d96e (f:596e)
- db TX_START,"The Active Pok`mon is the \n"
- db "Pok`mon that is in the Arena.\n"
- db "Only Active Pok`mon can \n"
- db "attack.",TX_END
+ text "The Active Pok`mon is the "
+ line "Pok`mon that is in the Arena."
+ line "Only Active Pok`mon can "
+ line "attack."
+ done
Text0312: ; 3d9c9 (f:59c9)
- db TX_START,"The Pok`mon that are in play\n"
- db "but aren't actively fighting\n"
- db "are called Bench Pok`mon.\n"
- db "They're ready to come out and fight\n"
- db "if the Active Pok`mon retreats or\n"
- db "is Knocked Out.\n"
- db "If the Active Pok`mon is Knocked\n"
- db "Out and you don't have a Bench \n"
- db "Pok`mon, you lose the game.",TX_END
+ text "The Pok`mon that are in play"
+ line "but aren't actively fighting"
+ line "are called Bench Pok`mon."
+ line "They're ready to come out and fight"
+ line "if the Active Pok`mon retreats or"
+ line "is Knocked Out."
+ line "If the Active Pok`mon is Knocked"
+ line "Out and you don't have a Bench "
+ line "Pok`mon, you lose the game."
+ done
Text0313: ; 3dad1 (f:5ad1)
- db TX_START,"Prizes are the cards placed to\n"
- db "count the number of the opponent's\n"
- db "Pok`mon you Knocked Out.\n"
- db "Every time one of your opponent's\n"
- db "Pok`mon is Knocked Out, you take 1\n"
- db "of your Prizes into your Hand.\n"
- db "When you take all of your Prizes,\n"
- db "you win the game.",TX_END
+ text "Prizes are the cards placed to"
+ line "count the number of the opponent's"
+ line "Pok`mon you Knocked Out."
+ line "Every time one of your opponent's"
+ line "Pok`mon is Knocked Out, you take 1"
+ line "of your Prizes into your Hand."
+ line "When you take all of your Prizes,"
+ line "you win the game."
+ done
Text0314: ; 3dbc5 (f:5bc5)
- db TX_START,"A Damage Counter represents the\n"
- db "amount of damage a certain Pok`mon\n"
- db "has taken.\n"
- db "1 Damage Counter represents\n"
- db "10 HP of damage.\n"
- db "If a Pok`mon with an HP of 30 has\n"
- db "3 Damage Counters, it has received\n"
- db "30 HP of damage, and its remaining\n"
- db "HP is 0.",TX_END
+ text "A Damage Counter represents the"
+ line "amount of damage a certain Pok`mon"
+ line "has taken."
+ line "1 Damage Counter represents"
+ line "10 HP of damage."
+ line "If a Pok`mon with an HP of 30 has"
+ line "3 Damage Counters, it has received"
+ line "30 HP of damage, and its remaining"
+ line "HP is 0."
+ done
Text0315: ; 3dcb2 (f:5cb2)
- db TX_START,"Energy Cards are cards that power\n"
- db "your Pok`mon, making them able\n"
- db "to Attack.\n"
- db "There are 7 types of Energy Cards\n"
- db "[",TX_GRASS," Grass] [",TX_FIRE," Fire]\n"
- db "[",TX_WATER," Water] [",TX_LIGHTNING," Lightning]\n"
- db "[",TX_PSYCHIC," Psychic] [",TX_FIGHTING," Fighting]\n"
- db "and [",TX_COLORLESS," Double Colorless]\n"
- db "You may only play 1 Energy Card\n"
- db "from your Hand per turn.",TX_END
+ text "Energy Cards are cards that power"
+ line "your Pok`mon, making them able"
+ line "to Attack."
+ line "There are 7 types of Energy Cards"
+ line "[",TX_GRASS," Grass] [",TX_FIRE," Fire]"
+ line "[",TX_WATER," Water] [",TX_LIGHTNING," Lightning]"
+ line "[",TX_PSYCHIC," Psychic] [",TX_FIGHTING," Fighting]"
+ line "and [",TX_COLORLESS," Double Colorless]"
+ line "You may only play 1 Energy Card"
+ line "from your Hand per turn."
+ done
Text0316: ; 3ddbe (f:5dbe)
- db TX_START,"Trainer Cards are support cards.\n"
- db "There are many Trainer Cards\n"
- db "with different effects.\n"
- db "Trainer Cards are played during\n"
- db "your turn by following the\n"
- db "instructions on the card and then\n"
- db "discarding it.\n"
- db "You may use as many Trainer Cards\n"
- db "as you like.",TX_END
+ text "Trainer Cards are support cards."
+ line "There are many Trainer Cards"
+ line "with different effects."
+ line "Trainer Cards are played during"
+ line "your turn by following the"
+ line "instructions on the card and then"
+ line "discarding it."
+ line "You may use as many Trainer Cards"
+ line "as you like."
+ done
Text0317: ; 3deb0 (f:5eb0)
- db TX_START,"Basic Pok`mon are cards that \n"
- db "can be played directly from your \n"
- db "hand into the play area. Basic \n"
- db "Pok`mon act as the base for \n"
- db "Evolution Cards. Charmander, \n"
- db "Squirtle and Bulbasaur are\n"
- db "examples of Basic Pok`mon.",TX_END
+ text "Basic Pok`mon are cards that "
+ line "can be played directly from your "
+ line "hand into the play area. Basic "
+ line "Pok`mon act as the base for "
+ line "Evolution Cards. Charmander, "
+ line "Squirtle and Bulbasaur are"
+ line "examples of Basic Pok`mon."
+ done
Text0318: ; 3df82 (f:5f82)
- db TX_START,"Evolution Cards are cards you\n"
- db "play on top of a Basic Pok`mon card\n"
- db "(or sometimes on top of another\n"
- db "Evolution Card) to make it stronger.\n"
- db "There are Stage 1 and Stage 2\n"
- db "Evolution Cards.\n"
- db "If you do not have a Basic Pok`mon\n"
- db "in the Play Area, you cannot place\n"
- db "the Stage 1 Evolution Card, and if\n"
- db "you do not have a Stage 1 Evolution\n"
- db "Card in the Play Area, you cannot\n"
- db "place the Stage 2 Evolution Card.",TX_END
+ text "Evolution Cards are cards you"
+ line "play on top of a Basic Pok`mon card"
+ line "(or sometimes on top of another"
+ line "Evolution Card) to make it stronger."
+ line "There are Stage 1 and Stage 2"
+ line "Evolution Cards."
+ line "If you do not have a Basic Pok`mon"
+ line "in the Play Area, you cannot place"
+ line "the Stage 1 Evolution Card, and if"
+ line "you do not have a Stage 1 Evolution"
+ line "Card in the Play Area, you cannot"
+ line "place the Stage 2 Evolution Card."
+ done
Text0319: ; 3e10a (f:610a)
- db TX_START,"By choosing Attack, your Pok`mon\n"
- db "will fight your opponent's Pok`mon.\n"
- db "Your Pok`mon require Energy\n"
- db "in order to Attack.\n"
- db "The amount of Energy required\n"
- db "differs according to the Attack.\n"
- db "The Active Pok`mon is the only\n"
- db "Pok`mon that can Attack.",TX_END
+ text "By choosing Attack, your Pok`mon"
+ line "will fight your opponent's Pok`mon."
+ line "Your Pok`mon require Energy"
+ line "in order to Attack."
+ line "The amount of Energy required"
+ line "differs according to the Attack."
+ line "The Active Pok`mon is the only"
+ line "Pok`mon that can Attack."
+ done
Text031a: ; 3e1f7 (f:61f7)
- db TX_START,"Unlike Attacks, Pok`mon Power\n"
- db "can be used by Active or Benched\n"
- db "Pok`mon. Some Pok`mon Power are\n"
- db "effective by just placing the\n"
- db "Pok`mon in the Play Area, but for\n"
- db "some you must choose the\n"
- db "command, PKMN Power.",TX_END
+ text "Unlike Attacks, Pok`mon Power"
+ line "can be used by Active or Benched"
+ line "Pok`mon. Some Pok`mon Power are"
+ line "effective by just placing the"
+ line "Pok`mon in the Play Area, but for"
+ line "some you must choose the"
+ line "command, PKMN Power."
+ done
Text031b: ; 3e2c5 (f:62c5)
- db TX_START,"Some Pok`mon have a Weakness.\n"
- db "If a Pok`mon has a Weakness, it\n"
- db "takes double damage when attacked by\n"
- db "Pok`mon of a certain type.",TX_END
+ text "Some Pok`mon have a Weakness."
+ line "If a Pok`mon has a Weakness, it"
+ line "takes double damage when attacked by"
+ line "Pok`mon of a certain type."
+ done
Text031c: ; 3e344 (f:6344)
- db TX_START,"Some Pok`mon have Resistance.\n"
- db "If a Pok`mon has Resistance, it\n"
- db "takes 30 less damage whenever\n"
- db "attacked by Pok`mon of\n"
- db "a certain type.",TX_END
+ text "Some Pok`mon have Resistance."
+ line "If a Pok`mon has Resistance, it"
+ line "takes 30 less damage whenever"
+ line "attacked by Pok`mon of"
+ line "a certain type."
+ done
Text031d: ; 3e3c8 (f:63c8)
- db TX_START,"By choosing Retreat, you can\n"
- db "switch the Active Pok`mon with\n"
- db "a Pok`mon on your Bench.\n"
- db "Energy is required to Retreat\n"
- db "your Active Pok`mon.\n"
- db "The amount of Energy required to\n"
- db "Retreat differs for each Pok`mon.\n"
- db "To Retreat, you must discard\n"
- db "Energy equal to the Retreat Cost\n"
- db "of the retreating Pok`mon.",TX_END
+ text "By choosing Retreat, you can"
+ line "switch the Active Pok`mon with"
+ line "a Pok`mon on your Bench."
+ line "Energy is required to Retreat"
+ line "your Active Pok`mon."
+ line "The amount of Energy required to"
+ line "Retreat differs for each Pok`mon."
+ line "To Retreat, you must discard"
+ line "Energy equal to the Retreat Cost"
+ line "of the retreating Pok`mon."
+ done
Text031e: ; 3e4ed (f:64ed)
- db TX_START,"Modify Deck\n"
- db "Card List\n"
- db "Album List\n"
- db "Deck Save Machine\n"
- db "Printing Menu\n"
- db "Auto Deck Machine\n"
- db "Gift Center\n"
- db "Name Input",TX_END
+ text "Modify Deck"
+ line "Card List"
+ line "Album List"
+ line "Deck Save Machine"
+ line "Printing Menu"
+ line "Auto Deck Machine"
+ line "Gift Center"
+ line "Name Input"
+ done
Text031f: ; 3e558 (f:6558)
- db TX_START,"Fighting Machine\n"
- db "Rock Machine\n"
- db "Water Machine\n"
- db "Lightning Machine\n"
- db "Grass Machine\n"
- db "Psychic Machine\n"
- db "Science Machine\n"
- db "Fire Machine\n"
- db "Auto Machine\n"
- db "Legendary Machine",TX_END
+ text "Fighting Machine"
+ line "Rock Machine"
+ line "Water Machine"
+ line "Lightning Machine"
+ line "Grass Machine"
+ line "Psychic Machine"
+ line "Science Machine"
+ line "Fire Machine"
+ line "Auto Machine"
+ line "Legendary Machine"
+ done
Text0320: ; 3e5f1 (f:65f1)
- db TX_START,"Send a Card\n"
- db "Receive a Card\n"
- db "Give Deck Instructions\n"
- db "Receive Deck Instructions",TX_END
+ text "Send a Card"
+ line "Receive a Card"
+ line "Give Deck Instructions"
+ line "Receive Deck Instructions"
+ done
Text0321: ; 3e63e (f:663e)
- db TX_START,"Lecture Duel",TX_END
+ text "Lecture Duel"
+ done
Text0322: ; 3e64c (f:664c)
- db TX_START,"First Strike Deck\n"
- db TX_END
+ text "First Strike Deck"
+ line TX_END
Text0323: ; 3e660 (f:6660)
- db TX_START," Mason Laboratory ",TX_END
+ text " Mason Laboratory "
+ done
Text0324: ; 3e676 (f:6676)
- db TX_START," ISHIHARA's House ",TX_END
+ text " ISHIHARA's House "
+ done
Text0325: ; 3e68c (f:668c)
- db TX_START," Fighting Club ",TX_END
+ text " Fighting Club "
+ done
Text0326: ; 3e6a2 (f:66a2)
- db TX_START," Rock Club ",TX_END
+ text " Rock Club "
+ done
Text0327: ; 3e6b8 (f:66b8)
- db TX_START," Water Club ",TX_END
+ text " Water Club "
+ done
Text0328: ; 3e6ce (f:66ce)
- db TX_START," Lightning Club ",TX_END
+ text " Lightning Club "
+ done
Text0329: ; 3e6e4 (f:66e4)
- db TX_START," Grass Club ",TX_END
+ text " Grass Club "
+ done
Text032a: ; 3e6fa (f:66fa)
- db TX_START," Psychic Club ",TX_END
+ text " Psychic Club "
+ done
Text032b: ; 3e710 (f:6710)
- db TX_START," Science Club ",TX_END
+ text " Science Club "
+ done
Text032c: ; 3e726 (f:6726)
- db TX_START," Fire Club ",TX_END
+ text " Fire Club "
+ done
Text032d: ; 3e73c (f:673c)
- db TX_START," Challenge Hall ",TX_END
+ text " Challenge Hall "
+ done
Text032e: ; 3e752 (f:6752)
- db TX_START," Pok`mon Dome ",TX_END
+ text " Pok`mon Dome "
+ done
Text032f: ; 3e768 (f:6768)
- db TX_START," ??'s House ",TX_END
+ text " ??'s House "
+ done
Text0330: ; 3e77e (f:677e)
- db TX_START,"Mason Laboratory",TX_END
+ text "Mason Laboratory"
+ done
Text0331: ; 3e790 (f:6790)
- db TX_START,"Mr Ishihara's House",TX_END
+ text "Mr Ishihara's House"
+ done
Text0332: ; 3e7a5 (f:67a5)
- db TX_START,"Fighting",TX_END
+ text "Fighting"
+ done
Text0333: ; 3e7af (f:67af)
- db TX_START,"Rock",TX_END
+ text "Rock"
+ done
Text0334: ; 3e7b5 (f:67b5)
- db TX_START,"Water",TX_END
+ text "Water"
+ done
Text0335: ; 3e7bc (f:67bc)
- db TX_START,"Lightning",TX_END
+ text "Lightning"
+ done
Text0336: ; 3e7c7 (f:67c7)
- db TX_START,"Grass",TX_END
+ text "Grass"
+ done
Text0337: ; 3e7ce (f:67ce)
- db TX_START,"Psychic",TX_END
+ text "Psychic"
+ done
Text0338: ; 3e7d7 (f:67d7)
- db TX_START,"Science",TX_END
+ text "Science"
+ done
Text0339: ; 3e7e0 (f:67e0)
- db TX_START,"Fire",TX_END
+ text "Fire"
+ done
Text033a: ; 3e7e6 (f:67e6)
- db TX_START,"Challenge Hall",TX_END
+ text "Challenge Hall"
+ done
Text033b: ; 3e7f6 (f:67f6)
- db TX_START,"Pok`mon Dome",TX_END
+ text "Pok`mon Dome"
+ done
Text033c: ; 3e804 (f:6804)
- db TX_START,"??'s House",TX_END
+ text "??'s House"
+ done
Text033d: ; 3e810 (f:6810)
- db TX_START,"Status\n"
- db "Diary\n"
- db "Deck\n"
- db "Card\n"
- db "Config\n"
- db "Exit",TX_END
+ text "Status"
+ line "Diary"
+ line "Deck"
+ line "Card"
+ line "Config"
+ line "Exit"
+ done
Text033e: ; 3e834 (f:6834)
- db TX_START,"Status\n"
- db "Diary\n"
- db "Deck\n"
- db "Card\n"
- db "Config\n"
- db "Debug\n"
- db "Close",TX_END
+ text "Status"
+ line "Diary"
+ line "Deck"
+ line "Card"
+ line "Config"
+ line "Debug"
+ line "Close"
+ done
Text033f: ; 3e85f (f:685f)
- db TX_START,"Name ",TX_RAM1,TX_END
+ text "Name ",TX_RAM1
+ done
Text0340: ; 3e867 (f:6867)
- db TX_START,"Album ",$07,$6d,TX_END
+ text "Album ",$07,$6d
+ done
Text0341: ; 3e87b (f:687b)
- db TX_START,"Play time ",$07,$03,$5e,TX_END
+ text "Play time ",$07,$03,$5e
+ done
Text0342: ; 3e892 (f:6892)
- db TX_START,TX_RAM1,"'s diary",TX_END
+ text TX_RAM1,"'s diary"
+ done
Text0343: ; 3e89d (f:689d)
- db TX_START,"Master Medals Won ",TX_END
+ text "Master Medals Won "
+ done
Text0344: ; 3e8b1 (f:68b1)
- db TX_START,"Would you like to keep a diary?",TX_END
+ text "Would you like to keep a diary?"
+ done
Text0345: ; 3e8d2 (f:68d2)
- db TX_START,TX_RAM1,"\n"
- db "wrote in the diary.",TX_END
+ text TX_RAM1,""
+ line "wrote in the diary."
+ done
Text0346: ; 3e8e9 (f:68e9)
- db TX_START,"Nothing was recorded \n"
- db "in the diary.",TX_END
+ text "Nothing was recorded "
+ line "in the diary."
+ done
Text0347: ; 3e90e (f:690e)
- db TX_START,"Master Medals",TX_END
+ text "Master Medals"
+ done
Text0348: ; 3e91d (f:691d)
- db TX_START," Change Settings",TX_END
+ text " Change Settings"
+ done
Text0349: ; 3e939 (f:6939)
- db TX_START,"Message Speed\n\n"
- db " Slow 1 2 3 4 5 Fast",TX_END
+ text "Message Speed\n"
+ line " Slow 1 2 3 4 5 Fast"
+ done
Text034a: ; 3e96c (f:696c)
- db TX_START,"Duel Animation\n\n"
- db " Show All Skip Some None",TX_END
+ text "Duel Animation\n"
+ line " Show All Skip Some None"
+ done
Text034b: ; 3e9a0 (f:69a0)
- db TX_START," Exit Settings",TX_END
+ text " Exit Settings"
+ done
Text034c: ; 3e9b2 (f:69b2)
- db TX_START,"Duel [",TX_RAM2,"]\n"
- db "SELECT [",TX_RAM2,"]\n"
- db "Receive many cards\n"
- db "To Pok`mon Dome 1\n"
- db "To Pok`mon Dome 2",TX_END
+ text "Duel [",TX_RAM2,"]"
+ line "SELECT [",TX_RAM2,"]"
+ line "Receive many cards"
+ line "To Pok`mon Dome 1"
+ line "To Pok`mon Dome 2"
+ done
Text034d: ; 3ea10 (f:6a10)
- db TX_START,"Normal Duel",TX_END
+ text "Normal Duel"
+ done
Text034e: ; 3ea1d (f:6a1d)
- db TX_START,"Skip",TX_END
+ text "Skip"
+ done
Text034f: ; 3ea23 (f:6a23)
- db TX_START,"Normal",TX_END
+ text "Normal"
+ done
Text0350: ; 3ea2b (f:6a2b)
- db TX_START,"Freeze Screen",TX_END
+ text "Freeze Screen"
+ done
Text0351: ; 3ea3a (f:6a3a)
- db TX_START,"Card Album\n"
- db "Read Mail\n"
- db "Glossary\n"
- db "Print\n"
- db "Shut Down",TX_END
+ text "Card Album"
+ line "Read Mail"
+ line "Glossary"
+ line "Print"
+ line "Shut Down"
+ done
TurnedPCOnText: ; 3ea69 (f:6a69)
- db TX_START,TX_RAM1,"\n"
- db "turned the PC on!",TX_END
+ text TX_RAM1,""
+ line "turned the PC on!"
+ done
TurnedPCOffText: ; 3ea7e (f:6a7e)
- db TX_START,TX_RAM1,"\n"
- db "turned the PC off!",TX_END
+ text TX_RAM1,""
+ line "turned the PC off!"
+ done
Text0354: ; 3ea94 (f:6a94)
- db TX_START,"Send Card\n"
- db "Receive Card\n"
- db "Send Deck Configuration\n"
- db "Receive Deck Configuration\n"
- db "Exit",TX_END
+ text "Send Card"
+ line "Receive Card"
+ line "Send Deck Configuration"
+ line "Receive Deck Configuration"
+ line "Exit"
+ done
Text0355: ; 3eae4 (f:6ae4)
- db TX_START,"Send Card",TX_END
+ text "Send Card"
+ done
Text0356: ; 3eaef (f:6aef)
- db TX_START,"Receive Card",TX_END
+ text "Receive Card"
+ done
Text0357: ; 3eafd (f:6afd)
- db TX_START,"Send Deck Configuration",TX_END
+ text "Send Deck Configuration"
+ done
Text0358: ; 3eb16 (f:6b16)
- db TX_START,"Receive Deck Configuration",TX_END
+ text "Receive Deck Configuration"
+ done
Text0359: ; 3eb32 (f:6b32)
- db TX_START," Mail ",TX_RAM1," ",TX_END
+ text " Mail ",TX_RAM1," "
+ done
Text035a: ; 3eb3e (f:6b3e)
- db TX_START,"Which mail would you like to read?",TX_END
+ text "Which mail would you like to read?"
+ done
Text035b: ; 3eb62 (f:6b62)
- db TX_START,"Mail 0 1 2 3 4 5 6 7 8 9101112131415",TX_END
+ text "Mail 0 1 2 3 4 5 6 7 8 9101112131415"
+ done
Text035c: ; 3eb88 (f:6b88)
- db "ppppp",TX_END
+ db "ppppp"
+ done
Text035d: ; 3eb8e (f:6b8e)
- db TX_START,"Mail 1",TX_END
+ text "Mail 1"
+ done
Text035e: ; 3eb96 (f:6b96)
- db TX_START,"Mail 2",TX_END
+ text "Mail 2"
+ done
Text035f: ; 3eb9e (f:6b9e)
- db TX_START,"Mail 3",TX_END
+ text "Mail 3"
+ done
Text0360: ; 3eba6 (f:6ba6)
- db TX_START,"Mail 4",TX_END
+ text "Mail 4"
+ done
Text0361: ; 3ebae (f:6bae)
- db TX_START,"Mail 5",TX_END
+ text "Mail 5"
+ done
Text0362: ; 3ebb6 (f:6bb6)
- db TX_START,"Mail 6",TX_END
+ text "Mail 6"
+ done
Text0363: ; 3ebbe (f:6bbe)
- db TX_START,"Mail 7",TX_END
+ text "Mail 7"
+ done
Text0364: ; 3ebc6 (f:6bc6)
- db TX_START,"Mail 8",TX_END
+ text "Mail 8"
+ done
Text0365: ; 3ebce (f:6bce)
- db TX_START,"Mail 9",TX_END
+ text "Mail 9"
+ done
Text0366: ; 3ebd6 (f:6bd6)
- db TX_START,"Mail 10",TX_END
+ text "Mail 10"
+ done
Text0367: ; 3ebdf (f:6bdf)
- db TX_START,"Mail 11",TX_END
+ text "Mail 11"
+ done
Text0368: ; 3ebe8 (f:6be8)
- db TX_START,"Mail 12",TX_END
+ text "Mail 12"
+ done
Text0369: ; 3ebf1 (f:6bf1)
- db TX_START,"Mail 13",TX_END
+ text "Mail 13"
+ done
Text036a: ; 3ebfa (f:6bfa)
- db TX_START,"Mail 14",TX_END
+ text "Mail 14"
+ done
Text036b: ; 3ec03 (f:6c03)
- db TX_START,"Mail 15",TX_END
+ text "Mail 15"
+ done
Text036c: ; 3ec0c (f:6c0c)
- db TX_START,"NEW GAME",TX_END
+ text "NEW GAME"
+ done
Text036d: ; 3ec16 (f:6c16)
- db TX_START,"CARD POP!\n"
- db "CONTINUE FROM DIARY\n"
- db "NEW GAME",TX_END
+ text "CARD POP!"
+ line "CONTINUE FROM DIARY"
+ line "NEW GAME"
+ done
Text036e: ; 3ec3e (f:6c3e)
- db TX_START,"CARD POP!\n"
- db "CONTINUE FROM DIARY\n"
- db "New Game\n"
- db "CONTINUE DUEL",TX_END
+ text "CARD POP!"
+ line "CONTINUE FROM DIARY"
+ line "New Game"
+ line "CONTINUE DUEL"
+ done
Text036f: ; 3ec74 (f:6c74)
- db TX_START,"When you CARD POP! with a friend,\n"
- db "you will each receive a new card!",TX_END
+ text "When you CARD POP! with a friend,"
+ line "you will each receive a new card!"
+ done
Text0370: ; 3ecb9 (f:6cb9)
- db TX_START," ",TX_RAM1," ",TX_RAM2,"\n"
- db " Master Medals Won ",$07,$0c,$06,"\n"
- db " Album ",$07,$6d,$06,"\n"
- db " Play time ",$07,$03,$5e,$06,TX_END
+ text " ",TX_RAM1," ",TX_RAM2,""
+ line " Master Medals Won ",$07,$0c,$06,""
+ line " Album ",$07,$6d,$06,""
+ line " Play time ",$07,$03,$5e,$06
+ done
Text0371: ; 3ed14 (f:6d14)
- db TX_START,"Start a New Game.\n"
- db TX_END
+ text "Start a New Game."
+ line TX_END
Text0372: ; 3ed28 (f:6d28)
- db TX_START,"The Game will continue from \n"
- db "the point in the duel at\n"
- db "which the power was turned OFF.",TX_END
+ text "The Game will continue from "
+ line "the point in the duel at"
+ line "which the power was turned OFF."
+ done
Text0373: ; 3ed7f (f:6d7f)
- db TX_START,"Saved data already exists.\n"
- db "If you continue, you will lose\n"
- db "all the cards you have collected.",TX_END
+ text "Saved data already exists."
+ line "If you continue, you will lose"
+ line "all the cards you have collected."
+ done
Text0374: ; 3eddc (f:6ddc)
- db TX_START,"OK to delete the data?",TX_END
+ text "OK to delete the data?"
+ done
Text0375: ; 3edf4 (f:6df4)
- db TX_START,"All data was deleted.",TX_END
+ text "All data was deleted."
+ done
Text0376: ; 3ee0b (f:6e0b)
- db TX_START,"Data exists from when the power \n"
- db "was turned OFF during a duel.\n"
- db "Choose CONTINUE DUEL on the\n"
- db "Main Menu to continue the duel.\n"
- db "If you continue now, the heading,\n"
- db "CONTINUE DUEL, will be\n"
- db "deleted, and the game will start\n"
- db "from the point when you last \n"
- db "wrote in the Diary.\n\n"
- db "Would you like to continue the Game\n"
- db "from the point saved in",TX_END
+ text "Data exists from when the power "
+ line "was turned OFF during a duel."
+ line "Choose CONTINUE DUEL on the"
+ line "Main Menu to continue the duel."
+ line "If you continue now, the heading,"
+ line "CONTINUE DUEL, will be"
+ line "deleted, and the game will start"
+ line "from the point when you last "
+ line "wrote in the Diary.\n"
+ line "Would you like to continue the Game"
+ line "from the point saved in"
+ done
Text0377: ; 3ef50 (f:6f50)
- db TX_START,"CONTINUE FROM DIARY?",TX_END
+ text "CONTINUE FROM DIARY?"
+ done
Text0378: ; 3ef66 (f:6f66)
- db TX_START,"You can access Card Pop! only\n"
- db "with two Game Boy Colors.\n"
- db "Please play using a Game Boy Color.",TX_END
+ text "You can access Card Pop! only"
+ line "with two Game Boy Colors."
+ line "Please play using a Game Boy Color."
+ done
Text0379: ; 3efc3 (f:6fc3)
- db TX_START,TX_RAM1," is crazy about Pok`mon\n"
- db "and Pok`mon card collecting!\n"
- db "One day,\n"
- db TX_RAM1," heard a rumor:\n"
- db " \"The Legendary Pok`mon Cards...\n"
- db " the extremely rare and powerful \n"
- db " cards held by Pok`mon Trading \n"
- db " Card Game's greatest players... \n"
- db " The Grand Masters are searching\n"
- db " for one to inherit the legend!\"\n"
- db "Dreaming of inheriting the\n"
- db "Legendary Pok`mon Cards,\n"
- db TX_RAM1," visits the Pok`mon\n"
- db "card researcher, Dr. Mason...",TX_END
+ text TX_RAM1," is crazy about Pok`mon"
+ line "and Pok`mon card collecting!"
+ line "One day,"
+ line TX_RAM1," heard a rumor:"
+ line " \"The Legendary Pok`mon Cards..."
+ line " the extremely rare and powerful "
+ line " cards held by Pok`mon Trading "
+ line " Card Game's greatest players... "
+ line " The Grand Masters are searching"
+ line " for one to inherit the legend!\""
+ line "Dreaming of inheriting the"
+ line "Legendary Pok`mon Cards,"
+ line TX_RAM1," visits the Pok`mon"
+ line "card researcher, Dr. Mason..."
+ done
Text037a: ; 3f147 (f:7147)
- db TX_START,"POWER ON\n"
- db "DUEL MODE\n"
- db "CONTINUE FROM DIARY\n"
- db "CGB TEST\n"
- db "SGB FRAME\n"
- db "STANDARD BG CHARACTER\n"
- db "LOOK AT SPR\n"
- db "V EFFECT\n"
- db "CREATE BOOSTER PACK\n"
- db "CREDITS\n"
- db "QUIT",TX_END
+ text "POWER ON"
+ line "DUEL MODE"
+ line "CONTINUE FROM DIARY"
+ line "CGB TEST"
+ line "SGB FRAME"
+ line "STANDARD BG CHARACTER"
+ line "LOOK AT SPR"
+ line "V EFFECT"
+ line "CREATE BOOSTER PACK"
+ line "CREDITS"
+ line "QUIT"
+ done
Text037b: ; 3f1ce (f:71ce)
- db TX_START,"NORMAL DUEL\n"
- db "SKIP",TX_END
+ text "NORMAL DUEL"
+ line "SKIP"
+ done
Text037c: ; 3f1e0 (f:71e0)
- db TX_START,"COLOSSEUM\n"
- db "EVOLUTION\n"
- db "MYSTERY\n"
- db "LABORATORY\n"
- db "Energy",TX_END
+ text "COLOSSEUM"
+ line "EVOLUTION"
+ line "MYSTERY"
+ line "LABORATORY"
+ line "Energy"
+ done
Text037d: ; 3f20f (f:720f)
- db TX_START,"1\n"
- db "2\n"
- db "3\n"
- db "4\n"
- db "5\n"
- db "6\n"
- db "7",TX_END
+ text "1"
+ line "2"
+ line "3"
+ line "4"
+ line "5"
+ line "6"
+ line "7"
+ done
Text037e: ; 3f21e (f:721e)
- db TX_START,"1\n"
- db "2\n"
- db "3\n"
- db "4\n"
- db "5\n"
- db "6",TX_END
+ text "1"
+ line "2"
+ line "3"
+ line "4"
+ line "5"
+ line "6"
+ done
Text037f: ; 3f22b (f:722b)
- db TX_START,"1\n"
- db "2\n"
- db "3\n"
- db "4\n"
- db "5",TX_END
+ text "1"
+ line "2"
+ line "3"
+ line "4"
+ line "5"
+ done
Text0380: ; 3f236 (f:7236)
- db TX_START,"1\n"
- db "2\n"
- db "3\n"
- db "4",TX_END
+ text "1"
+ line "2"
+ line "3"
+ line "4"
+ done
Text0381: ; 3f23f (f:723f)
- db TX_START,"A TIME\n"
- db " TO (Change with Start)\n"
- db " A+B: Stop Animation\n"
- db " Select: Exit",TX_END
+ text "A TIME"
+ line " TO (Change with Start)"
+ line " A+B: Stop Animation"
+ line " Select: Exit"
+ done
Text0382: ; 3f2b3 (f:72b3)
- db TX_START,"Left",TX_END
+ text "Left"
+ done
Text0383: ; 3f2b9 (f:72b9)
- db TX_START,"Right",TX_END
+ text "Right"
+ done
Text0384: ; 3f2c0 (f:72c0)
- db TX_START,"SPR_",TX_END
+ text "SPR_"
+ done
Text0385: ; 3f2c6 (f:72c6)
- db TX_START,"WIN ",TX_RAM3," Prizes Duel\n"
- db "LOSE with ",TX_RAM2,"(",TX_RAM3,")",TX_END
+ text "WIN ",TX_RAM3," Prizes Duel"
+ line "LOSE with ",TX_RAM2,"(",TX_RAM3,")"
+ done
Text0386: ; 3f2f1 (f:72f1)
- db TX_START," Use ",TX_RAM3,"'s Deck",TX_END
+ text " Use ",TX_RAM3,"'s Deck"
+ done
ReceivedBoosterPackText: ; 3f308 (f:7308)
- db TX_START,TX_RAM1," received a Booster\n"
- db "Pack: ",TX_RAM2,".",TX_END
+ text TX_RAM1," received a Booster"
+ line "Pack: ",TX_RAM2,"."
+ done
AndAnotherBoosterPackText: ; 3f327 (f:7327)
- db TX_START,"...And another Booster Pack:\n"
- db TX_RAM2,".",TX_END
+ text "...And another Booster Pack:"
+ line TX_RAM2,"."
+ done
CheckedCardsInBoosterPackText: ; 3f348 (f:7348)
- db TX_START,TX_RAM1," checked the cards\n"
- db "in the Booster Pack!!",TX_END
+ text TX_RAM1," checked the cards"
+ line "in the Booster Pack!!"
+ done
Text038a: ; 3f373 (f:7373)
- db TX_START,"Substitute screen for\n"
- db "receiving cards.",TX_END
+ text "Substitute screen for"
+ line "receiving cards."
+ done
WonTheMedalText: ; 3f39b (f:739b)
- db TX_START,TX_RAM1,"\n"
- db "Won the ",TX_RAM2," Medal!",TX_END
+ text TX_RAM1,""
+ line "Won the ",TX_RAM2," Medal!"
+ done
Text038c: ; 3f3af (f:73af)
- db TX_START,"Substitute screen for sending\n"
- db "cards by Link cable.",TX_END
+ text "Substitute screen for sending"
+ line "cards by Link cable."
+ done
Text038d: ; 3f3e3 (f:73e3)
- db TX_START,"Substitute screen for receiving\n"
- db "cards by Link cable.",TX_END
+ text "Substitute screen for receiving"
+ line "cards by Link cable."
+ done
Text038e: ; 3f419 (f:7419)
- db TX_START,"Substitute screen for sending\n"
- db "a Deck design.",TX_END
+ text "Substitute screen for sending"
+ line "a Deck design."
+ done
Text038f: ; 3f447 (f:7447)
- db TX_START,"Substitute screen for receiving\n"
- db "a Deck design.",TX_END
+ text "Substitute screen for receiving"
+ line "a Deck design."
+ done
Text0390: ; 3f477 (f:7477)
- db TX_START,"????",TX_END
+ text "????"
+ done
Text0391: ; 3f47d (f:747d)
- db TX_START,"Ending Screen\n"
- db "THE END",TX_END
+ text "Ending Screen"
+ line "THE END"
+ done
Text0392: ; 3f494 (f:7494)
- db TX_START,"Was the data transfer successful?",TX_END
+ text "Was the data transfer successful?"
+ done
Text0393: ; 3f4b7 (f:74b7)
- db TX_START,"(Person transferring data to)",TX_END
+ text "(Person transferring data to)"
+ done
Text0394: ; 3f4d6 (f:74d6)
- db TX_START,"(Name of Deck transferring)",TX_END
+ text "(Name of Deck transferring)"
+ done
Text0395: ; 3f4f3 (f:74f3)
- db TX_START,TX_RAM2," ",TX_RAM2,TX_END
+ text TX_RAM2," ",TX_RAM2
+ done
Text0396: ; 3f4f9 (f:74f9)
- db TX_START,TX_RAM2," Deck",TX_END
+ text TX_RAM2," Deck"
+ done
Text0397: ; 3f501 (f:7501)
- db TX_START,"Fighting Club Member",TX_END
+ text "Fighting Club Member"
+ done
Text0398: ; 3f517 (f:7517)
- db TX_START,"Rock Club Member",TX_END
+ text "Rock Club Member"
+ done
Text0399: ; 3f529 (f:7529)
- db TX_START,"Water Club Member",TX_END
+ text "Water Club Member"
+ done
Text039a: ; 3f53c (f:753c)
- db TX_START,"Lightning Club Member",TX_END
+ text "Lightning Club Member"
+ done
Text039b: ; 3f553 (f:7553)
- db TX_START,"Grass Club Member",TX_END
+ text "Grass Club Member"
+ done
Text039c: ; 3f566 (f:7566)
- db TX_START,"Psychic Club Member",TX_END
+ text "Psychic Club Member"
+ done
Text039d: ; 3f57b (f:757b)
- db TX_START,"Science Club Member",TX_END
+ text "Science Club Member"
+ done
Text039e: ; 3f590 (f:7590)
- db TX_START,"Fire Club Member",TX_END
+ text "Fire Club Member"
+ done
Text039f: ; 3f5a2 (f:75a2)
- db TX_START,"Fighting Club Master",TX_END
+ text "Fighting Club Master"
+ done
Text03a0: ; 3f5b8 (f:75b8)
- db TX_START,"Rock Club Master",TX_END
+ text "Rock Club Master"
+ done
Text03a1: ; 3f5ca (f:75ca)
- db TX_START,"Water Club Master",TX_END
+ text "Water Club Master"
+ done
Text03a2: ; 3f5dd (f:75dd)
- db TX_START,"Lightning Club Master",TX_END
+ text "Lightning Club Master"
+ done
Text03a3: ; 3f5f4 (f:75f4)
- db TX_START,"Grass Club Master",TX_END
+ text "Grass Club Master"
+ done
Text03a4: ; 3f607 (f:7607)
- db TX_START,"Psychic Club Master",TX_END
+ text "Psychic Club Master"
+ done
Text03a5: ; 3f61c (f:761c)
- db TX_START,"Science Club Master",TX_END
+ text "Science Club Master"
+ done
Text03a6: ; 3f631 (f:7631)
- db TX_START,"Fire Club Master",TX_END
+ text "Fire Club Master"
+ done
Text03a7: ; 3f643 (f:7643)
db TX_END
Text03a8: ; 3f644 (f:7644)
- db TX_START,"COLOSSEUM",TX_END
+ text "COLOSSEUM"
+ done
Text03a9: ; 3f64f (f:764f)
- db TX_START,"EVOLUTION",TX_END
+ text "EVOLUTION"
+ done
Text03aa: ; 3f65a (f:765a)
- db TX_START,"MYSTERY",TX_END
+ text "MYSTERY"
+ done
Text03ab: ; 3f663 (f:7663)
- db TX_START,"LABORATORY",TX_END
+ text "LABORATORY"
+ done
Text03ac: ; 3f66f (f:766f)
- db TX_START,"Dr. Mason",TX_END
+ text "Dr. Mason"
+ done
Text03ad: ; 3f67a (f:767a)
- db TX_START,"Ronald",TX_END
+ text "Ronald"
+ done
Text03ae: ; 3f682 (f:7682)
- db TX_START,"ISHIHARA",TX_END
+ text "ISHIHARA"
+ done
Text03af: ; 3f68c (f:768c)
- db TX_START,"Imakuni?",TX_END
+ text "Imakuni?"
+ done
Text03b0: ; 3f696 (f:7696)
- db TX_START,"CLERK",TX_END
+ text "CLERK"
+ done
Text03b1: ; 3f69d (f:769d)
- db TX_START,"Sam",TX_END
+ text "Sam"
+ done
Text03b2: ; 3f6a2 (f:76a2)
- db TX_START,"TECH",TX_END
+ text "TECH"
+ done
Text03b3: ; 3f6a8 (f:76a8)
- db TX_START,"CLERK",TX_END
+ text "CLERK"
+ done
Text03b4: ; 3f6af (f:76af)
- db TX_START,"Chris",TX_END
+ text "Chris"
+ done
Text03b5: ; 3f6b6 (f:76b6)
- db TX_START,"Michael",TX_END
+ text "Michael"
+ done
Text03b6: ; 3f6bf (f:76bf)
- db TX_START,"Jessica",TX_END
+ text "Jessica"
+ done
Text03b7: ; 3f6c8 (f:76c8)
- db TX_START,"Mitch",TX_END
+ text "Mitch"
+ done
Text03b8: ; 3f6cf (f:76cf)
- db TX_START,"Matthew",TX_END
+ text "Matthew"
+ done
Text03b9: ; 3f6d8 (f:76d8)
- db TX_START,"Ryan",TX_END
+ text "Ryan"
+ done
Text03ba: ; 3f6de (f:76de)
- db TX_START,"Andrew",TX_END
+ text "Andrew"
+ done
Text03bb: ; 3f6e6 (f:76e6)
- db TX_START,"Gene",TX_END
+ text "Gene"
+ done
Text03bc: ; 3f6ec (f:76ec)
- db TX_START,"Sara",TX_END
+ text "Sara"
+ done
Text03bd: ; 3f6f2 (f:76f2)
- db TX_START,"Amanda",TX_END
+ text "Amanda"
+ done
Text03be: ; 3f6fa (f:76fa)
- db TX_START,"Joshua",TX_END
+ text "Joshua"
+ done
Text03bf: ; 3f702 (f:7702)
- db TX_START,"Amy",TX_END
+ text "Amy"
+ done
Text03c0: ; 3f707 (f:7707)
- db TX_START,"Jennifer",TX_END
+ text "Jennifer"
+ done
Text03c1: ; 3f711 (f:7711)
- db TX_START,"Nicholas",TX_END
+ text "Nicholas"
+ done
Text03c2: ; 3f71b (f:771b)
- db TX_START,"Brandon",TX_END
+ text "Brandon"
+ done
Text03c3: ; 3f724 (f:7724)
- db TX_START,"Isaac",TX_END
+ text "Isaac"
+ done
Text03c4: ; 3f72b (f:772b)
- db TX_START,"Brittany",TX_END
+ text "Brittany"
+ done
Text03c5: ; 3f735 (f:7735)
- db TX_START,"Kristin",TX_END
+ text "Kristin"
+ done
Text03c6: ; 3f73e (f:773e)
- db TX_START,"Heather",TX_END
+ text "Heather"
+ done
Text03c7: ; 3f747 (f:7747)
- db TX_START,"Nikki",TX_END
+ text "Nikki"
+ done
Text03c8: ; 3f74e (f:774e)
- db TX_START,"Robert",TX_END
+ text "Robert"
+ done
Text03c9: ; 3f756 (f:7756)
- db TX_START,"Daniel",TX_END
+ text "Daniel"
+ done
Text03ca: ; 3f75e (f:775e)
- db TX_START,"Stephanie",TX_END
+ text "Stephanie"
+ done
Text03cb: ; 3f769 (f:7769)
- db TX_START,"Murray",TX_END
+ text "Murray"
+ done
Text03cc: ; 3f771 (f:7771)
- db TX_START,"Joseph",TX_END
+ text "Joseph"
+ done
Text03cd: ; 3f779 (f:7779)
- db TX_START,"David",TX_END
+ text "David"
+ done
Text03ce: ; 3f780 (f:7780)
- db TX_START,"Erik",TX_END
+ text "Erik"
+ done
Text03cf: ; 3f786 (f:7786)
- db TX_START,"Rick",TX_END
+ text "Rick"
+ done
Text03d0: ; 3f78c (f:778c)
- db TX_START,"John",TX_END
+ text "John"
+ done
Text03d1: ; 3f792 (f:7792)
- db TX_START,"Adam",TX_END
+ text "Adam"
+ done
Text03d2: ; 3f798 (f:7798)
- db TX_START,"Jonathan",TX_END
+ text "Jonathan"
+ done
Text03d3: ; 3f7a2 (f:77a2)
- db TX_START,"Ken",TX_END
+ text "Ken"
+ done
Text03d4: ; 3f7a7 (f:77a7)
- db TX_START,"COURTNEY",TX_END
+ text "COURTNEY"
+ done
Text03d5: ; 3f7b1 (f:77b1)
- db TX_START,"Steve",TX_END
+ text "Steve"
+ done
Text03d6: ; 3f7b8 (f:77b8)
- db TX_START,"Jack",TX_END
+ text "Jack"
+ done
Text03d7: ; 3f7be (f:77be)
- db TX_START,"Rod",TX_END
+ text "Rod"
+ done
Text03d8: ; 3f7c3 (f:77c3)
- db TX_START,"Man",TX_END
+ text "Man"
+ done
Text03d9: ; 3f7c8 (f:77c8)
- db TX_START,"Woman",TX_END
+ text "Woman"
+ done
Text03da: ; 3f7cf (f:77cf)
- db TX_START,"CHAP",TX_END
+ text "CHAP"
+ done
Text03db: ; 3f7d5 (f:77d5)
- db TX_START,"GAL",TX_END
+ text "GAL"
+ done
Text03dc: ; 3f7da (f:77da)
- db TX_START,"Lass",TX_END
+ text "Lass"
+ done
Text03dd: ; 3f7e0 (f:77e0)
- db TX_START,"Pappy",TX_END
+ text "Pappy"
+ done
Text03de: ; 3f7e7 (f:77e7)
- db TX_START,"Lad",TX_END
+ text "Lad"
+ done
Text03df: ; 3f7ec (f:77ec)
- db TX_START,"HOST",TX_END
+ text "HOST"
+ done
Text03e0: ; 3f7f2 (f:77f2)
- db TX_START,"Specs",TX_END
+ text "Specs"
+ done
Text03e1: ; 3f7f9 (f:77f9)
- db TX_START,"Butch",TX_END
+ text "Butch"
+ done
Text03e2: ; 3f800 (f:7800)
- db TX_START,"Hood",TX_END
+ text "Hood"
+ done
Text03e3: ; 3f806 (f:7806)
- db TX_START,"Champ",TX_END
+ text "Champ"
+ done
Text03e4: ; 3f80d (f:780d)
- db TX_START,"Mania",TX_END
+ text "Mania"
+ done
Text03e5: ; 3f814 (f:7814)
- db TX_START,"Granny",TX_END
+ text "Granny"
+ done
Text03e6: ; 3f81c (f:781c)
- db TX_START,"Guide",TX_END
+ text "Guide"
+ done
Text03e7: ; 3f823 (f:7823)
- db TX_START,"Aaron",TX_END
+ text "Aaron"
+ done
Text03e8: ; 3f82a (f:782a)
- db TX_START,TX_LVL,"60 MEWTWO ",TX_END
+ text TX_LVL,"60 MEWTWO "
+ done
Text03e9: ; 3f838 (f:7838)
- db TX_START,TX_LVL,"8 MEW ",TX_END
+ text TX_LVL,"8 MEW "
+ done
Text03ea: ; 3f842 (f:7842)
- db TX_START,TX_LVL,"34 ARCANINE",TX_END
+ text TX_LVL,"34 ARCANINE"
+ done
Text03eb: ; 3f851 (f:7851)
- db TX_START,TX_LVL,"16 PIKACHU",TX_END
+ text TX_LVL,"16 PIKACHU"
+ done
Text03ec: ; 3f85f (f:785f)
- db TX_START,TX_LVL,"13 SURFING PIKACHU",TX_END
+ text TX_LVL,"13 SURFING PIKACHU"
+ done
Text03ed: ; 3f875 (f:7875)
- db TX_START,TX_LVL,"20 ELECTABUZZ",TX_END
+ text TX_LVL,"20 ELECTABUZZ"
+ done
Text03ee: ; 3f886 (f:7886)
- db TX_START,TX_LVL,"9 SLOWPOKE",TX_END
+ text TX_LVL,"9 SLOWPOKE"
+ done
Text03ef: ; 3f894 (f:7894)
- db TX_START,TX_LVL,"12 JIGGLYPUFF",TX_END
+ text TX_LVL,"12 JIGGLYPUFF"
+ done
Text03f0: ; 3f8a5 (f:78a5)
- db TX_START,TX_LVL,"68 ZAPDOS",TX_END
+ text TX_LVL,"68 ZAPDOS"
+ done
Text03f1: ; 3f8b2 (f:78b2)
- db TX_START,TX_LVL,"37 MOLTRES",TX_END
+ text TX_LVL,"37 MOLTRES"
+ done
Text03f2: ; 3f8c0 (f:78c0)
- db TX_START,TX_LVL,"37 ARTICUNO",TX_END
+ text TX_LVL,"37 ARTICUNO"
+ done
Text03f3: ; 3f8cf (f:78cf)
- db TX_START,TX_LVL,"41 DRAGONITE",TX_END
+ text TX_LVL,"41 DRAGONITE"
+ done
Text03f4: ; 3f8df (f:78df)
- db TX_START,"Super Energy Retrieval",TX_END
+ text "Super Energy Retrieval"
+ done
Text03f5: ; 3f8f7 (f:78f7)
- db TX_START,TX_LVL,"12 FLYING PIKACHU",TX_END
+ text TX_LVL,"12 FLYING PIKACHU"
+ done
Text03f6: ; 3f90c (f:790c)
- db TX_START,"Lightning & Fire Deck",TX_END
+ text "Lightning & Fire Deck"
+ done
Text03f7: ; 3f923 (f:7923)
- db TX_START,"Water & Fighting Deck",TX_END
+ text "Water & Fighting Deck"
+ done
Text03f8: ; 3f93a (f:793a)
- db TX_START,"Grass & Psychic Deck",TX_END
+ text "Grass & Psychic Deck"
+ done
Text03f9: ; 3f950 (f:7950)
- db TX_START,"Please select the Deck\n"
- db "you wish to Duel against.",TX_END
+ text "Please select the Deck"
+ line "you wish to Duel against."
+ done
Text03fa: ; 3f982 (f:7982)
- db TX_START,"CHARMANDER & Friends Deck",TX_END
+ text "CHARMANDER & Friends Deck"
+ done
Text03fb: ; 3f99d (f:799d)
- db TX_START,"SQUIRTLE & Friends Deck",TX_END
+ text "SQUIRTLE & Friends Deck"
+ done
Text03fc: ; 3f9b6 (f:79b6)
- db TX_START,"BULBASAUR & Friends Deck",TX_END
+ text "BULBASAUR & Friends Deck"
+ done
Text03fd: ; 3f9d0 (f:79d0)
- db TX_START,"Please select the Deck you want.",TX_END
+ text "Please select the Deck you want."
+ done
Text03fe: ; 3f9f2 (f:79f2)
- db TX_START,"Hi, ",TX_RAM1,".\n"
- db "How can I help you?",TX_END
+ text "Hi, ",TX_RAM1,"."
+ line "How can I help you?"
+ done
Text03ff: ; 3fa0e (f:7a0e)
- db TX_START,"Normal Duel\n"
- db "Practice\n"
- db "Rules\n"
- db "Nothing",TX_END
+ text "Normal Duel"
+ line "Practice"
+ line "Rules"
+ line "Nothing"
+ done
Text0400: ; 3fa32 (f:7a32)
- db TX_START,"Energy\n"
- db "Attacking\n"
- db "Retreating\n"
- db "Evolving Pok`mon\n"
- db "Using Pok`mon Power\n"
- db "Ending Your Turn\n"
- db "Win or Loss of a Duel\n"
- db "Nothing to Ask",TX_END
+ text "Energy"
+ line "Attacking"
+ line "Retreating"
+ line "Evolving Pok`mon"
+ line "Using Pok`mon Power"
+ line "Ending Your Turn"
+ line "Win or Loss of a Duel"
+ line "Nothing to Ask"
+ done
Text0401: ; 3faaa (f:7aaa)
- db TX_START,TX_RAM1,",\n"
- db "It's me, Doctor Mason.\n"
- db "Are you getting the hang of\n"
- db "the Pok`mon Trading Card Game?\n"
- db "I have some information for you\n"
- db "about Booster Packs. \n"
- db "If you want to collect the same\n"
- db "cards, duel the same person many\n"
- db "times to get a particular Booster\n"
- db "Pack! By doing so, you will be able \n"
- db "to collect the same cards, making it\n"
- db "easier for you to build your Deck.\n"
- db "Another method for collecting \n"
- db "cards is to use CARD POP!\n"
- db "When you and a friend use CARD POP!,\n"
- db "you will each receive a new card!\n"
- db "Once you POP! with a certain\n"
- db "friend, you won't be able to POP!\n"
- db "with that friend again, so find \n"
- db "many friends who own the Pok`mon \n"
- db "Trading Card Game for Game Boy,\n"
- db "and CARD POP! with them to\n"
- db "get new cards!\n"
- db "Oh, here's something for you...",TX_END
+ text TX_RAM1,","
+ line "It's me, Doctor Mason."
+ line "Are you getting the hang of"
+ line "the Pok`mon Trading Card Game?"
+ line "I have some information for you"
+ line "about Booster Packs. "
+ line "If you want to collect the same"
+ line "cards, duel the same person many"
+ line "times to get a particular Booster"
+ line "Pack! By doing so, you will be able "
+ line "to collect the same cards, making it"
+ line "easier for you to build your Deck."
+ line "Another method for collecting "
+ line "cards is to use CARD POP!"
+ line "When you and a friend use CARD POP!,"
+ line "you will each receive a new card!"
+ line "Once you POP! with a certain"
+ line "friend, you won't be able to POP!"
+ line "with that friend again, so find "
+ line "many friends who own the Pok`mon "
+ line "Trading Card Game for Game Boy,"
+ line "and CARD POP! with them to"
+ line "get new cards!"
+ line "Oh, here's something for you..."
+ done
Text0402: ; 3fd72 (f:7d72)
- db TX_START,"I'll be sending you useful\n"
- db "information by e-mail.\n"
- db "I'll also attach a Booster Pack\n"
- db "for you, so check your mail\n"
- db "often.\n"
- db "Mason Laboratory\n"
- db " Doctor Mason ;)",TX_END
+ text "I'll be sending you useful"
+ line "information by e-mail."
+ line "I'll also attach a Booster Pack"
+ line "for you, so check your mail"
+ line "often."
+ line "Mason Laboratory"
+ line " Doctor Mason ;)"
+ done
Text0403: ; 3fe10 (f:7e10)
- db TX_START,TX_RAM1,",\n"
- db "It's me, Doctor Mason.\n"
- db "I have some information for you\n"
- db "about Mitch's deck - he's \n"
- db "the Master of the Fighting Club.\n"
- db "His First-Strike Deck is built\n"
- db "for a quick attack, but it's\n"
- db "weak against Psychic Pok`mon!\n"
- db "I suggest you duel him using\n"
- db "the Deck from the Psychic Medal\n"
- db "Deck Machine.\n"
- db "Here's a Booster Pack for you...",TX_END
+ text TX_RAM1,","
+ line "It's me, Doctor Mason."
+ line "I have some information for you"
+ line "about Mitch's deck - he's "
+ line "the Master of the Fighting Club."
+ line "His First-Strike Deck is built"
+ line "for a quick attack, but it's"
+ line "weak against Psychic Pok`mon!"
+ line "I suggest you duel him using"
+ line "the Deck from the Psychic Medal"
+ line "Deck Machine."
+ line "Here's a Booster Pack for you..."
+ done
Text0404: ; 3ff4d (f:7f4d)
- db TX_START,TX_RAM1,", I know you can do it!\n"
- db "Go win the Fighting Medal!\n"
- db "Mason Laboratory\n"
- db " Doctor Mason ;)",TX_END
+ text TX_RAM1,", I know you can do it!"
+ line "Go win the Fighting Medal!"
+ line "Mason Laboratory"
+ line " Doctor Mason ;)"
+ done
diff --git a/src/text/text4.asm b/src/text/text4.asm
index 5a16284..c7e1f27 100644
--- a/src/text/text4.asm
+++ b/src/text/text4.asm
@@ -1,916 +1,1052 @@
Text0405: ; 40000 (10:4000)
- db TX_START,TX_RAM1,",\n"
- db "It's me, Doctor Mason.\n"
- db "I have some information about\n"
- db "Gene's deck - he's the Master \n"
- db "of the Rock Club.\n"
- db "His Rock Crusher Deck is extremely\n"
- db "strong against Lightning Pok`mon,\n"
- db "but it's weak against Grass Pok`mon!\n"
- db "I suggest you study the Deck from\n"
- db "the Grass Medal Deck Machine.\n"
- db "Oh! Before I forget...\n"
- db "Here's a Booster Pack for you!",TX_END
+ text TX_RAM1,","
+ line "It's me, Doctor Mason."
+ line "I have some information about"
+ line "Gene's deck - he's the Master "
+ line "of the Rock Club."
+ line "His Rock Crusher Deck is extremely"
+ line "strong against Lightning Pok`mon,"
+ line "but it's weak against Grass Pok`mon!"
+ line "I suggest you study the Deck from"
+ line "the Grass Medal Deck Machine."
+ line "Oh! Before I forget..."
+ line "Here's a Booster Pack for you!"
+ done
Text0406: ; 4014a (10:414a)
- db TX_START,TX_RAM1,"! Go defeat Gene,\n"
- db "the Master of the Rock Club!\n"
- db "Mason Laboratory\n"
- db " Doctor Mason ;)",TX_END
+ text TX_RAM1,"! Go defeat Gene,"
+ line "the Master of the Rock Club!"
+ line "Mason Laboratory"
+ line " Doctor Mason ;)"
+ done
Text0407: ; 401a3 (10:41a3)
- db TX_START,TX_RAM1,",\n"
- db "It's me, Doctor Mason.\n"
- db "I have some information for you\n"
- db "about Amy's deck - she's the \n"
- db "Master of the Water Club.\n"
- db "Her deck uses Rain Dance -\n"
- db "Blastoise's Pok`mon Power.\n"
- db "This deck allows her to \n"
- db "keep attaching Water Energy \n"
- db "to her Water Pok`mon to \n"
- db "power them up.\n"
- db "Her deck's weakness is\n"
- db "Lightning Pok`mon!\n"
- db "I suggest you duel her using\n"
- db "the deck from the Psychic Medal\n"
- db "Deck Machine.\n"
- db "Here's a Booster Pack for you.",TX_END
+ text TX_RAM1,","
+ line "It's me, Doctor Mason."
+ line "I have some information for you"
+ line "about Amy's deck - she's the "
+ line "Master of the Water Club."
+ line "Her deck uses Rain Dance -"
+ line "Blastoise's Pok`mon Power."
+ line "This deck allows her to "
+ line "keep attaching Water Energy "
+ line "to her Water Pok`mon to "
+ line "power them up."
+ line "Her deck's weakness is"
+ line "Lightning Pok`mon!"
+ line "I suggest you duel her using"
+ line "the deck from the Psychic Medal"
+ line "Deck Machine."
+ line "Here's a Booster Pack for you."
+ done
Text0408: ; 4033e (10:433e)
- db TX_START,TX_RAM1,"!\n"
- db "Keep at it, and don't give up!\n"
- db "Mason Laboratory\n"
- db " Doctor Mason ;)",TX_END
+ text TX_RAM1,"!"
+ line "Keep at it, and don't give up!"
+ line "Mason Laboratory"
+ line " Doctor Mason ;)"
+ done
Text0409: ; 40389 (10:4389)
- db TX_START,"How's it going, ",TX_RAM1,"?\n"
- db "It's me, Doctor Mason.\n"
- db "I have some information for you\n"
- db "about Isaac's deck - he's\n"
- db "the Master of the Lightning Club.\n"
- db "His deck is a Selfdestruct \n"
- db "deck! He uses Selfdestruct for \n"
- db "maximum damage!\n"
- db "Watch the number of Energy cards\n"
- db "on his Pok`mon and look out for\n"
- db "Selfdestruct.\n"
- db "I would suggest using Fighting\n"
- db "Pok`mon such as Cubone and Rhyhorn\n"
- db "to counter Isaac's deck.\n"
- db "The Cubone & Marowak Deck from\n"
- db "the Rock Medal Deck Machine is\n"
- db "probably your best bet.\n"
- db "I hope you find many Fighting\n"
- db "Pok`mon in this Booster Pack!",TX_END
+ text "How's it going, ",TX_RAM1,"?"
+ line "It's me, Doctor Mason."
+ line "I have some information for you"
+ line "about Isaac's deck - he's"
+ line "the Master of the Lightning Club."
+ line "His deck is a Selfdestruct "
+ line "deck! He uses Selfdestruct for "
+ line "maximum damage!"
+ line "Watch the number of Energy cards"
+ line "on his Pok`mon and look out for"
+ line "Selfdestruct."
+ line "I would suggest using Fighting"
+ line "Pok`mon such as Cubone and Rhyhorn"
+ line "to counter Isaac's deck."
+ line "The Cubone & Marowak Deck from"
+ line "the Rock Medal Deck Machine is"
+ line "probably your best bet."
+ line "I hope you find many Fighting"
+ line "Pok`mon in this Booster Pack!"
+ done
Text040a: ; 40598 (10:4598)
- db TX_START,"Did you find the Pok`mon you were\n"
- db "looking for in the Booster Pack?\n"
- db "Mason Laboratory\n"
- db " Doctor Mason ;)",TX_END
+ text "Did you find the Pok`mon you were"
+ line "looking for in the Booster Pack?"
+ line "Mason Laboratory"
+ line " Doctor Mason ;)"
+ done
Text040b: ; 40604 (10:4604)
- db TX_START,"It's me, Doctor Mason.\n"
- db "Have you won many Master Medals?\n"
- db "I have some information for you \n"
- db "about Nikki's deck - she's \n"
- db "the Master of the Grass Club.\n"
- db "You must be wary of Exeggutor's\n"
- db "Big Eggsplosion with Nikki's deck.\n"
- db "Use your Fire Pok`mon to knock out\n"
- db "Exeggute and Exeggutor at an\n"
- db "early stage!\n"
- db "I suggest you study the Deck from\n"
- db "the Fire Medal Deck Machine.\n"
- db "I'll give you a Booster Pack\n"
- db "that should contain a lot of \n"
- db "Fire Pok`mon.",TX_END
+ text "It's me, Doctor Mason."
+ line "Have you won many Master Medals?"
+ line "I have some information for you "
+ line "about Nikki's deck - she's "
+ line "the Master of the Grass Club."
+ line "You must be wary of Exeggutor's"
+ line "Big Eggsplosion with Nikki's deck."
+ line "Use your Fire Pok`mon to knock out"
+ line "Exeggute and Exeggutor at an"
+ line "early stage!"
+ line "I suggest you study the Deck from"
+ line "the Fire Medal Deck Machine."
+ line "I'll give you a Booster Pack"
+ line "that should contain a lot of "
+ line "Fire Pok`mon."
+ done
Text040c: ; 407b0 (10:47b0)
- db TX_START,"Did it have a lot of Fire Pok`mon\n"
- db "(the weakness of Grass Pok`mon)?\n"
- db "Mason Laboratory\n"
- db " Dr. Mason ;)",TX_END
+ text "Did it have a lot of Fire Pok`mon"
+ line "(the weakness of Grass Pok`mon)?"
+ line "Mason Laboratory"
+ line " Dr. Mason ;)"
+ done
Text040d: ; 40819 (10:4819)
- db TX_START,"Are you getting any closer to\n"
- db "inheriting the Legendary Pok`mon \n"
- db "Cards? Murray of the Psychic Club -\n"
- db "I have some information on his deck!\n"
- db "It seems to be a deck that uses\n"
- db "Alakazam's Damage Swap!\n"
- db "It will be difficult to defeat\n"
- db "his deck of Psychic Pok`mon.\n"
- db "Psychic Pok`mon are tricky\n"
- db "since their weakness is\n"
- db "Psychic Pok`mon!\n"
- db "Try to defeat him before his\n"
- db "Pok`mon evolves into Alakazam.\n"
- db "Murray is a tough opponent...\n"
- db "Here, take this!",TX_END
+ text "Are you getting any closer to"
+ line "inheriting the Legendary Pok`mon "
+ line "Cards? Murray of the Psychic Club -"
+ line "I have some information on his deck!"
+ line "It seems to be a deck that uses"
+ line "Alakazam's Damage Swap!"
+ line "It will be difficult to defeat"
+ line "his deck of Psychic Pok`mon."
+ line "Psychic Pok`mon are tricky"
+ line "since their weakness is"
+ line "Psychic Pok`mon!"
+ line "Try to defeat him before his"
+ line "Pok`mon evolves into Alakazam."
+ line "Murray is a tough opponent..."
+ line "Here, take this!"
+ done
Text040e: ; 409c6 (10:49c6)
- db TX_START,"Fight to the end, ",TX_START,TX_RAM1,",\n"
- db "and don't give up!\n"
- db "Mason Laboratory\n"
- db " Dr. Mason ;)",TX_END
+ text "Fight to the end, ",TX_START,TX_RAM1,","
+ line "and don't give up!"
+ line "Mason Laboratory"
+ line " Dr. Mason ;)"
+ done
Text040f: ; 40a15 (10:4a15)
- db TX_START,"It's me, Dr. Mason.\n"
- db "How are you doing, ",TX_RAM1,"?\n"
- db "I have some information for you\n"
- db "about Rick's deck - he's \n"
- db "the Master of the Science Club.\n"
- db "His deck uses Muk's Toxic Gas to\n"
- db "prevent your Pok`mon from using \n"
- db "Pok`mon Power! Avoid using a deck \n"
- db "that relies on Pok`mon Power to \n"
- db "attack. His deck's weakness is \n"
- db "Psychic Pok`mon! Collect Psychic \n"
- db "Pok`mon to duel his deck!\n"
- db "I suggest you study the deck from\n"
- db "the Psychic Medal Deck Machine.\n"
- db "Hopefully, it will be of some\n"
- db "assistance...",TX_END
+ text "It's me, Dr. Mason."
+ line "How are you doing, ",TX_RAM1,"?"
+ line "I have some information for you"
+ line "about Rick's deck - he's "
+ line "the Master of the Science Club."
+ line "His deck uses Muk's Toxic Gas to"
+ line "prevent your Pok`mon from using "
+ line "Pok`mon Power! Avoid using a deck "
+ line "that relies on Pok`mon Power to "
+ line "attack. His deck's weakness is "
+ line "Psychic Pok`mon! Collect Psychic "
+ line "Pok`mon to duel his deck!"
+ line "I suggest you study the deck from"
+ line "the Psychic Medal Deck Machine."
+ line "Hopefully, it will be of some"
+ line "assistance..."
+ done
Text0410: ; 40bea (10:4bea)
- db TX_START,"Win all 8 Master Medals, \n"
- db TX_START,TX_RAM1,"!\n"
- db "Mason Laboratory\n"
- db " Dr. Mason ;)",TX_END
+ text "Win all 8 Master Medals, "
+ line ""
+ text TX_RAM1,"!"
+ line "Mason Laboratory"
+ line " Dr. Mason ;)"
+ done
Text0411: ; 40c2e (10:4c2e)
- db TX_START,"It's me, Dr. Mason.\n"
- db "Have you collected many cards?\n"
- db "I have some information about\n"
- db "Ken's deck - he's the \n"
- db "Master of the Fire Club.\n"
- db "His deck consists of Fire Pok`mon\n"
- db "and Colorless Pok`mon!\n"
- db "Pit a Water Pok`mon against\n"
- db "the Fire Pok`mon and\n"
- db "a Fighting Pok`mon against\n"
- db "the Colorless Pok`mon.\n"
- db "Study the decks from the Water and\n"
- db "Fighting Medal Deck Machines!\n"
- db "Here's a gift for you!\n"
- db "It's a MYSTERY\n"
- db "Booster Pack!",TX_END
+ text "It's me, Dr. Mason."
+ line "Have you collected many cards?"
+ line "I have some information about"
+ line "Ken's deck - he's the "
+ line "Master of the Fire Club."
+ line "His deck consists of Fire Pok`mon"
+ line "and Colorless Pok`mon!"
+ line "Pit a Water Pok`mon against"
+ line "the Fire Pok`mon and"
+ line "a Fighting Pok`mon against"
+ line "the Colorless Pok`mon."
+ line "Study the decks from the Water and"
+ line "Fighting Medal Deck Machines!"
+ line "Here's a gift for you!"
+ line "It's a MYSTERY"
+ line "Booster Pack!"
+ done
Text0412: ; 40dc1 (10:4dc1)
- db TX_START,"Look closely at the cards \n"
- db "you just received.\n"
- db "You should be able to come up\n"
- db "with a winning strategy!\n"
- db "Mason Laboratory\n"
- db " Dr. Mason ;)",TX_END
+ text "Look closely at the cards "
+ line "you just received."
+ line "You should be able to come up"
+ line "with a winning strategy!"
+ line "Mason Laboratory"
+ line " Dr. Mason ;)"
+ done
Text0413: ; 40e4c (10:4e4c)
- db TX_START,"It's me, Dr. Mason.\n"
- db "It looks like you've won\n"
- db "quite a few medals.\n"
- db "Want to try building your own \n"
- db "deck? Start by changing some of\n"
- db "the cards in your present deck.\n"
- db "Keep changing a few cards at a \n"
- db "time, and eventually you'll have\n"
- db "your own unique deck!\n"
- db "It's not that difficult.\n"
- db "Give it a try!\n"
- db "Mason Laboratory\n"
- db " Dr. Mason ;)\n"
- db "p.s.\n"
- db "Here's a deal - this time,\n"
- db "you get 2 Booster Packs!",TX_END
+ text "It's me, Dr. Mason."
+ line "It looks like you've won"
+ line "quite a few medals."
+ line "Want to try building your own "
+ line "deck? Start by changing some of"
+ line "the cards in your present deck."
+ line "Keep changing a few cards at a "
+ line "time, and eventually you'll have"
+ line "your own unique deck!"
+ line "It's not that difficult."
+ line "Give it a try!"
+ line "Mason Laboratory"
+ line " Dr. Mason ;)"
+ line "p.s."
+ line "Here's a deal - this time,"
+ line "you get 2 Booster Packs!"
+ done
Text0414: ; 40fca (10:4fca)
- db TX_START,"Did you try building your own deck?\n"
- db "This time, I'll give you tips on\n"
- db "the types and number of cards you\n"
- db "should include in your deck.\n"
- db "If you have 3 of a Basic Pok`mon\n"
- db "card, you'll want 2 of its Stage\n"
- db "1 and 1 of its Stage 2 Pok`mon.\n"
- db "If you follow this rule, your\n"
- db "deck will be well balanced.\n"
- db "You should have about 14 Basic\n"
- db "Pok`mon and anywhere between 20\n"
- db "and 26 Energy Cards in your deck.\n"
- db "The type of Energy Cards will \n"
- db "depend on the type of Pok`mon you \n"
- db "have in your deck.\n"
- db "You might want to look at the decks\n"
- db "in the Deck Machine for hints.\n"
- db "Mason Laboratory\n"
- db " Dr. Mason ;)\n"
- db "p.s.\n"
- db "This time, I'm sending 2 Booster \n"
- db "Packs again!",TX_END
+ text "Did you try building your own deck?"
+ line "This time, I'll give you tips on"
+ line "the types and number of cards you"
+ line "should include in your deck."
+ line "If you have 3 of a Basic Pok`mon"
+ line "card, you'll want 2 of its Stage"
+ line "1 and 1 of its Stage 2 Pok`mon."
+ line "If you follow this rule, your"
+ line "deck will be well balanced."
+ line "You should have about 14 Basic"
+ line "Pok`mon and anywhere between 20"
+ line "and 26 Energy Cards in your deck."
+ line "The type of Energy Cards will "
+ line "depend on the type of Pok`mon you "
+ line "have in your deck."
+ line "You might want to look at the decks"
+ line "in the Deck Machine for hints."
+ line "Mason Laboratory"
+ line " Dr. Mason ;)"
+ line "p.s."
+ line "This time, I'm sending 2 Booster "
+ line "Packs again!"
+ done
Text0415: ; 4123d (10:523d)
- db TX_START,TX_RAM1,",\n"
- db "It's me, Dr. Mason.\n"
- db "You're finally going to be dueling\n"
- db "a Grand Master...\n"
- db "Grand Master COURTNEY uses the\n"
- db "Legendary Moltres, so her deck \n"
- db "should be made up of Fire Pok`mon.\n"
- db "Be sure to use Water Pok`mon,\n"
- db "since Water Pok`mon are the \n"
- db "weakness of Fire Pok`mon.\n"
- db "Other than that, just watch how\n"
- db "your opponent plays, and choose\n"
- db "your strategy accordingly.\n"
- db "Mason Laboratory\n"
- db " Dr. Mason ;)\n"
- db "p.s.\n"
- db "You're almost there.\n"
- db "Keep up the good work!",TX_END
+ text TX_RAM1,","
+ line "It's me, Dr. Mason."
+ line "You're finally going to be dueling"
+ line "a Grand Master..."
+ line "Grand Master COURTNEY uses the"
+ line "Legendary Moltres, so her deck "
+ line "should be made up of Fire Pok`mon."
+ line "Be sure to use Water Pok`mon,"
+ line "since Water Pok`mon are the "
+ line "weakness of Fire Pok`mon."
+ line "Other than that, just watch how"
+ line "your opponent plays, and choose"
+ line "your strategy accordingly."
+ line "Mason Laboratory"
+ line " Dr. Mason ;)"
+ line "p.s."
+ line "You're almost there."
+ line "Keep up the good work!"
+ done
Text0416: ; 413f1 (10:53f1)
- db TX_START,TX_RAM1,",\n"
- db "It's me, Dr. Mason!\n"
- db "Grand Master Steve uses\n"
- db "the Legendary ZAPDOS.\n"
- db "The Legendary ZAPDOS's\n"
- db "Peal of Thunder and Big Thunder\n"
- db "randomly choose a target, so\n"
- db "you never know which Pok`mon\n"
- db "will receive damage.\n"
- db "Be sure to look after, not only\n"
- db "your Active Pok`mon, but also\n"
- db "the Pok`mon on your Bench.\n"
- db "His deck should be made up mostly\n"
- db "of Lightning Pok`mon, so duel him\n"
- db "using your Fighting Pok`mon.\n"
- db "Defeat the Grand Masters,\n"
- db TX_START,TX_RAM1,"!!!\n"
- db "Mason Laboratory\n"
- db " Dr. Mason ;)\n"
- db "p.s.\n"
- db "3 more to go!",TX_END
+ text TX_RAM1,","
+ line "It's me, Dr. Mason!"
+ line "Grand Master Steve uses"
+ line "the Legendary ZAPDOS."
+ line "The Legendary ZAPDOS's"
+ line "Peal of Thunder and Big Thunder"
+ line "randomly choose a target, so"
+ line "you never know which Pok`mon"
+ line "will receive damage."
+ line "Be sure to look after, not only"
+ line "your Active Pok`mon, but also"
+ line "the Pok`mon on your Bench."
+ line "His deck should be made up mostly"
+ line "of Lightning Pok`mon, so duel him"
+ line "using your Fighting Pok`mon."
+ line "Defeat the Grand Masters,"
+ line ""
+ text TX_RAM1,"!!!"
+ line "Mason Laboratory"
+ line " Dr. Mason ;)"
+ line "p.s."
+ line "3 more to go!"
+ done
Text0417: ; 415cf (10:55cf)
- db TX_START,"It's me, Dr. Mason!\n"
- db "2 more Grand Masters to go!\n"
- db "Grand Master Jack uses\n"
- db "the Legendary Articuno.\n"
- db "He will use the Legendary\n"
- db "Articuno's QuickFreeze to\n"
- db "paralyze your Pok`mon.\n"
- db "Also, be wary of his other\n"
- db "Articuno's Freeze Dry.\n"
- db "His deck should be mostly\n"
- db "Water Pok`mon, so it will be\n"
- db "weak against Lightning Pok`mon!\n"
- db "Go get 'em, ",TX_RAM1,"!\n"
- db "You're almost there!\n"
- db "Mason Laboratory\n"
- db " Dr. Mason ;)",TX_END
+ text "It's me, Dr. Mason!"
+ line "2 more Grand Masters to go!"
+ line "Grand Master Jack uses"
+ line "the Legendary Articuno."
+ line "He will use the Legendary"
+ line "Articuno's QuickFreeze to"
+ line "paralyze your Pok`mon."
+ line "Also, be wary of his other"
+ line "Articuno's Freeze Dry."
+ line "His deck should be mostly"
+ line "Water Pok`mon, so it will be"
+ line "weak against Lightning Pok`mon!"
+ line "Go get 'em, ",TX_RAM1,"!"
+ line "You're almost there!"
+ line "Mason Laboratory"
+ line " Dr. Mason ;)"
+ done
Text0418: ; 4174c (10:574c)
- db TX_START,"It's me, Dr. Mason!\n"
- db "The final duel is here!\n"
- db "I have some information on Rod,\n"
- db "the leader of the Grand Masters.\n"
- db "Rod uses the Legendary Dragonite.\n"
- db "The longer the duel takes, the \n"
- db "greater the advantages for his \n"
- db "deck. His workhorse will be his\n"
- db "Evolution Pok`mon, so defeat them\n"
- db "while they are still in their Basic\n"
- db "stage! Follow the simple strategy \n"
- db "of striking early. This is the \n"
- db "final test in inheriting \n"
- db "the Legendary Pok`mon Cards!\n"
- db "Go, ",TX_RAM1,"!\n"
- db "Be a part of the legend!\n"
- db "Mason Laboratory\n"
- db " Dr. Mason ;)\n"
- db "p.s.\n"
- db "This is my final gift\n"
- db "for you.",TX_END
+ text "It's me, Dr. Mason!"
+ line "The final duel is here!"
+ line "I have some information on Rod,"
+ line "the leader of the Grand Masters."
+ line "Rod uses the Legendary Dragonite."
+ line "The longer the duel takes, the "
+ line "greater the advantages for his "
+ line "deck. His workhorse will be his"
+ line "Evolution Pok`mon, so defeat them"
+ line "while they are still in their Basic"
+ line "stage! Follow the simple strategy "
+ line "of striking early. This is the "
+ line "final test in inheriting "
+ line "the Legendary Pok`mon Cards!"
+ line "Go, ",TX_RAM1,"!"
+ line "Be a part of the legend!"
+ line "Mason Laboratory"
+ line " Dr. Mason ;)"
+ line "p.s."
+ line "This is my final gift"
+ line "for you."
+ done
Text0419: ; 41965 (10:5965)
- db TX_START,"You have already received the\n"
- db "attached Booster Pack.",TX_END
+ text "You have already received the"
+ line "attached Booster Pack."
+ done
Text041a: ; 4199b (10:599b)
- db TX_START,"\"Pok`mon Trading Cards 101\"",TX_END
+ text "\"Pok`mon Trading Cards 101\""
+ done
Text041b: ; 419b8 (10:59b8)
- db TX_START,"This message is not in yet!",TX_END
+ text "This message is not in yet!"
+ done
Text041c: ; 419d5 (10:59d5)
- db TX_START,"Hello!\n"
- db "Welcome to the Water Club!\n"
- db "This is a Club devoted to\n"
- db "Water Pok`mon.\n"
- db "There are many different types\n"
- db "of Water Pok`mon, so it's fun\n"
- db "just to collect them.",TX_END
+ text "Hello!"
+ line "Welcome to the Water Club!"
+ line "This is a Club devoted to"
+ line "Water Pok`mon."
+ line "There are many different types"
+ line "of Water Pok`mon, so it's fun"
+ line "just to collect them."
+ done
Text041d: ; 41a74 (10:5a74)
- db TX_START,"We don't use Fire Pok`mon cards\n"
- db "here at the Water Club.\n"
- db "I have this rare Arcanine, but\n"
- db "I prefer Lapras.\n"
- db "If you own a Lapras, would you\n"
- db "mind trading it for my Arcanine?",TX_END
+ text "We don't use Fire Pok`mon cards"
+ line "here at the Water Club."
+ line "I have this rare Arcanine, but"
+ line "I prefer Lapras."
+ line "If you own a Lapras, would you"
+ line "mind trading it for my Arcanine?"
+ done
Text041e: ; 41b1d (10:5b1d)
- db TX_START,"Hi! We meet again!\n"
- db "Have you decided to trade your\n"
- db "Lapras for my rare Arcanine?",TX_END
+ text "Hi! We meet again!"
+ line "Have you decided to trade your"
+ line "Lapras for my rare Arcanine?"
+ done
Text041f: ; 41b6d (10:5b6d)
- db TX_START,"Would you like to trade?",TX_END
+ text "Would you like to trade?"
+ done
Text0420: ; 41b87 (10:5b87)
- db TX_START,"Aw, you're not going to\n"
- db "trade with me?\n"
- db "Well, that's too bad...\n"
- db "But if you change your mind,\n"
- db "come look for me.",TX_END
+ text "Aw, you're not going to"
+ line "trade with me?"
+ line "Well, that's too bad..."
+ line "But if you change your mind,"
+ line "come look for me."
+ done
Text0421: ; 41bf6 (10:5bf6)
- db TX_START,"Hey! What are you trying to pull?\n"
- db "You don't have a Lapras!?!\n"
- db "Come see me when you get a Lapras.",TX_END
+ text "Hey! What are you trying to pull?"
+ line "You don't have a Lapras!?!"
+ line "Come see me when you get a Lapras."
+ done
Text0422: ; 41c57 (10:5c57)
- db TX_START,"OK! Let's trade your Lapras\n"
- db "for my Arcanine...\n"
- db "Oh! I see your Lapras\n"
- db "is included in your deck.\n"
- db "I'd feel guilty taking a card\n"
- db "from your deck.\n"
- db "Maybe next time.\n"
- db TX_END
+ text "OK! Let's trade your Lapras"
+ line "for my Arcanine..."
+ line "Oh! I see your Lapras"
+ line "is included in your deck."
+ line "I'd feel guilty taking a card"
+ line "from your deck."
+ line "Maybe next time."
+ line TX_END
Text0423: ; 41cf7 (10:5cf7)
- db TX_START,"OK then, let's trade your\n"
- db "Lapras for my Arcanine.",TX_END
+ text "OK then, let's trade your"
+ line "Lapras for my Arcanine."
+ done
Text0424: ; 41d2a (10:5d2a)
- db TX_START,TX_RAM1," traded a Lapras\n"
- db "for an Arcanine!",TX_END
+ text TX_RAM1," traded a Lapras"
+ line "for an Arcanine!"
+ done
Text0425: ; 41d4e (10:5d4e)
- db TX_START,"Thanks, ",TX_RAM1,"!\n"
- db "I'll take good care\n"
- db "of this Lapras.",TX_END
+ text "Thanks, ",TX_RAM1,"!"
+ line "I'll take good care"
+ line "of this Lapras."
+ done
Text0426: ; 41d7e (10:5d7e)
- db TX_START,"Hey! You're the one who\n"
- db "gave me your Lapras!\n"
- db "I'm taking good care of\n"
- db "your Lapras.",TX_END
+ text "Hey! You're the one who"
+ line "gave me your Lapras!"
+ line "I'm taking good care of"
+ line "your Lapras."
+ done
Text0427: ; 41dd1 (10:5dd1)
- db TX_START,"Do you know Imakuni??\n"
- db "He's a suspicious-looking guy\n"
- db "dressed all in black!\n"
- db "You'll find him dancing away\n"
- db "in the lounge at one of the Clubs!\n"
- db "He stands out, so it shouldn't be\n"
- db "too hard to identify him. But\n"
- db "maybe you shouldn't go near him!",TX_END
+ text "Do you know Imakuni??"
+ line "He's a suspicious-looking guy"
+ line "dressed all in black!"
+ line "You'll find him dancing away"
+ line "in the lounge at one of the Clubs!"
+ line "He stands out, so it shouldn't be"
+ line "too hard to identify him. But"
+ line "maybe you shouldn't go near him!"
+ done
Text0428: ; 41ebd (10:5ebd)
- db TX_START,"Look! That's Imakuni? over there!\n"
- db "Doesn't he look strange?\n"
- db "You'll find him even stranger\n"
- db "when you talk to him.",TX_END
+ text "Look! That's Imakuni? over there!"
+ line "Doesn't he look strange?"
+ line "You'll find him even stranger"
+ line "when you talk to him."
+ done
Text0429: ; 41f2d (10:5f2d)
- db TX_START,"What a strange guy Imakuni? is!\n"
- db "Have you found him yet?\n"
- db "It's rumored that he has really\n"
- db "rare cards!\n"
- db "He's really strange, but you\n"
- db "might want to duel him.",TX_END
+ text "What a strange guy Imakuni? is!"
+ line "Have you found him yet?"
+ line "It's rumored that he has really"
+ line "rare cards!"
+ line "He's really strange, but you"
+ line "might want to duel him."
+ done
Text042a: ; 41fc7 (10:5fc7)
- db TX_START,"All Amy, the Master of this Club,\n"
- db "does lately is sleep.\n"
- db "She's bored because she doesn't\n"
- db "have anybody to duel.",TX_END
+ text "All Amy, the Master of this Club,"
+ line "does lately is sleep."
+ line "She's bored because she doesn't"
+ line "have anybody to duel."
+ done
Text042b: ; 42036 (10:6036)
- db TX_START,"Sara and Amanda of the\n"
- db "Water Club are twins.\n"
- db "No wonder they look\n"
- db "so much alike!",TX_END
+ text "Sara and Amanda of the"
+ line "Water Club are twins."
+ line "No wonder they look"
+ line "so much alike!"
+ done
Text042c: ; 42087 (10:6087)
- db TX_START,"It feels so good to swim\n"
- db "in the pool!\n"
- db "Do you want to take a swim?\n"
- db "Or would you rather duel?",TX_END
+ text "It feels so good to swim"
+ line "in the pool!"
+ line "Do you want to take a swim?"
+ line "Or would you rather duel?"
+ done
Text042d: ; 420e4 (10:60e4)
- db TX_START,"Would you like to duel Sara?",TX_END
+ text "Would you like to duel Sara?"
+ done
Text042e: ; 42102 (10:6102)
- db TX_START,"No?\n"
- db "Then maybe I'll go for a dip.",TX_END
+ text "No?"
+ line "Then maybe I'll go for a dip."
+ done
Text042f: ; 42125 (10:6125)
- db TX_START,"There will be 2 Prizes.\n"
- db "The duel will be 1 match.\n"
- db "OK, let's start!",TX_END
+ text "There will be 2 Prizes."
+ line "The duel will be 1 match."
+ line "OK, let's start!"
+ done
Text0430: ; 42169 (10:6169)
- db TX_START,"Uh-oh! I guess I lost...\n"
- db "Maybe I shouldn't have been\n"
- db "swimming so much.",TX_END
+ text "Uh-oh! I guess I lost..."
+ line "Maybe I shouldn't have been"
+ line "swimming so much."
+ done
Text0431: ; 421b1 (10:61b1)
- db TX_START,"I guess I have to practice more\n"
- db "to improve my Pok`mon card game.",TX_END
+ text "I guess I have to practice more"
+ line "to improve my Pok`mon card game."
+ done
Text0432: ; 421f3 (10:61f3)
- db TX_START,"It might look like all I can\n"
- db "do is swim, but I play a pretty\n"
- db "mean game of Pok`mon Trading Cards!\n"
- db "Do you want to join the Water Club?",TX_END
+ text "It might look like all I can"
+ line "do is swim, but I play a pretty"
+ line "mean game of Pok`mon Trading Cards!"
+ line "Do you want to join the Water Club?"
+ done
Text0433: ; 42279 (10:6279)
- db TX_START,"Doesn't it feel good to relax\n"
- db "by the pool?\n"
- db "Isn't it wonderful to duel\n"
- db "in a place like this?",TX_END
+ text "Doesn't it feel good to relax"
+ line "by the pool?"
+ line "Isn't it wonderful to duel"
+ line "in a place like this?"
+ done
Text0434: ; 422d6 (10:62d6)
- db TX_START,"Would you like to duel Amanda?",TX_END
+ text "Would you like to duel Amanda?"
+ done
Text0435: ; 422f6 (10:62f6)
- db TX_START,"Why...\n"
- db "How boring!",TX_END
+ text "Why..."
+ line "How boring!"
+ done
Text0436: ; 4230a (10:630a)
- db TX_START,"OK, we'll play with 3 Prizes.\n"
- db "It'll be a 1-match duel!",TX_END
+ text "OK, we'll play with 3 Prizes."
+ line "It'll be a 1-match duel!"
+ done
Text0437: ; 42342 (10:6342)
- db TX_START,"Oops, I lost!\n"
- db "Now I'm in trouble!",TX_END
+ text "Oops, I lost!"
+ line "Now I'm in trouble!"
+ done
Text0438: ; 42365 (10:6365)
- db TX_START,"Losing kind of destroys the\n"
- db "atmosphere of the place.",TX_END
+ text "Losing kind of destroys the"
+ line "atmosphere of the place."
+ done
Text0439: ; 4239b (10:639b)
- db TX_START,"Winning in such nice surroundings\n"
- db "makes it all the more pleasurable!",TX_END
+ text "Winning in such nice surroundings"
+ line "makes it all the more pleasurable!"
+ done
Text043a: ; 423e1 (10:63e1)
- db TX_START,"Hey! Stop!\n"
- db "This is a restricted area!\n"
- db "Amy, the Club Master,\n"
- db "is resting!",TX_END
+ text "Hey! Stop!"
+ line "This is a restricted area!"
+ line "Amy, the Club Master,"
+ line "is resting!"
+ done
Text043b: ; 4242a (10:642a)
- db TX_START,"The person resting over there\n"
- db "is Amy, the Club Master.\n"
- db "If you wish to duel Amy,\n"
- db "go defeat Sara and Amanda first.\n"
- db "Then I will test your skill,\n"
- db "and if by chance you should win,\n"
- db "I will introduce you to Amy,\n"
- db "the Club Master!",TX_END
+ text "The person resting over there"
+ line "is Amy, the Club Master."
+ line "If you wish to duel Amy,"
+ line "go defeat Sara and Amanda first."
+ line "Then I will test your skill,"
+ line "and if by chance you should win,"
+ line "I will introduce you to Amy,"
+ line "the Club Master!"
+ done
Text043c: ; 42508 (10:6508)
- db TX_START,"What?\n"
- db "You defeated Sara and Amanda?",TX_END
+ text "What?"
+ line "You defeated Sara and Amanda?"
+ done
Text043d: ; 4252d (10:652d)
- db TX_START,"You must be pretty good if you\n"
- db "defeated Sara and Amanda...\n"
- db "As promised, I'll test your skills.\n"
- db "If you win, I will introduce you\n"
- db "to Amy...",TX_END
+ text "You must be pretty good if you"
+ line "defeated Sara and Amanda..."
+ line "As promised, I'll test your skills."
+ line "If you win, I will introduce you"
+ line "to Amy..."
+ done
Text043e: ; 425b8 (10:65b8)
- db TX_START,"You wish to duel against me?",TX_END
+ text "You wish to duel against me?"
+ done
Text043f: ; 425d6 (10:65d6)
- db TX_START,"Would you like to duel Joshua?",TX_END
+ text "Would you like to duel Joshua?"
+ done
Text0440: ; 425f6 (10:65f6)
- db TX_START,"You don't want to duel?\n"
- db "Are you afraid you won't be able\n"
- db "to defeat me?\n"
- db "The only way you will be able to\n"
- db "meet Amy is by going through me!",TX_END
+ text "You don't want to duel?"
+ line "Are you afraid you won't be able"
+ line "to defeat me?"
+ line "The only way you will be able to"
+ line "meet Amy is by going through me!"
+ done
Text0441: ; 42680 (10:6680)
- db TX_START,"You don't want to duel?\n"
- db "Are you afraid you won't be able\n"
- db "to defeat me?\n"
- db "That's understandable since I'm\n"
- db "very good!",TX_END
+ text "You don't want to duel?"
+ line "Are you afraid you won't be able"
+ line "to defeat me?"
+ line "That's understandable since I'm"
+ line "very good!"
+ done
Text0442: ; 426f3 (10:66f3)
- db TX_START,"OK, this will be a 1-match duel\n"
- db "with 4 Prizes!",TX_END
+ text "OK, this will be a 1-match duel"
+ line "with 4 Prizes!"
+ done
Text0443: ; 42723 (10:6723)
- db TX_START,"How's that! I win!\n"
- db "I'm sorry, but unless you defeat \n"
- db "me, I can't let you meet Amy.",TX_END
+ text "How's that! I win!"
+ line "I'm sorry, but unless you defeat "
+ line "me, I can't let you meet Amy."
+ done
Text0444: ; 42777 (10:6777)
- db TX_START,"How's that! I win!\n"
- db "Too bad for you, but I'm\n"
- db "the second best player\n"
- db "after Amy!",TX_END
+ text "How's that! I win!"
+ line "Too bad for you, but I'm"
+ line "the second best player"
+ line "after Amy!"
+ done
Text0445: ; 427c6 (10:67c6)
- db TX_START,"What!?!\n"
- db "How could I lose?",TX_END
+ text "What!?!"
+ line "How could I lose?"
+ done
Text0446: ; 427e1 (10:67e1)
- db TX_START,"What!?!\n"
- db "How could I lose again?",TX_END
+ text "What!?!"
+ line "How could I lose again?"
+ done
Text0447: ; 42802 (10:6802)
- db TX_START,"Well, since I promised...\n"
- db "I'll introduce you to Amy.",TX_END
+ text "Well, since I promised..."
+ line "I'll introduce you to Amy."
+ done
Text0448: ; 42838 (10:6838)
- db TX_START,"How could this be?\n"
- db "It must be luck!\n"
- db "Yeah, that's what it was!",TX_END
+ text "How could this be?"
+ line "It must be luck!"
+ line "Yeah, that's what it was!"
+ done
Text0449: ; 42877 (10:6877)
- db TX_START,"Don't think you're that good\n"
- db "just because you defeated me.\n"
- db "We still have Amy here\n"
- db "at the Water Club.",TX_END
+ text "Don't think you're that good"
+ line "just because you defeated me."
+ line "We still have Amy here"
+ line "at the Water Club."
+ done
Text044a: ; 428dd (10:68dd)
- db TX_START,"Amy!\n"
- db "Please wake up!!",TX_END
+ text "Amy!"
+ line "Please wake up!!"
+ done
Text044b: ; 428f4 (10:68f4)
- db TX_START,"Huh? What's going on?\n"
- db "I was enjoying my little nap...",TX_END
+ text "Huh? What's going on?"
+ line "I was enjoying my little nap..."
+ done
Text044c: ; 4292b (10:692b)
- db TX_START,"Well, um...\n"
- db "(psst, psst, psst)",TX_END
+ text "Well, um..."
+ line "(psst, psst, psst)"
+ done
Text044d: ; 4294b (10:694b)
- db TX_START,"What? You lost?\n"
- db "How could you!?!",TX_END
+ text "What? You lost?"
+ line "How could you!?!"
+ done
Text044e: ; 4296d (10:696d)
- db TX_START,"Was it ",TX_RAM1,"?\n"
- db "I will be your next opponent.\n"
- db "I, Amy, the Master of the \n"
- db "Water Club!",TX_END
+ text "Was it ",TX_RAM1,"?"
+ line "I will be your next opponent."
+ line "I, Amy, the Master of the "
+ line "Water Club!"
+ done
Text044f: ; 429bd (10:69bd)
- db TX_START,"Aren't you ",TX_RAM1,"?\n"
- db "So you decided you want to\n"
- db "duel me?",TX_END
+ text "Aren't you ",TX_RAM1,"?"
+ line "So you decided you want to"
+ line "duel me?"
+ done
Text0450: ; 429f0 (10:69f0)
- db TX_START,"Would you like to duel Amy?",TX_END
+ text "Would you like to duel Amy?"
+ done
Text0451: ; 42a0d (10:6a0d)
- db TX_START,"No? How boring!\n"
- db "I was looking forward to\n"
- db "a game of Pok`mon Trading Cards.\n"
- db "Well, come see me again!",TX_END
+ text "No? How boring!"
+ line "I was looking forward to"
+ line "a game of Pok`mon Trading Cards."
+ line "Well, come see me again!"
+ done
Text0452: ; 42a71 (10:6a71)
- db TX_START,"OK! A 1-Match Duel with 6 Prizes!\n"
- db "Let's do it!",TX_END
+ text "OK! A 1-Match Duel with 6 Prizes!"
+ line "Let's do it!"
+ done
Text0453: ; 42aa1 (10:6aa1)
- db TX_START,"Oh, no! I lost!?!",TX_END
+ text "Oh, no! I lost!?!"
+ done
Text0454: ; 42ab4 (10:6ab4)
- db TX_START,"Well, since I lost, you can have\n"
- db "this Water Medal.\n"
- db "This should get you a step closer\n"
- db "to inheriting the Legendary Cards!",TX_END
+ text "Well, since I lost, you can have"
+ line "this Water Medal."
+ line "This should get you a step closer"
+ line "to inheriting the Legendary Cards!"
+ done
Text0455: ; 42b2d (10:6b2d)
- db TX_START,"Here, you can also have these!\n"
- db "They should come in handy!",TX_END
+ text "Here, you can also have these!"
+ line "They should come in handy!"
+ done
Text0456: ; 42b68 (10:6b68)
- db TX_START,"Come see me again! I'd like\n"
- db "to duel you again sometime!",TX_END
+ text "Come see me again! I'd like"
+ line "to duel you again sometime!"
+ done
Text0457: ; 42ba1 (10:6ba1)
- db TX_START,"Hah! I'm the best!\n"
- db "Come see me again sometime! \n"
- db "I'd like another duel!",TX_END
+ text "Hah! I'm the best!"
+ line "Come see me again sometime! "
+ line "I'd like another duel!"
+ done
Text0458: ; 42be9 (10:6be9)
- db TX_START,"Hi, ",TX_RAM1,".\n"
- db "Nice to see you again!!!\n"
- db "Did you come to play the\n"
- db "Pok`mon Trading Card Game?",TX_END
+ text "Hi, ",TX_RAM1,"."
+ line "Nice to see you again!!!"
+ line "Did you come to play the"
+ line "Pok`mon Trading Card Game?"
+ done
Text0459: ; 42c3e (10:6c3e)
- db TX_START,"OK, same rules as before!\n"
- db "A 1-match duel with 6 Prizes!",TX_END
+ text "OK, same rules as before!"
+ line "A 1-match duel with 6 Prizes!"
+ done
Text045a: ; 42c77 (10:6c77)
- db TX_START,"Hello.\n"
- db "Welcome to the Fighting Club!\n"
- db "Here at this Club, we duel using\n"
- db "Fighting Pok`mon.\n"
- db "No dirty dueling is allowed!\n"
- db "Only nice, clean duels are allowed\n"
- db "in this Club.",TX_END
+ text "Hello."
+ line "Welcome to the Fighting Club!"
+ line "Here at this Club, we duel using"
+ line "Fighting Pok`mon."
+ line "No dirty dueling is allowed!"
+ line "Only nice, clean duels are allowed"
+ line "in this Club."
+ done
Text045b: ; 42d1e (10:6d1e)
- db TX_START,"I see you play the Pok`mon Trading\n"
- db "Card Game. I'm not into dueling.\n"
- db "I prefer collecting the cards.\n"
- db "By the way, would you happen to have\n"
- db TX_RAM2,"?\n"
- db "If you do, I was wondering if you\n"
- db "might want to give it to me?\n"
- db "How about it?",TX_END
+ text "I see you play the Pok`mon Trading"
+ line "Card Game. I'm not into dueling."
+ line "I prefer collecting the cards."
+ line "By the way, would you happen to have"
+ line TX_RAM2,"?"
+ line "If you do, I was wondering if you"
+ line "might want to give it to me?"
+ line "How about it?"
+ done
Text045c: ; 42df7 (10:6df7)
- db TX_START,"Hi! It's you!\n"
- db "What's up?\n"
- db "Did you decide to give me\n"
- db "your ",TX_RAM2,"?",TX_END
+ text "Hi! It's you!"
+ line "What's up?"
+ line "Did you decide to give me"
+ line "your ",TX_RAM2,"?"
+ done
Text045d: ; 42e33 (10:6e33)
- db TX_START,"Hi! I see you're playing with\n"
- db "the cards again.\n"
- db "By the way, I'm looking for\n"
- db TX_RAM2," this time.\n"
- db "If you should happen to have one,\n"
- db "would you mind giving it to me?",TX_END
+ text "Hi! I see you're playing with"
+ line "the cards again."
+ line "By the way, I'm looking for"
+ line TX_RAM2," this time."
+ line "If you should happen to have one,"
+ line "would you mind giving it to me?"
+ done
Text045e: ; 42ece (10:6ece)
- db TX_START,"Give away your ",TX_RAM2,"?",TX_END
+ text "Give away your ",TX_RAM2,"?"
+ done
Text045f: ; 42ee1 (10:6ee1)
- db TX_START,"OK. I understand.\n"
- db "But if you should change your \n"
- db "mind, please come see me.",TX_END
+ text "OK. I understand."
+ line "But if you should change your "
+ line "mind, please come see me."
+ done
Text0460: ; 42f2d (10:6f2d)
- db TX_START,"But you don't have ",TX_RAM2,"!\n"
- db "I appreciate your generosity, but \n"
- db "you can't give me what you don't \n"
- db "have. Come see me again after \n"
- db "you get ",TX_RAM2,".",TX_END
+ text "But you don't have ",TX_RAM2,"!"
+ line "I appreciate your generosity, but "
+ line "you can't give me what you don't "
+ line "have. Come see me again after "
+ line "you get ",TX_RAM2,"."
+ done
Text0461: ; 42fb3 (10:6fb3)
- db TX_START,"You're going to give it to me?\n"
- db "Thank you!\n"
- db "But your ",TX_RAM2,"\n"
- db "is in your Deck.\n"
- db "I can't take a card that you're\n"
- db "playing with!",TX_END
+ text "You're going to give it to me?"
+ line "Thank you!"
+ line "But your ",TX_RAM2,""
+ line "is in your Deck."
+ line "I can't take a card that you're"
+ line "playing with!"
+ done
Text0462: ; 43028 (10:7028)
- db TX_START,"You're going to give it to me?\n"
- db "I'll put it in my collection\n"
- db "right away.\n"
- db "I'll take good care of this card.\n"
- db "Thank you! Thank you!!!",TX_END
+ text "You're going to give it to me?"
+ line "I'll put it in my collection"
+ line "right away."
+ line "I'll take good care of this card."
+ line "Thank you! Thank you!!!"
+ done
Text0463: ; 430ab (10:70ab)
- db TX_START,"Since you've been so kind and given\n"
- db "me so many cards,\n"
- db "please accept this card as a gift\n"
- db "from me to you.\n"
- db "It's a ",TX_LVL,"16 Pikachu.\n"
- db "Please take good care of it!",TX_END
+ text "Since you've been so kind and given"
+ line "me so many cards,"
+ line "please accept this card as a gift"
+ line "from me to you."
+ line "It's a ",TX_LVL,"16 Pikachu."
+ line "Please take good care of it!"
+ done
Text0464: ; 43146 (10:7146)
- db TX_START,"Thank you for being so kind and\n"
- db "giving me all these cards!",TX_END
+ text "Thank you for being so kind and"
+ line "giving me all these cards!"
+ done
Text0465: ; 43182 (10:7182)
- db TX_START,"Hi!\n"
- db "Thanks for being so kind!\n"
- db "I'm taking good care\n"
- db "of all the cards you gave me!",TX_END
+ text "Hi!"
+ line "Thanks for being so kind!"
+ line "I'm taking good care"
+ line "of all the cards you gave me!"
+ done
Text0466: ; 431d4 (10:71d4)
- db TX_START,"Hi!\n"
- db "Is the card I gave you\n"
- db "coming in handy?\n"
- db "Thanks again for being so kind!",TX_END
+ text "Hi!"
+ line "Is the card I gave you"
+ line "coming in handy?"
+ line "Thanks again for being so kind!"
+ done
Text0467: ; 43221 (10:7221)
- db TX_START,"Huh? W..Who are you?\n"
- db "Who? Me? You don't know who I am?\n"
- db "I am the super musical star,\n"
- db "Imakuni?!\n"
- db "I'll sing the Pok`Rap - You dance!\n"
- db $07,$03,$63,TX_START,"La di da la di da\n"
- db " La di da la di da...\n"
- db "Hey!\n"
- db "Move those feet!\n"
- db "What? Cards?\n"
- db "You want to duel me?\n"
- db "OK, but if I win, you dance!",TX_END
+ text "Huh? W..Who are you?"
+ line "Who? Me? You don't know who I am?"
+ line "I am the super musical star,"
+ line "Imakuni?!"
+ line "I'll sing the Pok`Rap - You dance!"
+ line $07,$03,$63,TX_START,"La di da la di da"
+ line " La di da la di da..."
+ line "Hey!"
+ line "Move those feet!"
+ line "What? Cards?"
+ line "You want to duel me?"
+ line "OK, but if I win, you dance!"
+ done
Text0468: ; 43325 (10:7325)
- db TX_START,"What? You're still here?\n"
- db "OK, sit over there.\n"
- db "What? You're already sitting?\n"
- db "OK, OK! Then let's get started!",TX_END
+ text "What? You're still here?"
+ line "OK, sit over there."
+ line "What? You're already sitting?"
+ line "OK, OK! Then let's get started!"
+ done
Text0469: ; 43391 (10:7391)
- db TX_START,"Would you like to duel Imakuni??",TX_END
+ text "Would you like to duel Imakuni??"
+ done
Text046a: ; 433b3 (10:73b3)
- db TX_START,"Come on, don't be cruel!\n"
- db "You're going to make me cry!",TX_END
+ text "Come on, don't be cruel!"
+ line "You're going to make me cry!"
+ done
Text046b: ; 433ea (10:73ea)
- db TX_START,"OK, a 1-match duel with 6 Prizes!\n"
- db "...Whatever that means...",TX_END
+ text "OK, a 1-match duel with 6 Prizes!"
+ line "...Whatever that means..."
+ done
Text046c: ; 43427 (10:7427)
- db TX_START,"Hey! You're pretty good!\n"
- db "I'll give you this Booster Pack,\n"
- db "so don't tell anyone I lost, OK?",TX_END
+ text "Hey! You're pretty good!"
+ line "I'll give you this Booster Pack,"
+ line "so don't tell anyone I lost, OK?"
+ done
Text046d: ; 43483 (10:7483)
- db TX_START,"You won 3 times against me!\n"
- db "Does that make you happy? Does it?",TX_END
+ text "You won 3 times against me!"
+ line "Does that make you happy? Does it?"
+ done
Text046e: ; 434c3 (10:74c3)
- db TX_START,"I can't believe I lost 6 times!\n"
- db "...Seriously!",TX_END
+ text "I can't believe I lost 6 times!"
+ line "...Seriously!"
+ done
Text046f: ; 434f2 (10:74f2)
- db TX_START,"I don't really want to give you \n"
- db "this, but here. Take care of it.",TX_END
+ text "I don't really want to give you "
+ line "this, but here. Take care of it."
+ done
Text0470: ; 43535 (10:7535)
- db TX_START,"In both Cards and Dance,\n"
- db "soul and rhythm are the secret.\n"
- db "Hey, that sounds pretty cool!\n"
- db "Maybe I'll become a poet!",TX_END
+ text "In both Cards and Dance,"
+ line "soul and rhythm are the secret."
+ line "Hey, that sounds pretty cool!"
+ line "Maybe I'll become a poet!"
+ done
Text0471: ; 435a7 (10:75a7)
- db TX_START,"Hmm...I win.\n"
- db "You weren't too bad, but since \n"
- db "I won...Let's see you shake it!\n"
- db "Come on, shake it!!!\n"
- db $07,$03,$63,TX_START,"La di da la di da\n"
- db " La di da la di da...\n"
- db "... You dance weird!",TX_END
+ text "Hmm...I win."
+ line "You weren't too bad, but since "
+ line "I won...Let's see you shake it!"
+ line "Come on, shake it!!!"
+ line $07,$03,$63,TX_START,"La di da la di da"
+ line " La di da la di da..."
+ line "... You dance weird!"
+ done
Text0472: ; 4364c (10:764c)
- db TX_START,"I was just saying which \n"
- db "Grand Master is the best.\n"
- db "I think Steve is the best player.",TX_END
+ text "I was just saying which "
+ line "Grand Master is the best."
+ line "I think Steve is the best player."
+ done
Text0473: ; 436a2 (10:76a2)
- db TX_START,"I can't believe Steve the Grand\n"
- db "Master could lose!\n"
- db "Who could have defeated Steve?",TX_END
+ text "I can't believe Steve the Grand"
+ line "Master could lose!"
+ line "Who could have defeated Steve?"
+ done
Text0474: ; 436f5 (10:76f5)
- db TX_START,"The best player among the Grand\n"
- db "Masters is Rod, since he's the\n"
- db "leader of the Grand Masters.",TX_END
+ text "The best player among the Grand"
+ line "Masters is Rod, since he's the"
+ line "leader of the Grand Masters."
+ done
Text0475: ; 43752 (10:7752)
- db TX_START,"I can't believe Rod, the leader of\n"
- db "the Grand Masters, was defeated!?!\n"
- db "Could this mean the Legendary\n"
- db "Pok`mon Cards have been passed on?",TX_END
+ text "I can't believe Rod, the leader of"
+ line "the Grand Masters, was defeated!?!"
+ line "Could this mean the Legendary"
+ line "Pok`mon Cards have been passed on?"
+ done
Text0476: ; 437da (10:77da)
- db TX_START,"If I were just a few years younger,\n"
- db "I'd be dueling with you kids, too.",TX_END
+ text "If I were just a few years younger,"
+ line "I'd be dueling with you kids, too."
+ done
Text0477: ; 43822 (10:7822)
- db TX_START,"I am Mitch, Master of the\n"
- db "Fighting Club!\n"
- db "I have to warn you that you will\n"
- db "be unable to defeat me!\n"
- db "If you wish to duel with me,\n"
- db "you must defeat my pupils first!\n"
- db "My pupils are training at \n"
- db "other Clubs!\n"
- db "Go see if you can defeat all\n"
- db "3 of my pupils!",TX_END
+ text "I am Mitch, Master of the"
+ line "Fighting Club!"
+ line "I have to warn you that you will"
+ line "be unable to defeat me!"
+ line "If you wish to duel with me,"
+ line "you must defeat my pupils first!"
+ line "My pupils are training at "
+ line "other Clubs!"
+ line "Go see if you can defeat all"
+ line "3 of my pupils!"
+ done
Text0478: ; 43918 (10:7918)
- db TX_START,"If you wish to duel me, you \n"
- db "must defeat my pupils first!\n"
- db "My pupils are training at the\n"
- db "other Clubs!\n"
- db "Go and see if you can defeat all\n"
- db "3 of my pupils!",TX_END
+ text "If you wish to duel me, you "
+ line "must defeat my pupils first!"
+ line "My pupils are training at the"
+ line "other Clubs!"
+ line "Go and see if you can defeat all"
+ line "3 of my pupils!"
+ done
Text0479: ; 439af (10:79af)
- db TX_START,"So, you've defeated 1 of my pupils.\n"
- db "You must be a pretty good player.\n"
- db "But you're not good enough!\n"
- db "If you wish to duel me, you\n"
- db "must defeat my 2 remaining pupils!",TX_END
+ text "So, you've defeated 1 of my pupils."
+ line "You must be a pretty good player."
+ line "But you're not good enough!"
+ line "If you wish to duel me, you"
+ line "must defeat my 2 remaining pupils!"
+ done
Text047a: ; 43a51 (10:7a51)
- db TX_START,"So, you've defeated 2 of my pupils!\n"
- db "You are pretty good.\n"
- db "But there's still the last one...\n"
- db "Can you defeat my last pupil?",TX_END
+ text "So, you've defeated 2 of my pupils!"
+ line "You are pretty good."
+ line "But there's still the last one..."
+ line "Can you defeat my last pupil?"
+ done
Text047b: ; 43acb (10:7acb)
- db TX_START,"So, you have defeated\n"
- db "all of my pupils!\n"
- db "Let's see if you have \n"
- db "what it takes to inherit\n"
- db "the Legendary Pok`mon Cards!\n"
- db "OK! Are you ready?",TX_END
+ text "So, you have defeated"
+ line "all of my pupils!"
+ line "Let's see if you have "
+ line "what it takes to inherit"
+ line "the Legendary Pok`mon Cards!"
+ line "OK! Are you ready?"
+ done
Text047c: ; 43b54 (10:7b54)
- db TX_START,"Would you like to Duel Mitch?",TX_END
+ text "Would you like to Duel Mitch?"
+ done
Text047d: ; 43b73 (10:7b73)
- db TX_START,"What?\n"
- db "Are you getting cold feet?\n"
- db "Come see me again when you\n"
- db "finally work up enough nerves!",TX_END
+ text "What?"
+ line "Are you getting cold feet?"
+ line "Come see me again when you"
+ line "finally work up enough nerves!"
+ done
Text047e: ; 43bcf (10:7bcf)
- db TX_START,"Come on! Show me what you've got!\n"
- db "We'll play with 6 Prizes!",TX_END
+ text "Come on! Show me what you've got!"
+ line "We'll play with 6 Prizes!"
+ done
Text047f: ; 43c0c (10:7c0c)
- db TX_START,"Wonderful! Great Match!\n"
- db "You're very good.\n"
- db "Here, take this.\n"
- db "It's the Fighting Medal!\n"
- db "You'll find the secret to the Decks\n"
- db "of this Club encrypted in it.",TX_END
+ text "Wonderful! Great Match!"
+ line "You're very good."
+ line "Here, take this."
+ line "It's the Fighting Medal!"
+ line "You'll find the secret to the Decks"
+ line "of this Club encrypted in it."
+ done
Text0480: ; 43ca3 (10:7ca3)
- db TX_START,"Here, take this, too. It's a\n"
- db "LABORATORY Booster Pack.",TX_END
+ text "Here, take this, too. It's a"
+ line "LABORATORY Booster Pack."
+ done
Text0481: ; 43cda (10:7cda)
- db TX_START,"I hope to duel someone \n"
- db "like you again someday!",TX_END
+ text "I hope to duel someone "
+ line "like you again someday!"
+ done
Text0482: ; 43d0b (10:7d0b)
- db TX_START,"You may have been able to defeat\n"
- db "my pupils, but you still are not\n"
- db "experienced enough to defeat me!\n"
- db "Come back after you've trained more!",TX_END
+ text "You may have been able to defeat"
+ line "my pupils, but you still are not"
+ line "experienced enough to defeat me!"
+ line "Come back after you've trained more!"
+ done
Text0483: ; 43d94 (10:7d94)
- db TX_START,"You wish to duel the\n"
- db "Fighting Club Master again?",TX_END
+ text "You wish to duel the"
+ line "Fighting Club Master again?"
+ done
Text0484: ; 43dc6 (10:7dc6)
- db TX_START,"Oh, OK.\n"
- db "I'd like to duel again, though.",TX_END
+ text "Oh, OK."
+ line "I'd like to duel again, though."
+ done
Text0485: ; 43def (10:7def)
- db TX_START,"As before, we'll play with 6 Prizes.\n"
- db "Come show me what you've got!",TX_END
+ text "As before, we'll play with 6 Prizes."
+ line "Come show me what you've got!"
+ done
Text0486: ; 43e33 (10:7e33)
- db TX_START,"Another utter defeat!\n"
- db "Here, take this!",TX_END
+ text "Another utter defeat!"
+ line "Here, take this!"
+ done
Text0487: ; 43e5b (10:7e5b)
- db TX_START,"I'd like to duel someone \n"
- db "like you again!",TX_END
+ text "I'd like to duel someone "
+ line "like you again!"
+ done
Text0488: ; 43e86 (10:7e86)
- db TX_START,"You must train harder!\n"
- db "I'll be waiting!",TX_END
+ text "You must train harder!"
+ line "I'll be waiting!"
+ done
Text0489: ; 43eaf (10:7eaf)
- db TX_START,"I lost to you before at the Rock\n"
- db "Club, but not this time!\n"
- db "I'm going to train to become\n"
- db "an even better player!\n"
- db "But before I can start my training\n"
- db "again, I must defeat you first!",TX_END
+ text "I lost to you before at the Rock"
+ line "Club, but not this time!"
+ line "I'm going to train to become"
+ line "an even better player!"
+ line "But before I can start my training"
+ line "again, I must defeat you first!"
+ done
Text048a: ; 43f61 (10:7f61)
- db TX_START,"I'm going to train to become\n"
- db "an even better player!\n"
- db "But before I can start my training\n"
- db "again, I must defeat you first!",TX_END
+ text "I'm going to train to become"
+ line "an even better player!"
+ line "But before I can start my training"
+ line "again, I must defeat you first!"
+ done
Text048b: ; 43fd9 (10:7fd9)
- db TX_START,"Would you like to duel Chris?",TX_END
+ text "Would you like to duel Chris?"
+ done
diff --git a/src/text/text5.asm b/src/text/text5.asm
index 6fbceaa..404dbfa 100644
--- a/src/text/text5.asm
+++ b/src/text/text5.asm
@@ -1,867 +1,1022 @@
Text048c: ; 44000 (11:4000)
- db TX_START,"You're just going to turn \n"
- db "and run!?! You chicken!",TX_END
+ text "You're just going to turn "
+ line "and run!?! You chicken!"
+ done
Text048d: ; 44034 (11:4034)
- db TX_START,"A 1-match duel with 4 prizes!\n"
- db "Let's do it!",TX_END
+ text "A 1-match duel with 4 prizes!"
+ line "Let's do it!"
+ done
Text048e: ; 44060 (11:4060)
- db TX_START,"No! I lost again!\n"
- db "I can't start training, yet!",TX_END
+ text "No! I lost again!"
+ line "I can't start training, yet!"
+ done
Text048f: ; 44090 (11:4090)
- db TX_START,"Shoot! I'm going to \n"
- db "become a better player!",TX_END
+ text "Shoot! I'm going to "
+ line "become a better player!"
+ done
Text0490: ; 440be (11:40be)
- db TX_START,"Yeah! I won!\n"
- db "I've gotten pretty good, haven't I?\n"
- db "I think I'll start training again.",TX_END
+ text "Yeah! I won!"
+ line "I've gotten pretty good, haven't I?"
+ line "I think I'll start training again."
+ done
Text0491: ; 44113 (11:4113)
- db TX_START,"I've been training since I lost\n"
- db "to you at the Grass Club.\n"
- db "How about a rematch?",TX_END
+ text "I've been training since I lost"
+ line "to you at the Grass Club."
+ line "How about a rematch?"
+ done
Text0492: ; 44163 (11:4163)
- db TX_START,"Would you like to duel Michael?",TX_END
+ text "Would you like to duel Michael?"
+ done
Text0493: ; 44184 (11:4184)
- db TX_START,"OK. But do duel me \n"
- db "again sometime.",TX_END
+ text "OK. But do duel me "
+ line "again sometime."
+ done
Text0494: ; 441a9 (11:41a9)
- db TX_START,"OK, a 1-match duel with 4 prizes!\n"
- db "Let's do it!",TX_END
+ text "OK, a 1-match duel with 4 prizes!"
+ line "Let's do it!"
+ done
Text0495: ; 441d9 (11:41d9)
- db TX_START,"I guess I need to train more...",TX_END
+ text "I guess I need to train more..."
+ done
Text0496: ; 441fa (11:41fa)
- db TX_START,"Duel me again another time.\n"
- db "See ya!",TX_END
+ text "Duel me again another time."
+ line "See ya!"
+ done
Text0497: ; 4421f (11:421f)
- db TX_START,"I guess my training has paid off!\n"
- db "Duel me again sometime. See ya!",TX_END
+ text "I guess my training has paid off!"
+ line "Duel me again sometime. See ya!"
+ done
Text0498: ; 44262 (11:4262)
- db TX_START,"Training is so boring...\n"
- db "Why anyone would want to?\n"
- db "Hey, it's you!\n"
- db "Do you want to duel me again?",TX_END
+ text "Training is so boring..."
+ line "Why anyone would want to?"
+ line "Hey, it's you!"
+ line "Do you want to duel me again?"
+ done
Text0499: ; 442c3 (11:42c3)
- db TX_START,"Would you like to duel Jessica?",TX_END
+ text "Would you like to duel Jessica?"
+ done
Text049a: ; 442e4 (11:42e4)
- db TX_START,"Well, OK.\n"
- db "I'm busy anyway!",TX_END
+ text "Well, OK."
+ line "I'm busy anyway!"
+ done
Text049b: ; 44300 (11:4300)
- db TX_START,"OK! A 1-match duel with 4 prizes!\n"
- db "Let's go to it!",TX_END
+ text "OK! A 1-match duel with 4 prizes!"
+ line "Let's go to it!"
+ done
Text049c: ; 44333 (11:4333)
- db TX_START,"Oops! I lost...\n"
- db "Here! You can have this!",TX_END
+ text "Oops! I lost..."
+ line "Here! You can have this!"
+ done
Text049d: ; 4435d (11:435d)
- db TX_START,"Don't talk to me, I'm busy!",TX_END
+ text "Don't talk to me, I'm busy!"
+ done
Text049e: ; 4437a (11:437a)
- db TX_START,"Hey, I won!\n"
- db "Could this also be due to my \n"
- db "natural ability? \n"
- db "Well, I hope I see you around!",TX_END
+ text "Hey, I won!"
+ line "Could this also be due to my "
+ line "natural ability? "
+ line "Well, I hope I see you around!"
+ done
Text049f: ; 443d6 (11:43d6)
- db TX_START,"What is a deck?",TX_END
+ text "What is a deck?"
+ done
Text04a0: ; 443e7 (11:43e7)
- db TX_START,"A deck is the set of Pok`mon cards\n"
- db "used in duels.\n"
- db "A deck consists of 60 cards.\n"
- db "Only 4 of the same card are\n"
- db "allowed in a deck. Create your \n"
- db "own deck to play the game.\n"
- db "These are the basic rules of the\n"
- db "Pok`mon Trading Card Game.",TX_END
+ text "A deck is the set of Pok`mon cards"
+ line "used in duels."
+ line "A deck consists of 60 cards."
+ line "Only 4 of the same card are"
+ line "allowed in a deck. Create your "
+ line "own deck to play the game."
+ line "These are the basic rules of the"
+ line "Pok`mon Trading Card Game."
+ done
Text04a1: ; 444ca (11:44ca)
- db TX_START,"Cards, Vol. 1: Pok`mon Cards",TX_END
+ text "Cards, Vol. 1: Pok`mon Cards"
+ done
Text04a2: ; 444e8 (11:44e8)
- db TX_START,"There are 2 types of Pok`mon cards \n"
- db "in the Pok`mon Trading Card Game:\n"
- db "Basic Pok`mon and Evolution \n"
- db "Pok`mon. Only Basic Pok`mon may be \n"
- db "placed directly on the Bench.\n"
- db "There are 2 types of Evolution\n"
- db "Pok`mon cards: Stage 1 and \n"
- db "Stage 2. Play Stage 1 Pok`mon on \n"
- db "top of Basic Pok`mon, and Stage 2\n"
- db "Pok`mon on top of Stage 1 Pok`mon.",TX_END
+ text "There are 2 types of Pok`mon cards "
+ line "in the Pok`mon Trading Card Game:"
+ line "Basic Pok`mon and Evolution "
+ line "Pok`mon. Only Basic Pok`mon may be "
+ line "placed directly on the Bench."
+ line "There are 2 types of Evolution"
+ line "Pok`mon cards: Stage 1 and "
+ line "Stage 2. Play Stage 1 Pok`mon on "
+ line "top of Basic Pok`mon, and Stage 2"
+ line "Pok`mon on top of Stage 1 Pok`mon."
+ done
Text04a3: ; 44630 (11:4630)
- db TX_START,"Cards, Vol. 2: Energy Cards",TX_END
+ text "Cards, Vol. 2: Energy Cards"
+ done
Text04a4: ; 4464d (11:464d)
- db TX_START,"Attach Energy cards to your Pok`mon\n"
- db "to give them the energy they need to\n"
- db "attack. Choose an Energy card from \n"
- db "your hand and attach it to a\n"
- db "Pok`mon. You may attach only \n"
- db "one Energy card per turn.",TX_END
+ text "Attach Energy cards to your Pok`mon"
+ line "to give them the energy they need to"
+ line "attack. Choose an Energy card from "
+ line "your hand and attach it to a"
+ line "Pok`mon. You may attach only "
+ line "one Energy card per turn."
+ done
Text04a5: ; 44710 (11:4710)
- db TX_START,"Cards, Vol. 3: Trainer Cards",TX_END
+ text "Cards, Vol. 3: Trainer Cards"
+ done
Text04a6: ; 4472e (11:472e)
- db TX_START,"Trainer cards are one-shot cards\n"
- db "that can be used once and are \n"
- db "then discarded. You can play as \n"
- db "many Trainer cards as you like \n"
- db "during your turn.",TX_END
+ text "Trainer cards are one-shot cards"
+ line "that can be used once and are "
+ line "then discarded. You can play as "
+ line "many Trainer cards as you like "
+ line "during your turn."
+ done
Text04a7: ; 447c2 (11:47c2)
- db TX_START,"Win or Loss of a Match, Vol. 1",TX_END
+ text "Win or Loss of a Match, Vol. 1"
+ done
Text04a8: ; 447e2 (11:47e2)
- db TX_START,"When a Pok`mon loses all of \n"
- db "its HP, the Pok`mon is knocked out. \n"
- db "Place it and all attached Energy \n"
- db "cards in the discard pile.\n"
- db "Each time you knock out 1 \n"
- db "of your opponent's Pok`mon, \n"
- db "you draw 1 of your prize cards \n"
- db "and place it in your hand. \n"
- db "When you've taken all \n"
- db "of your prizes, you win the game.",TX_END
+ text "When a Pok`mon loses all of "
+ line "its HP, the Pok`mon is knocked out. "
+ line "Place it and all attached Energy "
+ line "cards in the discard pile."
+ line "Each time you knock out 1 "
+ line "of your opponent's Pok`mon, "
+ line "you draw 1 of your prize cards "
+ line "and place it in your hand. "
+ line "When you've taken all "
+ line "of your prizes, you win the game."
+ done
Text04a9: ; 4490f (11:490f)
- db TX_START,"Win or Loss of a Match, Vol. 2",TX_END
+ text "Win or Loss of a Match, Vol. 2"
+ done
Text04aa: ; 4492f (11:492f)
- db TX_START,"You also win if your opponent's\n"
- db "deck is out of cards at the start\n"
- db "of your opponent's turn. Be \n"
- db "careful not to run out of cards!",TX_END
+ text "You also win if your opponent's"
+ line "deck is out of cards at the start"
+ line "of your opponent's turn. Be "
+ line "careful not to run out of cards!"
+ done
Text04ab: ; 449b0 (11:49b0)
- db TX_START,"Win or Loss of a Match, Vol. 3",TX_END
+ text "Win or Loss of a Match, Vol. 3"
+ done
Text04ac: ; 449d0 (11:49d0)
- db TX_START,"You also win if your opponent has\n"
- db "no Pok`mon left on the bench\n"
- db "after you have knocked out his or\n"
- db "her active Pok`mon. Be sure to \n"
- db "keep enough Pok`mon on your bench.",TX_END
+ text "You also win if your opponent has"
+ line "no Pok`mon left on the bench"
+ line "after you have knocked out his or"
+ line "her active Pok`mon. Be sure to "
+ line "keep enough Pok`mon on your bench."
+ done
Text04ad: ; 44a75 (11:4a75)
- db TX_START,"Combos",TX_END
+ text "Combos"
+ done
Text04ae: ; 44a7d (11:4a7d)
- db TX_START,"You can create powerful combos by\n"
- db "combining the abilities of 2 cards.\n"
- db "Pok`mon Powers and Trainer Cards \n"
- db "are useful in creating combos! \n"
- db "Find card combinations that will\n"
- db "create your own powerful combos.",TX_END
+ text "You can create powerful combos by"
+ line "combining the abilities of 2 cards."
+ line "Pok`mon Powers and Trainer Cards "
+ line "are useful in creating combos! "
+ line "Find card combinations that will"
+ line "create your own powerful combos."
+ done
Text04af: ; 44b48 (11:4b48)
- db TX_START,"Energy Trans",TX_END
+ text "Energy Trans"
+ done
Text04b0: ; 44b56 (11:4b56)
- db TX_START,"What if you place Exeggutor in the\n"
- db "arena, but you don't have any Energy\n"
- db "cards? In this case, use Venusaur's\n"
- db "Energy Trans to transfer Grass\n"
- db "Energy and use Big Eggsplosion! If\n"
- db "you attach 8 Energy cards, you can\n"
- db "give your opponent up to 160 damage.",TX_END
+ text "What if you place Exeggutor in the"
+ line "arena, but you don't have any Energy"
+ line "cards? In this case, use Venusaur's"
+ line "Energy Trans to transfer Grass"
+ line "Energy and use Big Eggsplosion! If"
+ line "you attach 8 Energy cards, you can"
+ line "give your opponent up to 160 damage."
+ done
Text04b1: ; 44c4d (11:4c4d)
- db TX_START,"Toxic Gas",TX_END
+ text "Toxic Gas"
+ done
Text04b2: ; 44c58 (11:4c58)
- db TX_START,"Muk's Toxic Gas is very powerful!\n"
- db "It can block all Pok`mon Powers!\n"
- db "But be careful because it also\n"
- db "blocks your own Pok`mon's Powers!",TX_END
+ text "Muk's Toxic Gas is very powerful!"
+ line "It can block all Pok`mon Powers!"
+ line "But be careful because it also"
+ line "blocks your own Pok`mon's Powers!"
+ done
Text04b3: ; 44cdd (11:4cdd)
- db TX_START,"Rain Dance",TX_END
+ text "Rain Dance"
+ done
Text04b4: ; 44ce9 (11:4ce9)
- db TX_START,"Blastoise's Pok`mon Power, Rain \n"
- db "Dance, is a great boon for your\n"
- db "Water Pok`mon! You can attach \n"
- db "as many Water Energy cards as \n"
- db "you have to your Water Pok`mon.\n"
- db "Power up your Pok`mon and attack!",TX_END
+ text "Blastoise's Pok`mon Power, Rain "
+ line "Dance, is a great boon for your"
+ line "Water Pok`mon! You can attach "
+ line "as many Water Energy cards as "
+ line "you have to your Water Pok`mon."
+ line "Power up your Pok`mon and attack!"
+ done
Text04b5: ; 44dab (11:4dab)
- db TX_START,"Selfdestruct",TX_END
+ text "Selfdestruct"
+ done
Text04b6: ; 44db9 (11:4db9)
- db TX_START,"It's a good idea to use Defender\n"
- db "when attacking with Selfdestruct.\n"
- db "That way, you'll be able to give\n"
- db "major damage to your opponent's \n"
- db "Active and Benched Pok`mon without \n"
- db "your Pok`mon getting knocked out.",TX_END
+ text "It's a good idea to use Defender"
+ line "when attacking with Selfdestruct."
+ line "That way, you'll be able to give"
+ line "major damage to your opponent's "
+ line "Active and Benched Pok`mon without "
+ line "your Pok`mon getting knocked out."
+ done
Text04b7: ; 44e85 (11:4e85)
- db TX_START,"Damage Swap",TX_END
+ text "Damage Swap"
+ done
Text04b8: ; 44e92 (11:4e92)
- db TX_START,"You can use Alakazam's Damage Swap\n"
- db "to move damage counters off of a\n"
- db "Pok`mon that is almost knocked out,\n"
- db "or you can create a combo by\n"
- db "combining it with Chansey and\n"
- db "Scoop Up. Keep moving damage \n"
- db "counters to Chansey and use Scoop \n"
- db "Up to return Chansey to your hand.\n"
- db "Then put Chansey back in play. You\n"
- db "will have lost all damage counters!",TX_END
+ text "You can use Alakazam's Damage Swap"
+ line "to move damage counters off of a"
+ line "Pok`mon that is almost knocked out,"
+ line "or you can create a combo by"
+ line "combining it with Chansey and"
+ line "Scoop Up. Keep moving damage "
+ line "counters to Chansey and use Scoop "
+ line "Up to return Chansey to your hand."
+ line "Then put Chansey back in play. You"
+ line "will have lost all damage counters!"
+ done
Text04b9: ; 44fe1 (11:4fe1)
- db TX_START,"Hyper Beam",TX_END
+ text "Hyper Beam"
+ done
Text04ba: ; 44fed (11:4fed)
- db TX_START,"Hyper Beam is extremely powerful!\n"
- db "You can remove the Energy cards \n"
- db "attached to your opponent's\n"
- db "Pok`mon! Without Energy, they won't\n"
- db "be able to Attack or Retreat!",TX_END
+ text "Hyper Beam is extremely powerful!"
+ line "You can remove the Energy cards "
+ line "attached to your opponent's"
+ line "Pok`mon! Without Energy, they won't"
+ line "be able to Attack or Retreat!"
+ done
Text04bb: ; 4508f (11:508f)
- db TX_START,"Prehistoric Power",TX_END
+ text "Prehistoric Power"
+ done
Text04bc: ; 450a2 (11:50a2)
- db TX_START,"Use Aerodactyl's Prehistoric Power\n"
- db "to block your opponent's Pok`mon\n"
- db "from evolving. Your own Pok`mon \n"
- db "can't evolve? In that case, use\n"
- db "Devolution Spray on Aerodactyl \n"
- db "and turn it back into a \n"
- db "Mysterious Fossil. Then you'll \n"
- db "be able to evolve your Pok`mon!",TX_END
+ text "Use Aerodactyl's Prehistoric Power"
+ line "to block your opponent's Pok`mon"
+ line "from evolving. Your own Pok`mon "
+ line "can't evolve? In that case, use"
+ line "Devolution Spray on Aerodactyl "
+ line "and turn it back into a "
+ line "Mysterious Fossil. Then you'll "
+ line "be able to evolve your Pok`mon!"
+ done
Text04bd: ; 451a1 (11:51a1)
- db TX_START,"Phantom Cards",TX_END
+ text "Phantom Cards"
+ done
Text04be: ; 451b0 (11:51b0)
- db TX_START,"It is rumored that there is a\n"
- db "Phantom Card that can only be \n"
- db "gotten by using Card Pop!\n"
- db "It is believed there are 2 such\n"
- db "cards, but no one knows what\n"
- db "kind of cards they are.\n"
- db "I'm off to search for someone \n"
- db "who will give me these cards!\n"
- db " ISHIHARA",TX_END
+ text "It is rumored that there is a"
+ line "Phantom Card that can only be "
+ line "gotten by using Card Pop!"
+ line "It is believed there are 2 such"
+ line "cards, but no one knows what"
+ line "kind of cards they are."
+ line "I'm off to search for someone "
+ line "who will give me these cards!"
+ line " ISHIHARA"
+ done
Text04bf: ; 452bb (11:52bb)
- db TX_START,"Weakness and Resistance",TX_END
+ text "Weakness and Resistance"
+ done
Text04c0: ; 452d4 (11:52d4)
- db TX_START,"If a Pok`mon has a Weakness,\n"
- db "it takes double damage when attacked\n"
- db "by Pok`mon of a certain type!\n"
- db "If a Water Pok`mon attacks\n"
- db "a Fire Pok`mon, the Fire Pok`mon\n"
- db "will receive double damage!\n"
- db "If a Pok`mon has a Resistance,\n"
- db "it takes 30 less damage when\n"
- db "attacked by Pok`mon of a certain\n"
- db "type. If an Attack gives a damage \n"
- db "of 30, the Pok`mon will not receive \n"
- db "damage! Beware of the Weaknesses\n"
- db "and Resistances of your Pok`mon!",TX_END
+ text "If a Pok`mon has a Weakness,"
+ line "it takes double damage when attacked"
+ line "by Pok`mon of a certain type!"
+ line "If a Water Pok`mon attacks"
+ line "a Fire Pok`mon, the Fire Pok`mon"
+ line "will receive double damage!"
+ line "If a Pok`mon has a Resistance,"
+ line "it takes 30 less damage when"
+ line "attacked by Pok`mon of a certain"
+ line "type. If an Attack gives a damage "
+ line "of 30, the Pok`mon will not receive "
+ line "damage! Beware of the Weaknesses"
+ line "and Resistances of your Pok`mon!"
+ done
Text04c1: ; 45474 (11:5474)
- db TX_START,"Drawing Desired Cards",TX_END
+ text "Drawing Desired Cards"
+ done
Text04c2: ; 4548b (11:548b)
- db TX_START,"The Trainer card, Computer Search,\n"
- db "is useful when you want to draw a\n"
- db "certain card! Item Finder and\n"
- db "Pok` Ball will also help!",TX_END
+ text "The Trainer card, Computer Search,"
+ line "is useful when you want to draw a"
+ line "certain card! Item Finder and"
+ line "Pok` Ball will also help!"
+ done
Text04c3: ; 45509 (11:5509)
- db TX_START,"Retreating",TX_END
+ text "Retreating"
+ done
Text04c4: ; 45515 (11:5515)
- db TX_START,"Retreating your Active Pok`mon to\n"
- db "the Bench is a good strategy in\n"
- db "certain situations! Retreating a \n"
- db "Pok`mon requires Energy cards.\n"
- db "Dodrio's Retreat Aid decreases the \n"
- db "number of Energy cards required to\n"
- db "retreat. If you retreat right away,\n"
- db "your Pok`mon won't get knocked out!",TX_END
+ text "Retreating your Active Pok`mon to"
+ line "the Bench is a good strategy in"
+ line "certain situations! Retreating a "
+ line "Pok`mon requires Energy cards."
+ line "Dodrio's Retreat Aid decreases the "
+ line "number of Energy cards required to"
+ line "retreat. If you retreat right away,"
+ line "your Pok`mon won't get knocked out!"
+ done
Text04c5: ; 45628 (11:5628)
- db TX_START,"Fighting Pok`mon",TX_END
+ text "Fighting Pok`mon"
+ done
Text04c6: ; 4563a (11:563a)
- db TX_START,"Fighting Pok`mon Characteristics:\n"
- db "Strong against Lightning Pok`mon.\n"
- db "Weak against Psychic Pok`mon.\n"
- db "Require Fighting Energy cards \n"
- db "to Attack.",TX_END
+ text "Fighting Pok`mon Characteristics:"
+ line "Strong against Lightning Pok`mon."
+ line "Weak against Psychic Pok`mon."
+ line "Require Fighting Energy cards "
+ line "to Attack."
+ done
Text04c7: ; 456c7 (11:56c7)
- db TX_START,"Fighting Pok`mon and Combos",TX_END
+ text "Fighting Pok`mon and Combos"
+ done
Text04c8: ; 456e4 (11:56e4)
- db TX_START,"It is difficult to create combos\n"
- db "with a Fighting Pok`mon, since\n"
- db "not many Fighting Pok`mon have \n"
- db "Pok`mon Power. However, their \n"
- db "strong attacks make up for this.",TX_END
+ text "It is difficult to create combos"
+ line "with a Fighting Pok`mon, since"
+ line "not many Fighting Pok`mon have "
+ line "Pok`mon Power. However, their "
+ line "strong attacks make up for this."
+ done
Text04c9: ; 45785 (11:5785)
- db TX_START,"Double Colorless Energy",TX_END
+ text "Double Colorless Energy"
+ done
Text04ca: ; 4579e (11:579e)
- db TX_START,"Double Colorless Energy is a\n"
- db "very useful card. By using this \n"
- db "single card, you are able to\n"
- db "attach 2 Energies at once.\n"
- db "But be careful because the \n"
- db "energy is colorless.",TX_END
+ text "Double Colorless Energy is a"
+ line "very useful card. By using this "
+ line "single card, you are able to"
+ line "attach 2 Energies at once."
+ line "But be careful because the "
+ line "energy is colorless."
+ done
Text04cb: ; 45846 (11:5846)
- db TX_START,"Rock Pok`mon",TX_END
+ text "Rock Pok`mon"
+ done
Text04cc: ; 45854 (11:5854)
- db TX_START,"Rock Pok`mon Characteristics:\n"
- db "Strong against Lightning Pok`mon.\n"
- db "Weak against Grass Pok`mon.\n"
- db "Require Fighting Energy cards\n"
- db "to Attack.",TX_END
+ text "Rock Pok`mon Characteristics:"
+ line "Strong against Lightning Pok`mon."
+ line "Weak against Grass Pok`mon."
+ line "Require Fighting Energy cards"
+ line "to Attack."
+ done
Text04cd: ; 458da (11:58da)
- db TX_START,"Winning with Fighting Pok`mon",TX_END
+ text "Winning with Fighting Pok`mon"
+ done
Text04ce: ; 458f9 (11:58f9)
- db TX_START,"Fighting Pok`mon will have a hard\n"
- db "time against Stage 2 Pok`mon,\n"
- db "as many Stage 2 Pok`mon are\n"
- db "resistant to Fighting Pok`mon.\n"
- db "Try to knock out your opponent's\n"
- db "Pok`mon before they evolve.",TX_END
+ text "Fighting Pok`mon will have a hard"
+ line "time against Stage 2 Pok`mon,"
+ line "as many Stage 2 Pok`mon are"
+ line "resistant to Fighting Pok`mon."
+ line "Try to knock out your opponent's"
+ line "Pok`mon before they evolve."
+ done
Text04cf: ; 459b2 (11:59b2)
- db TX_START,"Basic Pok`mon",TX_END
+ text "Basic Pok`mon"
+ done
Text04d0: ; 459c1 (11:59c1)
- db TX_START,"Basic Pok`mon are a must in the\n"
- db "Pok`mon Trading Card Game!\n"
- db "Basic Pok`mon are the only Pok`mon\n"
- db "you can put directly from your\n"
- db "hand into the play area. Stage 1\n"
- db "and Stage 2 Evolution cards can\n"
- db "only be used on Basic Pok`mon.\n"
- db "Make sure you have enough\n"
- db "Basic Pok`mon in your deck!",TX_END
+ text "Basic Pok`mon are a must in the"
+ line "Pok`mon Trading Card Game!"
+ line "Basic Pok`mon are the only Pok`mon"
+ line "you can put directly from your"
+ line "hand into the play area. Stage 1"
+ line "and Stage 2 Evolution cards can"
+ line "only be used on Basic Pok`mon."
+ line "Make sure you have enough"
+ line "Basic Pok`mon in your deck!"
+ done
Text04d1: ; 45ad5 (11:5ad5)
- db TX_START,"Water Pok`mon",TX_END
+ text "Water Pok`mon"
+ done
Text04d2: ; 45ae4 (11:5ae4)
- db TX_START,"Water Pok`mon Characteristics:\n"
- db "Strong against Fire Pok`mon.\n"
- db "Weak against Lightning Pok`mon.\n"
- db "Some cards are weak against \n"
- db "Grass Pok`mon. Require Water \n"
- db "Energy cards to attack.",TX_END
+ text "Water Pok`mon Characteristics:"
+ line "Strong against Fire Pok`mon."
+ line "Weak against Lightning Pok`mon."
+ line "Some cards are weak against "
+ line "Grass Pok`mon. Require Water "
+ line "Energy cards to attack."
+ done
Text04d3: ; 45b94 (11:5b94)
- db TX_START,"Water Pok`mon Attacks",TX_END
+ text "Water Pok`mon Attacks"
+ done
Text04d4: ; 45bab (11:5bab)
- db TX_START,"Water Gun and Hydro Pump are\n"
- db "attacks which have variable damage.\n"
- db "The more Water Energy you attach,\n"
- db "the more powerful the attack is!\n"
- db "The attack can do up to 20 more \n"
- db "damage in this way.",TX_END
+ text "Water Gun and Hydro Pump are"
+ line "attacks which have variable damage."
+ line "The more Water Energy you attach,"
+ line "the more powerful the attack is!"
+ line "The attack can do up to 20 more "
+ line "damage in this way."
+ done
Text04d5: ; 45c65 (11:5c65)
- db TX_START,"Paralyze",TX_END
+ text "Paralyze"
+ done
Text04d6: ; 45c6f (11:5c6f)
- db TX_START,"When a Pok`mon is paralyzed, it\n"
- db "is unable to do anything.\n"
- db "It cannot retreat, attack or use\n"
- db "Pok`mon Power, but the player may\n"
- db "use any cards in his or her hand.\n"
- db "Paralysis lasts until the end of \n"
- db "the paralyzed player's turn. \n"
- db "Paralysis can be healed with\n"
- db "Full Heal and Evolution cards.",TX_END
+ text "When a Pok`mon is paralyzed, it"
+ line "is unable to do anything."
+ line "It cannot retreat, attack or use"
+ line "Pok`mon Power, but the player may"
+ line "use any cards in his or her hand."
+ line "Paralysis lasts until the end of "
+ line "the paralyzed player's turn. "
+ line "Paralysis can be healed with"
+ line "Full Heal and Evolution cards."
+ done
Text04d7: ; 45d8b (11:5d8b)
- db TX_START,"Lightning Pok`mon",TX_END
+ text "Lightning Pok`mon"
+ done
Text04d8: ; 45d9e (11:5d9e)
- db TX_START,"Lightning Pok`mon Characteristics:\n"
- db "Strong against Water Pok`mon.\n"
- db "Weak against Fighting Pok`mon.\n"
- db "Require Lightning Energy cards\n"
- db "to attack.",TX_END
+ text "Lightning Pok`mon Characteristics:"
+ line "Strong against Water Pok`mon."
+ line "Weak against Fighting Pok`mon."
+ line "Require Lightning Energy cards"
+ line "to attack."
+ done
Text04d9: ; 45e29 (11:5e29)
- db TX_START,"Energy Cards",TX_END
+ text "Energy Cards"
+ done
Text04da: ; 45e37 (11:5e37)
- db TX_START,"There are 6 Basic Energy cards:\n"
- db "Grass, Fire, Water, Lightning,\n"
- db "Fighting and Psychic!\n"
- db "There is also the Double Colorless\n"
- db "Energy card.\n"
- db "You may include as many Energy \n"
- db "cards as you like in your deck,\n"
- db "but you may only include 4\n"
- db "Double Colorless Energy cards.",TX_END
+ text "There are 6 Basic Energy cards:"
+ line "Grass, Fire, Water, Lightning,"
+ line "Fighting and Psychic!"
+ line "There is also the Double Colorless"
+ line "Energy card."
+ line "You may include as many Energy "
+ line "cards as you like in your deck,"
+ line "but you may only include 4"
+ line "Double Colorless Energy cards."
+ done
Text04db: ; 45f37 (11:5f37)
- db TX_START,"Card Pop!",TX_END
+ text "Card Pop!"
+ done
Text04dc: ; 45f42 (11:5f42)
- db TX_START,"When you and a friend Card Pop!,\n"
- db "you will each receive a new card.\n"
- db "After you Pop! with a friend, you \n"
- db "won't be able to Pop! with the same\n"
- db "friend for a while. You always get\n"
- db "the same card when you Pop! with\n"
- db "the same friend, so Pop! with many\n"
- db "friends to get different cards!",TX_END
+ text "When you and a friend Card Pop!,"
+ line "you will each receive a new card."
+ line "After you Pop! with a friend, you "
+ line "won't be able to Pop! with the same"
+ line "friend for a while. You always get"
+ line "the same card when you Pop! with"
+ line "the same friend, so Pop! with many"
+ line "friends to get different cards!"
+ done
Text04dd: ; 46054 (11:6054)
- db TX_START,"Grass Pok`mon",TX_END
+ text "Grass Pok`mon"
+ done
Text04de: ; 46063 (11:6063)
- db TX_START,"Grass Pok`mon Characteristics:\n"
- db "Strong against Rock Pok`mon.\n"
- db "Weak against Fire Pok`mon.\n"
- db "Some Water Pok`mon are weak\n"
- db "against Grass Pok`mon. Require \n"
- db "Grass Energy cards to attack.",TX_END
+ text "Grass Pok`mon Characteristics:"
+ line "Strong against Rock Pok`mon."
+ line "Weak against Fire Pok`mon."
+ line "Some Water Pok`mon are weak"
+ line "against Grass Pok`mon. Require "
+ line "Grass Energy cards to attack."
+ done
Text04df: ; 46115 (11:6115)
- db TX_START,"Poison",TX_END
+ text "Poison"
+ done
Text04e0: ; 4611d (11:611d)
- db TX_START,"When your Pok`mon is poisoned, it\n"
- db "will continue to lose HP.\n"
- db "The poisoned Pok`mon will lose\n"
- db "10 HP at the end of each player's \n"
- db "turn. To heal a Poisoned Pok`mon,\n"
- db "you may retreat it to the Bench\n"
- db "or use the Trainer Card, Full Heal.\n"
- db "Evolving or Devolving the Pok`mon \n"
- db "are other ways of healing it.",TX_END
+ text "When your Pok`mon is poisoned, it"
+ line "will continue to lose HP."
+ line "The poisoned Pok`mon will lose"
+ line "10 HP at the end of each player's "
+ line "turn. To heal a Poisoned Pok`mon,"
+ line "you may retreat it to the Bench"
+ line "or use the Trainer Card, Full Heal."
+ line "Evolving or Devolving the Pok`mon "
+ line "are other ways of healing it."
+ done
Text04e1: ; 46243 (11:6243)
- db TX_START,"Grass Pok`mon & Pok`mon Breeder",TX_END
+ text "Grass Pok`mon & Pok`mon Breeder"
+ done
Text04e2: ; 46264 (11:6264)
- db TX_START,"Many Grass Pok`mon are capable of\n"
- db "evolving to Stage 2 Pok`mon.\n"
- db "Use the Trainer Card, Pok`mon\n"
- db "Breeder, to evolve Pok`mon quickly.\n"
- db "You'll be able to use powerful\n"
- db "attacks early in the game.",TX_END
+ text "Many Grass Pok`mon are capable of"
+ line "evolving to Stage 2 Pok`mon."
+ line "Use the Trainer Card, Pok`mon"
+ line "Breeder, to evolve Pok`mon quickly."
+ line "You'll be able to use powerful"
+ line "attacks early in the game."
+ done
Text04e3: ; 46320 (11:6320)
- db TX_START,"Psychic Pok`mon",TX_END
+ text "Psychic Pok`mon"
+ done
Text04e4: ; 46331 (11:6331)
- db TX_START,"Psychic Pok`mon Characteristics:\n"
- db "Weak against Psychic Pok`mon.\n"
- db "Some Colorless Pok`mon are strong \n"
- db "against Psychic Pok`mon. Require\n"
- db "Psychic Energy cards to attack.",TX_END
+ text "Psychic Pok`mon Characteristics:"
+ line "Weak against Psychic Pok`mon."
+ line "Some Colorless Pok`mon are strong "
+ line "against Psychic Pok`mon. Require"
+ line "Psychic Energy cards to attack."
+ done
Text04e5: ; 463d5 (11:63d5)
- db TX_START,"Sleep",TX_END
+ text "Sleep"
+ done
Text04e6: ; 463dc (11:63dc)
- db TX_START,"When a Pok`mon is asleep,\n"
- db "it is unable to do anything.\n"
- db "It cannot attack, retreat or use\n"
- db "Pok`mon Power. A coin will be \n"
- db "flipped at the end of each player's \n"
- db "turn. If the coin comes up heads, \n"
- db "the Pok`mon will wake up. If it's\n"
- db "tails, the Pok`mon remains asleep.\n"
- db "Use Full Heal to wake it up!",TX_END
+ text "When a Pok`mon is asleep,"
+ line "it is unable to do anything."
+ line "It cannot attack, retreat or use"
+ line "Pok`mon Power. A coin will be "
+ line "flipped at the end of each player's "
+ line "turn. If the coin comes up heads, "
+ line "the Pok`mon will wake up. If it's"
+ line "tails, the Pok`mon remains asleep."
+ line "Use Full Heal to wake it up!"
+ done
Text04e7: ; 464fe (11:64fe)
- db TX_START,"Pok`mon Power",TX_END
+ text "Pok`mon Power"
+ done
Text04e8: ; 4650d (11:650d)
- db TX_START,"Some Pok`mon have special \n"
- db "abilities called Pok`mon Power.\n"
- db "They are very powerful abilities!\n"
- db "They can be used before attacking, \n"
- db "even if the Pok`mon with the \n"
- db "Pok`mon Power is still on the Bench.\n"
- db "There are many different Pok`mon \n"
- db "Powers, so check your cards!",TX_END
+ text "Some Pok`mon have special "
+ line "abilities called Pok`mon Power."
+ line "They are very powerful abilities!"
+ line "They can be used before attacking, "
+ line "even if the Pok`mon with the "
+ line "Pok`mon Power is still on the Bench."
+ line "There are many different Pok`mon "
+ line "Powers, so check your cards!"
+ done
Text04e9: ; 46611 (11:6611)
- db TX_START,"Science Club Pok`mon",TX_END
+ text "Science Club Pok`mon"
+ done
Text04ea: ; 46627 (11:6627)
- db TX_START,"Characteristics of Pok`mon used\n"
- db "in the Science Club:\n"
- db "Strong against Rock Pok`mon.\n"
- db "Weak against Psychic Pok`mon.\n"
- db "Many cards have attacks with \n"
- db "poison and sleep effects.\n"
- db "Require Grass Energy cards\n"
- db "to attack.",TX_END
+ text "Characteristics of Pok`mon used"
+ line "in the Science Club:"
+ line "Strong against Rock Pok`mon."
+ line "Weak against Psychic Pok`mon."
+ line "Many cards have attacks with "
+ line "poison and sleep effects."
+ line "Require Grass Energy cards"
+ line "to attack."
+ done
Text04eb: ; 466f6 (11:66f6)
- db TX_START,"Confusion",TX_END
+ text "Confusion"
+ done
Text04ec: ; 46701 (11:6701)
- db TX_START,"It's big trouble if your Pok`mon\n"
- db "gets Confused!\n"
- db "When a Confused Pok`mon tries to\n"
- db "attack, you must flip a coin!\n"
- db "If it's heads, the attack is \n"
- db "successful, but if it's tails,\n"
- db "the Pok`mon will attack itself\n"
- db "for 20 damage!",TX_END
+ text "It's big trouble if your Pok`mon"
+ line "gets Confused!"
+ line "When a Confused Pok`mon tries to"
+ line "attack, you must flip a coin!"
+ line "If it's heads, the attack is "
+ line "successful, but if it's tails,"
+ line "the Pok`mon will attack itself"
+ line "for 20 damage!"
+ done
Text04ed: ; 467dc (11:67dc)
- db TX_START,"Useful Buttons",TX_END
+ text "Useful Buttons"
+ done
Text04ee: ; 467ec (11:67ec)
- db TX_START,"While pressing the B Button,\n"
- db "use the + Control Pad to view\n"
- db "your own or your opponent's \n"
- db "Play Area or Discard Pile!\n"
- db "B + Down = Your Play Area\n"
- db "B + Left = Your Discard Pile\n"
- db "B + Up = Opponent's Play Area\n"
- db "B + Right = Opponent's Discard Pile\n"
- db "Remember these handy functions!",TX_END
+ text "While pressing the B Button,"
+ line "use the + Control Pad to view"
+ line "your own or your opponent's "
+ line "Play Area or Discard Pile!"
+ line "B + Down = Your Play Area"
+ line "B + Left = Your Discard Pile"
+ line "B + Up = Opponent's Play Area"
+ line "B + Right = Opponent's Discard Pile"
+ line "Remember these handy functions!"
+ done
Text04ef: ; 468f9 (11:68f9)
- db TX_START,"Fire Pok`mon",TX_END
+ text "Fire Pok`mon"
+ done
Text04f0: ; 46907 (11:6907)
- db TX_START,"Fire Pok`mon Characteristics:\n"
- db "Strong against Grass Pok`mon.\n"
- db "Weak against Water Pok`mon.\n"
- db "Some Grass Pok`mon are not weak\n"
- db "against Fire Pok`mon.\n"
- db "Require Fire Energy cards\n"
- db "to attack.",TX_END
+ text "Fire Pok`mon Characteristics:"
+ line "Strong against Grass Pok`mon."
+ line "Weak against Water Pok`mon."
+ line "Some Grass Pok`mon are not weak"
+ line "against Fire Pok`mon."
+ line "Require Fire Energy cards"
+ line "to attack."
+ done
Text04f1: ; 469bb (11:69bb)
- db TX_START,"Fire Pok`mon Attacks",TX_END
+ text "Fire Pok`mon Attacks"
+ done
Text04f2: ; 469d1 (11:69d1)
- db TX_START,"Many Fire Pok`mon attacks require\n"
- db "that an Energy card be removed.\n"
- db "Be sure to include many Energy\n"
- db "cards in decks with Fire Pok`mon.\n"
- db "It might be wise to also include\n"
- db "Energy Retrieval in your deck.",TX_END
+ text "Many Fire Pok`mon attacks require"
+ line "that an Energy card be removed."
+ line "Be sure to include many Energy"
+ line "cards in decks with Fire Pok`mon."
+ line "It might be wise to also include"
+ line "Energy Retrieval in your deck."
+ done
Text04f3: ; 46a95 (11:6a95)
- db TX_START,"Original Game Boy Cards",TX_END
+ text "Original Game Boy Cards"
+ done
Text04f4: ; 46aae (11:6aae)
- db TX_START,"The Pok`mon Trading Card Game\n"
- db "for Game Boy includes many \n"
- db "original cards, like the \n"
- db TX_START,TX_LVL,"14 Meowth with the Cat Punch \n"
- db "attack. There are many new cards,\n"
- db "so go search them out!",TX_END
+ text "The Pok`mon Trading Card Game"
+ line "for Game Boy includes many "
+ line "original cards, like the "
+ line ""
+ text TX_LVL,"14 Meowth with the Cat Punch "
+ line "attack. There are many new cards,"
+ line "so go search them out!"
+ done
Text04f5: ; 46b5d (11:6b5d)
- db TX_START,"Colorless Pok`mon",TX_END
+ text "Colorless Pok`mon"
+ done
Text04f6: ; 46b70 (11:6b70)
- db TX_START,"Colorless Pok`mon are very easy\n"
- db "to use. They can attack with \n"
- db "any type of Energy card, so\n"
- db "you can include them in any type\n"
- db "of deck. There are many Colorless \n"
- db "Pok`mon, so check them all out!",TX_END
+ text "Colorless Pok`mon are very easy"
+ line "to use. They can attack with "
+ line "any type of Energy card, so"
+ line "you can include them in any type"
+ line "of deck. There are many Colorless "
+ line "Pok`mon, so check them all out!"
+ done
Text04f7: ; 46c2f (11:6c2f)
- db TX_START,"Dragon Pok`mon",TX_END
+ text "Dragon Pok`mon"
+ done
Text04f8: ; 46c3f (11:6c3f)
- db TX_START,"Colorless Dragon Pok`mon cards\n"
- db "have resistance to Psychic\n"
- db "Pok`mon and have no weaknesses.\n"
- db "They can attack with any type\n"
- db "of Energy card - they are truly\n"
- db "worthy of the name \"dragon!\"",TX_END
+ text "Colorless Dragon Pok`mon cards"
+ line "have resistance to Psychic"
+ line "Pok`mon and have no weaknesses."
+ line "They can attack with any type"
+ line "of Energy card - they are truly"
+ line "worthy of the name \"dragon!\""
+ done
Text04f9: ; 46cf5 (11:6cf5)
- db TX_START,"Bird Pok`mon",TX_END
+ text "Bird Pok`mon"
+ done
Text04fa: ; 46d03 (11:6d03)
- db TX_START,"Colorless Bird Pok`mon cards\n"
- db "have resistance to Fighting\n"
- db "Pok`mon but are weak against\n"
- db "Lightning Pok`mon. They can attack\n"
- db "with any type of Energy card.\n"
- db "They can retreat easily, since\n"
- db "they are flying.",TX_END
+ text "Colorless Bird Pok`mon cards"
+ line "have resistance to Fighting"
+ line "Pok`mon but are weak against"
+ line "Lightning Pok`mon. They can attack"
+ line "with any type of Energy card."
+ line "They can retreat easily, since"
+ line "they are flying."
+ done
Text04fb: ; 46dcb (11:6dcb)
- db TX_START,"Legendary Pok`mon Cards, Vol. 1",TX_END
+ text "Legendary Pok`mon Cards, Vol. 1"
+ done
Text04fc: ; 46dec (11:6dec)
- db TX_START,"The first of the Legendary Pok`mon\n"
- db "Cards is ",TX_LVL,"37 Moltres. With\n"
- db "Firegiver, you can place Fire\n"
- db "Energy cards in your hand! Also,\n"
- db "Dive Bomb is a powerful attack!\n"
- db "Grand Master Courtney, the Fire\n"
- db "Queen, owns this card!",TX_END
+ text "The first of the Legendary Pok`mon"
+ line "Cards is ",TX_LVL,"37 Moltres. With"
+ line "Firegiver, you can place Fire"
+ line "Energy cards in your hand! Also,"
+ line "Dive Bomb is a powerful attack!"
+ line "Grand Master Courtney, the Fire"
+ line "Queen, owns this card!"
+ done
Text04fd: ; 46ec2 (11:6ec2)
- db TX_START,"Legendary Pok`mon Cards, Vol. 2",TX_END
+ text "Legendary Pok`mon Cards, Vol. 2"
+ done
Text04fe: ; 46ee3 (11:6ee3)
- db TX_START,"The second Legendary Pok`mon Card\n"
- db "is ",TX_LVL,"68 Zapdos. With Peal of\n"
- db "Thunder, just putting this card on\n"
- db "the bench causes damage!\n"
- db "Also, Big Thunder is a powerful\n"
- db "attack! The Thunder Grand Master,\n"
- db "Steve, owns this card!",TX_END
+ text "The second Legendary Pok`mon Card"
+ line "is ",TX_LVL,"68 Zapdos. With Peal of"
+ line "Thunder, just putting this card on"
+ line "the bench causes damage!"
+ line "Also, Big Thunder is a powerful"
+ line "attack! The Thunder Grand Master,"
+ line "Steve, owns this card!"
+ done
Text04ff: ; 46fb8 (11:6fb8)
- db TX_START,"Legendary Pok`mon Cards, Vol. 3",TX_END
+ text "Legendary Pok`mon Cards, Vol. 3"
+ done
Text0500: ; 46fd9 (11:6fd9)
- db TX_START,"The third Legendary Pok`mon Card\n"
- db "is ",TX_LVL,"37 Articuno. Its Quickfreeze\n"
- db "will paralyze opponents' Pok`mon\n"
- db "when the card is put in play!\n"
- db "Also, Ice Breath is a powerful\n"
- db "Attack! Grand Master Jack,\n"
- db "the Ice-man, owns this card!",TX_END
+ text "The third Legendary Pok`mon Card"
+ line "is ",TX_LVL,"37 Articuno. Its Quickfreeze"
+ line "will paralyze opponents' Pok`mon"
+ line "when the card is put in play!"
+ line "Also, Ice Breath is a powerful"
+ line "Attack! Grand Master Jack,"
+ line "the Ice-man, owns this card!"
+ done
Text0501: ; 470b3 (11:70b3)
- db TX_START,"Legendary Pok`mon Cards, Vol. 4",TX_END
+ text "Legendary Pok`mon Cards, Vol. 4"
+ done
Text0502: ; 470d4 (11:70d4)
- db TX_START,"The fourth Legendary Pok`mon Card\n"
- db "is ",TX_LVL,"41 Dragonite. Its Healing\n"
- db "Wind will heal damage done to \n"
- db "Pok`mon when this card is played!\n"
- db "Also, Slam is a powerful attack!\n"
- db "Rod, Leader of the Grand Masters,\n"
- db "owns this card!",TX_END
+ text "The fourth Legendary Pok`mon Card"
+ line "is ",TX_LVL,"41 Dragonite. Its Healing"
+ line "Wind will heal damage done to "
+ line "Pok`mon when this card is played!"
+ line "Also, Slam is a powerful attack!"
+ line "Rod, Leader of the Grand Masters,"
+ line "owns this card!"
+ done
Text0503: ; 471aa (11:71aa)
- db TX_START,"The Grand Masters",TX_END
+ text "The Grand Masters"
+ done
Text0504: ; 471bd (11:71bd)
- db TX_START,"Courtney, Steve, Jack and Rod -\n"
- db "the 4 Grand Masters who defend\n"
- db "the Legendary Pok`mon Cards - \n"
- db "are all master players of the \n"
- db "Pok`mon Trading Card Game!",TX_END
+ text "Courtney, Steve, Jack and Rod -"
+ line "the 4 Grand Masters who defend"
+ line "the Legendary Pok`mon Cards - "
+ line "are all master players of the "
+ line "Pok`mon Trading Card Game!"
+ done
Text0505: ; 47256 (11:7256)
- db TX_START,"Master Medals",TX_END
+ text "Master Medals"
+ done
Text0506: ; 47265 (11:7265)
- db TX_START,"There are a total of 8 Master Medals\n"
- db "owned by the Club Masters. It is \n"
- db "said that the secret of their Club's\n"
- db "deck is encrypted in the Master \n"
- db "Medals. Some say the medals were \n"
- db "a gift from the Grand Masters.",TX_END
+ text "There are a total of 8 Master Medals"
+ line "owned by the Club Masters. It is "
+ line "said that the secret of their Club's"
+ line "deck is encrypted in the Master "
+ line "Medals. Some say the medals were "
+ line "a gift from the Grand Masters."
+ done
Text0507: ; 47334 (11:7334)
- db TX_START,"Plate of Legends",TX_END
+ text "Plate of Legends"
+ done
Text0508: ; 47346 (11:7346)
- db TX_START,"\"Those in search of the Legendary\n"
- db " Pok`mon Cards...\n"
- db " Defeat the Masters of the 8 Clubs\n"
- db " and attain the 8 Medals.\n"
- db " Once attained, defeat the Grand\n"
- db " Master here at Pok`mon Dome...\n"
- db " Then you shall inherit\n"
- db " the Legendary Pok`mon Cards.\"",TX_END
+ text "\"Those in search of the Legendary"
+ line " Pok`mon Cards..."
+ line " Defeat the Masters of the 8 Clubs"
+ line " and attain the 8 Medals."
+ line " Once attained, defeat the Grand"
+ line " Master here at Pok`mon Dome..."
+ line " Then you shall inherit"
+ line " the Legendary Pok`mon Cards.\""
+ done
Text0509: ; 47430 (11:7430)
- db TX_START,"Mysterious Voice",TX_END
+ text "Mysterious Voice"
+ done
Text050a: ; 47442 (11:7442)
- db TX_START,"Greetings! Welcome to the \n"
- db "Challenge Hall! The Challenge Cup \n"
- db "will begin soon. If you win the \n"
- db "Challenge Cup, you will receive \n"
- db "a Promotional Card! Please join \n"
- db "us for this competition.",TX_END
+ text "Greetings! Welcome to the "
+ line "Challenge Hall! The Challenge Cup "
+ line "will begin soon. If you win the "
+ line "Challenge Cup, you will receive "
+ line "a Promotional Card! Please join "
+ line "us for this competition."
+ done
Text050b: ; 474fd (11:74fd)
- db TX_START,"Greetings! Welcome to the \n"
- db "Challenge Hall! This is where the\n"
- db "the Challenge Cup is held. The \n"
- db "Challenge Cup may start at any\n"
- db "time, so please visit the \n"
- db "Challenge Hall often.",TX_END
+ text "Greetings! Welcome to the "
+ line "Challenge Hall! This is where the"
+ line "the Challenge Cup is held. The "
+ line "Challenge Cup may start at any"
+ line "time, so please visit the "
+ line "Challenge Hall often."
+ done
Text050c: ; 475ab (11:75ab)
- db TX_START,"Greetings! Welcome to the \n"
- db "Challenge Hall! Defeat 3 \n"
- db "opponents here, and you shall be \n"
- db "presented with a wonderful gift!\n"
- db "Please join in the competition!",TX_END
+ text "Greetings! Welcome to the "
+ line "Challenge Hall! Defeat 3 "
+ line "opponents here, and you shall be "
+ line "presented with a wonderful gift!"
+ line "Please join in the competition!"
+ done
Text050d: ; 47644 (11:7644)
- db TX_START,"Most unfortunate, ",TX_RAM1,".\n"
- db "Once you enter, you won't be able\n"
- db "to re-enter for some time. \n"
- db "Please try again another day.",TX_END
+ text "Most unfortunate, ",TX_RAM1,"."
+ line "Once you enter, you won't be able"
+ line "to re-enter for some time. "
+ line "Please try again another day."
+ done
Text050e: ; 476b6 (11:76b6)
- db TX_START,"Congratulations, ",TX_RAM1,"!\n"
- db "You received a card!\n"
- db "Please join us for the next \n"
- db "Challenge Cup, too.",TX_END
+ text "Congratulations, ",TX_RAM1,"!"
+ line "You received a card!"
+ line "Please join us for the next "
+ line "Challenge Cup, too."
+ done
Text050f: ; 47711 (11:7711)
- db TX_START,"I won't lose to any\n"
- db "whipper-snapper!\n"
- db "I'm going to win this \n"
- db "Challenge Cup!",TX_END
+ text "I won't lose to any"
+ line "whipper-snapper!"
+ line "I'm going to win this "
+ line "Challenge Cup!"
+ done
Text0510: ; 4775d (11:775d)
- db TX_START,"I work at the Challenge Cup\n"
- db "as the HOST.\n"
- db "I can't wait to get up on stage!",TX_END
+ text "I work at the Challenge Cup"
+ line "as the HOST."
+ line "I can't wait to get up on stage!"
+ done
Text0511: ; 477a8 (11:77a8)
- db TX_START,"The time has come to see if all\n"
- db "my training has paid off!\n"
- db "I'm going to win the Challenge Cup\n"
- db "and become a Grand Master!",TX_END
+ text "The time has come to see if all"
+ line "my training has paid off!"
+ line "I'm going to win the Challenge Cup"
+ line "and become a Grand Master!"
+ done
Text0512: ; 47821 (11:7821)
- db TX_START,"Hey now! It's the Challenge Cup!\n"
- db "Hey now! Gonna give it a try!\n"
- db "Hey now! Gonna beat 3 people!\n"
- db "Hey now! Watch me win the prize!",TX_END
+ text "Hey now! It's the Challenge Cup!"
+ line "Hey now! Gonna give it a try!"
+ line "Hey now! Gonna beat 3 people!"
+ line "Hey now! Watch me win the prize!"
+ done
Text0513: ; 478a0 (11:78a0)
- db TX_START,"I'm good enough to compete in\n"
- db "the Challenge Cup! Girls are just\n"
- db "as good at the Pok`mon Trading\n"
- db "Card Game as boys!",TX_END
+ text "I'm good enough to compete in"
+ line "the Challenge Cup! Girls are just"
+ line "as good at the Pok`mon Trading"
+ line "Card Game as boys!"
+ done
Text0514: ; 47913 (11:7913)
- db TX_START,"What's that? Oh! The Challenge \n"
- db "Cup isn't being held right now.\n"
- db "Me? I'm waiting for the Challenge\n"
- db "Cup to begin.",TX_END
+ text "What's that? Oh! The Challenge "
+ line "Cup isn't being held right now."
+ line "Me? I'm waiting for the Challenge"
+ line "Cup to begin."
+ done
Text0515: ; 47984 (11:7984)
- db TX_START,"Hi, ",TX_RAM1,".\n"
- db "Are you competing, too?",TX_END
+ text "Hi, ",TX_RAM1,"."
+ line "Are you competing, too?"
+ done
Text0516: ; 479a4 (11:79a4)
- db TX_START,"I'm the one who's going to\n"
- db "defeat 3 opponents! The prize, \n"
- db TX_START,TX_LVL,"60 Mewtwo, belongs to me!\n"
- db "You just sit tight and watch me win!\n"
- db "See Ya! Ha ha ha ha ha ha!",TX_END
+ text "I'm the one who's going to"
+ line "defeat 3 opponents! The prize, "
+ line ""
+ text TX_LVL,"60 Mewtwo, belongs to me!"
+ line "You just sit tight and watch me win!"
+ line "See Ya! Ha ha ha ha ha ha!"
+ done
Text0517: ; 47a3d (11:7a3d)
- db TX_START,"Hey, it's ",TX_RAM1," - the loser\n"
- db "of the Challenge Cup!",TX_END
+ text "Hey, it's ",TX_RAM1," - the loser"
+ line "of the Challenge Cup!"
+ done
Text0518: ; 47a6c (11:7a6c)
- db TX_START,"What? You're asking if I won?\n"
- db "I lost to the third opponent!\n"
- db "I just lost my concentration.\n"
- db "But I'll win the next Challenge \n"
- db "Cup! Of course I'll puverize you!\n"
- db "See ya! Ha ha ha ha ha ha!",TX_END
+ text "What? You're asking if I won?"
+ line "I lost to the third opponent!"
+ line "I just lost my concentration."
+ line "But I'll win the next Challenge "
+ line "Cup! Of course I'll puverize you!"
+ line "See ya! Ha ha ha ha ha ha!"
+ done
Text0519: ; 47b25 (11:7b25)
- db TX_START,"Hey ",TX_RAM1,", too bad \n"
- db "you're too late!",TX_END
+ text "Hey ",TX_RAM1,", too bad "
+ line "you're too late!"
+ done
Text051a: ; 47b47 (11:7b47)
- db TX_START,"The Challenge Cup is over! I\n"
- db "defeated 3 opponents and won\n"
- db "the prize - ",TX_LVL,"60 Mewtwo!\n"
- db "See ya! Ha ha ha ha ha ha!",TX_END
+ text "The Challenge Cup is over! I"
+ line "defeated 3 opponents and won"
+ line "the prize - ",TX_LVL,"60 Mewtwo!"
+ line "See ya! Ha ha ha ha ha ha!"
+ done
Text051b: ; 47bb6 (11:7bb6)
- db TX_START,"Hi, ",TX_RAM1,".\n"
- db "What are you doing here?",TX_END
+ text "Hi, ",TX_RAM1,"."
+ line "What are you doing here?"
+ done
Text051c: ; 47bd7 (11:7bd7)
- db TX_START,"The Challenge Cup is over! I\n"
- db "defeated 3 opponents and won\n"
- db "the prize - ",TX_LVL,"60 Mewtwo!\n"
- db "I guess you could try entering\n"
- db "the next Challenge Cup, but \n"
- db "you won't have a chance since \n"
- db "I'll win that one, too!\n"
- db "See ya! Ha ha ha ha ha ha!",TX_END
+ text "The Challenge Cup is over! I"
+ line "defeated 3 opponents and won"
+ line "the prize - ",TX_LVL,"60 Mewtwo!"
+ line "I guess you could try entering"
+ line "the next Challenge Cup, but "
+ line "you won't have a chance since "
+ line "I'll win that one, too!"
+ line "See ya! Ha ha ha ha ha ha!"
+ done
Text051d: ; 47cb9 (11:7cb9)
- db TX_START,"Hey, ",TX_RAM1,".\n"
- db "We meet again.",TX_END
+ text "Hey, ",TX_RAM1,"."
+ line "We meet again."
+ done
Text051e: ; 47cd1 (11:7cd1)
- db TX_START,"No matter who enters the Challenge\n"
- db "Cup, I'll be the winner! \n"
- db TX_START,TX_LVL,"8 Mew, this Cup's prize, will \n"
- db "belong to me! Why don't you just\n"
- db "give up and go home!\n"
- db "See ya! Ha ha ha ha ha ha!",TX_END
+ text "No matter who enters the Challenge"
+ line "Cup, I'll be the winner! "
+ line ""
+ text TX_LVL,"8 Mew, this Cup's prize, will "
+ line "belong to me! Why don't you just"
+ line "give up and go home!"
+ line "See ya! Ha ha ha ha ha ha!"
+ done
Text051f: ; 47d82 (11:7d82)
- db TX_START,"Hey, it's ",TX_RAM1," - the\n"
- db "loser of the Challenge Cup!",TX_END
+ text "Hey, it's ",TX_RAM1," - the"
+ line "loser of the Challenge Cup!"
+ done
Text0520: ; 47db1 (11:7db1)
- db TX_START,"That was a close one for me!\n"
- db "I lost to the third opponent!\n"
- db "But I'll win the next Challenge \n"
- db "Cup! And of course, I'll pulverize \n"
- db "you! See ya! Ha ha ha ha ha!",TX_END
+ text "That was a close one for me!"
+ line "I lost to the third opponent!"
+ line "But I'll win the next Challenge "
+ line "Cup! And of course, I'll pulverize "
+ line "you! See ya! Ha ha ha ha ha!"
+ done
Text0521: ; 47e4f (11:7e4f)
- db TX_START,"Hey, isn't that ",TX_RAM1,"?\n"
- db "Late as always!",TX_END
+ text "Hey, isn't that ",TX_RAM1,"?"
+ line "Late as always!"
+ done
Text0522: ; 47e73 (11:7e73)
- db TX_START,"The Challenge Cup is already\n"
- db "over! What? Who won?\n"
- db "Who do you expect!?! Me, of \n"
- db "course! The prize belongs to\n"
- db "me! ",TX_LVL,"8 Mew! See ya!\n"
- db "Ha ha ha ha ha ha!",TX_END
+ text "The Challenge Cup is already"
+ line "over! What? Who won?"
+ line "Who do you expect!?! Me, of "
+ line "course! The prize belongs to"
+ line "me! ",TX_LVL,"8 Mew! See ya!"
+ line "Ha ha ha ha ha ha!"
+ done
Text0523: ; 47f08 (11:7f08)
- db TX_START,"Hey, ",TX_RAM1,"!\n"
- db "What are you doing here?",TX_END
+ text "Hey, ",TX_RAM1,"!"
+ line "What are you doing here?"
+ done
diff --git a/src/text/text6.asm b/src/text/text6.asm
index 553943e..5cbf6dd 100644
--- a/src/text/text6.asm
+++ b/src/text/text6.asm
@@ -1,986 +1,1179 @@
Text0524: ; 48000 (12:4000)
- db TX_START,"The Challenge Cup is over already! \n"
- db "Too bad you couldn't enter!\n"
- db "The prize belongs to me! ",TX_LVL,"8 Mew!\n"
- db "You really should enter the next\n"
- db "Challenge Cup! But then again, \n"
- db "why bother, since I'll also win \n"
- db "that one, too! See ya!\n"
- db "Ha ha ha ha ha ha!",TX_END
+ text "The Challenge Cup is over already! "
+ line "Too bad you couldn't enter!"
+ line "The prize belongs to me! ",TX_LVL,"8 Mew!"
+ line "You really should enter the next"
+ line "Challenge Cup! But then again, "
+ line "why bother, since I'll also win "
+ line "that one, too! See ya!"
+ line "Ha ha ha ha ha ha!"
+ done
Text0525: ; 480ef (12:40ef)
- db TX_START,"We do not accept entrants at\n"
- db "this reception area.\n"
- db "Please go to the reception area\n"
- db "to the left.",TX_END
+ text "We do not accept entrants at"
+ line "this reception area."
+ line "Please go to the reception area"
+ line "to the left."
+ done
Text0526: ; 4814f (12:414f)
- db TX_START,"You can't go past this point!\n"
- db "It's restricted!",TX_END
+ text "You can't go past this point!"
+ line "It's restricted!"
+ done
Text0527: ; 4817f (12:417f)
- db TX_START,"The last Challenge Cup was \n"
- db "a blast! The prize was really\n"
- db "cool too! Challenge Cups are \n"
- db "the best! I wonder when the \n"
- db "next one will be?",TX_END
+ text "The last Challenge Cup was "
+ line "a blast! The prize was really"
+ line "cool too! Challenge Cups are "
+ line "the best! I wonder when the "
+ line "next one will be?"
+ done
Text0528: ; 48207 (12:4207)
- db TX_START,"The Challenge Cup is held here,\n"
- db "at the Challenge Hall.\n"
- db "We're still preparing for the \n"
- db "next Challenge Cup.\n"
- db "Please visit us another time.",TX_END
+ text "The Challenge Cup is held here,"
+ line "at the Challenge Hall."
+ line "We're still preparing for the "
+ line "next Challenge Cup."
+ line "Please visit us another time."
+ done
Text0529: ; 48290 (12:4290)
- db TX_START,"Someone who entered a Challenge\n"
- db "Cup once cannot re-enter the \n"
- db "same Challenge Cup again. Please\n"
- db "wait for the next Challenge Cup.",TX_END
+ text "Someone who entered a Challenge"
+ line "Cup once cannot re-enter the "
+ line "same Challenge Cup again. Please"
+ line "wait for the next Challenge Cup."
+ done
Text052a: ; 48311 (12:4311)
- db TX_START,"Someone who entered a Challenge\n"
- db "Cup once cannot re-enter for\n"
- db "a while. Please visit us another\n"
- db "time.",TX_END
+ text "Someone who entered a Challenge"
+ line "Cup once cannot re-enter for"
+ line "a while. Please visit us another"
+ line "time."
+ done
Text052b: ; 48376 (12:4376)
- db TX_START,"The first Challenge Cup is\n"
- db "now underway!\n"
- db "Defeat 3 opponents to win the\n"
- db "wonderful prize of ",TX_LVL,"60 Mewtwo!",TX_END
+ text "The first Challenge Cup is"
+ line "now underway!"
+ line "Defeat 3 opponents to win the"
+ line "wonderful prize of ",TX_LVL,"60 Mewtwo!"
+ done
Text052c: ; 483de (12:43de)
- db TX_START,"The second Challenge Cup is\n"
- db "now under way!\n"
- db "Defeat 3 opponents to win the\n"
- db "wonderful prize of ",TX_LVL,"8 Mew!",TX_END
+ text "The second Challenge Cup is"
+ line "now under way!"
+ line "Defeat 3 opponents to win the"
+ line "wonderful prize of ",TX_LVL,"8 Mew!"
+ done
Text052d: ; 48444 (12:4444)
- db TX_START,"The Challenge Cup is now \n"
- db "underway!\n"
- db "Defeat 3 opponents to win a\n"
- db "fabulous prize!",TX_END
+ text "The Challenge Cup is now "
+ line "underway!"
+ line "Defeat 3 opponents to win a"
+ line "fabulous prize!"
+ done
Text052e: ; 48495 (12:4495)
- db TX_START,"The game will be a 1-match \n"
- db "duel with 4 prizes! We are \n"
- db "now accepting entrants here.\n"
- db "Wouldn't you like to enter?",TX_END
+ text "The game will be a 1-match "
+ line "duel with 4 prizes! We are "
+ line "now accepting entrants here."
+ line "Wouldn't you like to enter?"
+ done
Text052f: ; 48507 (12:4507)
- db TX_START,"Will you enter?",TX_END
+ text "Will you enter?"
+ done
Text0530: ; 48518 (12:4518)
- db TX_START,"Oh, that's too bad.\n"
- db "Please do visit us again.",TX_END
+ text "Oh, that's too bad."
+ line "Please do visit us again."
+ done
Text0531: ; 48547 (12:4547)
- db TX_START,"Then please proceed to the stage!",TX_END
+ text "Then please proceed to the stage!"
+ done
Text0532: ; 4856a (12:456a)
- db TX_START,"Well, things are heating up\n"
- db "here at the Challenge Cup!",TX_END
+ text "Well, things are heating up"
+ line "here at the Challenge Cup!"
+ done
Text0533: ; 485a2 (12:45a2)
- db TX_START,"Presently, ",TX_RAM1," is still\n"
- db "a contender!",TX_END
+ text "Presently, ",TX_RAM1," is still"
+ line "a contender!"
+ done
Text0534: ; 485c6 (12:45c6)
- db TX_START,TX_RAM1," is the new challenger!",TX_END
+ text TX_RAM1," is the new challenger!"
+ done
Text0535: ; 485e0 (12:45e0)
- db TX_START,"There will be 4 Prizes!\n"
- db "OK!!\n"
- db "Let the duel begin!",TX_END
+ text "There will be 4 Prizes!"
+ line "OK!!"
+ line "Let the duel begin!"
+ done
Text0536: ; 48612 (12:4612)
- db TX_START,"The winner is ",TX_RAM2,"!!\n"
- db TX_START,TX_RAM2," has defeated 2 opponents!\n"
- db "Just 1 more opponent to go\n"
- db "before winning the prize!",TX_END
+ text "The winner is ",TX_RAM2,"!!"
+ line ""
+ text TX_RAM2," has defeated 2 opponents!"
+ line "Just 1 more opponent to go"
+ line "before winning the prize!"
+ done
Text0537: ; 48677 (12:4677)
- db TX_START,"Too bad, ",TX_RAM1,".\n"
- db "Have a safe trip home!",TX_END
+ text "Too bad, ",TX_RAM1,"."
+ line "Have a safe trip home!"
+ done
Text0538: ; 4869b (12:469b)
- db TX_START,"The Winner is ",TX_RAM2,"!!!\n"
- db TX_START,TX_RAM2," has defeated 1 opponent!\n"
- db "2 more opponents to go\n"
- db "before winning the prize!",TX_END
+ text "The Winner is ",TX_RAM2,"!!!"
+ line ""
+ text TX_RAM2," has defeated 1 opponent!"
+ line "2 more opponents to go"
+ line "before winning the prize!"
+ done
Text0539: ; 486fc (12:46fc)
- db TX_START,"How unfortunate!\n"
- db "Unable to defeat the last opponent!\n"
- db "It was close, but ",TX_RAM1," was \n"
- db "defeated by the third opponent!",TX_END
+ text "How unfortunate!"
+ line "Unable to defeat the last opponent!"
+ line "It was close, but ",TX_RAM1," was "
+ line "defeated by the third opponent!"
+ done
Text053a: ; 4876b (12:476b)
- db TX_START,"You see! I'm the better player?\n"
- db "Two more opponents to go\n"
- db "to win the Challenge Cup!!",TX_END
+ text "You see! I'm the better player?"
+ line "Two more opponents to go"
+ line "to win the Challenge Cup!!"
+ done
Text053b: ; 487c0 (12:47c0)
- db TX_START,"Ha ha ha! How about that!?!\n"
- db "I win!!\n"
- db "2 more opponents to go and\n"
- db "the ",TX_LVL,"8 Mew belongs to me!",TX_END
+ text "Ha ha ha! How about that!?!"
+ line "I win!!"
+ line "2 more opponents to go and"
+ line "the ",TX_LVL,"8 Mew belongs to me!"
+ done
Text053c: ; 4881b (12:481b)
- db TX_START,"Congratulations!\n"
- db "The Winner is ",TX_RAM1,"!\n"
- db TX_START,TX_RAM1," has defeated\n"
- db "1 opponent!!!",TX_END
+ text "Congratulations!"
+ line "The Winner is ",TX_RAM1,"!"
+ line ""
+ text TX_RAM1," has defeated"
+ line "1 opponent!!!"
+ done
Text053d: ; 4885c (12:485c)
- db TX_START,"Way to go, ",TX_RAM1,"!\n"
- db "That's 2 wins!!!\n"
- db "One more opponent to go before\n"
- db "winning the Challenge Cup!",TX_END
+ text "Way to go, ",TX_RAM1,"!"
+ line "That's 2 wins!!!"
+ line "One more opponent to go before"
+ line "winning the Challenge Cup!"
+ done
Text053e: ; 488b6 (12:48b6)
- db TX_START,"Most unfortunate, ",TX_RAM2,".\n"
- db "Have a safe trip home!",TX_END
+ text "Most unfortunate, ",TX_RAM2,"."
+ line "Have a safe trip home!"
+ done
Text053f: ; 488e3 (12:48e3)
- db TX_START,"Let's meet our next challenger!",TX_END
+ text "Let's meet our next challenger!"
+ done
Text0540: ; 48904 (12:4904)
- db TX_START,"Our new challenger is...\n"
- db TX_START,TX_RAM2,"!",TX_END
+ text "Our new challenger is..."
+ line ""
+ text TX_RAM2,"!"
+ done
Text0541: ; 48922 (12:4922)
- db TX_START,"The third opponent is\n"
- db TX_START,TX_RAM2,"!",TX_END
+ text "The third opponent is"
+ line ""
+ text TX_RAM2,"!"
+ done
Text0542: ; 4893d (12:493d)
- db TX_START,"Hey, ",TX_RAM1,"!\n"
- db "I'm not gonna lose to you!\n"
- db TX_START,TX_LVL,"60 Mewtwo belongs to me!!!",TX_END
+ text "Hey, ",TX_RAM1,"!"
+ line "I'm not gonna lose to you!"
+ line ""
+ text TX_LVL,"60 Mewtwo belongs to me!!!"
+ done
Text0543: ; 4897f (12:497f)
- db TX_START,TX_RAM1,"!\n"
- db "I'm going to defeat you!\n"
- db TX_START,TX_LVL,"8 Mew belongs to me!!!",TX_END
+ text TX_RAM1,"!"
+ line "I'm going to defeat you!"
+ line ""
+ text TX_LVL,"8 Mew belongs to me!!!"
+ done
Text0544: ; 489b6 (12:49b6)
- db TX_START,"With that, let the third match \n"
- db "begin!",TX_END
+ text "With that, let the third match "
+ line "begin!"
+ done
Text0545: ; 489de (12:49de)
- db TX_START,"Are your decks ready?",TX_END
+ text "Are your decks ready?"
+ done
Text0546: ; 489f5 (12:49f5)
- db TX_START,"Prepare your deck?",TX_END
+ text "Prepare your deck?"
+ done
Text0547: ; 48a09 (12:4a09)
- db TX_START,"Well then, ",TX_RAM1,"!\n"
- db "Let the second match begin!",TX_END
+ text "Well then, ",TX_RAM1,"!"
+ line "Let the second match begin!"
+ done
Text0548: ; 48a34 (12:4a34)
- db TX_START,"Well, ",TX_RAM1,", let the third,\n"
- db "and final, match begin!",TX_END
+ text "Well, ",TX_RAM1,", let the third,"
+ line "and final, match begin!"
+ done
Text0549: ; 48a65 (12:4a65)
- db TX_START,"Now then, please make \n"
- db "your preparations!",TX_END
+ text "Now then, please make "
+ line "your preparations!"
+ done
Text054a: ; 48a90 (12:4a90)
- db TX_START,"Congratulations!\n"
- db "You've defeated 3 opponents!",TX_END
+ text "Congratulations!"
+ line "You've defeated 3 opponents!"
+ done
Text054b: ; 48abf (12:4abf)
- db TX_START,"Most unfortunate, ",TX_RAM2,".\n"
- db "Do try again in the next\n"
- db "Challenge Cup.",TX_END
+ text "Most unfortunate, ",TX_RAM2,"."
+ line "Do try again in the next"
+ line "Challenge Cup."
+ done
Text054c: ; 48afd (12:4afd)
- db TX_START,"That was luck!\n"
- db "But a loss is a loss...",TX_END
+ text "That was luck!"
+ line "But a loss is a loss..."
+ done
Text054d: ; 48b25 (12:4b25)
- db TX_START,"Shoot! I got a bad deal!",TX_END
+ text "Shoot! I got a bad deal!"
+ done
Text054e: ; 48b3f (12:4b3f)
- db TX_START,TX_RAM1,"!\n"
- db "I won't lose next time!",TX_END
+ text TX_RAM1,"!"
+ line "I won't lose next time!"
+ done
Text054f: ; 48b5b (12:4b5b)
- db TX_START,TX_RAM1,"!\n"
- db "I'll win next time!",TX_END
+ text TX_RAM1,"!"
+ line "I'll win next time!"
+ done
Text0550: ; 48b73 (12:4b73)
- db TX_START,"The Winner of this Challenge Cup \n"
- db "is ",TX_START,TX_RAM1,"!!!",TX_END
+ text "The Winner of this Challenge Cup "
+ line "is ",TX_START,TX_RAM1,"!!!"
+ done
Text0551: ; 48b9f (12:4b9f)
- db TX_START,TX_RAM1,", your prize\n"
- db "is ",TX_RAM2,"!",TX_END
+ text TX_RAM1,", your prize"
+ line "is ",TX_RAM2,"!"
+ done
Text0552: ; 48bb4 (12:4bb4)
- db TX_START,"Congratulations, ",TX_START,TX_RAM1,"!!!",TX_END
+ text "Congratulations, ",TX_START,TX_RAM1,"!!!"
+ done
Text0553: ; 48bcc (12:4bcc)
- db TX_START,"Hi, ",TX_RAM1,".\n"
- db "What are you doing here?",TX_END
+ text "Hi, ",TX_RAM1,"."
+ line "What are you doing here?"
+ done
Text0554: ; 48bed (12:4bed)
- db TX_START,"Yes! The Legendary Pok`mon Cards\n"
- db "will be inherited here at\n"
- db "Pok`mon Dome! Of course, I, \n"
- db "Ronald, will inherit the cards!\n"
- db "Hey, did you collect the Medals?",TX_END
+ text "Yes! The Legendary Pok`mon Cards"
+ line "will be inherited here at"
+ line "Pok`mon Dome! Of course, I, "
+ line "Ronald, will inherit the cards!"
+ line "Hey, did you collect the Medals?"
+ done
Text0555: ; 48c87 (12:4c87)
- db TX_START,"Duh! That's pretty obvious!\n"
- db "There's no way you could \n"
- db "collect them all! Why don't \n"
- db "you just give up? See ya!",TX_END
+ text "Duh! That's pretty obvious!"
+ line "There's no way you could "
+ line "collect them all! Why don't "
+ line "you just give up? See ya!"
+ done
Text0556: ; 48cf5 (12:4cf5)
- db TX_START,"Hey, ",TX_RAM1,"!\n"
- db "You only have ",TX_RAM3," Medals!\n"
- db "I've already collected ",TX_RAM3,"!\n"
- db "Why don't you just give up? See ya!",TX_END
+ text "Hey, ",TX_RAM1,"!"
+ line "You only have ",TX_RAM3," Medals!"
+ line "I've already collected ",TX_RAM3,"!"
+ line "Why don't you just give up? See ya!"
+ done
Text0557: ; 48d54 (12:4d54)
- db TX_START,"What!?! You don't have any!?!\n"
- db "It's about time you got the hint:\n"
- db "Give it up, already! See ya!",TX_END
+ text "What!?! You don't have any!?!"
+ line "It's about time you got the hint:"
+ line "Give it up, already! See ya!"
+ done
Text0558: ; 48db2 (12:4db2)
- db TX_START,"Only those who have won all 8 \n"
- db "Master Medals may enter the Grand \n"
- db "Hall. You have not won all the \n"
- db "Master Medals. Leave this place!",TX_END
+ text "Only those who have won all 8 "
+ line "Master Medals may enter the Grand "
+ line "Hall. You have not won all the "
+ line "Master Medals. Leave this place!"
+ done
Text0559: ; 48e36 (12:4e36)
- db TX_START,"Only those who have won all 8 \n"
- db "Master Medals may enter the Grand \n"
- db "Hall. You have won all 8 Master \n"
- db "Medals! Enter the Grand Hall!",TX_END
+ text "Only those who have won all 8 "
+ line "Master Medals may enter the Grand "
+ line "Hall. You have won all 8 Master "
+ line "Medals! Enter the Grand Hall!"
+ done
Text055a: ; 48eb8 (12:4eb8)
- db TX_START,"Congratulations!\n"
- db "My Legendary Card belongs to you!\n"
- db "Please take good care of this card!",TX_END
+ text "Congratulations!"
+ line "My Legendary Card belongs to you!"
+ line "Please take good care of this card!"
+ done
Text055b: ; 48f10 (12:4f10)
- db TX_START,"You're very good, ",TX_RAM1,".\n"
- db "Please take care of my card.",TX_END
+ text "You're very good, ",TX_RAM1,"."
+ line "Please take care of my card."
+ done
Text055c: ; 48f43 (12:4f43)
- db TX_START,"Congratulations! \n"
- db "You're the Champ!\n"
- db "My Zapdos card belongs to you!",TX_END
+ text "Congratulations! "
+ line "You're the Champ!"
+ line "My Zapdos card belongs to you!"
+ done
Text055d: ; 48f87 (12:4f87)
- db TX_START,"Congratulations!\n"
- db "You're the Champ!\n"
- db "Please treasure my Zapdos card!",TX_END
+ text "Congratulations!"
+ line "You're the Champ!"
+ line "Please treasure my Zapdos card!"
+ done
Text055e: ; 48fcb (12:4fcb)
- db TX_START,"Please build a powerful Deck\n"
- db "around my card!",TX_END
+ text "Please build a powerful Deck"
+ line "around my card!"
+ done
Text055f: ; 48ff9 (12:4ff9)
- db TX_START,"You've really improved your \n"
- db "game, ",TX_START,TX_RAM1,".\n"
- db "Use my card to make it better!",TX_END
+ text "You've really improved your "
+ line "game, ",TX_START,TX_RAM1,"."
+ line "Use my card to make it better!"
+ done
Text0560: ; 49040 (12:5040)
- db TX_START,"You played a wonderful match!\n"
- db "The Legendary Cards seem pleased\n"
- db "to be passed on to you\n"
- db TX_START,TX_RAM1,". Hurry and go through\n"
- db "to the Hall of Honor!",TX_END
+ text "You played a wonderful match!"
+ line "The Legendary Cards seem pleased"
+ line "to be passed on to you"
+ line ""
+ text TX_RAM1,". Hurry and go through"
+ line "to the Hall of Honor!"
+ done
Text0561: ; 490c6 (12:50c6)
- db TX_START,"You played a wonderful match!\n"
- db "The Legendary Cards seem pleased\n"
- db "to be passed on to you.",TX_END
+ text "You played a wonderful match!"
+ line "The Legendary Cards seem pleased"
+ line "to be passed on to you."
+ done
Text0562: ; 4911e (12:511e)
- db TX_START,TX_RAM1,", That is not the way\n"
- db "to the Hall of Honor.\n"
- db "Hurry, ",TX_START,TX_RAM1,"! Go through to\n"
- db "the Hall of Honor!",TX_END
+ text TX_RAM1,", That is not the way"
+ line "to the Hall of Honor."
+ line "Hurry, ",TX_START,TX_RAM1,"! Go through to"
+ line "the Hall of Honor!"
+ done
Text0563: ; 49178 (12:5178)
- db TX_START,TX_RAM1,", if you leave the \n"
- db "Grand Hall, you must defeat \n"
- db "each of us again to enter\n"
- db "the Hall of Honor.",TX_END
+ text TX_RAM1,", if you leave the "
+ line "Grand Hall, you must defeat "
+ line "each of us again to enter"
+ line "the Hall of Honor."
+ done
Text0564: ; 491d8 (12:51d8)
- db TX_START,"Exit the Grand Hall?",TX_END
+ text "Exit the Grand Hall?"
+ done
Text0565: ; 491ee (12:51ee)
- db TX_START,"Possessor of all 8 Master Medals...\n"
- db "Enter the Dueling Stage...\n"
- db "However, you will be unable to \n"
- db "turn back.",TX_END
+ text "Possessor of all 8 Master Medals..."
+ line "Enter the Dueling Stage..."
+ line "However, you will be unable to "
+ line "turn back."
+ done
Text0566: ; 49259 (12:5259)
- db TX_START,"Enter the Dueling Stage?",TX_END
+ text "Enter the Dueling Stage?"
+ done
Text0567: ; 49273 (12:5273)
- db TX_START,"Then leave the Grand Hall!",TX_END
+ text "Then leave the Grand Hall!"
+ done
Text0568: ; 4928f (12:528f)
- db TX_START,"In that case...\n"
- db "Enter the Dueling Stage.",TX_END
+ text "In that case..."
+ line "Enter the Dueling Stage."
+ done
Text0569: ; 492b9 (12:52b9)
- db TX_START,"Welcome to Pok`mon Dome!",TX_END
+ text "Welcome to Pok`mon Dome!"
+ done
Text056a: ; 492d3 (12:52d3)
- db TX_START,"Welcome back,\n"
- db "brave challenger!",TX_END
+ text "Welcome back,"
+ line "brave challenger!"
+ done
Text056b: ; 492f4 (12:52f4)
- db TX_START,"I am Rod, Leader of the \n"
- db "Grand Masters, and this is\n"
- db "Grand Master Courtney,\n"
- db "the Fire Queen.",TX_END
+ text "I am Rod, Leader of the "
+ line "Grand Masters, and this is"
+ line "Grand Master Courtney,"
+ line "the Fire Queen."
+ done
Text056c: ; 49350 (12:5350)
- db TX_START,"Grand Master of Lightning,\n"
- db "Thunder Steve!",TX_END
+ text "Grand Master of Lightning,"
+ line "Thunder Steve!"
+ done
Text056d: ; 4937b (12:537b)
- db TX_START,"Grand Master of Ice,\n"
- db "Gentlemanly Jack.",TX_END
+ text "Grand Master of Ice,"
+ line "Gentlemanly Jack."
+ done
Text056e: ; 493a3 (12:53a3)
- db TX_START,"We are the 4 Grand Masters who\n"
- db "guard the Legendary Pok`mon Cards.\n"
- db "If you can defeat all of us, then \n"
- db "you will have earned the right to \n"
- db "inherit the Legendary Pok`mon Cards!",TX_END
+ text "We are the 4 Grand Masters who"
+ line "guard the Legendary Pok`mon Cards."
+ line "If you can defeat all of us, then "
+ line "you will have earned the right to "
+ line "inherit the Legendary Pok`mon Cards!"
+ done
Text056f: ; 49451 (12:5451)
- db TX_START,"We are the Grand Masters who guard\n"
- db "the Legendary Pok`mon Cards!\n"
- db "We will accept your challenge as\n"
- db "many times as will take for you \n"
- db "to inherit all 4 of the \n"
- db "Legendary Pok`mon Cards!",TX_END
+ text "We are the Grand Masters who guard"
+ line "the Legendary Pok`mon Cards!"
+ line "We will accept your challenge as"
+ line "many times as will take for you "
+ line "to inherit all 4 of the "
+ line "Legendary Pok`mon Cards!"
+ done
Text0570: ; 49506 (12:5506)
- db TX_START,"We are the Grand Masters who guard\n"
- db "the Legendary Pok`mon Cards!\n"
- db "Challenge us as many times as \n"
- db "you wish!",TX_END
+ text "We are the Grand Masters who guard"
+ line "the Legendary Pok`mon Cards!"
+ line "Challenge us as many times as "
+ line "you wish!"
+ done
Text0571: ; 49570 (12:5570)
- db TX_START,TX_RAM1,",\n"
- db "take your place at the table.",TX_END
+ text TX_RAM1,","
+ line "take your place at the table."
+ done
Text0572: ; 49592 (12:5592)
- db TX_START,"Your first opponent shall be \n"
- db "Courtney!",TX_END
+ text "Your first opponent shall be "
+ line "Courtney!"
+ done
Text0573: ; 495bb (12:55bb)
- db TX_START,"First, you must duel Courtney!",TX_END
+ text "First, you must duel Courtney!"
+ done
Text0574: ; 495db (12:55db)
- db TX_START,"Hm-hmmm...I, Courtney, the Fire \n"
- db "Queen, shall be your first \n"
- db "opponent! We shall see if you can \n"
- db "take the heat. A 6-prizes match! \n"
- db "Hm-hmm-hmm...Let's go to it!",TX_END
+ text "Hm-hmmm...I, Courtney, the Fire "
+ line "Queen, shall be your first "
+ line "opponent! We shall see if you can "
+ line "take the heat. A 6-prizes match! "
+ line "Hm-hmm-hmm...Let's go to it!"
+ done
Text0575: ; 4967b (12:567b)
- db TX_START,"Let's see if you can take the heat!\n"
- db "There will be 6 Prizes.\n"
- db "Hm-hmm-hmm...Let's go to it!",TX_END
+ text "Let's see if you can take the heat!"
+ line "There will be 6 Prizes."
+ line "Hm-hmm-hmm...Let's go to it!"
+ done
Text0576: ; 496d5 (12:56d5)
- db TX_START,"Hm-hmm-hmm...\n"
- db "I W I N ! Come back when you've\n"
- db "gotten a little better. I can't\n"
- db "give a Legendary Pok`mon Card to\n"
- db "someone who plays like that!",TX_END
+ text "Hm-hmm-hmm..."
+ line "I W I N ! Come back when you've"
+ line "gotten a little better. I can't"
+ line "give a Legendary Pok`mon Card to"
+ line "someone who plays like that!"
+ done
Text0577: ; 49763 (12:5763)
- db TX_START,"Hm-hmm-hmm...I W I N !\n"
- db "The Legendary Pok`mon Cards \n"
- db "deserve better than that!",TX_END
+ text "Hm-hmm-hmm...I W I N !"
+ line "The Legendary Pok`mon Cards "
+ line "deserve better than that!"
+ done
Text0578: ; 497b3 (12:57b3)
- db TX_START,"I'm sorry, but you have to leave.\n"
- db "Well, take care...",TX_END
+ text "I'm sorry, but you have to leave."
+ line "Well, take care..."
+ done
Text0579: ; 497e9 (12:57e9)
- db TX_START,"Hmm-hmm-hmm...I lose.\n"
- db "But that's no suprise, seeing \n"
- db "as how you've come this far.\n"
- db "Your next opponent is waiting \n"
- db "for you!",TX_END
+ text "Hmm-hmm-hmm...I lose."
+ line "But that's no suprise, seeing "
+ line "as how you've come this far."
+ line "Your next opponent is waiting "
+ line "for you!"
+ done
Text057a: ; 49864 (12:5864)
- db TX_START,"Hmm-hmm-hmm...I lose.\n"
- db "I find you worthy of inheriting\n"
- db "the Legendary Pok`mon Cards!",TX_END
+ text "Hmm-hmm-hmm...I lose."
+ line "I find you worthy of inheriting"
+ line "the Legendary Pok`mon Cards!"
+ done
Text057b: ; 498b8 (12:58b8)
- db TX_START,"Very good, ",TX_RAM1,"!\n"
- db "Your second opponent is Steve!",TX_END
+ text "Very good, ",TX_RAM1,"!"
+ line "Your second opponent is Steve!"
+ done
Text057c: ; 498e6 (12:58e6)
- db TX_START,TX_RAM1,"! Next, you must duel \n"
- db "Steve!",TX_END
+ text TX_RAM1,"! Next, you must duel "
+ line "Steve!"
+ done
Text057d: ; 49906 (12:5906)
- db TX_START,"I, Thunder Steve, am your next \n"
- db "opponent. Hey! Do you want the\n"
- db "Legendary Pok`mon Cards!?!\n"
- db "Then you must defeat me first!",TX_END
+ text "I, Thunder Steve, am your next "
+ line "opponent. Hey! Do you want the"
+ line "Legendary Pok`mon Cards!?!"
+ line "Then you must defeat me first!"
+ done
Text057e: ; 49980 (12:5980)
- db TX_START,"Hey, ",TX_RAM1,"!\n"
- db "Come battle Steve!",TX_END
+ text "Hey, ",TX_RAM1,"!"
+ line "Come battle Steve!"
+ done
Text057f: ; 4999c (12:599c)
- db TX_START,"Is your Deck ready, ",TX_START,TX_RAM1,"?",TX_END
+ text "Is your Deck ready, ",TX_START,TX_RAM1,"?"
+ done
Text0580: ; 499b5 (12:59b5)
- db TX_START,"Prepare for the Duel?",TX_END
+ text "Prepare for the Duel?"
+ done
Text0581: ; 499cc (12:59cc)
- db TX_START,"All right then!\n"
- db "Let's begin the Duel!",TX_END
+ text "All right then!"
+ line "Let's begin the Duel!"
+ done
Text0582: ; 499f3 (12:59f3)
- db TX_START,"6 Prizes!\n"
- db "Ready? Set! Go!",TX_END
+ text "6 Prizes!"
+ line "Ready? Set! Go!"
+ done
Text0583: ; 49a0e (12:5a0e)
- db TX_START,"You lose! You still have a \n"
- db "long way to go,\n"
- db "but don't give up!\n"
- db "Challenge me again!",TX_END
+ text "You lose! You still have a "
+ line "long way to go,"
+ line "but don't give up!"
+ line "Challenge me again!"
+ done
Text0584: ; 49a62 (12:5a62)
- db TX_START,"You Lose! You still have a \n"
- db "long way to go!\n"
- db "But don't give up!\n"
- db "Challenge me again!",TX_END
+ text "You Lose! You still have a "
+ line "long way to go!"
+ line "But don't give up!"
+ line "Challenge me again!"
+ done
Text0585: ; 49ab6 (12:5ab6)
- db TX_START,"You're the Winner! You're the \n"
- db "Greatest! With that skill, I \n"
- db "feel we can give you the \n"
- db "Legendary Pok`mon Cards!",TX_END
+ text "You're the Winner! You're the "
+ line "Greatest! With that skill, I "
+ line "feel we can give you the "
+ line "Legendary Pok`mon Cards!"
+ done
Text0586: ; 49b27 (12:5b27)
- db TX_START,"You're the Winner!\n"
- db "You're the Greatest!",TX_END
+ text "You're the Winner!"
+ line "You're the Greatest!"
+ done
Text0587: ; 49b50 (12:5b50)
- db TX_START,"Very good, ",TX_RAM1,".\n"
- db "Your next opponent is Jack!",TX_END
+ text "Very good, ",TX_RAM1,"."
+ line "Your next opponent is Jack!"
+ done
Text0588: ; 49b7b (12:5b7b)
- db TX_START,"That's great, ",TX_RAM1,"!\n"
- db "Jack is your next opponent!",TX_END
+ text "That's great, ",TX_RAM1,"!"
+ line "Jack is your next opponent!"
+ done
Text0589: ; 49ba9 (12:5ba9)
- db TX_START,"I, Jack, am your third opponent.\n"
- db "You shall not be able to defeat\n"
- db "my splendid deck!\n"
- db "Come! I shall prove it to you!",TX_END
+ text "I, Jack, am your third opponent."
+ line "You shall not be able to defeat"
+ line "my splendid deck!"
+ line "Come! I shall prove it to you!"
+ done
Text058a: ; 49c1c (12:5c1c)
- db TX_START,"I shall duel you with my splendid \n"
- db "deck! I shan't lose this time!",TX_END
+ text "I shall duel you with my splendid "
+ line "deck! I shan't lose this time!"
+ done
Text058b: ; 49c5f (12:5c5f)
- db TX_START,TX_RAM1,",\n"
- db "have you readied your deck?",TX_END
+ text TX_RAM1,","
+ line "have you readied your deck?"
+ done
Text058c: ; 49c7f (12:5c7f)
- db TX_START,"Prepare for the duel?",TX_END
+ text "Prepare for the duel?"
+ done
Text058d: ; 49c96 (12:5c96)
- db TX_START,"Very well then!\n"
- db "Let us begin the duel!",TX_END
+ text "Very well then!"
+ line "Let us begin the duel!"
+ done
Text058e: ; 49cbe (12:5cbe)
- db TX_START,"Shall we start?\n"
- db "There will be 6 Prizes!",TX_END
+ text "Shall we start?"
+ line "There will be 6 Prizes!"
+ done
Text058f: ; 49ce7 (12:5ce7)
- db TX_START,"What did I tell you?\n"
- db "There was absolutely no way you \n"
- db "could have defeated my\n"
- db "splendid deck!",TX_END
+ text "What did I tell you?"
+ line "There was absolutely no way you "
+ line "could have defeated my"
+ line "splendid deck!"
+ done
Text0590: ; 49d44 (12:5d44)
- db TX_START,"What did I tell you?\n"
- db "There was no way you could have \n"
- db "defeated my splendid deck!",TX_END
+ text "What did I tell you?"
+ line "There was no way you could have "
+ line "defeated my splendid deck!"
+ done
Text0591: ; 49d96 (12:5d96)
- db TX_START,"I simply can't believe my \n"
- db "splendid deck could lose...\n"
- db "It is a mortifying thought, \n"
- db "but it appears you are better \n"
- db "than I. Very well! Now\n"
- db "on to your final test...",TX_END
+ text "I simply can't believe my "
+ line "splendid deck could lose..."
+ line "It is a mortifying thought, "
+ line "but it appears you are better "
+ line "than I. Very well! Now"
+ line "on to your final test..."
+ done
Text0592: ; 49e3a (12:5e3a)
- db TX_START,"I simply can't believe my \n"
- db "splendid deck could lose...\n"
- db "It would appear that you are \n"
- db "a true Master...",TX_END
+ text "I simply can't believe my "
+ line "splendid deck could lose..."
+ line "It would appear that you are "
+ line "a true Master..."
+ done
Text0593: ; 49ea1 (12:5ea1)
- db TX_START,"Spectacular dueling! I, Rod,\n"
- db "will be your next opponent!",TX_END
+ text "Spectacular dueling! I, Rod,"
+ line "will be your next opponent!"
+ done
Text0594: ; 49edb (12:5edb)
- db TX_START,"Splendid, as usual!\n"
- db "I will be your next opponent!",TX_END
+ text "Splendid, as usual!"
+ line "I will be your next opponent!"
+ done
Text0595: ; 49f0e (12:5f0e)
- db TX_START,"This is your final duel!\n"
- db "Show me what you're made of!",TX_END
+ text "This is your final duel!"
+ line "Show me what you're made of!"
+ done
Text0596: ; 49f45 (12:5f45)
- db TX_START,"If you win this Duel, I will \n"
- db "allow you to duel Ronald!",TX_END
+ text "If you win this Duel, I will "
+ line "allow you to duel Ronald!"
+ done
Text0597: ; 49f7e (12:5f7e)
- db TX_START,"This is your final duel!\n"
- db "Show me what you're made of!",TX_END
+ text "This is your final duel!"
+ line "Show me what you're made of!"
+ done
Text0598: ; 49fb5 (12:5fb5)
- db TX_START,"Is your Deck ready, ",TX_START,TX_RAM1,"?",TX_END
+ text "Is your Deck ready, ",TX_START,TX_RAM1,"?"
+ done
Text0599: ; 49fce (12:5fce)
- db TX_START,"Prepare for the Duel?",TX_END
+ text "Prepare for the Duel?"
+ done
Text059a: ; 49fe5 (12:5fe5)
- db TX_START,"Then let's begin the final duel - \n"
- db "a 1-match duel for 6 Prizes!!!",TX_END
+ text "Then let's begin the final duel - "
+ line "a 1-match duel for 6 Prizes!!!"
+ done
Text059b: ; 4a028 (12:6028)
- db TX_START,"A 1-match duel for 6 prizes!!",TX_END
+ text "A 1-match duel for 6 prizes!!"
+ done
Text059c: ; 4a047 (12:6047)
- db TX_START,"That was close, but you came \n"
- db "up a little short.",TX_END
+ text "That was close, but you came "
+ line "up a little short."
+ done
Text059d: ; 4a079 (12:6079)
- db TX_START,"I'm sorry, but I cannot pass the\n"
- db "the Legendary Pok`mon Cards to you.\n"
- db "Continue training and try again.\n"
- db "Until then!",TX_END
+ text "I'm sorry, but I cannot pass the"
+ line "the Legendary Pok`mon Cards to you."
+ line "Continue training and try again."
+ line "Until then!"
+ done
Text059e: ; 4a0ec (12:60ec)
- db TX_START,"Continue training and try again.\n"
- db "Until then!",TX_END
+ text "Continue training and try again."
+ line "Until then!"
+ done
Text059f: ; 4a11a (12:611a)
- db TX_START,"Wha-what on earth? Even\n"
- db "I, Rod, have been defeated?!?\n"
- db "Wonderful! This is wonderful!!\n"
- db "Congratulations, ",TX_RAM1,". \n"
- db "You have proven yourself worthy\n"
- db "enough to inherit the\n"
- db "Legendary Pok`mon Cards!!!\n"
- db "Except...",TX_END
+ text "Wha-what on earth? Even"
+ line "I, Rod, have been defeated?!?"
+ line "Wonderful! This is wonderful!!"
+ line "Congratulations, ",TX_RAM1,". "
+ line "You have proven yourself worthy"
+ line "enough to inherit the"
+ line "Legendary Pok`mon Cards!!!"
+ line "Except..."
+ done
Text05a0: ; 4a1e1 (12:61e1)
- db TX_START,"Congratulations, ",TX_RAM1,"!\n"
- db "You're a master duelist!!!\n"
- db "But...",TX_END
+ text "Congratulations, ",TX_RAM1,"!"
+ line "You're a master duelist!!!"
+ line "But..."
+ done
Text05a1: ; 4a218 (12:6218)
- db TX_START,"We have a problem...\n"
- db "There is another who has \n"
- db "defeated us...\n"
- db "You must duel him...",TX_END
+ text "We have a problem..."
+ line "There is another who has "
+ line "defeated us..."
+ line "You must duel him..."
+ done
Text05a2: ; 4a26c (12:626c)
- db TX_START,"You must duel Ronald again.",TX_END
+ text "You must duel Ronald again."
+ done
Text05a3: ; 4a289 (12:6289)
- db TX_START,"Congratulations, ",TX_RAM1,"!\n"
- db "You're a master duelist!",TX_END
+ text "Congratulations, ",TX_RAM1,"!"
+ line "You're a master duelist!"
+ done
Text05a4: ; 4a2b7 (12:62b7)
- db TX_START,"Even I, Rod, am no longer any \n"
- db "match for you.\n"
- db "Please, enter the \n"
- db "Hall of Honor!",TX_END
+ text "Even I, Rod, am no longer any "
+ line "match for you."
+ line "Please, enter the "
+ line "Hall of Honor!"
+ done
Text05a5: ; 4a308 (12:6308)
- db TX_START,"Yeah! That's right! \n"
- db "It's me!!! Ronald!!!\n"
- db "I have already inherited the\n"
- db "Legendary Pok`mon Cards!",TX_END
+ text "Yeah! That's right! "
+ line "It's me!!! Ronald!!!"
+ line "I have already inherited the"
+ line "Legendary Pok`mon Cards!"
+ done
Text05a6: ; 4a369 (12:6369)
- db TX_START,"No, Ronald! That cannot be \n"
- db "allowed! He, too, has earned \n"
- db "the right to inherit the \n"
- db "Legendary Pok`mon Cards!\n"
- db "Ronald! ",TX_RAM1,"!\n"
- db "You two must duel to determine who \n"
- db "will inherit the Legendary Pok`mon \n"
- db "Cards. So say the Rules!",TX_END
+ text "No, Ronald! That cannot be "
+ line "allowed! He, too, has earned "
+ line "the right to inherit the "
+ line "Legendary Pok`mon Cards!"
+ line "Ronald! ",TX_RAM1,"!"
+ line "You two must duel to determine who "
+ line "will inherit the Legendary Pok`mon "
+ line "Cards. So say the Rules!"
+ done
Text05a7: ; 4a443 (12:6443)
- db TX_START,"Alright, Rod!",TX_END
+ text "Alright, Rod!"
+ done
Text05a8: ; 4a452 (12:6452)
- db TX_START,"Yeah! That's right! It's me!!!\n"
- db "Ronald!!!\n"
- db "I'll take your challenge,\n"
- db TX_START,TX_RAM1,"!",TX_END
+ text "Yeah! That's right! It's me!!!"
+ line "Ronald!!!"
+ line "I'll take your challenge,"
+ line ""
+ text TX_RAM1,"!"
+ done
Text05a9: ; 4a49a (12:649a)
- db TX_START,"Is your Deck ready, ",TX_START,TX_RAM1,"?",TX_END
+ text "Is your Deck ready, ",TX_START,TX_RAM1,"?"
+ done
Text05aa: ; 4a4b3 (12:64b3)
- db TX_START,"Prepare for the Duel?",TX_END
+ text "Prepare for the Duel?"
+ done
Text05ab: ; 4a4ca (12:64ca)
- db TX_START,"OK, Then let's begin this \n"
- db "ultimate duel!",TX_END
+ text "OK, Then let's begin this "
+ line "ultimate duel!"
+ done
Text05ac: ; 4a4f5 (12:64f5)
- db TX_START,"I was here first! The Legendary\n"
- db "Pok`mon Cards belong to me!\n"
- db "I'll make it all too clear to\n"
- db "you, ",TX_START,TX_RAM1,"!",TX_END
+ text "I was here first! The Legendary"
+ line "Pok`mon Cards belong to me!"
+ line "I'll make it all too clear to"
+ line "you, ",TX_START,TX_RAM1,"!"
+ done
Text05ad: ; 4a559 (12:6559)
- db TX_START,"It's a 1-match duel with 6-prizes!\n"
- db "Let it begin!",TX_END
+ text "It's a 1-match duel with 6-prizes!"
+ line "Let it begin!"
+ done
Text05ae: ; 4a58b (12:658b)
- db TX_START,"Now do you know who the better \n"
- db "player is!?!\n"
- db "The Legendary Pok`mon Cards\n"
- db "belong to me!\n"
- db "If you still won't give up,\n"
- db "I'll take you on again...\n"
- db "But first, you'll have to defeat\n"
- db "all 4 of the Grand Masters again!",TX_END
+ text "Now do you know who the better "
+ line "player is!?!"
+ line "The Legendary Pok`mon Cards"
+ line "belong to me!"
+ line "If you still won't give up,"
+ line "I'll take you on again..."
+ line "But first, you'll have to defeat"
+ line "all 4 of the Grand Masters again!"
+ done
Text05af: ; 4a65c (12:665c)
- db TX_START,"No!!! How...? How could I lose!?!",TX_END
+ text "No!!! How...? How could I lose!?!"
+ done
Text05b0: ; 4a67f (12:667f)
- db TX_START,"I'm sorry, but the Legendary Pok`mon\n"
- db "Cards have chosen ",TX_RAM1,".",TX_END
+ text "I'm sorry, but the Legendary Pok`mon"
+ line "Cards have chosen ",TX_RAM1,"."
+ done
Text05b1: ; 4a6ba (12:66ba)
- db TX_START,"The Legendary Pok`mon Cards\n"
- db "vanished from Ronald's Deck!",TX_END
+ text "The Legendary Pok`mon Cards"
+ line "vanished from Ronald's Deck!"
+ done
Text05b2: ; 4a6f4 (12:66f4)
- db TX_START,"No! My...My Legendary \n"
- db "Pok`mon Cards!\n"
- db "No...!\n"
- db "Noooooo!!!",TX_END
+ text "No! My...My Legendary "
+ line "Pok`mon Cards!"
+ line "No...!"
+ line "Noooooo!!!"
+ done
Text05b3: ; 4a72d (12:672d)
- db TX_START,"Congratulations, ",TX_RAM1,"!\n"
- db "You are a Card Master\n"
- db "worthy of inheriting\n"
- db "the Legendary Pok`mon Cards!\n"
- db "The Legendary Pok`mon Cards\n"
- db "recognize you as a true Master!",TX_END
+ text "Congratulations, ",TX_RAM1,"!"
+ line "You are a Card Master"
+ line "worthy of inheriting"
+ line "the Legendary Pok`mon Cards!"
+ line "The Legendary Pok`mon Cards"
+ line "recognize you as a true Master!"
+ done
Text05b4: ; 4a7c6 (12:67c6)
- db TX_START,"Now go through to the Hall of Honor\n"
- db "to receive the Legendary Cards!",TX_END
+ text "Now go through to the Hall of Honor"
+ line "to receive the Legendary Cards!"
+ done
Text05b5: ; 4a80b (12:680b)
- db TX_START,"The Legendary Auto Deck Machine \n"
- db "has been turned on!",TX_END
+ text "The Legendary Auto Deck Machine "
+ line "has been turned on!"
+ done
Text05b6: ; 4a841 (12:6841)
- db TX_START,"Would you like to build a Deck?",TX_END
+ text "Would you like to build a Deck?"
+ done
Text05b7: ; 4a862 (12:6862)
- db TX_START,"The Legendary Auto Deck Machine\n"
- db "has been turned off!",TX_END
+ text "The Legendary Auto Deck Machine"
+ line "has been turned off!"
+ done
Text05b8: ; 4a898 (12:6898)
- db TX_START,"The 4 Legendary Pok`mon Cards\n"
- db "float, glowing in the air!",TX_END
+ text "The 4 Legendary Pok`mon Cards"
+ line "float, glowing in the air!"
+ done
Text05b9: ; 4a8d2 (12:68d2)
- db TX_START,"The Legendary Pok`mon Cards\n"
- db "speak to you...\n"
- db " \"You who have inherited us...\n"
- db " Great Card Master! \n"
- db " Our Master must not forget:\n"
- db " Inheriting us does not make you\n"
- db " a Pok`mon Card Master!\n"
- db " A true Pok`mon Card Master is\n"
- db " one who has the skill to use\n"
- db " the abilities of the different\n"
- db " cards and the courage to duel\n"
- db " powerful opponents. And most\n"
- db " of all, the ability to love the\n"
- db " Pok`mon Trading Card Game\n"
- db " no matter what - win or lose!\n"
- db " A new journey has just begun...\"",TX_END
+ text "The Legendary Pok`mon Cards"
+ line "speak to you..."
+ line " \"You who have inherited us..."
+ line " Great Card Master! "
+ line " Our Master must not forget:"
+ line " Inheriting us does not make you"
+ line " a Pok`mon Card Master!"
+ line " A true Pok`mon Card Master is"
+ line " one who has the skill to use"
+ line " the abilities of the different"
+ line " cards and the courage to duel"
+ line " powerful opponents. And most"
+ line " of all, the ability to love the"
+ line " Pok`mon Trading Card Game"
+ line " no matter what - win or lose!"
+ line " A new journey has just begun...\""
+ done
Text05ba: ; 4aaad (12:6aad)
- db TX_START,"One of the Legendary Pok`mon Cards\n"
- db "floats, glowing in the air!",TX_END
+ text "One of the Legendary Pok`mon Cards"
+ line "floats, glowing in the air!"
+ done
Text05bb: ; 4aaed (12:6aed)
- db TX_START,"A Legendary Pok`mon Card\n"
- db "floats, glowing in the air!",TX_END
+ text "A Legendary Pok`mon Card"
+ line "floats, glowing in the air!"
+ done
Text05bc: ; 4ab23 (12:6b23)
- db TX_START,"The Legendary Pok`mon Cards\n"
- db "speak to you...\n"
- db " \"You who have inherited us...\n"
- db " Great Card Master!\n"
- db " There are no cards left for us\n"
- db " to give you, but do not forget:\n"
- db " Inheriting us does not make you\n"
- db " a Pok`mon Card Master!\n"
- db " A true Pok`mon Card Master\n"
- db " is one who has the skill to use\n"
- db " the abilities of the different\n"
- db " cards and the courage to duel\n"
- db " powerful opponents. And above\n"
- db " all, the ability to love the\n"
- db " Pok`mon Trading Card Game no\n"
- db " matter what - win or lose!\n"
- db " A new journey has just begun...\"",TX_END
+ text "The Legendary Pok`mon Cards"
+ line "speak to you..."
+ line " \"You who have inherited us..."
+ line " Great Card Master!"
+ line " There are no cards left for us"
+ line " to give you, but do not forget:"
+ line " Inheriting us does not make you"
+ line " a Pok`mon Card Master!"
+ line " A true Pok`mon Card Master"
+ line " is one who has the skill to use"
+ line " the abilities of the different"
+ line " cards and the courage to duel"
+ line " powerful opponents. And above"
+ line " all, the ability to love the"
+ line " Pok`mon Trading Card Game no"
+ line " matter what - win or lose!"
+ line " A new journey has just begun...\""
+ done
Text05bd: ; 4ad20 (12:6d20)
- db TX_START,"It's the Challenge Machine,\n"
- db "created by Dr. Mason!",TX_END
+ text "It's the Challenge Machine,"
+ line "created by Dr. Mason!"
+ done
Text05be: ; 4ad53 (12:6d53)
- db TX_START,"The 8 Club Masters each own a\n"
- db "Master Medal.\n"
- db "The secret of each Club's deck is\n"
- db "encrypted in its Master Medal.\n"
- db "Once you get a Master Medal, go\n"
- db "to the computer room in back.\n"
- db "You can place the Medals in the\n"
- db "Auto Deck Machines to create\n"
- db "different Decks!",TX_END
+ text "The 8 Club Masters each own a"
+ line "Master Medal."
+ line "The secret of each Club's deck is"
+ line "encrypted in its Master Medal."
+ line "Once you get a Master Medal, go"
+ line "to the computer room in back."
+ line "You can place the Medals in the"
+ line "Auto Deck Machines to create"
+ line "different Decks!"
+ done
Text05bf: ; 4ae4d (12:6e4d)
- db TX_START,"You finally inherited the\n"
- db "Legendary Pok`mon Cards!\n"
- db "Did you see the Legendary Auto\n"
- db "Deck Machine?\n"
- db "It is rumored that it's in the \n"
- db "Hall of Honor at Pok`mon Dome.\n"
- db "It supposedly holds the secret \n"
- db "to a very powerful deck!",TX_END
+ text "You finally inherited the"
+ line "Legendary Pok`mon Cards!"
+ line "Did you see the Legendary Auto"
+ line "Deck Machine?"
+ line "It is rumored that it's in the "
+ line "Hall of Honor at Pok`mon Dome."
+ line "It supposedly holds the secret "
+ line "to a very powerful deck!"
+ done
Text05c0: ; 4af26 (12:6f26)
- db TX_START,"Excuse me, but you don't seem \n"
- db "to have many Energy cards.\n"
- db "Building a deck must be difficult \n"
- db "with so few Energy cards.\n"
- db "Here, take these!",TX_END
+ text "Excuse me, but you don't seem "
+ line "to have many Energy cards."
+ line "Building a deck must be difficult "
+ line "with so few Energy cards."
+ line "Here, take these!"
+ done
Text05c1: ; 4afb0 (12:6fb0)
- db TX_START,TX_RAM1," received some \n"
- db "Energy cards!",TX_END
+ text TX_RAM1," received some "
+ line "Energy cards!"
+ done
Text05c2: ; 4afd0 (12:6fd0)
- db TX_START,"Goodbye!\n"
- db "Take care!",TX_END
+ text "Goodbye!"
+ line "Take care!"
+ done
Text05c3: ; 4afe5 (12:6fe5)
- db TX_START,"Are you also hoping to inherit\n"
- db "the Legendary Pok`mon Cards?\n"
- db "If you want the Legendary Cards,\n"
- db "you must defeat the Grand Masters.\n"
- db "To duel the Grand Masters, you\n"
- db "must first get the Master Medals.\n"
- db "The 8 Masters of the Card Clubs\n"
- db "each have a Master Medal. Go to\n"
- db "Pok`mon Dome if you want to learn\n"
- db "more about the Legendary Cards.",TX_END
+ text "Are you also hoping to inherit"
+ line "the Legendary Pok`mon Cards?"
+ line "If you want the Legendary Cards,"
+ line "you must defeat the Grand Masters."
+ line "To duel the Grand Masters, you"
+ line "must first get the Master Medals."
+ line "The 8 Masters of the Card Clubs"
+ line "each have a Master Medal. Go to"
+ line "Pok`mon Dome if you want to learn"
+ line "more about the Legendary Cards."
+ done
Text05c4: ; 4b129 (12:7129)
- db TX_START,"You finally inherited the\n"
- db "Legendary Pok`mon Cards!\n"
- db "Amazing!\n"
- db "Congratulations, ",TX_RAM1,"!!!",TX_END
+ text "You finally inherited the"
+ line "Legendary Pok`mon Cards!"
+ line "Amazing!"
+ line "Congratulations, ",TX_RAM1,"!!!"
+ done
Text05c5: ; 4b17c (12:717c)
- db TX_START,"When you defeat a Club Member,\n"
- db "you'll receive a Booster Pack.\n"
- db "Each Booster Pack has 10 cards.\n"
- db "The cards differ depending on\n"
- db "the Booster Pack you receive. \n"
- db "The type of Booster Pack differs\n"
- db "depending on who you duel, \n"
- db "so choose your opponents well.",TX_END
+ text "When you defeat a Club Member,"
+ line "you'll receive a Booster Pack."
+ line "Each Booster Pack has 10 cards."
+ line "The cards differ depending on"
+ line "the Booster Pack you receive. "
+ line "The type of Booster Pack differs"
+ line "depending on who you duel, "
+ line "so choose your opponents well."
+ done
Text05c6: ; 4b274 (12:7274)
- db TX_START,"Congratulations on inheriting \n"
- db "the Legendary Pok`mon Cards,\n"
- db TX_START,TX_RAM1,"! Now you should try\n"
- db "dueling different people using the\n"
- db "cards you inherited. I'm sure \n"
- db "you'll have a good time!",TX_END
+ text "Congratulations on inheriting "
+ line "the Legendary Pok`mon Cards,"
+ line ""
+ text TX_RAM1,"! Now you should try"
+ line "dueling different people using the"
+ line "cards you inherited. I'm sure "
+ line "you'll have a good time!"
+ done
Text05c7: ; 4b323 (12:7323)
- db TX_START,"I'm sure you already know, but there\n"
- db "are 8 Clubs: the Fighting, Water,\n"
- db "Lightning, Grass, Psychic, Fire,\n"
- db "Rock and Science Clubs!\n"
- db "The different Clubs use cards that\n"
- db "are specific to that Club.",TX_END
+ text "I'm sure you already know, but there"
+ line "are 8 Clubs: the Fighting, Water,"
+ line "Lightning, Grass, Psychic, Fire,"
+ line "Rock and Science Clubs!"
+ line "The different Clubs use cards that"
+ line "are specific to that Club."
+ done
Text05c8: ; 4b3e2 (12:73e2)
- db TX_START,"Amazing! You beat the 8 Club \n"
- db "Masters!\n"
- db "And you even defeated the\n"
- db "4 Grand Masters! Amazing!",TX_END
+ text "Amazing! You beat the 8 Club "
+ line "Masters!"
+ line "And you even defeated the"
+ line "4 Grand Masters! Amazing!"
+ done
Text05c9: ; 4b43e (12:743e)
- db TX_START,"To save your game, press START\n"
- db "and choose Diary from the Menu.\n"
- db "You can do all sorts of stuff with\n"
- db "that PC over there.\n"
- db "You can read e-mail from \n"
- db "Dr. Mason on that PC, too!",TX_END
+ text "To save your game, press START"
+ line "and choose Diary from the Menu."
+ line "You can do all sorts of stuff with"
+ line "that PC over there."
+ line "You can read e-mail from "
+ line "Dr. Mason on that PC, too!"
+ done
Text05ca: ; 4b4ea (12:74ea)
- db TX_START,"This is the Challenge Machine\n"
- db "created by Dr. Mason!\n"
- db "The Challenge Machine is a \n"
- db "Pok`mon Card Dueling Machine. \n"
- db "The rules of the game are simple: \n"
- db "choose 1 deck with which you must\n"
- db "duel 5 computer opponents!\n"
- db "If you can defeat the 5 \n"
- db "opponents, you win! You can also \n"
- db "play to extend your winning \n"
- db "streak! Build a deck and \n"
- db "give it a try, ",TX_RAM1,"!",TX_END
+ text "This is the Challenge Machine"
+ line "created by Dr. Mason!"
+ line "The Challenge Machine is a "
+ line "Pok`mon Card Dueling Machine. "
+ line "The rules of the game are simple: "
+ line "choose 1 deck with which you must"
+ line "duel 5 computer opponents!"
+ line "If you can defeat the 5 "
+ line "opponents, you win! You can also "
+ line "play to extend your winning "
+ line "streak! Build a deck and "
+ line "give it a try, ",TX_RAM1,"!"
+ done
Text05cb: ; 4b63e (12:763e)
- db TX_START,"OK, let's start using the practice\n"
- db "Deck. Listen and follow Dr. Mason's\n"
- db "instructions.",TX_END
+ text "OK, let's start using the practice"
+ line "Deck. Listen and follow Dr. Mason's"
+ line "instructions."
+ done
Text05cc: ; 4b694 (12:7694)
- db TX_START,"Practice with Sam?",TX_END
+ text "Practice with Sam?"
+ done
Text05cd: ; 4b6a8 (12:76a8)
- db TX_START,"You should practice again if there\n"
- db "is anything you don't understand.",TX_END
+ text "You should practice again if there"
+ line "is anything you don't understand."
+ done
Text05ce: ; 4b6ee (12:76ee)
- db TX_START,"OK, a 2-Prize duel using\n"
- db "the practice deck!",TX_END
+ text "OK, a 2-Prize duel using"
+ line "the practice deck!"
+ done
Text05cf: ; 4b71b (12:771b)
- db TX_START,"Would you like to duel Sam?",TX_END
+ text "Would you like to duel Sam?"
+ done
Text05d0: ; 4b738 (12:7738)
- db TX_START,"Come see me any time.\n"
- db "The basics are very important!",TX_END
+ text "Come see me any time."
+ line "The basics are very important!"
+ done
Text05d1: ; 4b76e (12:776e)
- db TX_START,"You're getting the hang of it!",TX_END
+ text "You're getting the hang of it!"
+ done
Text05d2: ; 4b78e (12:778e)
- db TX_START,"Keep this up, and you should be able\n"
- db "to win some duels!",TX_END
+ text "Keep this up, and you should be able"
+ line "to win some duels!"
+ done
Text05d3: ; 4b7c7 (12:77c7)
- db TX_START,"You need to practice more.\n"
- db "If you think things through,\n"
- db "you should be able to win.\n"
- db "Why don't you practice \n"
- db "a little more?",TX_END
+ text "You need to practice more."
+ line "If you think things through,"
+ line "you should be able to win."
+ line "Why don't you practice "
+ line "a little more?"
+ done
Text05d4: ; 4b842 (12:7842)
- db TX_START,"So, have you learned how to \n"
- db "play the game?\n"
- db "I hope you enjoy playing the\n"
- db "Pok`mon Trading Card Game!",TX_END
+ text "So, have you learned how to "
+ line "play the game?"
+ line "I hope you enjoy playing the"
+ line "Pok`mon Trading Card Game!"
+ done
Text05d5: ; 4b8a7 (12:78a7)
- db TX_START,"What do you want to \n"
- db "ask about?",TX_END
+ text "What do you want to "
+ line "ask about?"
+ done
Text05d6: ; 4b8c8 (12:78c8)
- db TX_START,"In order to do anything, Pok`mon \n"
- db "must have Energy cards. \n"
- db "If no Energy cards are attached,\n"
- db "the Pok`mon will not be able to \n"
- db "attack or retreat. There are 7 \n"
- db "types of Energy cards: Grass, \n"
- db "Fire, Water, Lightning, Psychic, \n"
- db "Fighting and Colorless.\n"
- db "The type of Energy required \n"
- db "depends on the Pok`mon.\n"
- db "Be sure to learn which Pok`mon \n"
- db "require which type of Energy!",TX_END
+ text "In order to do anything, Pok`mon "
+ line "must have Energy cards. "
+ line "If no Energy cards are attached,"
+ line "the Pok`mon will not be able to "
+ line "attack or retreat. There are 7 "
+ line "types of Energy cards: Grass, "
+ line "Fire, Water, Lightning, Psychic, "
+ line "Fighting and Colorless."
+ line "The type of Energy required "
+ line "depends on the Pok`mon."
+ line "Be sure to learn which Pok`mon "
+ line "require which type of Energy!"
+ done
Text05d7: ; 4ba32 (12:7a32)
- db TX_START,"Pok`mon damage defending Pok`mon \n"
- db "by attacking. Pok`mon need Energy \n"
- db "cards in order to attack.\n"
- db "For example, the energy required \n"
- db "for Seaking's Waterfall is ",TX_WATER,TX_COLORLESS,".\n"
- db TX_WATER,TX_COLORLESS," stands for 1 Water Energy \n"
- db "card and another Energy card of \n"
- db "any type. The energy required \n"
- db "differs according to the attack.",TX_END
+ text "Pok`mon damage defending Pok`mon "
+ line "by attacking. Pok`mon need Energy "
+ line "cards in order to attack."
+ line "For example, the energy required "
+ line "for Seaking's Waterfall is ",TX_WATER,TX_COLORLESS,"."
+ line TX_WATER,TX_COLORLESS," stands for 1 Water Energy "
+ line "card and another Energy card of "
+ line "any type. The energy required "
+ line "differs according to the attack."
+ done
Text05d8: ; 4bb56 (12:7b56)
- db TX_START,"To switch your Active Pok`mon\n"
- db "with a Bench Pok`mon, choose \n"
- db "the Retreat command. If the \n"
- db "Active Pok`mon is in danger,\n"
- db "move it back to your Bench.\n"
- db "Energy is required in order\n"
- db "to Retreat. The number of \n"
- db "Energy cards required varies,\n"
- db "depending on the Pok`mon.",TX_END
+ text "To switch your Active Pok`mon"
+ line "with a Bench Pok`mon, choose "
+ line "the Retreat command. If the "
+ line "Active Pok`mon is in danger,"
+ line "move it back to your Bench."
+ line "Energy is required in order"
+ line "to Retreat. The number of "
+ line "Energy cards required varies,"
+ line "depending on the Pok`mon."
+ done
Text05d9: ; 4bc58 (12:7c58)
- db TX_START,"There are 3 types of Pok`mon cards:\n"
- db "Basic Pok`mon, Stage 1 Pok`mon and \n"
- db "Stage 2 Pok`mon. Squirtle is a \n"
- db "Basic, Wartortle a Stage 1 and \n"
- db "Blastoise a Stage 2 Pok`mon.\n"
- db "Basic Pok`mon are the only cards\n"
- db "that can be put directly into play.\n"
- db "A Basic Pok`mon in play can be\n"
- db "evolved to a Stage 1 Pok`mon. A\n"
- db "Stage 1 Pok`mon in the Play Area \n"
- db "can then be evolved to a Stage 2 \n"
- db "Pok`mon. Therefore, Squirtle is \n"
- db "needed in order to play Wartortle,\n"
- db "and Wartortle is needed in\n"
- db "order to play Blastoise.",TX_END
+ text "There are 3 types of Pok`mon cards:"
+ line "Basic Pok`mon, Stage 1 Pok`mon and "
+ line "Stage 2 Pok`mon. Squirtle is a "
+ line "Basic, Wartortle a Stage 1 and "
+ line "Blastoise a Stage 2 Pok`mon."
+ line "Basic Pok`mon are the only cards"
+ line "that can be put directly into play."
+ line "A Basic Pok`mon in play can be"
+ line "evolved to a Stage 1 Pok`mon. A"
+ line "Stage 1 Pok`mon in the Play Area "
+ line "can then be evolved to a Stage 2 "
+ line "Pok`mon. Therefore, Squirtle is "
+ line "needed in order to play Wartortle,"
+ line "and Wartortle is needed in"
+ line "order to play Blastoise."
+ done
Text05da: ; 4be3e (12:7e3e)
- db TX_START,"Some Pok`mon have special\n"
- db "abilities called Pok`mon Powers.\n"
- db "Some Pok`mon Powers are used as\n"
- db "soon as the Pok`mon is played,\n"
- db "while others must be used by\n"
- db "choosing the PKMN Power command.\n"
- db "There are many different Pok`mon\n"
- db "Powers, so read each card's text\n"
- db "carefully.",TX_END
+ text "Some Pok`mon have special"
+ line "abilities called Pok`mon Powers."
+ line "Some Pok`mon Powers are used as"
+ line "soon as the Pok`mon is played,"
+ line "while others must be used by"
+ line "choosing the PKMN Power command."
+ line "There are many different Pok`mon"
+ line "Powers, so read each card's text"
+ line "carefully."
+ done
diff --git a/src/text/text7.asm b/src/text/text7.asm
index 1f0f3d1..76e2c47 100644
--- a/src/text/text7.asm
+++ b/src/text/text7.asm
@@ -1,959 +1,1134 @@
Text05db: ; 4c000 (13:4000)
- db TX_START,"Your Turn ends after you Attack.\n"
- db "If you do not have enough energy\n"
- db "to attack, or if your Active Pok`mon\n"
- db "cannot move due to Paralysis or\n"
- db "Sleep, you can end your turn by\n"
- db "choosing the DONE command.\n"
- db "This will cause your turn to end\n"
- db "and your opponent's turn to begin.\n"
- db "You should choose DONE if you are \n"
- db "unable to do anything.",TX_END
+ text "Your Turn ends after you Attack."
+ line "If you do not have enough energy"
+ line "to attack, or if your Active Pok`mon"
+ line "cannot move due to Paralysis or"
+ line "Sleep, you can end your turn by"
+ line "choosing the DONE command."
+ line "This will cause your turn to end"
+ line "and your opponent's turn to begin."
+ line "You should choose DONE if you are "
+ line "unable to do anything."
+ done
Text05dc: ; 4c141 (13:4141)
- db TX_START,"Generally, the win or loss of a \n"
- db "duel is decided by prizes.\n"
- db "Prizes are cards that you may\n"
- db "draw when you knock out one of\n"
- db "your opponent's Pok`mon.\n"
- db "You win if you Knock Out as many\n"
- db "of your opponent's Pok`mon as there\n"
- db "are Prizes to be drawn. You \n"
- db "will lose the duel if you have\n"
- db "no cards in your deck at the start \n"
- db "of your turn or if there are \n"
- db "no Pok`mon in your Play Area,\n"
- db "so be careful!",TX_END
+ text "Generally, the win or loss of a "
+ line "duel is decided by prizes."
+ line "Prizes are cards that you may"
+ line "draw when you knock out one of"
+ line "your opponent's Pok`mon."
+ line "You win if you Knock Out as many"
+ line "of your opponent's Pok`mon as there"
+ line "are Prizes to be drawn. You "
+ line "will lose the duel if you have"
+ line "no cards in your deck at the start "
+ line "of your turn or if there are "
+ line "no Pok`mon in your Play Area,"
+ line "so be careful!"
+ done
Text05dd: ; 4c2c4 (13:42c4)
- db TX_START,"Gathering information is important\n"
- db "if you wish to inherit the Legendary\n"
- db "Pok`mon Cards! Listen to what people\n"
- db "have to say and read the books on \n"
- db "the bookshelves. If I have any \n"
- db "information, I'll send you an\n"
- db "e-mail, so check the PC every\n"
- db "so often to read your mail!",TX_END
+ text "Gathering information is important"
+ line "if you wish to inherit the Legendary"
+ line "Pok`mon Cards! Listen to what people"
+ line "have to say and read the books on "
+ line "the bookshelves. If I have any "
+ line "information, I'll send you an"
+ line "e-mail, so check the PC every"
+ line "so often to read your mail!"
+ done
Text05de: ; 4c3cd (13:43cd)
- db TX_START,"First, learning how to use your \n"
- db "deck is very important. Duel \n"
- db "against many people to check your \n"
- db "Deck's performance. The Auto Deck \n"
- db "Machines are handy when you want \n"
- db "to rebuild your deck. If you \n"
- db "have the required cards, it \n"
- db "will automatically build a Deck \n"
- db "for you. Collect new cards to \n"
- db "build new decks!",TX_END
+ text "First, learning how to use your "
+ line "deck is very important. Duel "
+ line "against many people to check your "
+ line "Deck's performance. The Auto Deck "
+ line "Machines are handy when you want "
+ line "to rebuild your deck. If you "
+ line "have the required cards, it "
+ line "will automatically build a Deck "
+ line "for you. Collect new cards to "
+ line "build new decks!"
+ done
Text05df: ; 4c501 (13:4501)
- db TX_START,"Are you getting the hang of the\n"
- db "Pok`mon Trading Card Game?\n"
- db "How about building a deck yourself?\n"
- db "It's a great feeling to win with \n"
- db "a deck you built on your own.",TX_END
+ text "Are you getting the hang of the"
+ line "Pok`mon Trading Card Game?"
+ line "How about building a deck yourself?"
+ line "It's a great feeling to win with "
+ line "a deck you built on your own."
+ done
Text05e0: ; 4c5a1 (13:45a1)
- db TX_START,"So, did you build your own Deck?\n"
- db "The strength or weakness of your\n"
- db "deck depends only on how you play!\n"
- db "In other words, it all depends on\n"
- db "the skill of the player! You must \n"
- db "become a skilled Card Master!",TX_END
+ text "So, did you build your own Deck?"
+ line "The strength or weakness of your"
+ line "deck depends only on how you play!"
+ line "In other words, it all depends on"
+ line "the skill of the player! You must "
+ line "become a skilled Card Master!"
+ done
Text05e1: ; 4c66a (13:466a)
- db TX_START,"Congratulations, ",TX_RAM1,"!\n"
- db "I hear you have inherited the\n"
- db "Legendary Pok`mon Cards!\n"
- db "The strength of a Deck does\n"
- db "not depend on any single card,\n"
- db "But on how skillfully you are able\n"
- db "to use that card.\n"
- db "The power of the Legendary Pok`mon\n"
- db "Cards depends on you!\n"
- db "You must become a skilled\n"
- db "Card Master!",TX_END
+ text "Congratulations, ",TX_RAM1,"!"
+ line "I hear you have inherited the"
+ line "Legendary Pok`mon Cards!"
+ line "The strength of a Deck does"
+ line "not depend on any single card,"
+ line "But on how skillfully you are able"
+ line "to use that card."
+ line "The power of the Legendary Pok`mon"
+ line "Cards depends on you!"
+ line "You must become a skilled"
+ line "Card Master!"
+ done
Text05e2: ; 4c786 (13:4786)
- db TX_START,"That's right! Did you try the \n"
- db "Challenge Machine I built?\n"
- db "See how far you can get with \n"
- db "1 Deck! Computer opponent data \n"
- db "is based on opponents you have \n"
- db "already played against. I hope \n"
- db "you enjoy the product of my \n"
- db "scientific genius!",TX_END
+ text "That's right! Did you try the "
+ line "Challenge Machine I built?"
+ line "See how far you can get with "
+ line "1 Deck! Computer opponent data "
+ line "is based on opponents you have "
+ line "already played against. I hope "
+ line "you enjoy the product of my "
+ line "scientific genius!"
+ done
Text05e3: ; 4c86f (13:486f)
- db TX_START,"Oh! Why the rush, ",TX_RAM1,"?\n"
- db "What? \n"
- db "You want to learn how to play\n"
- db "the Pok`mon Trading Card Game?\n"
- db "So you, too, finally want to \n"
- db "start playing the card game. \n"
- db "Well, dueling is more fun than \n"
- db "just collecting cards!\n"
- db "First, you should try playing \n"
- db "with a Practice Deck. \n"
- db "Here, I'll give you this Deck. \n"
- db "And now you need an opponent...\n"
- db "Hey, Sam!\n"
- db "Play with him for a while!",TX_END
+ text "Oh! Why the rush, ",TX_RAM1,"?"
+ line "What? "
+ line "You want to learn how to play"
+ line "the Pok`mon Trading Card Game?"
+ line "So you, too, finally want to "
+ line "start playing the card game. "
+ line "Well, dueling is more fun than "
+ line "just collecting cards!"
+ line "First, you should try playing "
+ line "with a Practice Deck. "
+ line "Here, I'll give you this Deck. "
+ line "And now you need an opponent..."
+ line "Hey, Sam!"
+ line "Play with him for a while!"
+ done
Text05e4: ; 4c9d7 (13:49d7)
- db TX_START,"Yes, Dr. Mason.\n"
- db "Hello, ",TX_RAM1,".",TX_END
+ text "Yes, Dr. Mason."
+ line "Hello, ",TX_RAM1,"."
+ done
Text05e5: ; 4c9f2 (13:49f2)
- db TX_START,"OK!\n"
- db "Let's give it a try!",TX_END
+ text "OK!"
+ line "Let's give it a try!"
+ done
Text05e6: ; 4ca0c (13:4a0c)
- db TX_START,"Hey! ",TX_RAM1,"!\n"
- db "Hurry and come here!",TX_END
+ text "Hey! ",TX_RAM1,"!"
+ line "Hurry and come here!"
+ done
Text05e7: ; 4ca2a (13:4a2a)
- db TX_START,"First, ask Sam the basics\n"
- db "of the game.",TX_END
+ text "First, ask Sam the basics"
+ line "of the game."
+ done
Text05e8: ; 4ca52 (13:4a52)
- db TX_START,"OK, ",TX_RAM1,".\n"
- db "What do you want to ask about?",TX_END
+ text "OK, ",TX_RAM1,"."
+ line "What do you want to ask about?"
+ done
Text05e9: ; 4ca79 (13:4a79)
- db TX_START,"Is that all?",TX_END
+ text "Is that all?"
+ done
Text05ea: ; 4ca87 (13:4a87)
- db TX_START,"They say that actions speak louder\n"
- db "than words, so let's play a game.\n"
- db "Since this is your first time, \n"
- db "just try to learn the basic steps.\n"
- db "I'll be coaching you,\n"
- db "so follow my advice.\n"
- db "If you don't do as I say, \n"
- db "we won't be able to proceed.\n"
- db "It might be easier if you read the\n"
- db "Pok`mon Trading Card Game\n"
- db "Instruction Booklet while we play. \n"
- db "OK then, let's start your \n"
- db "practice game!",TX_END
+ text "They say that actions speak louder"
+ line "than words, so let's play a game."
+ line "Since this is your first time, "
+ line "just try to learn the basic steps."
+ line "I'll be coaching you,"
+ line "so follow my advice."
+ line "If you don't do as I say, "
+ line "we won't be able to proceed."
+ line "It might be easier if you read the"
+ line "Pok`mon Trading Card Game"
+ line "Instruction Booklet while we play. "
+ line "OK then, let's start your "
+ line "practice game!"
+ done
Text05eb: ; 4cbfe (13:4bfe)
- db TX_START,"Basically, this is how the Pok`mon \n"
- db "Trading Card Game is played:\n"
- db "It's a game in which you try to \n"
- db "knock out as many of your \n"
- db "opponent's Pok`mon as there are \n"
- db "prizes. That's the gist of it...",TX_END
+ text "Basically, this is how the Pok`mon "
+ line "Trading Card Game is played:"
+ line "It's a game in which you try to "
+ line "knock out as many of your "
+ line "opponent's Pok`mon as there are "
+ line "prizes. That's the gist of it..."
+ done
Text05ec: ; 4ccbe (13:4cbe)
- db TX_START,"Would you like to practice again?",TX_END
+ text "Would you like to practice again?"
+ done
Text05ed: ; 4cce1 (13:4ce1)
- db TX_START,"OK. Then let's begin another\n"
- db "practice game!",TX_END
+ text "OK. Then let's begin another"
+ line "practice game!"
+ done
Text05ee: ; 4cd0e (13:4d0e)
- db TX_START,"OK, but if there's anything \n"
- db "you don't understand, it's\n"
- db "a good idea to practice again.",TX_END
+ text "OK, but if there's anything "
+ line "you don't understand, it's"
+ line "a good idea to practice again."
+ done
Text05ef: ; 4cd66 (13:4d66)
- db TX_START,"If you don't understand something,\n"
- db "talk to Sam. It might be helpful \n"
- db "to Practice again, too. This time \n"
- db "was just practice, so I had you \n"
- db "follow everything I said, but \n"
- db "there are other styles of play, \n"
- db "so try them out by choosing \n"
- db "Normal Duel.",TX_END
+ text "If you don't understand something,"
+ line "talk to Sam. It might be helpful "
+ line "to Practice again, too. This time "
+ line "was just practice, so I had you "
+ line "follow everything I said, but "
+ line "there are other styles of play, "
+ line "so try them out by choosing "
+ line "Normal Duel."
+ done
Text05f0: ; 4ce5a (13:4e5a)
- db TX_START,"Now then, let's build your deck.\n"
- db "Did you bring your cards?",TX_END
+ text "Now then, let's build your deck."
+ line "Did you bring your cards?"
+ done
Text05f1: ; 4ce96 (13:4e96)
- db TX_START,TX_RAM1," handed his cards to \n"
- db "Dr. Mason.",TX_END
+ text TX_RAM1," handed his cards to "
+ line "Dr. Mason."
+ done
Text05f2: ; 4ceb9 (13:4eb9)
- db TX_START,"Hmm...let me add some of my own \n"
- db "cards to yours!\n"
- db "Now, ",TX_RAM1,", what kind\n"
- db "of Deck do you want?",TX_END
+ text "Hmm...let me add some of my own "
+ line "cards to yours!"
+ line "Now, ",TX_RAM1,", what kind"
+ line "of Deck do you want?"
+ done
Text05f3: ; 4cf12 (13:4f12)
- db TX_START,"A ",TX_RAM2,"?",TX_END
+ text "A ",TX_RAM2,"?"
+ done
Text05f4: ; 4cf18 (13:4f18)
- db TX_START,"OK, a ",TX_RAM2,"!\n"
- db "Here are the remaining cards!",TX_END
+ text "OK, a ",TX_RAM2,"!"
+ line "Here are the remaining cards!"
+ done
Text05f5: ; 4cf40 (13:4f40)
- db TX_START,TX_RAM1," received\n"
- db "a ",TX_RAM2,"!\n"
- db TX_START,TX_RAM1," received\n"
- db "30 cards!",TX_END
+ text TX_RAM1," received"
+ line "a ",TX_RAM2,"!"
+ line ""
+ text TX_RAM1," received"
+ line "30 cards!"
+ done
Text05f6: ; 4cf67 (13:4f67)
- db TX_START,"You should duel with many different \n"
- db "people. Why don't you go to one of \n"
- db "the Card Clubs. There are many \n"
- db "people playing at the Clubs.\n"
- db "Collect new cards and try \n"
- db "building a new Deck!",TX_END
+ text "You should duel with many different "
+ line "people. Why don't you go to one of "
+ line "the Card Clubs. There are many "
+ line "people playing at the Clubs."
+ line "Collect new cards and try "
+ line "building a new Deck!"
+ done
Text05f7: ; 4d01e (13:501e)
- db TX_START,"Isn't the Auto Deck Machine great?\n"
- db "As long as you have the necessary\n"
- db "cards, this machine will\n"
- db "automatically build a Deck for you!",TX_END
+ text "Isn't the Auto Deck Machine great?"
+ line "As long as you have the necessary"
+ line "cards, this machine will"
+ line "automatically build a Deck for you!"
+ done
Text05f8: ; 4d0a1 (13:50a1)
- db TX_START,"Congratulations on inheriting\n"
- db "the Legendary Pok`mon Cards!\n"
- db "But that's not all there is\n"
- db "to this game!\n"
- db "Were you able to build all the Decks\n"
- db "here in this Auto Deck Machine?\n"
- db "There are as many duels as there\n"
- db "are decks to duel with! Keep \n"
- db "dueling with Pok`mon Trading Cards!",TX_END
+ text "Congratulations on inheriting"
+ line "the Legendary Pok`mon Cards!"
+ line "But that's not all there is"
+ line "to this game!"
+ line "Were you able to build all the Decks"
+ line "here in this Auto Deck Machine?"
+ line "There are as many duels as there"
+ line "are decks to duel with! Keep "
+ line "dueling with Pok`mon Trading Cards!"
+ done
Text05f9: ; 4d1af (13:51af)
- db TX_START,"This machine is the Deck\n"
- db "Save Machine. You can save the\n"
- db "configurations of your modified\n"
- db "decks in this machine. Once you\n"
- db "save a deck, this machine can\n"
- db "rebuild it for you any time,\n"
- db "as long as you have the necessary\n"
- db "cards. When you build a great\n"
- db "deck, you should save it here.",TX_END
+ text "This machine is the Deck"
+ line "Save Machine. You can save the"
+ line "configurations of your modified"
+ line "decks in this machine. Once you"
+ line "save a deck, this machine can"
+ line "rebuild it for you any time,"
+ line "as long as you have the necessary"
+ line "cards. When you build a great"
+ line "deck, you should save it here."
+ done
Text05fa: ; 4d2c2 (13:52c2)
- db TX_START,"Congratulations on inheriting\n"
- db "the Legendary Pok`mon Cards!!!\n"
- db "Please save your deck in this\n"
- db "Deck Save Machine - \n"
- db "the Deck with the Legendary \n"
- db "Pok`mon Cards!!!",TX_END
+ text "Congratulations on inheriting"
+ line "the Legendary Pok`mon Cards!!!"
+ line "Please save your deck in this"
+ line "Deck Save Machine - "
+ line "the Deck with the Legendary "
+ line "Pok`mon Cards!!!"
+ done
Text05fb: ; 4d361 (13:5361)
- db TX_START,"You need a Medal to activate a\n"
- db "deactivated Auto Deck Machine -\n"
- db "the Master Medals owned by the\n"
- db "Club Masters! Place the Medals \n"
- db "here after you win them.\n"
- db "Then you'll be able to build\n"
- db "new decks!!!",TX_END
+ text "You need a Medal to activate a"
+ line "deactivated Auto Deck Machine -"
+ line "the Master Medals owned by the"
+ line "Club Masters! Place the Medals "
+ line "here after you win them."
+ line "Then you'll be able to build"
+ line "new decks!!!"
+ done
Text05fc: ; 4d423 (13:5423)
- db TX_START,TX_RAM1,", thanks to you, all\n"
- db "the Auto Deck Machines have\n"
- db "been activated!",TX_END
+ text TX_RAM1,", thanks to you, all"
+ line "the Auto Deck Machines have"
+ line "been activated!"
+ done
Text05fd: ; 4d466 (13:5466)
- db TX_START,"Ho-ho! Won't you duel me to\n"
- db "test your deck?\n"
- db "If you win, I'll give you\n"
- db "a Booster Pack - but it only \n"
- db "contains Energy cards.",TX_END
+ text "Ho-ho! Won't you duel me to"
+ line "test your deck?"
+ line "If you win, I'll give you"
+ line "a Booster Pack - but it only "
+ line "contains Energy cards."
+ done
Text05fe: ; 4d4e2 (13:54e2)
- db TX_START,"Would you like to duel Aaron?",TX_END
+ text "Would you like to duel Aaron?"
+ done
Text05ff: ; 4d501 (13:5501)
- db TX_START,"It's important to know how your\n"
- db "Deck performs.",TX_END
+ text "It's important to know how your"
+ line "Deck performs."
+ done
Text0600: ; 4d531 (13:5531)
- db TX_START,"Ho-ho! Please choose the deck\n"
- db "you wish to duel against.",TX_END
+ text "Ho-ho! Please choose the deck"
+ line "you wish to duel against."
+ done
Text0601: ; 4d56a (13:556a)
- db TX_START,"Is it ",TX_RAM2,"?",TX_END
+ text "Is it ",TX_RAM2,"?"
+ done
Text0602: ; 4d574 (13:5574)
- db TX_START,"Ho-ho! OK, let's start a \n"
- db "4-prize match!",TX_END
+ text "Ho-ho! OK, let's start a "
+ line "4-prize match!"
+ done
Text0603: ; 4d59e (13:559e)
- db TX_START,"Ho-ho! You win!\n"
- db "Here you go, as promised!",TX_END
+ text "Ho-ho! You win!"
+ line "Here you go, as promised!"
+ done
Text0604: ; 4d5c9 (13:55c9)
- db TX_START,"Ho-ho! How about it? Did you \n"
- db "get a feel for your Deck?\n"
- db "Ho-ho! Come again. I'll be glad \n"
- db "to Duel you any time.",TX_END
+ text "Ho-ho! How about it? Did you "
+ line "get a feel for your Deck?"
+ line "Ho-ho! Come again. I'll be glad "
+ line "to Duel you any time."
+ done
Text0605: ; 4d639 (13:5639)
- db TX_START,"It's an Auto Deck Machine.",TX_END
+ text "It's an Auto Deck Machine."
+ done
Text0606: ; 4d655 (13:5655)
- db TX_START,"Would you like to build a Deck?",TX_END
+ text "Would you like to build a Deck?"
+ done
Text0607: ; 4d676 (13:5676)
- db TX_START,"It's a ",TX_RAM2," Medal\n"
- db "Auto Deck Machine.",TX_END
+ text "It's a ",TX_RAM2," Medal"
+ line "Auto Deck Machine."
+ done
Text0608: ; 4d699 (13:5699)
- db TX_START,"It isn't working since the \n"
- db TX_RAM2," Medal is not inserted.",TX_END
+ text "It isn't working since the "
+ line TX_RAM2," Medal is not inserted."
+ done
Text0609: ; 4d6cf (13:56cf)
- db TX_START,"Insert the ",TX_RAM2," Medal?",TX_END
+ text "Insert the ",TX_RAM2," Medal?"
+ done
Text060a: ; 4d6e4 (13:56e4)
- db TX_START,"The Auto Deck Machine\n"
- db "has been activated!",TX_END
+ text "The Auto Deck Machine"
+ line "has been activated!"
+ done
Text060b: ; 4d70f (13:570f)
- db TX_START,"Would you like to build a Deck?",TX_END
+ text "Would you like to build a Deck?"
+ done
Text060c: ; 4d730 (13:5730)
- db TX_START,"It's a Deck Save Machine.",TX_END
+ text "It's a Deck Save Machine."
+ done
Text060d: ; 4d74b (13:574b)
- db TX_START,"Use the Deck Save Machine?",TX_END
+ text "Use the Deck Save Machine?"
+ done
Text060e: ; 4d767 (13:5767)
- db TX_START,"Greetings!\n"
- db "Welcome to the Lightning Club!\n"
- db "At this club, we use decks made up\n"
- db "mostly of Lightning Pok`mon.\n"
- db "Would you like to get charged up\n"
- db "with us?",TX_END
+ text "Greetings!"
+ line "Welcome to the Lightning Club!"
+ line "At this club, we use decks made up"
+ line "mostly of Lightning Pok`mon."
+ line "Would you like to get charged up"
+ line "with us?"
+ done
Text060f: ; 4d7fc (13:57fc)
- db TX_START,"Hey! Kid!\n"
- db "I've got a ",TX_LVL,"20 Electabuzz,\n"
- db "but what I really want is\n"
- db "a ",TX_LVL,"35 Electabuzz!\n"
- db "Hey! Kid! Do you have a\n"
- db TX_START,TX_LVL,"35 Electabuzz?",TX_END
+ text "Hey! Kid!"
+ line "I've got a ",TX_LVL,"20 Electabuzz,"
+ line "but what I really want is"
+ line "a ",TX_LVL,"35 Electabuzz!"
+ line "Hey! Kid! Do you have a"
+ line ""
+ text TX_LVL,"35 Electabuzz?"
+ done
Text0610: ; 4d87a (13:587a)
- db TX_START,"Hey! Kid!\n"
- db "We meet again!\n"
- db "Do you have a ",TX_LVL,"35 Electabuzz?\n"
- db "Come on! Trade it for my\n"
- db TX_START,TX_LVL,"20 Electabuzz!",TX_END
+ text "Hey! Kid!"
+ line "We meet again!"
+ line "Do you have a ",TX_LVL,"35 Electabuzz?"
+ line "Come on! Trade it for my"
+ line ""
+ text TX_LVL,"20 Electabuzz!"
+ done
Text0611: ; 4d8de (13:58de)
- db TX_START,"Trade your ",TX_LVL,"35 Electabuzz?",TX_END
+ text "Trade your ",TX_LVL,"35 Electabuzz?"
+ done
Text0612: ; 4d8fb (13:58fb)
- db TX_START,"Whoa! Bummer!\n"
- db "What a drag!\n"
- db "Really uncool, kid!\n"
- db "See ya, kid!",TX_END
+ text "Whoa! Bummer!"
+ line "What a drag!"
+ line "Really uncool, kid!"
+ line "See ya, kid!"
+ done
Text0613: ; 4d938 (13:5938)
- db TX_START,"Hey, kid!\n"
- db "It's not cool to lie!\n"
- db "You don't own a ",TX_LVL,"35 Electabuzz!\n"
- db "You could get hurt lying to me, kid!",TX_END
+ text "Hey, kid!"
+ line "It's not cool to lie!"
+ line "You don't own a ",TX_LVL,"35 Electabuzz!"
+ line "You could get hurt lying to me, kid!"
+ done
Text0614: ; 4d99f (13:599f)
- db TX_START,"You're gonna trade me your\n"
- db TX_START,TX_LVL,"35 Electabuzz?\n"
- db "Way cool!...Hey! Wait, kid!\n"
- db "That card's in your Deck!\n"
- db "It isn't cool to take that card!\n"
- db "You take good care of that card!\n"
- db "That's what's best for that\n"
- db "Electabuzz!",TX_END
+ text "You're gonna trade me your"
+ line ""
+ text TX_LVL,"35 Electabuzz?"
+ line "Way cool!...Hey! Wait, kid!"
+ line "That card's in your Deck!"
+ line "It isn't cool to take that card!"
+ line "You take good care of that card!"
+ line "That's what's best for that"
+ line "Electabuzz!"
+ done
Text0615: ; 4da6d (13:5a6d)
- db TX_START,"You're gonna trade me your\n"
- db TX_START,TX_LVL,"35 Electabuzz? Way cool, kid!\n"
- db "OK, I'll trade you my\n"
- db TX_START,TX_LVL,"20 Electabuzz for it!",TX_END
+ text "You're gonna trade me your"
+ line ""
+ text TX_LVL,"35 Electabuzz? Way cool, kid!"
+ line "OK, I'll trade you my"
+ line ""
+ text TX_LVL,"20 Electabuzz for it!"
+ done
Text0616: ; 4dad9 (13:5ad9)
- db TX_START,"Whoa! Thanks!\n"
- db "You're too cool, kid!",TX_END
+ text "Whoa! Thanks!"
+ line "You're too cool, kid!"
+ done
Text0617: ; 4dafe (13:5afe)
- db TX_START,"Whoa! Cool, kid! Thanks for \n"
- db "that ",TX_LVL,"35 Electabuzz! \n"
- db "My ",TX_LVL,"20 Electabuzz is a cool card!\n"
- db "Charge it up with Electabuzz!",TX_END
+ text "Whoa! Cool, kid! Thanks for "
+ line "that ",TX_LVL,"35 Electabuzz! "
+ line "My ",TX_LVL,"20 Electabuzz is a cool card!"
+ line "Charge it up with Electabuzz!"
+ done
Text0618: ; 4db74 (13:5b74)
- db TX_START,"I wonder if the Legendary Cards\n"
- db "are pretty?\n"
- db "If they're sparkly, I'll be\n"
- db "really happy.",TX_END
+ text "I wonder if the Legendary Cards"
+ line "are pretty?"
+ line "If they're sparkly, I'll be"
+ line "really happy."
+ done
Text0619: ; 4dbcb (13:5bcb)
- db TX_START,"Hey! You charged up!?!\n"
- db "You playin' the Pok`mon \n"
- db "Trading Card Game!?!\n"
- db "Yeah! Gotta be a Grand Master!",TX_END
+ text "Hey! You charged up!?!"
+ line "You playin' the Pok`mon "
+ line "Trading Card Game!?!"
+ line "Yeah! Gotta be a Grand Master!"
+ done
Text061a: ; 4dc30 (13:5c30)
- db TX_START,"Hey! ",TX_RAM1,"!\n"
- db "You beat the Grand Masters?\n"
- db "Cool! Got all the Legendary \n"
- db "Pok`mon Cards? Yeah!\n"
- db "Gotta Catch 'Em All!(TM)",TX_END
+ text "Hey! ",TX_RAM1,"!"
+ line "You beat the Grand Masters?"
+ line "Cool! Got all the Legendary "
+ line "Pok`mon Cards? Yeah!"
+ line "Gotta Catch 'Em All!(TM)"
+ done
Text061b: ; 4dca0 (13:5ca0)
- db TX_START,"Isn't Pikachu totally cute?\n"
- db "My heart skips a beat whenever\n"
- db "I see those cute little eyes!\n"
- db "Hey, do you want to duel my \n"
- db "Pikachu Deck?",TX_END
+ text "Isn't Pikachu totally cute?"
+ line "My heart skips a beat whenever"
+ line "I see those cute little eyes!"
+ line "Hey, do you want to duel my "
+ line "Pikachu Deck?"
+ done
Text061c: ; 4dd25 (13:5d25)
- db TX_START,"Would you like to duel Jennifer?",TX_END
+ text "Would you like to duel Jennifer?"
+ done
Text061d: ; 4dd47 (13:5d47)
- db TX_START,"Awww! Doesn't anyone want to play\n"
- db "with my Pikachu Deck...?",TX_END
+ text "Awww! Doesn't anyone want to play"
+ line "with my Pikachu Deck...?"
+ done
Text061e: ; 4dd83 (13:5d83)
- db TX_START,"OK then! Let's play with 4 Prizes!",TX_END
+ text "OK then! Let's play with 4 Prizes!"
+ done
Text061f: ; 4dda7 (13:5da7)
- db TX_START,"Awww! My Pikachu lost!",TX_END
+ text "Awww! My Pikachu lost!"
+ done
Text0620: ; 4ddbf (13:5dbf)
- db TX_START,"You have to take care of your\n"
- db "Pok`mon cards!",TX_END
+ text "You have to take care of your"
+ line "Pok`mon cards!"
+ done
Text0621: ; 4dded (13:5ded)
- db TX_START,"My Pikachu's not only cute\n"
- db "but strong, too!",TX_END
+ text "My Pikachu's not only cute"
+ line "but strong, too!"
+ done
Text0622: ; 4de1a (13:5e1a)
- db TX_START,"Lightning Pok`mon can attack\n"
- db "the opponent's Bench!\n"
- db "Lightning Pok`mon are the toughest\n"
- db "Pok`mon! How about it?\n"
- db "You want to duel me?",TX_END
+ text "Lightning Pok`mon can attack"
+ line "the opponent's Bench!"
+ line "Lightning Pok`mon are the toughest"
+ line "Pok`mon! How about it?"
+ line "You want to duel me?"
+ done
Text0623: ; 4de9d (13:5e9d)
- db TX_START,"Would you like to duel Nicholas?",TX_END
+ text "Would you like to duel Nicholas?"
+ done
Text0624: ; 4debf (13:5ebf)
- db TX_START,"Tch! I was going to shock you\n"
- db "with my Lightning Deck!",TX_END
+ text "Tch! I was going to shock you"
+ line "with my Lightning Deck!"
+ done
Text0625: ; 4def6 (13:5ef6)
- db TX_START,"OK! Let's start!\n"
- db "1 Match with 4 Prizes!",TX_END
+ text "OK! Let's start!"
+ line "1 Match with 4 Prizes!"
+ done
Text0626: ; 4df1f (13:5f1f)
- db TX_START,"My Lightning Deck lost...\n"
- db "I can't believe it...",TX_END
+ text "My Lightning Deck lost..."
+ line "I can't believe it..."
+ done
Text0627: ; 4df50 (13:5f50)
- db TX_START,"I won't lose next time!\n"
- db "I'm gonna zap you!",TX_END
+ text "I won't lose next time!"
+ line "I'm gonna zap you!"
+ done
Text0628: ; 4df7c (13:5f7c)
- db TX_START,"Did I shock you?\n"
- db "My Lightning Deck is pretty strong!\n"
- db "If you want to be shocked again,\n"
- db "come around...I'll be waiting!",TX_END
+ text "Did I shock you?"
+ line "My Lightning Deck is pretty strong!"
+ line "If you want to be shocked again,"
+ line "come around...I'll be waiting!"
+ done
Text0629: ; 4dff2 (13:5ff2)
- db TX_START,"Isaac's working on the wiring\n"
- db "for this stage.\n"
- db "It looks cool with all these\n"
- db "lights, but it takes a lot of work \n"
- db "to keep it 'em lit!",TX_END
+ text "Isaac's working on the wiring"
+ line "for this stage."
+ line "It looks cool with all these"
+ line "lights, but it takes a lot of work "
+ line "to keep it 'em lit!"
+ done
Text062a: ; 4e076 (13:6076)
- db TX_START,"I wonder what Isaac's doing...?",TX_END
+ text "I wonder what Isaac's doing...?"
+ done
Text062b: ; 4e097 (13:6097)
- db TX_START,"What? a Pok`mon Trading Card duel?\n"
- db "I'll be glad to Duel any time!",TX_END
+ text "What? a Pok`mon Trading Card duel?"
+ line "I'll be glad to Duel any time!"
+ done
Text062c: ; 4e0da (13:60da)
- db TX_START,"Would you like to Duel Brandon?",TX_END
+ text "Would you like to Duel Brandon?"
+ done
Text062d: ; 4e0fb (13:60fb)
- db TX_START,"Oh, OK.\n"
- db "I'll Duel you any time.",TX_END
+ text "Oh, OK."
+ line "I'll Duel you any time."
+ done
Text062e: ; 4e11c (13:611c)
- db TX_START,"OK, 4 Prizes!\n"
- db "Ready? Let's do it!",TX_END
+ text "OK, 4 Prizes!"
+ line "Ready? Let's do it!"
+ done
Text062f: ; 4e13f (13:613f)
- db TX_START,"Shoot! I lost! Well, no sense \n"
- db "crying over spilled milk!",TX_END
+ text "Shoot! I lost! Well, no sense "
+ line "crying over spilled milk!"
+ done
Text0630: ; 4e179 (13:6179)
- db TX_START,"I'll duel you any time!\n"
- db "Come see me again!",TX_END
+ text "I'll duel you any time!"
+ line "Come see me again!"
+ done
Text0631: ; 4e1a5 (13:61a5)
- db TX_START,"Hey, don't take it so hard!\n"
- db "I'm just too good!\n"
- db "I'll Duel you any time!\n"
- db "Come see me again!",TX_END
+ text "Hey, don't take it so hard!"
+ line "I'm just too good!"
+ line "I'll Duel you any time!"
+ line "Come see me again!"
+ done
Text0632: ; 4e200 (13:6200)
- db TX_START,"I'm a little busy at the moment!\n"
- db "Duel someone else!",TX_END
+ text "I'm a little busy at the moment!"
+ line "Duel someone else!"
+ done
Text0633: ; 4e235 (13:6235)
- db TX_START,"Well, that ought to do it. It was \n"
- db "hard work, but here's our stage!\n"
- db "Got to keep it looking smart!\n"
- db "I'm the Lightning Club Master!\n"
- db "Sure! I'll Duel you!",TX_END
+ text "Well, that ought to do it. It was "
+ line "hard work, but here's our stage!"
+ line "Got to keep it looking smart!"
+ line "I'm the Lightning Club Master!"
+ line "Sure! I'll Duel you!"
+ done
Text0634: ; 4e2cc (13:62cc)
- db TX_START,"My Lightning Pok`mon Deck\n"
- db "is the greatest!\n"
- db "How about it?\n"
- db "You want to see how good it is?",TX_END
+ text "My Lightning Pok`mon Deck"
+ line "is the greatest!"
+ line "How about it?"
+ line "You want to see how good it is?"
+ done
Text0635: ; 4e326 (13:6326)
- db TX_START,"Would you like to duel Isaac?",TX_END
+ text "Would you like to duel Isaac?"
+ done
Text0636: ; 4e345 (13:6345)
- db TX_START,"I'm not busy any more,\n"
- db "so I'll take you on any time!",TX_END
+ text "I'm not busy any more,"
+ line "so I'll take you on any time!"
+ done
Text0637: ; 4e37b (13:637b)
- db TX_START,"The sparks will fly with\n"
- db "6 Prizes!\n"
- db "I'll show you what my Lightning\n"
- db "Pok`mon Deck can do!",TX_END
+ text "The sparks will fly with"
+ line "6 Prizes!"
+ line "I'll show you what my Lightning"
+ line "Pok`mon Deck can do!"
+ done
Text0638: ; 4e3d4 (13:63d4)
- db TX_START,"How could my Lightning Deck lose!?!\n"
- db "How shocking...!\n"
- db "Here, take this Lightning Medal\n"
- db "as proof of defeating me.",TX_END
+ text "How could my Lightning Deck lose!?!"
+ line "How shocking...!"
+ line "Here, take this Lightning Medal"
+ line "as proof of defeating me."
+ done
Text0639: ; 4e444 (13:6444)
- db TX_START,"And here, take this Booster \n"
- db "Pack, too.",TX_END
+ text "And here, take this Booster "
+ line "Pack, too."
+ done
Text063a: ; 4e46d (13:646d)
- db TX_START,"I'm going to polish my card skills,\n"
- db "so come duel again.",TX_END
+ text "I'm going to polish my card skills,"
+ line "so come duel again."
+ done
Text063b: ; 4e4a6 (13:64a6)
- db TX_START,"So? How's my Deck?\n"
- db "Isn't it cool, just like this stage?\n"
- db "Come challenge my Deck again!",TX_END
+ text "So? How's my Deck?"
+ line "Isn't it cool, just like this stage?"
+ line "Come challenge my Deck again!"
+ done
Text063c: ; 4e4fd (13:64fd)
- db TX_START,"My Lightning Deck is the greatest!\n"
- db "How about it?\n"
- db "You want to see what my Deck can do?",TX_END
+ text "My Lightning Deck is the greatest!"
+ line "How about it?"
+ line "You want to see what my Deck can do?"
+ done
Text063d: ; 4e554 (13:6554)
- db TX_START,"I'm not busy right now,\n"
- db "so I'll Duel you any time!",TX_END
+ text "I'm not busy right now,"
+ line "so I'll Duel you any time!"
+ done
Text063e: ; 4e588 (13:6588)
- db TX_START,"Sparks will fly again, this time\n"
- db "with 6 Prizes!",TX_END
+ text "Sparks will fly again, this time"
+ line "with 6 Prizes!"
+ done
Text063f: ; 4e5b9 (13:65b9)
- db TX_START,"I lost again!\n"
- db "How shocking...!",TX_END
+ text "I lost again!"
+ line "How shocking...!"
+ done
Text0640: ; 4e5d9 (13:65d9)
- db TX_START,"I'm going to polish my card skills,\n"
- db "so come challenge me again!",TX_END
+ text "I'm going to polish my card skills,"
+ line "so come challenge me again!"
+ done
Text0641: ; 4e61a (13:661a)
- db TX_START,"So? How's my Deck?\n"
- db "Isn't it cool, just like this stage?\n"
- db "Come challenge my Deck again!",TX_END
+ text "So? How's my Deck?"
+ line "Isn't it cool, just like this stage?"
+ line "Come challenge my Deck again!"
+ done
Text0642: ; 4e671 (13:6671)
- db TX_START,"Greetings.\n"
- db "Welcome to the Psychic Club!\n"
- db "This Club is for people who use\n"
- db "Psychic Pok`mon.\n"
- db "Psychic Pok`mon are difficult to \n"
- db "use, but they're very strong.",TX_END
+ text "Greetings."
+ line "Welcome to the Psychic Club!"
+ line "This Club is for people who use"
+ line "Psychic Pok`mon."
+ line "Psychic Pok`mon are difficult to "
+ line "use, but they're very strong."
+ done
Text0643: ; 4e70b (13:670b)
- db TX_START,"What? You also want the Legendary\n"
- db "Pok`mon Cards?\n"
- db "I want them too, but I'm still \n"
- db "not quite good enough.",TX_END
+ text "What? You also want the Legendary"
+ line "Pok`mon Cards?"
+ line "I want them too, but I'm still "
+ line "not quite good enough."
+ done
Text0644: ; 4e774 (13:6774)
- db TX_START,"I hear you got the Legendary\n"
- db "Pok`mon Cards.\n"
- db "Wow! That's great!\n"
- db "I'm going to train so I can get\n"
- db "them myself!",TX_END
+ text "I hear you got the Legendary"
+ line "Pok`mon Cards."
+ line "Wow! That's great!"
+ line "I'm going to train so I can get"
+ line "them myself!"
+ done
Text0645: ; 4e7e1 (13:67e1)
- db TX_START,"Well, getting the ",TX_RAM2," Medal \n"
- db "wasn't that hard! If I keep \n"
- db "this up, I should be able to get \n"
- db "the Legendary Pok`mon Cards!",TX_END
+ text "Well, getting the ",TX_RAM2," Medal "
+ line "wasn't that hard! If I keep "
+ line "this up, I should be able to get "
+ line "the Legendary Pok`mon Cards!"
+ done
Text0646: ; 4e859 (13:6859)
- db TX_START,"What? It's you, ",TX_RAM1,"!\n"
- db "What are you doing?\n"
- db "Huh? That's a Deck!\n"
- db "Are you... trying to get the\n"
- db "Legendary Pok`mon Cards?",TX_END
+ text "What? It's you, ",TX_RAM1,"!"
+ line "What are you doing?"
+ line "Huh? That's a Deck!"
+ line "Are you... trying to get the"
+ line "Legendary Pok`mon Cards?"
+ done
Text0647: ; 4e8cb (13:68cb)
- db TX_START,"It's useless trying to hide it!\n"
- db "I know you came here for the Medal!\n"
- db "You're out of your league!",TX_END
+ text "It's useless trying to hide it!"
+ line "I know you came here for the Medal!"
+ line "You're out of your league!"
+ done
Text0648: ; 4e92b (13:692b)
- db TX_START,"What!?! I can't believe it!\n"
- db "You? The Legendary Pok`mon Cards?\n"
- db "Ha ha ha ha ha!\n"
- db "Don't make me laugh!!!",TX_END
+ text "What!?! I can't believe it!"
+ line "You? The Legendary Pok`mon Cards?"
+ line "Ha ha ha ha ha!"
+ line "Don't make me laugh!!!"
+ done
Text0649: ; 4e991 (13:6991)
- db TX_START,"Alright! Listen up!\n"
- db "I'll teach you what it's about!\n"
- db "To inherit the Legendary Pok`mon\n"
- db "Cards, you must defeat the 8 Club\n"
- db "Masters and get the 8 Medals!\n"
- db "Then you have to go to Pok`mon\n"
- db "Dome and defeat all 4 of the \n"
- db "Grand Masters there!!!\n"
- db "There's no way you can do it!!!\n"
- db "You might as well just give up\n"
- db "and go home!\n"
- db "'Cause the Legendary Pok`mon Cards\n"
- db "are gonna be mine!\n"
- db "I already won the first Medal!\n"
- db "See ya, ",TX_RAM1,"!\n"
- db "Ha ha ha ha ha!!!",TX_END
+ text "Alright! Listen up!"
+ line "I'll teach you what it's about!"
+ line "To inherit the Legendary Pok`mon"
+ line "Cards, you must defeat the 8 Club"
+ line "Masters and get the 8 Medals!"
+ line "Then you have to go to Pok`mon"
+ line "Dome and defeat all 4 of the "
+ line "Grand Masters there!!!"
+ line "There's no way you can do it!!!"
+ line "You might as well just give up"
+ line "and go home!"
+ line "'Cause the Legendary Pok`mon Cards"
+ line "are gonna be mine!"
+ line "I already won the first Medal!"
+ line "See ya, ",TX_RAM1,"!"
+ line "Ha ha ha ha ha!!!"
+ done
Text064a: ; 4eb39 (13:6b39)
- db TX_START,"Hi, ",TX_RAM1,"!\n"
- db "How ya doin'?",TX_END
+ text "Hi, ",TX_RAM1,"!"
+ line "How ya doin'?"
+ done
Text064b: ; 4eb4f (13:6b4f)
- db TX_START,"So you won the second Medal?\n"
- db "You must have been really lucky!\n"
- db "I'll see how good you really are!\n"
- db "Come on, let's duel!\n"
- db "We'll play with 6 Prizes!\n"
- db "If you win, I'll give you a really\n"
- db "rare card!",TX_END
+ text "So you won the second Medal?"
+ line "You must have been really lucky!"
+ line "I'll see how good you really are!"
+ line "Come on, let's duel!"
+ line "We'll play with 6 Prizes!"
+ line "If you win, I'll give you a really"
+ line "rare card!"
+ done
Text064c: ; 4ec0d (13:6c0d)
- db TX_START,"I... I wasn't really trying\n"
- db "that hard!\n"
- db "Well, a loss is a loss, so I'll \n"
- db "have to give you this card.",TX_END
+ text "I... I wasn't really trying"
+ line "that hard!"
+ line "Well, a loss is a loss, so I'll "
+ line "have to give you this card."
+ done
Text064d: ; 4ec72 (13:6c72)
- db TX_START,"It won't be so easy next time!\n"
- db "See ya!",TX_END
+ text "It won't be so easy next time!"
+ line "See ya!"
+ done
Text064e: ; 4ec9a (13:6c9a)
- db TX_START,"See! What did I tell you?\n"
- db "It was luck, wasn't it?\n"
- db "Now you know better than to try and\n"
- db "win the Medals!\n"
- db "See ya!\n"
- db "Ha ha ha ha ha ha!",TX_END
+ text "See! What did I tell you?"
+ line "It was luck, wasn't it?"
+ line "Now you know better than to try and"
+ line "win the Medals!"
+ line "See ya!"
+ line "Ha ha ha ha ha ha!"
+ done
Text064f: ; 4ed1c (13:6d1c)
- db TX_START,"Hi, ",TX_RAM1,"!\n"
- db "Have you gotten any better?",TX_END
+ text "Hi, ",TX_RAM1,"!"
+ line "Have you gotten any better?"
+ done
Text0650: ; 4ed40 (13:6d40)
- db TX_START,"I already won the sixth Medal!\n"
- db "I'll see how much better\n"
- db "you've gotten!\n"
- db "If you win, I'll give you \n"
- db "another rare card!\n"
- db "Come on!!! Let's Duel!\n"
- db "We'll play with 6 Prizes!",TX_END
+ text "I already won the sixth Medal!"
+ line "I'll see how much better"
+ line "you've gotten!"
+ line "If you win, I'll give you "
+ line "another rare card!"
+ line "Come on!!! Let's Duel!"
+ line "We'll play with 6 Prizes!"
+ done
Text0651: ; 4ede7 (13:6de7)
- db TX_START,"Shoot! I let you win!\n"
- db "But a loss is a loss, so I'll \n"
- db "give you this card.",TX_END
+ text "Shoot! I let you win!"
+ line "But a loss is a loss, so I'll "
+ line "give you this card."
+ done
Text0652: ; 4ee31 (13:6e31)
- db TX_START,"Don't get so cocky just because\n"
- db "you won.\n"
- db "The Legendary Pok`mon Cards\n"
- db "belong to Me!!!",TX_END
+ text "Don't get so cocky just because"
+ line "you won."
+ line "The Legendary Pok`mon Cards"
+ line "belong to Me!!!"
+ done
Text0653: ; 4ee87 (13:6e87)
- db TX_START,"Huh?!? You're not even half as good\n"
- db "as I am!\n"
- db "There's no way you'll be able to\n"
- db "inherit the Legendary Pok`mon Cards!\n"
- db "Why don't you just give up!?!\n"
- db "See ya!\n"
- db "Ha ha ha ha ha ha!",TX_END
+ text "Huh?!? You're not even half as good"
+ line "as I am!"
+ line "There's no way you'll be able to"
+ line "inherit the Legendary Pok`mon Cards!"
+ line "Why don't you just give up!?!"
+ line "See ya!"
+ line "Ha ha ha ha ha ha!"
+ done
Text0654: ; 4ef34 (13:6f34)
- db TX_START,"Hi, I'm Robert!\n"
- db "I'm a member of the Psychic Club.\n"
- db "My Ghost Deck is really strong!\n"
- db "It doesn't have any weaknesses, \n"
- db "and it's difficult for opponents'\n"
- db "attacks to cause damage!\n"
- db "Would you like to duel me?",TX_END
+ text "Hi, I'm Robert!"
+ line "I'm a member of the Psychic Club."
+ line "My Ghost Deck is really strong!"
+ line "It doesn't have any weaknesses, "
+ line "and it's difficult for opponents'"
+ line "attacks to cause damage!"
+ line "Would you like to duel me?"
+ done
Text0655: ; 4effe (13:6ffe)
- db TX_START,"Would you like to duel Robert?",TX_END
+ text "Would you like to duel Robert?"
+ done
Text0656: ; 4f01e (13:701e)
- db TX_START,"Oh, man! You're boring!\n"
- db "Won't anyone duel me?",TX_END
+ text "Oh, man! You're boring!"
+ line "Won't anyone duel me?"
+ done
Text0657: ; 4f04d (13:704d)
- db TX_START,"A single match with 4 prizes!\n"
- db "Come on, my precious ghosts!\n"
- db "Let's make his Pok`mon disappear!",TX_END
+ text "A single match with 4 prizes!"
+ line "Come on, my precious ghosts!"
+ line "Let's make his Pok`mon disappear!"
+ done
Text0658: ; 4f0ab (13:70ab)
- db TX_START,"How could my Ghost Deck lose!?!",TX_END
+ text "How could my Ghost Deck lose!?!"
+ done
Text0659: ; 4f0cc (13:70cc)
- db TX_START,"I won't lose next time!\n"
- db "Let's duel again!",TX_END
+ text "I won't lose next time!"
+ line "Let's duel again!"
+ done
Text065a: ; 4f0f7 (13:70f7)
- db TX_START,"I told you my Ghost Deck was \n"
- db "strong! Please Duel me again \n"
- db "sometime, OK? Bye!",TX_END
+ text "I told you my Ghost Deck was "
+ line "strong! Please Duel me again "
+ line "sometime, OK? Bye!"
+ done
Text065b: ; 4f148 (13:7148)
- db TX_START,"I don't like people who think\n"
- db "too highly of themselves.\n"
- db "That's why I don't like the \n"
- db "members of the Psychic Club.\n"
- db "I wish I could knock them off their\n"
- db "high horses!\n"
- db "Would you try to defeat Murray,\n"
- db "the Psychic Club Master?\n"
- db "If you defeat Murray, I'll give you\n"
- db "something really valuable!",TX_END
+ text "I don't like people who think"
+ line "too highly of themselves."
+ line "That's why I don't like the "
+ line "members of the Psychic Club."
+ line "I wish I could knock them off their"
+ line "high horses!"
+ line "Would you try to defeat Murray,"
+ line "the Psychic Club Master?"
+ line "If you defeat Murray, I'll give you"
+ line "something really valuable!"
+ done
Text065c: ; 4f264 (13:7264)
- db TX_START,"Grant the old man's wish?",TX_END
+ text "Grant the old man's wish?"
+ done
Text065d: ; 4f27f (13:727f)
- db TX_START,"I understand...\n"
- db "Murray is very skilled.\n"
- db "Defeating Murray is no \n"
- db "easy task.",TX_END
+ text "I understand..."
+ line "Murray is very skilled."
+ line "Defeating Murray is no "
+ line "easy task."
+ done
Text065e: ; 4f2cb (13:72cb)
- db TX_START,"Good!\n"
- db "I'll be waiting here for you!",TX_END
+ text "Good!"
+ line "I'll be waiting here for you!"
+ done
Text065f: ; 4f2f0 (13:72f0)
- db TX_START,"I see you still can't defeat \n"
- db "Murray. He's very skilled, but \n"
- db "don't give up! I'm pulling for \n"
- db "you! If you defeat Murray, I'll \n"
- db "give you something very valuable.",TX_END
+ text "I see you still can't defeat "
+ line "Murray. He's very skilled, but "
+ line "don't give up! I'm pulling for "
+ line "you! If you defeat Murray, I'll "
+ line "give you something very valuable."
+ done
Text0660: ; 4f392 (13:7392)
- db TX_START,"I'm not very fond of people who\n"
- db "think too highly of themselves.\n"
- db "That's why I don't like the \n"
- db "members of the Psychic Club.\n"
- db "Hey!?! Is that the Psychic Medal?\n"
- db "Did you defeat Murray!?!\n"
- db "I feel so much better!\n"
- db "Here, let me give you this\n"
- db "Mewtwo card!",TX_END
+ text "I'm not very fond of people who"
+ line "think too highly of themselves."
+ line "That's why I don't like the "
+ line "members of the Psychic Club."
+ line "Hey!?! Is that the Psychic Medal?"
+ line "Did you defeat Murray!?!"
+ line "I feel so much better!"
+ line "Here, let me give you this"
+ line "Mewtwo card!"
+ done
Text0661: ; 4f487 (13:7487)
- db TX_START,"What? Is that the Psychic Medal?\n"
- db "Did you defeat Murray!?!\n"
- db "I feel so much better!\n"
- db "Here, let me give you this\n"
- db "Mewtwo card.",TX_END
+ text "What? Is that the Psychic Medal?"
+ line "Did you defeat Murray!?!"
+ line "I feel so much better!"
+ line "Here, let me give you this"
+ line "Mewtwo card."
+ done
Text0662: ; 4f501 (13:7501)
- db TX_START,"Thank you for defeating Murray!",TX_END
+ text "Thank you for defeating Murray!"
+ done
Text0663: ; 4f522 (13:7522)
- db TX_START,"I feel so much better since you\n"
- db "defeated Murray!\n"
- db "Thank you for defeating Murray!",TX_END
+ text "I feel so much better since you"
+ line "defeated Murray!"
+ line "Thank you for defeating Murray!"
+ done
Text0664: ; 4f574 (13:7574)
- db TX_START,"Hi, ",TX_RAM1,".\n"
- db "So you've finally come this far?\n"
- db "I've already won 5 Medals!\n"
- db "By the time you win your 8th Medal,\n"
- db "I will have inherited the\n"
- db "Legendary Pok`mon Cards!\n"
- db "I'll catch you later!\n"
- db "See ya! Ha ha ha ha ha ha!",TX_END
+ text "Hi, ",TX_RAM1,"."
+ line "So you've finally come this far?"
+ line "I've already won 5 Medals!"
+ line "By the time you win your 8th Medal,"
+ line "I will have inherited the"
+ line "Legendary Pok`mon Cards!"
+ line "I'll catch you later!"
+ line "See ya! Ha ha ha ha ha ha!"
+ done
Text0665: ; 4f640 (13:7640)
- db TX_START,"The Legendary Pok`mon Cards are \n"
- db "the ultimate cards. Everyone wants \n"
- db "to inherit the Legendary Cards - \n"
- db "that's why we play against so many \n"
- db "different people. I just lost a \n"
- db "duel, so I can't play right now.",TX_END
+ text "The Legendary Pok`mon Cards are "
+ line "the ultimate cards. Everyone wants "
+ line "to inherit the Legendary Cards - "
+ line "that's why we play against so many "
+ line "different people. I just lost a "
+ line "duel, so I can't play right now."
+ done
Text0666: ; 4f70e (13:770e)
- db TX_START,"Did you hear?\n"
- db "Someone inherited the Legendary\n"
- db "Pok`mon Cards! Whomever it is,\n"
- db "he must be really cool if he \n"
- db "can defeat the Grand Masters!",TX_END
+ text "Did you hear?"
+ line "Someone inherited the Legendary"
+ line "Pok`mon Cards! Whomever it is,"
+ line "he must be really cool if he "
+ line "can defeat the Grand Masters!"
+ done
Text0667: ; 4f798 (13:7798)
- db TX_START,"I dropped all my cards, so I'm\n"
- db "putting them in order here!",TX_END
+ text "I dropped all my cards, so I'm"
+ line "putting them in order here!"
+ done
Text0668: ; 4f7d4 (13:77d4)
- db TX_START,"Huh? What am I doing?\n"
- db "I'm building a Deck!",TX_END
+ text "Huh? What am I doing?"
+ line "I'm building a Deck!"
+ done
Text0669: ; 4f800 (13:7800)
- db TX_START,"What do you think Murray's doing\n"
- db "over there in the corner?\n"
- db "He's thinking about how to \n"
- db "duel using his new cards.\n"
- db "We strive to better ourselves\n"
- db "here at the Psychic Club.",TX_END
+ text "What do you think Murray's doing"
+ line "over there in the corner?"
+ line "He's thinking about how to "
+ line "duel using his new cards."
+ line "We strive to better ourselves"
+ line "here at the Psychic Club."
+ done
Text066a: ; 4f8aa (13:78aa)
- db TX_START,"You still haven't won any Medals.\n"
- db "You aren't qualified to duel me.\n"
- db "Go to some other Club and win\n"
- db "a Medal first!",TX_END
+ text "You still haven't won any Medals."
+ line "You aren't qualified to duel me."
+ line "Go to some other Club and win"
+ line "a Medal first!"
+ done
Text066b: ; 4f91b (13:791b)
- db TX_START,"I see you've won a Medal.\n"
- db "Then I will Duel with you.",TX_END
+ text "I see you've won a Medal."
+ line "Then I will Duel with you."
+ done
Text066c: ; 4f951 (13:7951)
- db TX_START,"Murray finally came up with a new \n"
- db "strategy. He's in a very good mood,\n"
- db "so he'll probably duel you now.\n"
- db "By the way,\n"
- db "Would you duel me?",TX_END
+ text "Murray finally came up with a new "
+ line "strategy. He's in a very good mood,"
+ line "so he'll probably duel you now."
+ line "By the way,"
+ line "Would you duel me?"
+ done
Text066d: ; 4f9d8 (13:79d8)
- db TX_START,"Would you like to duel Daniel?",TX_END
+ text "Would you like to duel Daniel?"
+ done
Text066e: ; 4f9f8 (13:79f8)
- db TX_START,"Are you afraid to duel?\n"
- db "Well, not that I care!",TX_END
+ text "Are you afraid to duel?"
+ line "Well, not that I care!"
+ done
Text066f: ; 4fa28 (13:7a28)
- db TX_START,"Let's play with 4 Prizes.\n"
- db "OK, here we go!",TX_END
+ text "Let's play with 4 Prizes."
+ line "OK, here we go!"
+ done
Text0670: ; 4fa53 (13:7a53)
- db TX_START,"You're no ordinary player if \n"
- db "you can defeat me!",TX_END
+ text "You're no ordinary player if "
+ line "you can defeat me!"
+ done
Text0671: ; 4fa85 (13:7a85)
- db TX_START,"Next time we play, I'm going \n"
- db "to win!",TX_END
+ text "Next time we play, I'm going "
+ line "to win!"
+ done
Text0672: ; 4faac (13:7aac)
- db TX_START,"You're still not good enough\n"
- db "to defeat me!\n"
- db "I'll Duel you any time you want.",TX_END
+ text "You're still not good enough"
+ line "to defeat me!"
+ line "I'll Duel you any time you want."
+ done
Text0673: ; 4faf9 (13:7af9)
- db TX_START,"I can see the future...\n"
- db "You cannot defeat me.\n"
- db "But if you win 2 Medals, maybe...\n"
- db "Then...\n"
- db "I would Duel you...",TX_END
+ text "I can see the future..."
+ line "You cannot defeat me."
+ line "But if you win 2 Medals, maybe..."
+ line "Then..."
+ line "I would Duel you..."
+ done
Text0674: ; 4fb66 (13:7b66)
- db TX_START,"You've won quite a few Medals.\n"
- db "OK...Let's duel.\n"
- db "But I see the future...\n"
- db "You will lose...",TX_END
+ text "You've won quite a few Medals."
+ line "OK...Let's duel."
+ line "But I see the future..."
+ line "You will lose..."
+ done
Text0675: ; 4fbc0 (13:7bc0)
- db TX_START,"Would you like to duel Stephanie?",TX_END
+ text "Would you like to duel Stephanie?"
+ done
Text0676: ; 4fbe3 (13:7be3)
- db TX_START,"Yes, I understand.\n"
- db "Losing is scary, isn't it?",TX_END
+ text "Yes, I understand."
+ line "Losing is scary, isn't it?"
+ done
Text0677: ; 4fc12 (13:7c12)
- db TX_START,"OK, a single Match with 4 Prizes!\n"
- db "Here we go!",TX_END
+ text "OK, a single Match with 4 Prizes!"
+ line "Here we go!"
+ done
Text0678: ; 4fc41 (13:7c41)
- db TX_START,"I can't believe my prediction\n"
- db "was wrong...",TX_END
+ text "I can't believe my prediction"
+ line "was wrong..."
+ done
Text0679: ; 4fc6d (13:7c6d)
- db TX_START,"I see a vision...\n"
- db "You're dueling me again.",TX_END
+ text "I see a vision..."
+ line "You're dueling me again."
+ done
Text067a: ; 4fc99 (13:7c99)
- db TX_START,"I told you that you would lose...\n"
- db "I have the ability to foretell\n"
- db "the future! I see a vision... \n"
- db "You're dueling me again!",TX_END
+ text "I told you that you would lose..."
+ line "I have the ability to foretell"
+ line "the future! I see a vision... "
+ line "You're dueling me again!"
+ done
Text067b: ; 4fd13 (13:7d13)
- db TX_START,"Let me see... if this happens...\n"
- db "then that... so... ummm...",TX_END
+ text "Let me see... if this happens..."
+ line "then that... so... ummm..."
+ done
Text067c: ; 4fd50 (13:7d50)
- db TX_START,"Club Master Murray doesn't listen\n"
- db "to what people are saying!",TX_END
+ text "Club Master Murray doesn't listen"
+ line "to what people are saying!"
+ done
Text067d: ; 4fd8e (13:7d8e)
- db TX_START,"Hi, I'm Murray, Master of the \n"
- db "Psychic Club. You're the one \n"
- db "who's visiting the Clubs to win \n"
- db "the Medals. How do I know this?\n"
- db "Because I'm Psychic!\n"
- db "OK, let me test my new card\n"
- db "strategy... against your deck!\n"
- db "Are you ready?",TX_END
+ text "Hi, I'm Murray, Master of the "
+ line "Psychic Club. You're the one "
+ line "who's visiting the Clubs to win "
+ line "the Medals. How do I know this?"
+ line "Because I'm Psychic!"
+ line "OK, let me test my new card"
+ line "strategy... against your deck!"
+ line "Are you ready?"
+ done
Text067e: ; 4fe6c (13:7e6c)
- db TX_START,"Hi! It's you again.\n"
- db "Are you ready for a duel?",TX_END
+ text "Hi! It's you again."
+ line "Are you ready for a duel?"
+ done
Text067f: ; 4fe9b (13:7e9b)
- db TX_START,"Would you like to duel Murray?",TX_END
+ text "Would you like to duel Murray?"
+ done
Text0680: ; 4febb (13:7ebb)
- db TX_START,"OK. Come back when you're ready.",TX_END
+ text "OK. Come back when you're ready."
+ done
Text0681: ; 4fedd (13:7edd)
- db TX_START,"When you duel me, it's for 6 Prizes.\n"
- db "Shall we start then!?!",TX_END
+ text "When you duel me, it's for 6 Prizes."
+ line "Shall we start then!?!"
+ done
Text0682: ; 4ff1a (13:7f1a)
- db TX_START,"Huh!?! I lost!\n"
- db "Hmmmm...\n"
- db "Well, you must be pretty good if\n"
- db "you're trying to inherit\n"
- db "the Legendary Pok`mon Cards.\n"
- db "Here, take this Psychic Medal.",TX_END
+ text "Huh!?! I lost!"
+ line "Hmmmm..."
+ line "Well, you must be pretty good if"
+ line "you're trying to inherit"
+ line "the Legendary Pok`mon Cards."
+ line "Here, take this Psychic Medal."
+ done
Text0683: ; 4ffa9 (13:7fa9)
- db TX_START,"And here, take this\n"
- db "LABORATORY Booster Pack!",TX_END
+ text "And here, take this"
+ line "LABORATORY Booster Pack!"
+ done
diff --git a/src/text/text8.asm b/src/text/text8.asm
index 46c711d..14e36bb 100644
--- a/src/text/text8.asm
+++ b/src/text/text8.asm
@@ -1,1045 +1,1234 @@
Text0684: ; 50000 (14:4000)
- db TX_START,"I'll think of a new strategy,\n"
- db "so come see me again!\n"
- db "I'll be waiting!\n"
- db "Ha ha ha ha ha......",TX_END
+ text "I'll think of a new strategy,"
+ line "so come see me again!"
+ line "I'll be waiting!"
+ line "Ha ha ha ha ha......"
+ done
Text0685: ; 5005b (14:405b)
- db TX_START,"It seems you weren't really ready.\n"
- db "If you keep playing like that,\n"
- db "You'll only inherit the Legendary \n"
- db "Pok`mon Cards in your dreams!",TX_END
+ text "It seems you weren't really ready."
+ line "If you keep playing like that,"
+ line "You'll only inherit the Legendary "
+ line "Pok`mon Cards in your dreams!"
+ done
Text0686: ; 500df (14:40df)
- db TX_START,"Hello, ",TX_RAM1,"!\n"
- db "I just came up with a new card\n"
- db "strategy and was looking for\n"
- db "someone to test it on.\n"
- db "You'll duel with me, of course,\n"
- db "won't you?",TX_END
+ text "Hello, ",TX_RAM1,"!"
+ line "I just came up with a new card"
+ line "strategy and was looking for"
+ line "someone to test it on."
+ line "You'll duel with me, of course,"
+ line "won't you?"
+ done
Text0687: ; 50168 (14:4168)
- db TX_START,"Oh. Well, come by when you feel \n"
- db "like playing.",TX_END
+ text "Oh. Well, come by when you feel "
+ line "like playing."
+ done
Text0688: ; 50198 (14:4198)
- db TX_START,"Alright! That's the spirit!\n"
- db "You've made me a happy man!\n"
- db "We'll play with 6 Prizes!\n"
- db "I can't wait! Let's start!",TX_END
+ text "Alright! That's the spirit!"
+ line "You've made me a happy man!"
+ line "We'll play with 6 Prizes!"
+ line "I can't wait! Let's start!"
+ done
Text0689: ; 50206 (14:4206)
- db TX_START,"Hmmm...\n"
- db "Maybe my Deck isn't well balanced?\n"
- db "I must change some of the cards\n"
- db "and try again.\n"
- db "Oh yeah, take this.",TX_END
+ text "Hmmm..."
+ line "Maybe my Deck isn't well balanced?"
+ line "I must change some of the cards"
+ line "and try again."
+ line "Oh yeah, take this."
+ done
Text068a: ; 50275 (14:4275)
- db TX_START,"Come play with me again.",TX_END
+ text "Come play with me again."
+ done
Text068b: ; 5028f (14:428f)
- db TX_START,"It seems you weren't really \n"
- db "ready. Come back once you're \n"
- db "finally ready.",TX_END
+ text "It seems you weren't really "
+ line "ready. Come back once you're "
+ line "finally ready."
+ done
Text068c: ; 502da (14:42da)
- db TX_START,"Greetings.\n"
- db "Welcome to the Fire Club!\n"
- db "This is a Club for boys with a \n"
- db "burning passion for Fire Pok`mon.\n"
- db "Fire Pok`mon have the greatest \n"
- db "attack power of all Pok`mon!",TX_END
+ text "Greetings."
+ line "Welcome to the Fire Club!"
+ line "This is a Club for boys with a "
+ line "burning passion for Fire Pok`mon."
+ line "Fire Pok`mon have the greatest "
+ line "attack power of all Pok`mon!"
+ done
Text068d: ; 5037f (14:437f)
- db TX_START,"Training's so boring and out of \n"
- db "date. Why do I have to do it?\n"
- db "Why me?\n"
- db "I'm Jessica of the Fighting Club.\n"
- db "Oh! You must be ",TX_RAM1,".\n"
- db "I heard about you from Mitch.\n"
- db "Defeating you should be more\n"
- db "fun than training!",TX_END
+ text "Training's so boring and out of "
+ line "date. Why do I have to do it?"
+ line "Why me?"
+ line "I'm Jessica of the Fighting Club."
+ line "Oh! You must be ",TX_RAM1,"."
+ line "I heard about you from Mitch."
+ line "Defeating you should be more"
+ line "fun than training!"
+ done
Text068e: ; 5044a (14:444a)
- db TX_START,"Training's so boring and out of \n"
- db "date. Why do I have to do it?\n"
- db TX_START,TX_RAM1,", it's you again!\n"
- db "What a pain.\n"
- db "But defeating you should be more\n"
- db "fun than training.",TX_END
+ text "Training's so boring and out of "
+ line "date. Why do I have to do it?"
+ line ""
+ text TX_RAM1,", it's you again!"
+ line "What a pain."
+ line "But defeating you should be more"
+ line "fun than training."
+ done
Text068f: ; 504df (14:44df)
- db TX_START,"Would you like to duel Jessica?",TX_END
+ text "Would you like to duel Jessica?"
+ done
Text0690: ; 50500 (14:4500)
- db TX_START,"Oh, OK.\n"
- db "Well, I'm busy anyway.\n"
- db "Bye!\n"
- db "Training's so boring...",TX_END
+ text "Oh, OK."
+ line "Well, I'm busy anyway."
+ line "Bye!"
+ line "Training's so boring..."
+ done
Text0691: ; 5053d (14:453d)
- db TX_START,"OK! A single Match with 4 Prizes.\n"
- db "Let's go to it!",TX_END
+ text "OK! A single Match with 4 Prizes."
+ line "Let's go to it!"
+ done
Text0692: ; 50570 (14:4570)
- db TX_START,"How could I lose...?",TX_END
+ text "How could I lose...?"
+ done
Text0693: ; 50586 (14:4586)
- db TX_START,"How boring!\n"
- db "I'm going home! Bye!",TX_END
+ text "How boring!"
+ line "I'm going home! Bye!"
+ done
Text0694: ; 505a8 (14:45a8)
- db TX_START,"Wow! That was fun!\n"
- db "Much better than training!\n"
- db "Let's do it again sometime!\n"
- db "Bye!",TX_END
+ text "Wow! That was fun!"
+ line "Much better than training!"
+ line "Let's do it again sometime!"
+ line "Bye!"
+ done
Text0695: ; 505f8 (14:45f8)
- db TX_START,"Do you know the empty house on\n"
- db "the cape to the northwest?\n"
- db "That's ISHIHARA's house!\n"
- db "Isn't it nice to have friends?",TX_END
+ text "Do you know the empty house on"
+ line "the cape to the northwest?"
+ line "That's ISHIHARA's house!"
+ line "Isn't it nice to have friends?"
+ done
Text0696: ; 5066b (14:466b)
- db TX_START,"My friend, ISHIHARA, wants to\n"
- db "trade cards.\n"
- db "Why don't you go visit him \n"
- db "sometime.",TX_END
+ text "My friend, ISHIHARA, wants to"
+ line "trade cards."
+ line "Why don't you go visit him "
+ line "sometime."
+ done
Text0697: ; 506bd (14:46bd)
- db TX_START,"My friend, ISHIHARA, owns \n"
- db "really rare cards.\n"
- db "Why don't you go visit him \n"
- db "sometime?",TX_END
+ text "My friend, ISHIHARA, owns "
+ line "really rare cards."
+ line "Why don't you go visit him "
+ line "sometime?"
+ done
Text0698: ; 50712 (14:4712)
- db TX_START,"I heard my friend, ISHIHARA, \n"
- db "gave someone a card.\n"
- db "Why don't you go visit him \n"
- db "sometime?",TX_END
+ text "I heard my friend, ISHIHARA, "
+ line "gave someone a card."
+ line "Why don't you go visit him "
+ line "sometime?"
+ done
Text0699: ; 5076c (14:476c)
- db TX_START,"ISHIHARA's my friend.\n"
- db "Isn't it nice to have friends?",TX_END
+ text "ISHIHARA's my friend."
+ line "Isn't it nice to have friends?"
+ done
Text069a: ; 507a2 (14:47a2)
- db TX_START,"ISHIHARA's my friend.\n"
- db "Isn't it nice to have friends?",TX_END
+ text "ISHIHARA's my friend."
+ line "Isn't it nice to have friends?"
+ done
Text069b: ; 507d8 (14:47d8)
- db TX_START,"Energy! Energy!\n"
- db "Energy cards are very important!\n"
- db "Come back and see me when you\n"
- db "collect a lot of Energy cards!\n"
- db "Then...\n"
- db "I'll let you in on a secret!",TX_END
+ text "Energy! Energy!"
+ line "Energy cards are very important!"
+ line "Come back and see me when you"
+ line "collect a lot of Energy cards!"
+ line "Then..."
+ line "I'll let you in on a secret!"
+ done
Text069c: ; 5086c (14:486c)
- db TX_START,"When you build a lot of decks,\n"
- db "you start to run out of Energy \n"
- db "cards. Please give me your Energy \n"
- db "cards! Give me all the Energy cards \n"
- db "that aren't in your Deck!!!\n"
- db "Gimme, Gimme! Gimme all of 'em!!!",TX_END
+ text "When you build a lot of decks,"
+ line "you start to run out of Energy "
+ line "cards. Please give me your Energy "
+ line "cards! Give me all the Energy cards "
+ line "that aren't in your Deck!!!"
+ line "Gimme, Gimme! Gimme all of 'em!!!"
+ done
Text069d: ; 50932 (14:4932)
- db TX_START,"Give the Energy Cards?",TX_END
+ text "Give the Energy Cards?"
+ done
Text069e: ; 5094a (14:494a)
- db TX_START,"You're so mean!\n"
- db "It's OK! I'll ask someone else!\n"
- db "Bye!\n"
- db "Meanie!",TX_END
+ text "You're so mean!"
+ line "It's OK! I'll ask someone else!"
+ line "Bye!"
+ line "Meanie!"
+ done
Text069f: ; 50988 (14:4988)
- db TX_START,"All your Energy cards are\n"
- db "in your Deck...\n"
- db "Then I can't ask for them.\n"
- db "Bye!",TX_END
+ text "All your Energy cards are"
+ line "in your Deck..."
+ line "Then I can't ask for them."
+ line "Bye!"
+ done
Text06a0: ; 509d3 (14:49d3)
- db TX_START,TX_RAM1," lost all \n"
- db "his Energy cards!",TX_END
+ text TX_RAM1," lost all "
+ line "his Energy cards!"
+ done
Text06a1: ; 509f2 (14:49f2)
- db TX_START,"Wow!\n"
- db "Thanks!\n"
- db "Since you were so nice,\n"
- db "I'll tell you a secret!\n"
- db "Check the wall 2 tiles\n"
- db "left of the bookcase...\n"
- db "You'll probably find something\n"
- db "really nice!\n"
- db "Thanks again.\n"
- db "Bye!",TX_END
+ text "Wow!"
+ line "Thanks!"
+ line "Since you were so nice,"
+ line "I'll tell you a secret!"
+ line "Check the wall 2 tiles"
+ line "left of the bookcase..."
+ line "You'll probably find something"
+ line "really nice!"
+ line "Thanks again."
+ line "Bye!"
+ done
Text06a2: ; 50a9e (14:4a9e)
- db TX_START,TX_RAM1,"\n"
- db "checked the wall!\n"
- db TX_START,TX_RAM1,"\n"
- db "found a ",TX_LVL,"9 Slowpoke!",TX_END
+ text TX_RAM1,""
+ line "checked the wall!"
+ line ""
+ text TX_RAM1,""
+ line "found a ",TX_LVL,"9 Slowpoke!"
+ done
Text06a3: ; 50acc (14:4acc)
- db TX_START,"I'm burning with Pok`mon \n"
- db "fever today!\n"
- db "One day, I'm going to inherit\n"
- db "the Legendary Cards!",TX_END
+ text "I'm burning with Pok`mon "
+ line "fever today!"
+ line "One day, I'm going to inherit"
+ line "the Legendary Cards!"
+ done
Text06a4: ; 50b27 (14:4b27)
- db TX_START,"I'm burning with Pok`mon \n"
- db "fever today!\n"
- db "One day, I'm going to inherit\n"
- db "the Legendary Cards!\n"
- db "What???\n"
- db "You already inherited the Cards?\n"
- db "You...\n"
- db "Stop Lying!!!",TX_END
+ text "I'm burning with Pok`mon "
+ line "fever today!"
+ line "One day, I'm going to inherit"
+ line "the Legendary Cards!"
+ line "What???"
+ line "You already inherited the Cards?"
+ line "You..."
+ line "Stop Lying!!!"
+ done
Text06a5: ; 50bc0 (14:4bc0)
- db TX_START,"This is the Fire Club, where guys\n"
- db "with a burning passion for Pok`mon \n"
- db "Trading Cards get together for \n"
- db "heated duels! Join the fiery fun!",TX_END
+ text "This is the Fire Club, where guys"
+ line "with a burning passion for Pok`mon "
+ line "Trading Cards get together for "
+ line "heated duels! Join the fiery fun!"
+ done
Text06a6: ; 50c49 (14:4c49)
- db TX_START,"Would you like to duel John?",TX_END
+ text "Would you like to duel John?"
+ done
Text06a7: ; 50c67 (14:4c67)
- db TX_START,"If you're a real man, you gotta\n"
- db "compete in a heated duel!",TX_END
+ text "If you're a real man, you gotta"
+ line "compete in a heated duel!"
+ done
Text06a8: ; 50ca2 (14:4ca2)
- db TX_START,"4 Prizes!\n"
- db "Let's heat it up!",TX_END
+ text "4 Prizes!"
+ line "Let's heat it up!"
+ done
Text06a9: ; 50cbf (14:4cbf)
- db TX_START,"Yeah! That was really Hot!\n"
- db "You're the greatest!\n"
- db "Here, let me give you this!\n"
- db "Let's heat it up again!",TX_END
+ text "Yeah! That was really Hot!"
+ line "You're the greatest!"
+ line "Here, let me give you this!"
+ line "Let's heat it up again!"
+ done
Text06aa: ; 50d24 (14:4d24)
- db TX_START,"Let's heat it up again!!!",TX_END
+ text "Let's heat it up again!!!"
+ done
Text06ab: ; 50d3f (14:4d3f)
- db TX_START,"I guess my deck was hotter than\n"
- db "yours this time!\n"
- db "Let's heat it up again!!!",TX_END
+ text "I guess my deck was hotter than"
+ line "yours this time!"
+ line "Let's heat it up again!!!"
+ done
Text06ac: ; 50d8b (14:4d8b)
- db TX_START,"Hey! Does everyone have the fever?\n"
- db "Do you have the fever?\n"
- db "If you have Pok`mon fever,\n"
- db "duel with me!!!",TX_END
+ text "Hey! Does everyone have the fever?"
+ line "Do you have the fever?"
+ line "If you have Pok`mon fever,"
+ line "duel with me!!!"
+ done
Text06ad: ; 50df1 (14:4df1)
- db TX_START,"Would you like to duel Adam?",TX_END
+ text "Would you like to duel Adam?"
+ done
Text06ae: ; 50e0f (14:4e0f)
- db TX_START,"Why are you being so cold?\n"
- db "Come on! Catch the fever!",TX_END
+ text "Why are you being so cold?"
+ line "Come on! Catch the fever!"
+ done
Text06af: ; 50e45 (14:4e45)
- db TX_START,"A single Match with 4 Prizes!\n"
- db "Come on, duel me!",TX_END
+ text "A single Match with 4 Prizes!"
+ line "Come on, duel me!"
+ done
Text06b0: ; 50e76 (14:4e76)
- db TX_START,"Whoa! I lost!!!\n"
- db "Here, this Booster Pack is yours!",TX_END
+ text "Whoa! I lost!!!"
+ line "Here, this Booster Pack is yours!"
+ done
Text06b1: ; 50ea9 (14:4ea9)
- db TX_START,"Let's duel again!\n"
- db "See ya!!!",TX_END
+ text "Let's duel again!"
+ line "See ya!!!"
+ done
Text06b2: ; 50ec6 (14:4ec6)
- db TX_START,"Yeah! I won!\n"
- db "Am I Hot or what!?!\n"
- db "Let's duel again!\n"
- db "See ya!!",TX_END
+ text "Yeah! I won!"
+ line "Am I Hot or what!?!"
+ line "Let's duel again!"
+ line "See ya!!"
+ done
Text06b3: ; 50f03 (14:4f03)
- db TX_START,"Come on, people, say Fire Pok`mon!\n"
- db "You! Come on, say Fire! \n"
- db "Fire Pok`mon! OK! Let's duel!!!",TX_END
+ text "Come on, people, say Fire Pok`mon!"
+ line "You! Come on, say Fire! "
+ line "Fire Pok`mon! OK! Let's duel!!!"
+ done
Text06b4: ; 50f60 (14:4f60)
- db TX_START,"Would you like to Duel Jonathan?",TX_END
+ text "Would you like to Duel Jonathan?"
+ done
Text06b5: ; 50f82 (14:4f82)
- db TX_START,"Dang! You're icy cold!\n"
- db "Come on! Say Fire Pok`mon!",TX_END
+ text "Dang! You're icy cold!"
+ line "Come on! Say Fire Pok`mon!"
+ done
Text06b6: ; 50fb5 (14:4fb5)
- db TX_START,"A 4-prize match!\n"
- db "Here we go! Fire Pok`mon!",TX_END
+ text "A 4-prize match!"
+ line "Here we go! Fire Pok`mon!"
+ done
Text06b7: ; 50fe1 (14:4fe1)
- db TX_START,"That was a great duel!\n"
- db "I want you to have this!",TX_END
+ text "That was a great duel!"
+ line "I want you to have this!"
+ done
Text06b8: ; 51012 (14:5012)
- db TX_START,"Let's duel again!\n"
- db "Come on, people, say Fire Pok`mon!",TX_END
+ text "Let's duel again!"
+ line "Come on, people, say Fire Pok`mon!"
+ done
Text06b9: ; 51048 (14:5048)
- db TX_START,"That was a great Duel!\n"
- db "Let's duel again! Fire Pok`mon!",TX_END
+ text "That was a great Duel!"
+ line "Let's duel again! Fire Pok`mon!"
+ done
Text06ba: ; 51080 (14:5080)
- db TX_START,"I am Ken, the Fire Club Master!\n"
- db "So, you are collecting Medals\n"
- db "to inherit the Legendary Cards?\n"
- db "What!?! You have almost no cards!\n"
- db "If you wish to duel me, go collect \n"
- db "more cards!",TX_END
+ text "I am Ken, the Fire Club Master!"
+ line "So, you are collecting Medals"
+ line "to inherit the Legendary Cards?"
+ line "What!?! You have almost no cards!"
+ line "If you wish to duel me, go collect "
+ line "more cards!"
+ done
Text06bb: ; 51131 (14:5131)
- db TX_START,"I am Ken, the Fire Club Master!\n"
- db "You still need to collect more\n"
- db "cards if you wish to inherit\n"
- db "the Legendary Pok`mon Cards!\n"
- db "If you wish to duel me, go collect \n"
- db "more cards!",TX_END
+ text "I am Ken, the Fire Club Master!"
+ line "You still need to collect more"
+ line "cards if you wish to inherit"
+ line "the Legendary Pok`mon Cards!"
+ line "If you wish to duel me, go collect "
+ line "more cards!"
+ done
Text06bc: ; 511db (14:51db)
- db TX_START,"I am Ken, the Fire Club Master!\n"
- db "So you are collecting Medals\n"
- db "to inherit the Legendary Cards?\n"
- db "You will need many cards in order\n"
- db "to inherit the Legendary Cards.\n"
- db "Hmmm...it seems you have \n"
- db "collected many cards!\n"
- db "Then let's begin our Duel!",TX_END
+ text "I am Ken, the Fire Club Master!"
+ line "So you are collecting Medals"
+ line "to inherit the Legendary Cards?"
+ line "You will need many cards in order"
+ line "to inherit the Legendary Cards."
+ line "Hmmm...it seems you have "
+ line "collected many cards!"
+ line "Then let's begin our Duel!"
+ done
Text06bd: ; 512c6 (14:52c6)
- db TX_START,"I am Ken, the Fire Club Master!\n"
- db "I see you have collected more cards!\n"
- db "Then let's begin our duel!",TX_END
+ text "I am Ken, the Fire Club Master!"
+ line "I see you have collected more cards!"
+ line "Then let's begin our duel!"
+ done
Text06be: ; 51327 (14:5327)
- db TX_START,"Would you like to duel Ken?",TX_END
+ text "Would you like to duel Ken?"
+ done
Text06bf: ; 51344 (14:5344)
- db TX_START,"Don't douse my burning \n"
- db "desire for competition!",TX_END
+ text "Don't douse my burning "
+ line "desire for competition!"
+ done
Text06c0: ; 51375 (14:5375)
- db TX_START,"We'll play with 6 Prizes!\n"
- db "If you win, I'll give you a Medal!\n"
- db "Come on!\n"
- db "Let's start the Duel!",TX_END
+ text "We'll play with 6 Prizes!"
+ line "If you win, I'll give you a Medal!"
+ line "Come on!"
+ line "Let's start the Duel!"
+ done
Text06c1: ; 513d2 (14:53d2)
- db TX_START,"That was a great Duel!\n"
- db "Here, let me give you this!!!",TX_END
+ text "That was a great Duel!"
+ line "Here, let me give you this!!!"
+ done
Text06c2: ; 51408 (14:5408)
- db TX_START,"With this, you're a little closer\n"
- db "to the Legendary Pok`mon Cards!\n"
- db "Here, take this, too!\n"
- db "I hope it will help you out!",TX_END
+ text "With this, you're a little closer"
+ line "to the Legendary Pok`mon Cards!"
+ line "Here, take this, too!"
+ line "I hope it will help you out!"
+ done
Text06c3: ; 5147e (14:547e)
- db TX_START,"Let's play a heated duel again!\n"
- db "See you later!!!",TX_END
+ text "Let's play a heated duel again!"
+ line "See you later!!!"
+ done
Text06c4: ; 514b0 (14:54b0)
- db TX_START,"Hmmm...That was no good.\n"
- db "It sure wasn't a hot duel.\n"
- db "I can't give you a Medal for a\n"
- db "lukewarm performance like that!!!",TX_END
+ text "Hmmm...That was no good."
+ line "It sure wasn't a hot duel."
+ line "I can't give you a Medal for a"
+ line "lukewarm performance like that!!!"
+ done
Text06c5: ; 51526 (14:5526)
- db TX_START,"Hmmm...That was a lukewarm \n"
- db "performance.\n"
- db "Next time we duel,\n"
- db "Let's heat it up a little more!",TX_END
+ text "Hmmm...That was a lukewarm "
+ line "performance."
+ line "Next time we duel,"
+ line "Let's heat it up a little more!"
+ done
Text06c6: ; 51583 (14:5583)
- db TX_START,"I am Ken, the Fire Club Master!\n"
- db "Let us play a heated Duel!",TX_END
+ text "I am Ken, the Fire Club Master!"
+ line "Let us play a heated Duel!"
+ done
Text06c7: ; 515bf (14:55bf)
- db TX_START,"A 1-match duel for 6 Prizes!\n"
- db "Let us start the Duel!",TX_END
+ text "A 1-match duel for 6 Prizes!"
+ line "Let us start the Duel!"
+ done
Text06c8: ; 515f4 (14:55f4)
- db TX_START,"Greetings.\n"
- db "Welcome to the Battle Center!\n"
- db "Would you like to duel a friend?",TX_END
+ text "Greetings."
+ line "Welcome to the Battle Center!"
+ line "Would you like to duel a friend?"
+ done
Text06c9: ; 5163f (14:563f)
- db TX_START,"Thank you.\n"
- db "Please come again.",TX_END
+ text "Thank you."
+ line "Please come again."
+ done
Text06ca: ; 5165e (14:565e)
- db TX_START,"Thank you for visiting\n"
- db "the Battle Center.",TX_END
+ text "Thank you for visiting"
+ line "the Battle Center."
+ done
Text06cb: ; 51689 (14:5689)
- db TX_START,"Congratulations!\n"
- db "You have won the duel!\n"
- db "Thank you.\n"
- db "Please come again.",TX_END
+ text "Congratulations!"
+ line "You have won the duel!"
+ line "Thank you."
+ line "Please come again."
+ done
Text06cc: ; 516d0 (14:56d0)
- db TX_START,"I'm very sorry...\n"
- db "Thank you for visiting\n"
- db "the Battle Center.\n"
- db "Please come again.",TX_END
+ text "I'm very sorry..."
+ line "Thank you for visiting"
+ line "the Battle Center."
+ line "Please come again."
+ done
Text06cd: ; 51720 (14:5720)
- db TX_START,"Greetings.\n"
- db "Welcome to the Gift Center!\n"
- db "What can I do for you?",TX_END
+ text "Greetings."
+ line "Welcome to the Gift Center!"
+ line "What can I do for you?"
+ done
Text06ce: ; 5175f (14:575f)
- db TX_START,"OK, \n"
- db "To ",TX_RAM2,".\n"
- db "Please write in your Diary before\n"
- db "the transaction.",TX_END
+ text "OK, "
+ line "To ",TX_RAM2,"."
+ line "Please write in your Diary before"
+ line "the transaction."
+ done
Text06cf: ; 5179e (14:579e)
- db TX_START,"Write in your diary?",TX_END
+ text "Write in your diary?"
+ done
Text06d0: ; 517b4 (14:57b4)
- db TX_START,"We can't complete the transaction\n"
- db "unless you write in your Diary.",TX_END
+ text "We can't complete the transaction"
+ line "unless you write in your Diary."
+ done
Text06d1: ; 517f7 (14:57f7)
- db TX_START,TX_RAM1,"\n"
- db "wrote in the Diary.",TX_END
+ text TX_RAM1,""
+ line "wrote in the Diary."
+ done
Text06d2: ; 5180e (14:580e)
- db TX_START,"Thank you.\n"
- db "Please come again.",TX_END
+ text "Thank you."
+ line "Please come again."
+ done
Text06d3: ; 5182d (14:582d)
- db TX_START,"You sent a card to\n"
- db TX_RAM2,"!\n"
- db "Thank you.\n"
- db "Please come again.",TX_END
+ text "You sent a card to"
+ line TX_RAM2,"!"
+ line "Thank you."
+ line "Please come again."
+ done
Text06d4: ; 51862 (14:5862)
- db TX_START,"You sent the configuration for\n"
- db "the ",TX_RAM2," Deck!\n"
- db "Thank you.\n"
- db "Please come again.",TX_END
+ text "You sent the configuration for"
+ line "the ",TX_RAM2," Deck!"
+ line "Thank you."
+ line "Please come again."
+ done
Text06d5: ; 518ac (14:58ac)
- db TX_START,"You received the configuration for\n"
- db "the ",TX_RAM2," Deck!\n"
- db "Thank you.\n"
- db "Please come again.",TX_END
+ text "You received the configuration for"
+ line "the ",TX_RAM2," Deck!"
+ line "Thank you."
+ line "Please come again."
+ done
Text06d6: ; 518fa (14:58fa)
- db TX_START,"Welcome to the Gift Center!\n"
- db "Here you can give or receive cards\n"
- db "or deck configurations via the\n"
- db "Infrared Link.\n"
- db "Unfortunately, our service is\n"
- db "only available for the\n"
- db "Game Boy Color.\n\n"
- db "Please enjoy our service with\n"
- db "a Game Boy Color.",TX_END
+ text "Welcome to the Gift Center!"
+ line "Here you can give or receive cards"
+ line "or deck configurations via the"
+ line "Infrared Link."
+ line "Unfortunately, our service is"
+ line "only available for the"
+ line "Game Boy Color.\n"
+ line "Please enjoy our service with"
+ line "a Game Boy Color."
+ done
Text06d7: ; 519de (14:59de)
- db TX_START,"Greetings.\n"
- db "Welcome to the Grass Club.\n"
- db "This Club is for girls who love\n"
- db "to grow flowers.\n"
- db "The Pok`mon cards used here are \n"
- db "also beautiful flowers.",TX_END
+ text "Greetings."
+ line "Welcome to the Grass Club."
+ line "This Club is for girls who love"
+ line "to grow flowers."
+ line "The Pok`mon cards used here are "
+ line "also beautiful flowers."
+ done
Text06d8: ; 51a6f (14:5a6f)
- db TX_START,"All the members of this Club\n"
- db "are girls.\n"
- db "But I can't beat girls who\n"
- db "are this tough!\n"
- db "Huh? You must be ",TX_RAM1,".\n"
- db "Mitch told me all about you.\n"
- db "Beating you will be much better\n"
- db "than losing to the girls!",TX_END
+ text "All the members of this Club"
+ line "are girls."
+ line "But I can't beat girls who"
+ line "are this tough!"
+ line "Huh? You must be ",TX_RAM1,"."
+ line "Mitch told me all about you."
+ line "Beating you will be much better"
+ line "than losing to the girls!"
+ done
Text06d9: ; 51b2e (14:5b2e)
- db TX_START,"Hi, ",TX_RAM1,".\n"
- db "Would you duel me?",TX_END
+ text "Hi, ",TX_RAM1,"."
+ line "Would you duel me?"
+ done
Text06da: ; 51b49 (14:5b49)
- db TX_START,"Would you like to duel Michael?",TX_END
+ text "Would you like to duel Michael?"
+ done
Text06db: ; 51b6a (14:5b6a)
- db TX_START,"I'll be here a while, so come\n"
- db "see me if you change your mind.",TX_END
+ text "I'll be here a while, so come"
+ line "see me if you change your mind."
+ done
Text06dc: ; 51ba9 (14:5ba9)
- db TX_START,"OK! A single Match for 4 prizes!\n"
- db "Let's begin!",TX_END
+ text "OK! A single Match for 4 prizes!"
+ line "Let's begin!"
+ done
Text06dd: ; 51bd8 (14:5bd8)
- db TX_START,"Tch! I lost!\n"
- db "I'll go back to my Club and train!\n"
- db "Oops! Before I go...\n"
- db "Since it's the rule, take this!",TX_END
+ text "Tch! I lost!"
+ line "I'll go back to my Club and train!"
+ line "Oops! Before I go..."
+ line "Since it's the rule, take this!"
+ done
Text06de: ; 51c3e (14:5c3e)
- db TX_START,"I'm heading back to the Fighting \n"
- db "Club. Bye! See you again.",TX_END
+ text "I'm heading back to the Fighting "
+ line "Club. Bye! See you again."
+ done
Text06df: ; 51c7b (14:5c7b)
- db TX_START,"You're still no match for me!\n"
- db "I'll be here, so come back after\n"
- db "you train more!",TX_END
+ text "You're still no match for me!"
+ line "I'll be here, so come back after"
+ line "you train more!"
+ done
Text06e0: ; 51ccb (14:5ccb)
- db TX_START,"Taking care of plants is hard work.\n"
- db "Let me rest for a while...\n"
- db "Who? The Master of the Grass Club?\n"
- db "Do you mean Nikki? Nikki's out. \n"
- db "I need a break.\n"
- db "Do you want to play the Pok`mon \n"
- db "Trading Card Game with me?",TX_END
+ text "Taking care of plants is hard work."
+ line "Let me rest for a while..."
+ line "Who? The Master of the Grass Club?"
+ line "Do you mean Nikki? Nikki's out. "
+ line "I need a break."
+ line "Do you want to play the Pok`mon "
+ line "Trading Card Game with me?"
+ done
Text06e1: ; 51d9b (14:5d9b)
- db TX_START,"Caring for plants is hard work.\n"
- db "You think I'm slacking off?\n"
- db "How rude! I'm only taking a short \n"
- db "break! \n"
- db "You need a gentle heart\n"
- db "to take care of plants!\n"
- db "Say, would you play the Pok`mon\n"
- db "Trading Card Game with me?",TX_END
+ text "Caring for plants is hard work."
+ line "You think I'm slacking off?"
+ line "How rude! I'm only taking a short "
+ line "break! "
+ line "You need a gentle heart"
+ line "to take care of plants!"
+ line "Say, would you play the Pok`mon"
+ line "Trading Card Game with me?"
+ done
Text06e2: ; 51e6e (14:5e6e)
- db TX_START,"Would you like to duel Brittany?",TX_END
+ text "Would you like to duel Brittany?"
+ done
Text06e3: ; 51e90 (14:5e90)
- db TX_START,"How boring...",TX_END
+ text "How boring..."
+ done
Text06e4: ; 51e9f (14:5e9f)
- db TX_START,"OK! A single Match with 4 Prizes.\n"
- db "Let's start!",TX_END
+ text "OK! A single Match with 4 Prizes."
+ line "Let's start!"
+ done
Text06e5: ; 51ecf (14:5ecf)
- db TX_START,"How could I lose?\n"
- db "How!?!",TX_END
+ text "How could I lose?"
+ line "How!?!"
+ done
Text06e6: ; 51ee9 (14:5ee9)
- db TX_START,"Humph! It's not much of a break\n"
- db "if I lose.",TX_END
+ text "Humph! It's not much of a break"
+ line "if I lose."
+ done
Text06e7: ; 51f15 (14:5f15)
- db TX_START,"Humph! Whenever I lose, I \n"
- db "get irritated me!",TX_END
+ text "Humph! Whenever I lose, I "
+ line "get irritated me!"
+ done
Text06e8: ; 51f43 (14:5f43)
- db TX_START,"Oh, by the way, Nikki is visiting\n"
- db "ISHIHARA's house.\n"
- db "You'll probably find her there.",TX_END
+ text "Oh, by the way, Nikki is visiting"
+ line "ISHIHARA's house."
+ line "You'll probably find her there."
+ done
Text06e9: ; 51f98 (14:5f98)
- db TX_START,"Thanks!\n"
- db "That was a nice little break!",TX_END
+ text "Thanks!"
+ line "That was a nice little break!"
+ done
Text06ea: ; 51fbf (14:5fbf)
- db TX_START,"Thanks for the card!\n"
- db "I'll take good care of it!",TX_END
+ text "Thanks for the card!"
+ line "I'll take good care of it!"
+ done
Text06eb: ; 51ff0 (14:5ff0)
- db TX_START,"Oddish, Oddish,\n"
- db "Roly-Poly Oddish!\n"
- db "Oddish is so Roly-Poly \n"
- db "and so cute!\n"
- db "I'll give you this Vileplume\n"
- db "if you give me an Oddish!",TX_END
+ text "Oddish, Oddish,"
+ line "Roly-Poly Oddish!"
+ line "Oddish is so Roly-Poly "
+ line "and so cute!"
+ line "I'll give you this Vileplume"
+ line "if you give me an Oddish!"
+ done
Text06ec: ; 5206f (14:606f)
- db TX_START,"Hi!\n"
- db "Did you bring me an Oddish?\n"
- db "Will you trade your Oddish\n"
- db "for my Vileplume?",TX_END
+ text "Hi!"
+ line "Did you bring me an Oddish?"
+ line "Will you trade your Oddish"
+ line "for my Vileplume?"
+ done
Text06ed: ; 520bd (14:60bd)
- db TX_START,"Would you like to trade?",TX_END
+ text "Would you like to trade?"
+ done
Text06ee: ; 520d7 (14:60d7)
- db TX_START,"I want an Oddish!\n"
- db "A Roly-Poly Oddish!",TX_END
+ text "I want an Oddish!"
+ line "A Roly-Poly Oddish!"
+ done
Text06ef: ; 520fe (14:60fe)
- db TX_START,"Excuse me...\n"
- db "Do you have an Oddish...",TX_END
+ text "Excuse me..."
+ line "Do you have an Oddish..."
+ done
Text06f0: ; 52125 (14:6125)
- db TX_START,"Then let's trade!\n"
- db "Vileplume for an Oddish!\n"
- db "Oops!\n"
- db "Your Oddish is in your Deck!\n"
- db "I can't take that!\n"
- db "Please trade me some other time.",TX_END
+ text "Then let's trade!"
+ line "Vileplume for an Oddish!"
+ line "Oops!"
+ line "Your Oddish is in your Deck!"
+ line "I can't take that!"
+ line "Please trade me some other time."
+ done
Text06f1: ; 521a8 (14:61a8)
- db TX_START,"OK then, let's trade!\n"
- db "Vileplume for an Oddish.",TX_END
+ text "OK then, let's trade!"
+ line "Vileplume for an Oddish."
+ done
Text06f2: ; 521d8 (14:61d8)
- db TX_START,TX_RAM1," traded an Oddish\n"
- db "for a Vileplume!",TX_END
+ text TX_RAM1," traded an Oddish"
+ line "for a Vileplume!"
+ done
Text06f3: ; 521fd (14:61fd)
- db TX_START,"Thanks for the card!\n"
- db "I'll take good care of it!",TX_END
+ text "Thanks for the card!"
+ line "I'll take good care of it!"
+ done
Text06f4: ; 5222e (14:622e)
- db TX_START,"Pika Pika\n"
- db "Pika Pika Pikachu!\n"
- db "Pikachu's cute, but I prefer\n"
- db "Clefairy!\n"
- db "I'll give you this Pikachu\n"
- db "if you give me a Clefairy!",TX_END
+ text "Pika Pika"
+ line "Pika Pika Pikachu!"
+ line "Pikachu's cute, but I prefer"
+ line "Clefairy!"
+ line "I'll give you this Pikachu"
+ line "if you give me a Clefairy!"
+ done
Text06f5: ; 522a9 (14:62a9)
- db TX_START,"Hi!\n"
- db "Did you bring me a Clefairy?\n"
- db "Would you trade your Clefairy\n"
- db "for my Pikachu?",TX_END
+ text "Hi!"
+ line "Did you bring me a Clefairy?"
+ line "Would you trade your Clefairy"
+ line "for my Pikachu?"
+ done
Text06f6: ; 522f9 (14:62f9)
- db TX_START,"I want a Clefairy!\n"
- db "Fairy, fairy, fairy!",TX_END
+ text "I want a Clefairy!"
+ line "Fairy, fairy, fairy!"
+ done
Text06f7: ; 52322 (14:6322)
- db TX_START,"Hi...\n"
- db "Do you have a Clefairy...",TX_END
+ text "Hi..."
+ line "Do you have a Clefairy..."
+ done
Text06f8: ; 52343 (14:6343)
- db TX_START,"Then let's trade!\n"
- db "Pikachu for a Clefairy!\n"
- db "Oops!\n"
- db "Your Clefairy is in your deck!\n"
- db "I can't take that!\n"
- db "Please trade me another time!",TX_END
+ text "Then let's trade!"
+ line "Pikachu for a Clefairy!"
+ line "Oops!"
+ line "Your Clefairy is in your deck!"
+ line "I can't take that!"
+ line "Please trade me another time!"
+ done
Text06f9: ; 523c4 (14:63c4)
- db TX_START,"OK then let's trade!\n"
- db "Pikachu for Clefairy.",TX_END
+ text "OK then let's trade!"
+ line "Pikachu for Clefairy."
+ done
Text06fa: ; 523f0 (14:63f0)
- db TX_START,TX_RAM1," traded a Clefairy\n"
- db "for a Pikachu!",TX_END
+ text TX_RAM1," traded a Clefairy"
+ line "for a Pikachu!"
+ done
Text06fb: ; 52414 (14:6414)
- db TX_START,"Charizard! Charizard!\n"
- db "Charizard, light my fire!\n"
- db "Blastoise is cool,\n"
- db "But I prefer Charizard!\n"
- db "I'll give you this Blastoise\n"
- db "if you give me a Charizard!",TX_END
+ text "Charizard! Charizard!"
+ line "Charizard, light my fire!"
+ line "Blastoise is cool,"
+ line "But I prefer Charizard!"
+ line "I'll give you this Blastoise"
+ line "if you give me a Charizard!"
+ done
Text06fc: ; 524a9 (14:64a9)
- db TX_START,"Hi!\n"
- db "Did you bring me a Charizard?\n"
- db "Would you trade your Charizard\n"
- db "for my Blastoise?",TX_END
+ text "Hi!"
+ line "Did you bring me a Charizard?"
+ line "Would you trade your Charizard"
+ line "for my Blastoise?"
+ done
Text06fd: ; 524fd (14:64fd)
- db TX_START,"I want a Charizard!\n"
- db "Charizard! Charizard!",TX_END
+ text "I want a Charizard!"
+ line "Charizard! Charizard!"
+ done
Text06fe: ; 52528 (14:6528)
- db TX_START,"Excuse me...\n"
- db "Do you have a Charizard...",TX_END
+ text "Excuse me..."
+ line "Do you have a Charizard..."
+ done
Text06ff: ; 52551 (14:6551)
- db TX_START,"Then let's trade!\n"
- db "Blastoise for a Charizard.\n"
- db "Oops!\n"
- db "Your Charizard is in your Deck!\n"
- db "I can't take that.\n"
- db "Please trade me some other time!",TX_END
+ text "Then let's trade!"
+ line "Blastoise for a Charizard."
+ line "Oops!"
+ line "Your Charizard is in your Deck!"
+ line "I can't take that."
+ line "Please trade me some other time!"
+ done
Text0700: ; 525d9 (14:65d9)
- db TX_START,"OK then, let's trade!\n"
- db "Blastoise for a Charizard!",TX_END
+ text "OK then, let's trade!"
+ line "Blastoise for a Charizard!"
+ done
Text0701: ; 5260b (14:660b)
- db TX_START,TX_RAM1," traded a Charizard\n"
- db "for a Blastoise!",TX_END
+ text TX_RAM1," traded a Charizard"
+ line "for a Blastoise!"
+ done
Text0702: ; 52632 (14:6632)
- db TX_START,"I really love\n"
- db "this Duel Hall.\n"
- db "There's so much greenery and \n"
- db "so many beautiful flowers.",TX_END
+ text "I really love"
+ line "this Duel Hall."
+ line "There's so much greenery and "
+ line "so many beautiful flowers."
+ done
Text0703: ; 5268a (14:668a)
- db TX_START,"Only girls are allowed to join\n"
- db "the Grass Club,\n"
- db "But we're not accepting \n"
- db "applications now, anyway. Sorry!",TX_END
+ text "Only girls are allowed to join"
+ line "the Grass Club,"
+ line "But we're not accepting "
+ line "applications now, anyway. Sorry!"
+ done
Text0704: ; 526f4 (14:66f4)
- db TX_START,"Are you looking for Nikki,\n"
- db "the Grass Club Master?\n"
- db "I don't think she's here\n"
- db "at the Club at the moment.\n"
- db "Would you like to take care\n"
- db "of the plants?\n"
- db "We could Duel with cards\n"
- db "if you prefer...",TX_END
+ text "Are you looking for Nikki,"
+ line "the Grass Club Master?"
+ line "I don't think she's here"
+ line "at the Club at the moment."
+ line "Would you like to take care"
+ line "of the plants?"
+ line "We could Duel with cards"
+ line "if you prefer..."
+ done
Text0705: ; 527b0 (14:67b0)
- db TX_START,"Hi, would you like to take care of\n"
- db "the plants with me?\n"
- db "We could Duel with cards\n"
- db "if you prefer...",TX_END
+ text "Hi, would you like to take care of"
+ line "the plants with me?"
+ line "We could Duel with cards"
+ line "if you prefer..."
+ done
Text0706: ; 52812 (14:6812)
- db TX_START,"Would you like to Duel Kristin?",TX_END
+ text "Would you like to Duel Kristin?"
+ done
Text0707: ; 52833 (14:6833)
- db TX_START,"If you'll excuse me,\n"
- db "I have plants to look after!",TX_END
+ text "If you'll excuse me,"
+ line "I have plants to look after!"
+ done
Text0708: ; 52866 (14:6866)
- db TX_START,"We'll play a single Match\n"
- db "with 4 Prizes.\n"
- db "Don't take me lightly\n"
- db "just because I'm a girl!",TX_END
+ text "We'll play a single Match"
+ line "with 4 Prizes."
+ line "Don't take me lightly"
+ line "just because I'm a girl!"
+ done
Text0709: ; 528bf (14:68bf)
- db TX_START,"Oh! I lost.\n"
- db "Well, I guess this is for you...",TX_END
+ text "Oh! I lost."
+ line "Well, I guess this is for you..."
+ done
Text070a: ; 528ed (14:68ed)
- db TX_START,"The Pok`mon Trading Card Game is \n"
- db "fun, but so is taking care of trees!",TX_END
+ text "The Pok`mon Trading Card Game is "
+ line "fun, but so is taking care of trees!"
+ done
Text070b: ; 52935 (14:6935)
- db TX_START,"I believe Nikki is at \n"
- db "ISHIHARA's house.\n"
- db "Maybe you should go meet her there,\n"
- db "since she's late getting back.",TX_END
+ text "I believe Nikki is at "
+ line "ISHIHARA's house."
+ line "Maybe you should go meet her there,"
+ line "since she's late getting back."
+ done
Text070c: ; 529a2 (14:69a2)
- db TX_START,"Oh! I won.\n"
- db "I told you not to take me lightly.\n"
- db "Now, if you'll excuse me,\n"
- db "I have plants to look after!",TX_END
+ text "Oh! I won."
+ line "I told you not to take me lightly."
+ line "Now, if you'll excuse me,"
+ line "I have plants to look after!"
+ done
Text070d: ; 52a08 (14:6a08)
- db TX_START,"Master Nikki is out right now.\n"
- db "Where'd she go? That's a secret...\n"
- db "... Hmmm, let me see...\n"
- db "If you defeat...\n"
- db "3 members of the Grass Club,\n"
- db "I'll tell you where she is.\n"
- db "So, how about it?",TX_END
+ text "Master Nikki is out right now."
+ line "Where'd she go? That's a secret..."
+ line "... Hmmm, let me see..."
+ line "If you defeat..."
+ line "3 members of the Grass Club,"
+ line "I'll tell you where she is."
+ line "So, how about it?"
+ done
Text070e: ; 52abf (14:6abf)
- db TX_START,"Oh!\n"
- db "It's you again.\n"
- db "If you don't mind,\n"
- db "would you duel with me?",TX_END
+ text "Oh!"
+ line "It's you again."
+ line "If you don't mind,"
+ line "would you duel with me?"
+ done
Text070f: ; 52aff (14:6aff)
- db TX_START,"Would you like to duel Heather?",TX_END
+ text "Would you like to duel Heather?"
+ done
Text0710: ; 52b20 (14:6b20)
- db TX_START,"I'll be glad to duel you\n"
- db "any time you like.",TX_END
+ text "I'll be glad to duel you"
+ line "any time you like."
+ done
Text0711: ; 52b4d (14:6b4d)
- db TX_START,"Are 4 Prizes OK?\n"
- db "Let's begin!",TX_END
+ text "Are 4 Prizes OK?"
+ line "Let's begin!"
+ done
Text0712: ; 52b6c (14:6b6c)
- db TX_START,"I can't believe\n"
- db "I could lose...",TX_END
+ text "I can't believe"
+ line "I could lose..."
+ done
Text0713: ; 52b8d (14:6b8d)
- db TX_START,"I can't believe\n"
- db "I would lose again...",TX_END
+ text "I can't believe"
+ line "I would lose again..."
+ done
Text0714: ; 52bb4 (14:6bb4)
- db TX_START,"I need to practice more...",TX_END
+ text "I need to practice more..."
+ done
Text0715: ; 52bd0 (14:6bd0)
- db TX_START,"Nikki is visiting\n"
- db "ISHIHARA.\n"
- db "Why don't you go see her\n"
- db "at ISHIHARA's house.",TX_END
+ text "Nikki is visiting"
+ line "ISHIHARA."
+ line "Why don't you go see her"
+ line "at ISHIHARA's house."
+ done
Text0716: ; 52c1b (14:6c1b)
- db TX_START,"Well, that wasn't much of a Duel!\n"
- db "I'll be glad to duel you\n"
- db "any time you like.",TX_END
+ text "Well, that wasn't much of a Duel!"
+ line "I'll be glad to duel you"
+ line "any time you like."
+ done
Text0717: ; 52c6a (14:6c6a)
- db TX_START,"I wonder if your last win \n"
- db "was just luck?\n"
- db "I will be glad to Duel you\n"
- db "any time you like.",TX_END
+ text "I wonder if your last win "
+ line "was just luck?"
+ line "I will be glad to Duel you"
+ line "any time you like."
+ done
Text0718: ; 52cc3 (14:6cc3)
- db TX_START,"I'm Nikki, the Master of the\n"
- db "Grass Club.\n"
- db "I'm sorry I kept you waiting.\n"
- db "Shall we duel?",TX_END
+ text "I'm Nikki, the Master of the"
+ line "Grass Club."
+ line "I'm sorry I kept you waiting."
+ line "Shall we duel?"
+ done
Text0719: ; 52d1a (14:6d1a)
- db TX_START,"Hello, ",TX_RAM1,".\n"
- db "Did you come for a Duel?",TX_END
+ text "Hello, ",TX_RAM1,"."
+ line "Did you come for a Duel?"
+ done
Text071a: ; 52d3e (14:6d3e)
- db TX_START,"Would you like to duel Nikki?",TX_END
+ text "Would you like to duel Nikki?"
+ done
Text071b: ; 52d5d (14:6d5d)
- db TX_START,"Oh...You do not wish to duel?\n"
- db "I'll be here at the Club for \n"
- db "a while, so please come by \n"
- db "any time you like.",TX_END
+ text "Oh...You do not wish to duel?"
+ line "I'll be here at the Club for "
+ line "a while, so please come by "
+ line "any time you like."
+ done
Text071c: ; 52dc9 (14:6dc9)
- db TX_START,"Then why don't you stop and \n"
- db "gaze at our flowers for a while.\n"
- db "Looking at beautiful flowers\n"
- db "makes you feel so serene.",TX_END
+ text "Then why don't you stop and "
+ line "gaze at our flowers for a while."
+ line "Looking at beautiful flowers"
+ line "makes you feel so serene."
+ done
Text071d: ; 52e3f (14:6e3f)
- db TX_START,"Shall we play with 6 Prizes?\n"
- db "Please go easy on me.",TX_END
+ text "Shall we play with 6 Prizes?"
+ line "Please go easy on me."
+ done
Text071e: ; 52e73 (14:6e73)
- db TX_START,"We'll play with 6 Prizes, as usual.\n"
- db "Please go easy on me.",TX_END
+ text "We'll play with 6 Prizes, as usual."
+ line "Please go easy on me."
+ done
Text071f: ; 52eae (14:6eae)
- db TX_START,"Oh, no! I lost!\n"
- db "Well, you truly are skilled.\n"
- db "Maybe one day you will inherit\n"
- db "the Legendary Pok`mon Cards.\n"
- db "Please allow me to give you\n"
- db "this Grass Medal.",TX_END
+ text "Oh, no! I lost!"
+ line "Well, you truly are skilled."
+ line "Maybe one day you will inherit"
+ line "the Legendary Pok`mon Cards."
+ line "Please allow me to give you"
+ line "this Grass Medal."
+ done
Text0720: ; 52f46 (14:6f46)
- db TX_START,"Oh, no!\n"
- db "How could I lose?\n"
- db "Please allow me to give you\n"
- db "this Booster Pack.",TX_END
+ text "Oh, no!"
+ line "How could I lose?"
+ line "Please allow me to give you"
+ line "this Booster Pack."
+ done
Text0721: ; 52f90 (14:6f90)
- db TX_START,"Please\n"
- db "take this, too.",TX_END
+ text "Please"
+ line "take this, too."
+ done
Text0722: ; 52fa8 (14:6fa8)
- db TX_START,"My duel with you was...\n"
- db "quite fun!\n"
- db "Please allow me\n"
- db "to duel you again!",TX_END
+ text "My duel with you was..."
+ line "quite fun!"
+ line "Please allow me"
+ line "to duel you again!"
+ done
Text0723: ; 52fef (14:6fef)
- db TX_START,"I am Nikki, the Grass Club \n"
- db "Master. What? You were looking \n"
- db "for me? Oh my...\n"
- db "I'm very sorry to keep you waiting.\n"
- db "I was doing a little research here.\n"
- db "I assume you would like to Duel?\n"
- db "I only Duel at the Club.\n"
- db "I'm sorry, but could you meet me\n"
- db "at the Grass Club?\n"
- db "I will head back to the Grass Club\n"
- db "and wait for you there.",TX_END
+ text "I am Nikki, the Grass Club "
+ line "Master. What? You were looking "
+ line "for me? Oh my..."
+ line "I'm very sorry to keep you waiting."
+ line "I was doing a little research here."
+ line "I assume you would like to Duel?"
+ line "I only Duel at the Club."
+ line "I'm sorry, but could you meet me"
+ line "at the Grass Club?"
+ line "I will head back to the Grass Club"
+ line "and wait for you there."
+ done
Text0724: ; 5312e (14:712e)
- db TX_START,"Thank you very much, ISHIHARA.\n"
- db "Your books were very helpful!\n"
- db "You are indeed the Number 1\n"
- db "Pok`mon Trading Card Collector.",TX_END
+ text "Thank you very much, ISHIHARA."
+ line "Your books were very helpful!"
+ line "You are indeed the Number 1"
+ line "Pok`mon Trading Card Collector."
+ done
Text0725: ; 531a8 (14:71a8)
- db TX_START,"Oh, no!\n"
- db "You give me too much credit...\n"
- db "If you need to research anything,\n"
- db "please come see me again!",TX_END
+ text "Oh, no!"
+ line "You give me too much credit..."
+ line "If you need to research anything,"
+ line "please come see me again!"
+ done
Text0726: ; 5320c (14:720c)
- db TX_START,"Thank you very much, ISHIHARA.\n"
- db "If you will excuse me...",TX_END
+ text "Thank you very much, ISHIHARA."
+ line "If you will excuse me..."
+ done
Text0727: ; 53245 (14:7245)
- db TX_START,"Hello, nice to meet you.\n"
- db "I'm ISHIHARA.\n"
- db "I'm a Pok`mon Card Collector.\n"
- db "I love collecting cards.\n"
- db "I see you also love\n"
- db "Pok`mon Cards.\n"
- db "Please come see me again.\n"
- db "We must trade some sometime.\n"
- db "OH!\n"
- db "If you're playing with the cards,\n"
- db "Please read some of the books here.\n"
- db "I believe they will be helpful.",TX_END
+ text "Hello, nice to meet you."
+ line "I'm ISHIHARA."
+ line "I'm a Pok`mon Card Collector."
+ line "I love collecting cards."
+ line "I see you also love"
+ line "Pok`mon Cards."
+ line "Please come see me again."
+ line "We must trade some sometime."
+ line "OH!"
+ line "If you're playing with the cards,"
+ line "Please read some of the books here."
+ line "I believe they will be helpful."
+ done
Text0728: ; 53368 (14:7368)
- db TX_START,"Hello, ",TX_RAM1,".\n"
- db "Welcome.\n"
- db "There aren't any cards I want \n"
- db "or can trade at the moment.\n"
- db "Let's trade some other time.\n"
- db "If you like, please feel free to\n"
- db "read some of the books I wrote.\n"
- db "I believe they will be helpful!",TX_END
+ text "Hello, ",TX_RAM1,"."
+ line "Welcome."
+ line "There aren't any cards I want "
+ line "or can trade at the moment."
+ line "Let's trade some other time."
+ line "If you like, please feel free to"
+ line "read some of the books I wrote."
+ line "I believe they will be helpful!"
+ done
Text0729: ; 53435 (14:7435)
- db TX_START,"Hello, ",TX_RAM1,".\n"
- db "I guess you're here because you\n"
- db "heard the rumor that I'm looking\n"
- db "for a Clefable...\n"
- db "I'm thinking about trading\n"
- db "my Surfing Pikachu for it.\n"
- db "Do you have a Clefable?",TX_END
+ text "Hello, ",TX_RAM1,"."
+ line "I guess you're here because you"
+ line "heard the rumor that I'm looking"
+ line "for a Clefable..."
+ line "I'm thinking about trading"
+ line "my Surfing Pikachu for it."
+ line "Do you have a Clefable?"
+ done
Text072a: ; 534e1 (14:74e1)
- db TX_START,"Hello, ",TX_RAM1,".\n"
- db "Are you enjoying the \n"
- db "Pok`mon Trading Card Game?\n"
- db "By the way, I'm looking for a \n"
- db "Clefable...\n"
- db "I'm thinking about trading\n"
- db "my Surfing Pikachu for it.\n"
- db "Do you have a Clefable?",TX_END
+ text "Hello, ",TX_RAM1,"."
+ line "Are you enjoying the "
+ line "Pok`mon Trading Card Game?"
+ line "By the way, I'm looking for a "
+ line "Clefable..."
+ line "I'm thinking about trading"
+ line "my Surfing Pikachu for it."
+ line "Do you have a Clefable?"
+ done
Text072b: ; 53596 (14:7596)
- db TX_START,"Would you like to trade cards?",TX_END
+ text "Would you like to trade cards?"
+ done
Text072c: ; 535b6 (14:75b6)
- db TX_START,"Alright.\n"
- db "I understand...\n"
- db "Please trade with me\n"
- db "some other time...",TX_END
+ text "Alright."
+ line "I understand..."
+ line "Please trade with me"
+ line "some other time..."
+ done
Text072d: ; 535f8 (14:75f8)
- db TX_START,"I appreciate your interest,\n"
- db "but you don't own that card.\n"
- db "Please trade with me\n"
- db "some other time...",TX_END
+ text "I appreciate your interest,"
+ line "but you don't own that card."
+ line "Please trade with me"
+ line "some other time..."
+ done
Text072e: ; 5365a (14:765a)
- db TX_START,"Hmm, I see all the Clefable cards \n"
- db "you own are in your Deck.\n"
- db "I can't very well take a card\n"
- db "you are using in duels.\n"
- db "Please trade with me\n"
- db "some other time...",TX_END
+ text "Hmm, I see all the Clefable cards "
+ line "you own are in your Deck."
+ line "I can't very well take a card"
+ line "you are using in duels."
+ line "Please trade with me"
+ line "some other time..."
+ done
Text072f: ; 536f6 (14:76f6)
- db TX_START,"Oh wonderful!\n"
- db "Then without delay...",TX_END
+ text "Oh wonderful!"
+ line "Then without delay..."
+ done
Text0730: ; 5371b (14:771b)
- db TX_START,TX_RAM1," traded a Clefable\n"
- db "for a Surfing Pikachu!",TX_END
+ text TX_RAM1," traded a Clefable"
+ line "for a Surfing Pikachu!"
+ done
Text0731: ; 53747 (14:7747)
- db TX_START,"Thank you for this Clefable.\n"
- db "You've been a great help!",TX_END
+ text "Thank you for this Clefable."
+ line "You've been a great help!"
+ done
Text0732: ; 5377f (14:777f)
- db TX_START,"Hello, ",TX_RAM1,".\n"
- db "I suppose you're here because you\n"
- db "heard that I was looking for\n"
- db "a Ditto this time...\n"
- db "I'm thinking about trading\n"
- db "my Flying Pikachu for one.\n"
- db "Do you have a Ditto?",TX_END
+ text "Hello, ",TX_RAM1,"."
+ line "I suppose you're here because you"
+ line "heard that I was looking for"
+ line "a Ditto this time..."
+ line "I'm thinking about trading"
+ line "my Flying Pikachu for one."
+ line "Do you have a Ditto?"
+ done
Text0733: ; 53829 (14:7829)
- db TX_START,"Hello, ",TX_RAM1,". \n"
- db "Are you enjoying the\n"
- db "Pok`mon Trading Card Game?\n"
- db "I'm looking for a Ditto\n"
- db "this time...\n"
- db "I'm thinking about trading\n"
- db "my Flying Pikachu for one.\n"
- db "Do you have a Ditto?",TX_END
+ text "Hello, ",TX_RAM1,". "
+ line "Are you enjoying the"
+ line "Pok`mon Trading Card Game?"
+ line "I'm looking for a Ditto"
+ line "this time..."
+ line "I'm thinking about trading"
+ line "my Flying Pikachu for one."
+ line "Do you have a Ditto?"
+ done
Text0734: ; 538d5 (14:78d5)
- db TX_START,"Hmmm...\n"
- db "I see you don't have a Ditto card.\n"
- db "I will only trade my\n"
- db "Flying Pikachu for a Ditto.\n"
- db "Please trade with me\n"
- db "some other time...",TX_END
+ text "Hmmm..."
+ line "I see you don't have a Ditto card."
+ line "I will only trade my"
+ line "Flying Pikachu for a Ditto."
+ line "Please trade with me"
+ line "some other time..."
+ done
Text0735: ; 5395a (14:795a)
- db TX_START,"Hmmm...I see all your Ditto cards\n"
- db "are in your Deck.\n"
- db "I can't very well take a card\n"
- db "you are using in duels.\n"
- db "Please trade with me\n"
- db "some other time...",TX_END
+ text "Hmmm...I see all your Ditto cards"
+ line "are in your Deck."
+ line "I can't very well take a card"
+ line "you are using in duels."
+ line "Please trade with me"
+ line "some other time..."
+ done
Text0736: ; 539ed (14:79ed)
- db TX_START,TX_RAM1," traded a Ditto\n"
- db "for a Flying Pikachu!",TX_END
+ text TX_RAM1," traded a Ditto"
+ line "for a Flying Pikachu!"
+ done
Text0737: ; 53a15 (14:7a15)
- db TX_START,"Thank you for this Ditto.\n"
- db "You've been a great help!",TX_END
+ text "Thank you for this Ditto."
+ line "You've been a great help!"
+ done
Text0738: ; 53a4a (14:7a4a)
- db TX_START,"Hello, ",TX_RAM1,".\n"
- db "You're really current on the news!\n"
- db "I'm looking for a Chansey this \n"
- db "time! I'm thinking about trading\n"
- db "my Surfing Pikachu for it.\n"
- db "This one has a different \n"
- db "illustration than the last one.\n"
- db "Do you have a Chansey?",TX_END
+ text "Hello, ",TX_RAM1,"."
+ line "You're really current on the news!"
+ line "I'm looking for a Chansey this "
+ line "time! I'm thinking about trading"
+ line "my Surfing Pikachu for it."
+ line "This one has a different "
+ line "illustration than the last one."
+ line "Do you have a Chansey?"
+ done
Text0739: ; 53b25 (14:7b25)
- db TX_START,"Hello, ",TX_RAM1,". \n"
- db "Are you enjoying the\n"
- db "Pok`mon Trading Card Game?\n"
- db "I'm looking for a Chansey\n"
- db "this time! I'm thinking about \n"
- db "trading my Surfing Pikachu for \n"
- db "one. This one has a different \n"
- db "illustration than the last one.\n"
- db "Do you have a Chansey to trade?",TX_END
+ text "Hello, ",TX_RAM1,". "
+ line "Are you enjoying the"
+ line "Pok`mon Trading Card Game?"
+ line "I'm looking for a Chansey"
+ line "this time! I'm thinking about "
+ line "trading my Surfing Pikachu for "
+ line "one. This one has a different "
+ line "illustration than the last one."
+ line "Do you have a Chansey to trade?"
+ done
Text073a: ; 53c19 (14:7c19)
- db TX_START,"Hmmm...\n"
- db "I see you don't have a Chansey.\n"
- db "Please trade with me\n"
- db "some other time...",TX_END
+ text "Hmmm..."
+ line "I see you don't have a Chansey."
+ line "Please trade with me"
+ line "some other time..."
+ done
Text073b: ; 53c6a (14:7c6a)
- db TX_START,"Hmmm...I see all your Chansey\n"
- db "are in your Deck.\n"
- db "I can't very well take a card\n"
- db "you are using in duels.\n"
- db "Please trade with me\n"
- db "some other time...",TX_END
+ text "Hmmm...I see all your Chansey"
+ line "are in your Deck."
+ line "I can't very well take a card"
+ line "you are using in duels."
+ line "Please trade with me"
+ line "some other time..."
+ done
Text073c: ; 53cf9 (14:7cf9)
- db TX_START,TX_RAM1," traded a Chansey\n"
- db "for a Surfing Pikachu!",TX_END
+ text TX_RAM1," traded a Chansey"
+ line "for a Surfing Pikachu!"
+ done
Text073d: ; 53d24 (14:7d24)
- db TX_START,"Thank you for this Chansey.\n"
- db "You've been a great help!",TX_END
+ text "Thank you for this Chansey."
+ line "You've been a great help!"
+ done
Text073e: ; 53d5b (14:7d5b)
- db TX_START,"Oh! Congratulations, ",TX_RAM1,"!\n"
- db "I heard the news! You've finally \n"
- db "inherited the Legendary Pok`mon \n"
- db "Cards! Don't worry, I'm not going \n"
- db "to ask you to trade them to me.\n"
- db "Besides, it would be a waste \n"
- db "not to use the Legendary Cards \n"
- db "for dueling. Make sure your \n"
- db "Duels are worthy of\n"
- db "the Legendary Pok`mon Cards.",TX_END
+ text "Oh! Congratulations, ",TX_RAM1,"!"
+ line "I heard the news! You've finally "
+ line "inherited the Legendary Pok`mon "
+ line "Cards! Don't worry, I'm not going "
+ line "to ask you to trade them to me."
+ line "Besides, it would be a waste "
+ line "not to use the Legendary Cards "
+ line "for dueling. Make sure your "
+ line "Duels are worthy of"
+ line "the Legendary Pok`mon Cards."
+ done
diff --git a/src/text/text9.asm b/src/text/text9.asm
index f4cf489..7ead883 100644
--- a/src/text/text9.asm
+++ b/src/text/text9.asm
@@ -1,1206 +1,1456 @@
Text073f: ; 54000 (15:4000)
- db TX_START,"Who?\n"
- db "Oh! It's you, ",TX_RAM1,"...\n"
- db "I couldn't believe that I could\n"
- db "lose, but now...\n"
- db "Now I understand.\n"
- db "The fun thing about the \n"
- db "Pok`mon Trading Card Game\n"
- db "is not who wins or loses...\n"
- db "I couldn't inherit the Legendary \n"
- db "Pok`mon Cards because all that \n"
- db "was important to me was winning.\n"
- db "But now I understand!\n"
- db "What's important...\n"
- db "Is to love each card, to use all \n"
- db "the different cards to build \n"
- db "different types of Decks, and\n"
- db "to play against different people!\n"
- db "So...",TX_RAM1,"...\n"
- db "Will you play with me again?\n"
- db "With all sorts of different Decks?\n"
- db "And this time, I not gonna lose!",TX_END
+ text "Who?"
+ line "Oh! It's you, ",TX_RAM1,"..."
+ line "I couldn't believe that I could"
+ line "lose, but now..."
+ line "Now I understand."
+ line "The fun thing about the "
+ line "Pok`mon Trading Card Game"
+ line "is not who wins or loses..."
+ line "I couldn't inherit the Legendary "
+ line "Pok`mon Cards because all that "
+ line "was important to me was winning."
+ line "But now I understand!"
+ line "What's important..."
+ line "Is to love each card, to use all "
+ line "the different cards to build "
+ line "different types of Decks, and"
+ line "to play against different people!"
+ line "So...",TX_RAM1,"..."
+ line "Will you play with me again?"
+ line "With all sorts of different Decks?"
+ line "And this time, I not gonna lose!"
+ done
Text0740: ; 54223 (15:4223)
- db TX_START,"Oh, hi ",TX_RAM1,"...\n"
- db "Do you want to Duel?",TX_END
+ text "Oh, hi ",TX_RAM1,"..."
+ line "Do you want to Duel?"
+ done
Text0741: ; 54245 (15:4245)
- db TX_START,"Would you like to Duel Ronald?",TX_END
+ text "Would you like to Duel Ronald?"
+ done
Text0742: ; 54265 (15:4265)
- db TX_START,"OK... That suits me fine!\n"
- db "I'm building a new Deck!\n"
- db "I'm busy building a better Deck\n"
- db "than yours!!!\n"
- db "We'll Duel another time!",TX_END
+ text "OK... That suits me fine!"
+ line "I'm building a new Deck!"
+ line "I'm busy building a better Deck"
+ line "than yours!!!"
+ line "We'll Duel another time!"
+ done
Text0743: ; 542e0 (15:42e0)
- db TX_START,"I can't...\n"
- db "I'm building a new Deck!\n"
- db "I'm busy building a better Deck\n"
- db "than yours!!!\n"
- db "We'll Duel another time!",TX_END
+ text "I can't..."
+ line "I'm building a new Deck!"
+ line "I'm busy building a better Deck"
+ line "than yours!!!"
+ line "We'll Duel another time!"
+ done
Text0744: ; 5434c (15:434c)
- db TX_START,"Greetings.\n"
- db "Welcome to the Science Club!\n"
- db "This Club is for technicians\n"
- db "who love the sciences.\n"
- db "The Pok`mon cards used here are \n"
- db "those with the powers of science!",TX_END
+ text "Greetings."
+ line "Welcome to the Science Club!"
+ line "This Club is for technicians"
+ line "who love the sciences."
+ line "The Pok`mon cards used here are "
+ line "those with the powers of science!"
+ done
Text0745: ; 543ec (15:43ec)
- db TX_START,"Umm... Umm...\n"
- db "Do you know ISHIHARA?\n"
- db "He lives in the house on the cape\n"
- db "to the northwest.\n"
- db "He's a very famous Card Collector!\n"
- db "I hope to be like him someday.",TX_END
+ text "Umm... Umm..."
+ line "Do you know ISHIHARA?"
+ line "He lives in the house on the cape"
+ line "to the northwest."
+ line "He's a very famous Card Collector!"
+ line "I hope to be like him someday."
+ done
Text0746: ; 54487 (15:4487)
- db TX_START,"Umm... Umm...\n"
- db "ISHIHARA wants to trade\n"
- db "a very rare card.\n"
- db "If I had a card, I'd go and trade\n"
- db "with him myself.",TX_END
+ text "Umm... Umm..."
+ line "ISHIHARA wants to trade"
+ line "a very rare card."
+ line "If I had a card, I'd go and trade"
+ line "with him myself."
+ done
Text0747: ; 544f3 (15:44f3)
- db TX_START,"Umm... Umm...\n"
- db "ISHIHARA wants to trade\n"
- db "another very rare card.\n"
- db "I wish I could trade cards\n"
- db "like ISHIHARA.",TX_END
+ text "Umm... Umm..."
+ line "ISHIHARA wants to trade"
+ line "another very rare card."
+ line "I wish I could trade cards"
+ line "like ISHIHARA."
+ done
Text0748: ; 5455c (15:455c)
- db TX_START,"Umm... Umm...\n"
- db "ISHIHARA wants to trade a\n"
- db "very, very, very rare card!\n"
- db "I wish I could trade, so I could\n"
- db "meet ISHIHARA.",TX_END
+ text "Umm... Umm..."
+ line "ISHIHARA wants to trade a"
+ line "very, very, very rare card!"
+ line "I wish I could trade, so I could"
+ line "meet ISHIHARA."
+ done
Text0749: ; 545d1 (15:45d1)
- db TX_START,"Umm... Umm...\n"
- db "Did you meet ISHIHARA?\n"
- db "I wish I could be like him.",TX_END
+ text "Umm... Umm..."
+ line "Did you meet ISHIHARA?"
+ line "I wish I could be like him."
+ done
Text074a: ; 54613 (15:4613)
- db TX_START,"Umm... Umm...\n"
- db "ISHIHARA left on a trip\n"
- db "in search of a really rare card.\n"
- db "I wish I could have gone with him...",TX_END
+ text "Umm... Umm..."
+ line "ISHIHARA left on a trip"
+ line "in search of a really rare card."
+ line "I wish I could have gone with him..."
+ done
Text074b: ; 54680 (15:4680)
- db TX_START,"I don't understand science,\n"
- db "but I understand Pok`mon cards!\n"
- db "... I L O S T...",TX_END
+ text "I don't understand science,"
+ line "but I understand Pok`mon cards!"
+ line "... I L O S T..."
+ done
Text074c: ; 546cf (15:46cf)
- db TX_START,"Please don't disturb me!\n"
- db "I'm in the middle of\n"
- db "a very important experiment!",TX_END
+ text "Please don't disturb me!"
+ line "I'm in the middle of"
+ line "a very important experiment!"
+ done
Text074d: ; 5471b (15:471b)
- db TX_START,"If I use ",TX_RAM2," now,\n"
- db "This will happen...",TX_END
+ text "If I use ",TX_RAM2," now,"
+ line "This will happen..."
+ done
Text074e: ; 54740 (15:4740)
- db TX_START,"I get so involved in the Pok`mon \n"
- db "Trading Card Game, I lose track \n"
- db "of time. Isn't the Pok`mon Trading\n"
- db "Card Game really fun?",TX_END
+ text "I get so involved in the Pok`mon "
+ line "Trading Card Game, I lose track "
+ line "of time. Isn't the Pok`mon Trading"
+ line "Card Game really fun?"
+ done
Text074f: ; 547bd (15:47bd)
- db TX_START,"Hmmm... The machine...\n"
- db "It's not quite working right.\n"
- db "Huh? Oh, this? This is a machine \n"
- db "that makes Decks.\n"
- db "It's much better than Dr. Mason's.\n"
- db "Hmmm... Let's see here...\n"
- db "Do you want to Duel against me?",TX_END
+ text "Hmmm... The machine..."
+ line "It's not quite working right."
+ line "Huh? Oh, this? This is a machine "
+ line "that makes Decks."
+ line "It's much better than Dr. Mason's."
+ line "Hmmm... Let's see here..."
+ line "Do you want to Duel against me?"
+ done
Text0750: ; 54884 (15:4884)
- db TX_START,"Hmmm... The machine...\n"
- db "It's not quite working right.\n"
- db "Unlike Dr. Mason's machine,\n"
- db "this machine is very complicated.\n"
- db "Hmmm... Let's see here...\n"
- db "Do you want to Duel against me?",TX_END
+ text "Hmmm... The machine..."
+ line "It's not quite working right."
+ line "Unlike Dr. Mason's machine,"
+ line "this machine is very complicated."
+ line "Hmmm... Let's see here..."
+ line "Do you want to Duel against me?"
+ done
Text0751: ; 54932 (15:4932)
- db TX_START,"Would you like to Duel David?",TX_END
+ text "Would you like to Duel David?"
+ done
Text0752: ; 54951 (15:4951)
- db TX_START,"OK, Then I guess I'll \n"
- db "fix the machine.",TX_END
+ text "OK, Then I guess I'll "
+ line "fix the machine."
+ done
Text0753: ; 5497a (15:497a)
- db TX_START,"Shall we begin the Match? It will\n"
- db "be a single Match for 4 Prizes.",TX_END
+ text "Shall we begin the Match? It will"
+ line "be a single Match for 4 Prizes."
+ done
Text0754: ; 549bd (15:49bd)
- db TX_START,"My theory is that the machine's\n"
- db "malfunctioning caused it.",TX_END
+ text "My theory is that the machine's"
+ line "malfunctioning caused it."
+ done
Text0755: ; 549f8 (15:49f8)
- db TX_START,"I've got to fix this machine...",TX_END
+ text "I've got to fix this machine..."
+ done
Text0756: ; 54a19 (15:4a19)
- db TX_START,"See! Isn't the Deck built\n"
- db "by this machine great?",TX_END
+ text "See! Isn't the Deck built"
+ line "by this machine great?"
+ done
Text0757: ; 54a4b (15:4a4b)
- db TX_START,"We research Pok`mon cards here\n"
- db "at the Science Club, especially\n"
- db "Science Pok`mon Cards! Science\n"
- db "Pok`mon are exceedingly strong.\n"
- db "Would you like to Duel against\n"
- db "my Science Pok`mon Deck?",TX_END
+ text "We research Pok`mon cards here"
+ line "at the Science Club, especially"
+ line "Science Pok`mon Cards! Science"
+ line "Pok`mon are exceedingly strong."
+ line "Would you like to Duel against"
+ line "my Science Pok`mon Deck?"
+ done
Text0758: ; 54b02 (15:4b02)
- db TX_START,"Would you like to Duel Erik?",TX_END
+ text "Would you like to Duel Erik?"
+ done
Text0759: ; 54b20 (15:4b20)
- db TX_START,"That's too bad. I hoped to show \n"
- db "you the results of my research.",TX_END
+ text "That's too bad. I hoped to show "
+ line "you the results of my research."
+ done
Text075a: ; 54b62 (15:4b62)
- db TX_START,"We'll play with 4 Prizes.\n"
- db "Let's begin.",TX_END
+ text "We'll play with 4 Prizes."
+ line "Let's begin."
+ done
Text075b: ; 54b8a (15:4b8a)
- db TX_START,"I can't believe my Science Pok`mon\n"
- db "Deck could lose...",TX_END
+ text "I can't believe my Science Pok`mon"
+ line "Deck could lose..."
+ done
Text075c: ; 54bc1 (15:4bc1)
- db TX_START,"I must research this further!",TX_END
+ text "I must research this further!"
+ done
Text075d: ; 54be0 (15:4be0)
- db TX_START,"So how do you like the results\n"
- db "of my research?",TX_END
+ text "So how do you like the results"
+ line "of my research?"
+ done
Text075e: ; 54c10 (15:4c10)
- db TX_START,"I am Rick, the Master of\n"
- db "the Science Club.\n"
- db "Science rules nature!\n"
- db "That is why it is so strong.\n"
- db "Do you wish to test the strengths\n"
- db "of science by playing against me?",TX_END
+ text "I am Rick, the Master of"
+ line "the Science Club."
+ line "Science rules nature!"
+ line "That is why it is so strong."
+ line "Do you wish to test the strengths"
+ line "of science by playing against me?"
+ done
Text075f: ; 54cb3 (15:4cb3)
- db TX_START,"Would you like to Duel Rick?",TX_END
+ text "Would you like to Duel Rick?"
+ done
Text0760: ; 54cd1 (15:4cd1)
- db TX_START,"It is regrettable that you do not \n"
- db "understand the wonders of science.",TX_END
+ text "It is regrettable that you do not "
+ line "understand the wonders of science."
+ done
Text0761: ; 54d18 (15:4d18)
- db TX_START,"Alright, 6 Prizes!\n"
- db "Let us begin!",TX_END
+ text "Alright, 6 Prizes!"
+ line "Let us begin!"
+ done
Text0762: ; 54d3a (15:4d3a)
- db TX_START,"There are, at times, problems even\n"
- db "science cannot answer.\n"
- db "Here, take this Medal.\n"
- db "It is the result of our research.",TX_END
+ text "There are, at times, problems even"
+ line "science cannot answer."
+ line "Here, take this Medal."
+ line "It is the result of our research."
+ done
Text0763: ; 54dae (15:4dae)
- db TX_START,"And let me give you this.\n"
- db "Please add this to your collection.",TX_END
+ text "And let me give you this."
+ line "Please add this to your collection."
+ done
Text0764: ; 54ded (15:4ded)
- db TX_START,"Legendary Cards are but a Legend!\n"
- db "Science is the only truth!\n"
- db "I must continue my research\n"
- db "of Science Pok`mon!",TX_END
+ text "Legendary Cards are but a Legend!"
+ line "Science is the only truth!"
+ line "I must continue my research"
+ line "of Science Pok`mon!"
+ done
Text0765: ; 54e5b (15:4e5b)
- db TX_START,"Ha ha ha! As expected!\n"
- db "Science is overpowering!\n"
- db "The outcome will be the same!\n"
- db "But I will Duel you again,\n"
- db "if you wish.",TX_END
+ text "Ha ha ha! As expected!"
+ line "Science is overpowering!"
+ line "The outcome will be the same!"
+ line "But I will Duel you again,"
+ line "if you wish."
+ done
Text0766: ; 54ed2 (15:4ed2)
- db TX_START,"Hello! It's you again!\n"
- db "Do you wish to Duel me!",TX_END
+ text "Hello! It's you again!"
+ line "Do you wish to Duel me!"
+ done
Text0767: ; 54f02 (15:4f02)
- db TX_START,"Really? That is too bad.",TX_END
+ text "Really? That is too bad."
+ done
Text0768: ; 54f1c (15:4f1c)
- db TX_START,"We'll play with 6 Prizes again!\n"
- db "Let us begin!",TX_END
+ text "We'll play with 6 Prizes again!"
+ line "Let us begin!"
+ done
Text0769: ; 54f4b (15:4f4b)
- db TX_START,"It seems my research was \n"
- db "incomplete.\n"
- db "Let me give you this. Please add \n"
- db "these to your collection.",TX_END
+ text "It seems my research was "
+ line "incomplete."
+ line "Let me give you this. Please add "
+ line "these to your collection."
+ done
Text076a: ; 54fae (15:4fae)
- db TX_START,"I will keep researching the \n"
- db "Science Pok`mon.",TX_END
+ text "I will keep researching the "
+ line "Science Pok`mon."
+ done
Text076b: ; 54fdd (15:4fdd)
- db TX_START,"Ha ha ha! As expected.\n"
- db "Science is overpowering!",TX_END
+ text "Ha ha ha! As expected."
+ line "Science is overpowering!"
+ done
Text076c: ; 5500e (15:500e)
- db TX_START,"Hey, you!\n"
- db "Rick, the Club Master, is in the\n"
- db "middle of an important experiment!\n"
- db "He has no time to see someone like\n"
- db "you! If you really want to see \n"
- db "him, you must defeat me first!",TX_END
+ text "Hey, you!"
+ line "Rick, the Club Master, is in the"
+ line "middle of an important experiment!"
+ line "He has no time to see someone like"
+ line "you! If you really want to see "
+ line "him, you must defeat me first!"
+ done
Text076d: ; 550bf (15:50bf)
- db TX_START,"Would you like to Duel Joseph?",TX_END
+ text "Would you like to Duel Joseph?"
+ done
Text076e: ; 550df (15:50df)
- db TX_START,"Then get out of here!",TX_END
+ text "Then get out of here!"
+ done
Text076f: ; 550f6 (15:50f6)
- db TX_START,"Not too smart, but you've got \n"
- db "nerves. We'll play for 4 Prizes!\n"
- db "If you win 1 Match,\n"
- db "I'll let you through!",TX_END
+ text "Not too smart, but you've got "
+ line "nerves. We'll play for 4 Prizes!"
+ line "If you win 1 Match,"
+ line "I'll let you through!"
+ done
Text0770: ; 55161 (15:5161)
- db TX_START,"Hey, I lost...\n"
- db "Since I promised, I have to\n"
- db "let you through.",TX_END
+ text "Hey, I lost..."
+ line "Since I promised, I have to"
+ line "let you through."
+ done
Text0771: ; 5519e (15:519e)
- db TX_START,"And...\n"
- db "Take this.",TX_END
+ text "And..."
+ line "Take this."
+ done
Text0772: ; 551b1 (15:51b1)
- db TX_START,"Rick's in the middle of\n"
- db "an experiment, so don't\n"
- db "bother him too much.",TX_END
+ text "Rick's in the middle of"
+ line "an experiment, so don't"
+ line "bother him too much."
+ done
Text0773: ; 551f7 (15:51f7)
- db TX_START,"Since you lost the Duel,\n"
- db "I can't let you through!\n"
- db "Now get out of here!",TX_END
+ text "Since you lost the Duel,"
+ line "I can't let you through!"
+ line "Now get out of here!"
+ done
Text0774: ; 5523f (15:523f)
- db TX_START,"What? You're here again?\n"
- db "You want to Duel me?",TX_END
+ text "What? You're here again?"
+ line "You want to Duel me?"
+ done
Text0775: ; 5526e (15:526e)
- db TX_START,"A single Match for 4 Prizes!\n"
- db "Let's begin!",TX_END
+ text "A single Match for 4 Prizes!"
+ line "Let's begin!"
+ done
Text0776: ; 55299 (15:5299)
- db TX_START,"Shoot! I lost again!\n"
- db "Here, take this.",TX_END
+ text "Shoot! I lost again!"
+ line "Here, take this."
+ done
Text0777: ; 552c0 (15:52c0)
- db TX_START,"Everyone in our Club is very busy,\n"
- db "so don't get in anyone's way!",TX_END
+ text "Everyone in our Club is very busy,"
+ line "so don't get in anyone's way!"
+ done
Text0778: ; 55302 (15:5302)
- db TX_START,"Hah! I won!\n"
- db "Just shows you who's better!",TX_END
+ text "Hah! I won!"
+ line "Just shows you who's better!"
+ done
Text0779: ; 5532c (15:532c)
- db TX_START,"Greetings.\n"
- db "Welcome to the Rock Club!\n"
- db "This Club is for members who\n"
- db "use Rock Pok`mon cards.\n"
- db "Rock Pok`mon are defensive\n"
- db "and take very little damage.",TX_END
+ text "Greetings."
+ line "Welcome to the Rock Club!"
+ line "This Club is for members who"
+ line "use Rock Pok`mon cards."
+ line "Rock Pok`mon are defensive"
+ line "and take very little damage."
+ done
Text077a: ; 553bf (15:53bf)
- db TX_START,"I'm training here at the Rock Club!\n"
- db "But Mitch told me to defeat you \n"
- db "before you Duel the members here!",TX_END
+ text "I'm training here at the Rock Club!"
+ line "But Mitch told me to defeat you "
+ line "before you Duel the members here!"
+ done
Text077b: ; 55427 (15:5427)
- db TX_START,"Would you like to Duel Chris?",TX_END
+ text "Would you like to Duel Chris?"
+ done
Text077c: ; 55446 (15:5446)
- db TX_START,"Are you going to run!?!\n"
- db "C'mon! Fight me!",TX_END
+ text "Are you going to run!?!"
+ line "C'mon! Fight me!"
+ done
Text077d: ; 55470 (15:5470)
- db TX_START,"OK! A single Match with 4 Prizes!\n"
- db "I'm going to defeat you!",TX_END
+ text "OK! A single Match with 4 Prizes!"
+ line "I'm going to defeat you!"
+ done
Text077e: ; 554ac (15:54ac)
- db TX_START,"How could this be!?!\n"
- db "I'm the one who was defeated!",TX_END
+ text "How could this be!?!"
+ line "I'm the one who was defeated!"
+ done
Text077f: ; 554e0 (15:54e0)
- db TX_START,"I must return to the Fighting Club\n"
- db "to start my training over!",TX_END
+ text "I must return to the Fighting Club"
+ line "to start my training over!"
+ done
Text0780: ; 5551f (15:551f)
- db TX_START,"That was good for my training!\n"
- db "Come any time you like!\n"
- db "I'll defeat you any time you like!",TX_END
+ text "That was good for my training!"
+ line "Come any time you like!"
+ line "I'll defeat you any time you like!"
+ done
Text0781: ; 5557a (15:557a)
- db TX_START,"Hi, I'm Matthew, a member\n"
- db "of the Rock Club.\n"
- db "I just finished a Duel!\n"
- db "I won, of course!\n"
- db "The Legendary Cards\n"
- db "will belong to me!\n"
- db "How about it?\n"
- db "Would you like to duel me?",TX_END
+ text "Hi, I'm Matthew, a member"
+ line "of the Rock Club."
+ line "I just finished a Duel!"
+ line "I won, of course!"
+ line "The Legendary Cards"
+ line "will belong to me!"
+ line "How about it?"
+ line "Would you like to duel me?"
+ done
Text0782: ; 55621 (15:5621)
- db TX_START,"Hi, ",TX_RAM1,".\n"
- db "Would you like to duel?\n"
- db "The Legendary Cards will eventually\n"
- db "belong to me!\n"
- db "How about it?\n"
- db "Would you like to duel me?",TX_END
+ text "Hi, ",TX_RAM1,"."
+ line "Would you like to duel?"
+ line "The Legendary Cards will eventually"
+ line "belong to me!"
+ line "How about it?"
+ line "Would you like to duel me?"
+ done
Text0783: ; 5569c (15:569c)
- db TX_START,"Hi, ",TX_RAM1,".\n"
- db "Would you like to duel?",TX_END
+ text "Hi, ",TX_RAM1,"."
+ line "Would you like to duel?"
+ done
Text0784: ; 556bc (15:56bc)
- db TX_START,"Would you like to duel Matthew?",TX_END
+ text "Would you like to duel Matthew?"
+ done
Text0785: ; 556dd (15:56dd)
- db TX_START,"What?\n"
- db "Are you afraid of me?\n"
- db "Well, come back any time\n"
- db "you want to Duel with me.",TX_END
+ text "What?"
+ line "Are you afraid of me?"
+ line "Well, come back any time"
+ line "you want to Duel with me."
+ done
Text0786: ; 5572d (15:572d)
- db TX_START,"OK, same as last time!\n"
- db "We'll play with 4 Prizes.\n"
- db "Is that alright?\n"
- db "OK then, let's begin!",TX_END
+ text "OK, same as last time!"
+ line "We'll play with 4 Prizes."
+ line "Is that alright?"
+ line "OK then, let's begin!"
+ done
Text0787: ; 55786 (15:5786)
- db TX_START,"I'll never get the Legendary Cards\n"
- db "if I play like that...",TX_END
+ text "I'll never get the Legendary Cards"
+ line "if I play like that..."
+ done
Text0788: ; 557c1 (15:57c1)
- db TX_START,"Wow! So that's the strength of\n"
- db "the Legendary Pok`mon Cards!",TX_END
+ text "Wow! So that's the strength of"
+ line "the Legendary Pok`mon Cards!"
+ done
Text0789: ; 557fe (15:57fe)
- db TX_START,"I'm going to win the next \n"
- db "time we duel.",TX_END
+ text "I'm going to win the next "
+ line "time we duel."
+ done
Text078a: ; 55828 (15:5828)
- db TX_START,"I won again! I guess the Legendary \n"
- db "Pok`mon Cards will eventually \n"
- db "belong to me!",TX_END
+ text "I won again! I guess the Legendary "
+ line "Pok`mon Cards will eventually "
+ line "belong to me!"
+ done
Text078b: ; 5587a (15:587a)
- db TX_START,"I guess I win again!",TX_END
+ text "I guess I win again!"
+ done
Text078c: ; 55890 (15:5890)
- db TX_START,"Oh! Excuse me!\n"
- db "Did you hear?\n"
- db "ISHIHARA who lives on the cape\n"
- db "to the northwest...\n"
- db "He owns 10,000 cards!\n"
- db "He probably even has rare cards!",TX_END
+ text "Oh! Excuse me!"
+ line "Did you hear?"
+ line "ISHIHARA who lives on the cape"
+ line "to the northwest..."
+ line "He owns 10,000 cards!"
+ line "He probably even has rare cards!"
+ done
Text078d: ; 55918 (15:5918)
- db TX_START,"Oh! Excuse me!\n"
- db "Did you hear?\n"
- db "It's the talk of the town\n"
- db "that ISHIHARA wishes to trade\n"
- db "a very rare card.\n"
- db "Maybe I'll visit him myself!",TX_END
+ text "Oh! Excuse me!"
+ line "Did you hear?"
+ line "It's the talk of the town"
+ line "that ISHIHARA wishes to trade"
+ line "a very rare card."
+ line "Maybe I'll visit him myself!"
+ done
Text078e: ; 5599d (15:599d)
- db TX_START,"Oh! Excuse me!\n"
- db "Did you hear?\n"
- db "Everyone's saying that ISHIHARA\n"
- db "wishes to trade a very rare card!\n"
- db "Maybe you should go visit him.",TX_END
+ text "Oh! Excuse me!"
+ line "Did you hear?"
+ line "Everyone's saying that ISHIHARA"
+ line "wishes to trade a very rare card!"
+ line "Maybe you should go visit him."
+ done
Text078f: ; 55a1c (15:5a1c)
- db TX_START,"Oh! Excuse me!\n"
- db "Did you hear?\n"
- db "ISHIHARA wishes to trade\n"
- db "a very rare card again!\n"
- db "Maybe you should go visit him.",TX_END
+ text "Oh! Excuse me!"
+ line "Did you hear?"
+ line "ISHIHARA wishes to trade"
+ line "a very rare card again!"
+ line "Maybe you should go visit him."
+ done
Text0790: ; 55a8a (15:5a8a)
- db TX_START,"Oh! Excuse me!\n"
- db "There's no new news right now,\n"
- db "but if I hear any new rumors,\n"
- db "I'll let you know.",TX_END
+ text "Oh! Excuse me!"
+ line "There's no new news right now,"
+ line "but if I hear any new rumors,"
+ line "I'll let you know."
+ done
Text0791: ; 55aea (15:5aea)
- db TX_START,"Oh! Excuse me!\n"
- db "Did you hear?\n"
- db "It seems ISHIHARA left on a \n"
- db "trip in search of a rare card!\n"
- db "They say he's not coming back\n"
- db "for a while!",TX_END
+ text "Oh! Excuse me!"
+ line "Did you hear?"
+ line "It seems ISHIHARA left on a "
+ line "trip in search of a rare card!"
+ line "They say he's not coming back"
+ line "for a while!"
+ done
Text0792: ; 55b6f (15:5b6f)
- db TX_START,"Gee! I lost!\n"
- db "Matthew's really good!\n"
- db "He'll probably inherit\n"
- db "the Legendary Pok`mon Cards!",TX_END
+ text "Gee! I lost!"
+ line "Matthew's really good!"
+ line "He'll probably inherit"
+ line "the Legendary Pok`mon Cards!"
+ done
Text0793: ; 55bc8 (15:5bc8)
- db TX_START,"I lost to Matthew again!\n"
- db "I can't win, no matter how many \n"
- db "times I duel against him!\n"
- db "He's probably going to inherit\n"
- db "the Legendary Pok`mon Cards!\n"
- db "What? You already inherited\n"
- db "the Legendary Pok`mon Cards???\n"
- db "Then you must be better\n"
- db "than Matthew!",TX_END
+ text "I lost to Matthew again!"
+ line "I can't win, no matter how many "
+ line "times I duel against him!"
+ line "He's probably going to inherit"
+ line "the Legendary Pok`mon Cards!"
+ line "What? You already inherited"
+ line "the Legendary Pok`mon Cards???"
+ line "Then you must be better"
+ line "than Matthew!"
+ done
Text0794: ; 55cba (15:5cba)
- db TX_START,"I'm going to be moving soon\n"
- db "to a faraway place.\n"
- db "But I'm not sad.\n"
- db "I'll make new friends dueling\n"
- db "with Pok`mon cards...",TX_END
+ text "I'm going to be moving soon"
+ line "to a faraway place."
+ line "But I'm not sad."
+ line "I'll make new friends dueling"
+ line "with Pok`mon cards..."
+ done
Text0795: ; 55d30 (15:5d30)
- db TX_START,"I'm carving a statue of a Pok`mon\n"
- db "out of this Rock!\n"
- db "What? You want to Duel?\n"
- db "Alright. You want to duel now?",TX_END
+ text "I'm carving a statue of a Pok`mon"
+ line "out of this Rock!"
+ line "What? You want to Duel?"
+ line "Alright. You want to duel now?"
+ done
Text0796: ; 55d9c (15:5d9c)
- db TX_START,"Would you like to Duel Ryan?",TX_END
+ text "Would you like to Duel Ryan?"
+ done
Text0797: ; 55dba (15:5dba)
- db TX_START,"Get outta here if you aren't \n"
- db "serious - I'm really busy!",TX_END
+ text "Get outta here if you aren't "
+ line "serious - I'm really busy!"
+ done
Text0798: ; 55df4 (15:5df4)
- db TX_START,"Let's make it a quick single Match\n"
- db "with 3 Prizes.\n"
- db "OK, let's start!",TX_END
+ text "Let's make it a quick single Match"
+ line "with 3 Prizes."
+ line "OK, let's start!"
+ done
Text0799: ; 55e38 (15:5e38)
- db TX_START,"Whoa! I lost!\n"
- db "Here! Take this!",TX_END
+ text "Whoa! I lost!"
+ line "Here! Take this!"
+ done
Text079a: ; 55e58 (15:5e58)
- db TX_START,"What's going on?\n"
- db "Must be my unlucky day...",TX_END
+ text "What's going on?"
+ line "Must be my unlucky day..."
+ done
Text079b: ; 55e84 (15:5e84)
- db TX_START,"Yeah!\n"
- db "Must be my lucky day!\n"
- db "Come see me any time you want!\n"
- db "I'll Duel with you again!",TX_END
+ text "Yeah!"
+ line "Must be my lucky day!"
+ line "Come see me any time you want!"
+ line "I'll Duel with you again!"
+ done
Text079c: ; 55eda (15:5eda)
- db TX_START,"I've always wanted to be\n"
- db "a Hard Rocker!\n"
- db "Rock Pok`mon...\n"
- db "Doesn't the name Rock?\n"
- db "Won't you Duel against my\n"
- db "Rock Pok`mon Deck?",TX_END
+ text "I've always wanted to be"
+ line "a Hard Rocker!"
+ line "Rock Pok`mon..."
+ line "Doesn't the name Rock?"
+ line "Won't you Duel against my"
+ line "Rock Pok`mon Deck?"
+ done
Text079d: ; 55f57 (15:5f57)
- db TX_START,"Would you like to Duel Andrew?",TX_END
+ text "Would you like to Duel Andrew?"
+ done
Text079e: ; 55f77 (15:5f77)
- db TX_START,"That's OK...\n"
- db "I'll Rock with someone else!",TX_END
+ text "That's OK..."
+ line "I'll Rock with someone else!"
+ done
Text079f: ; 55fa2 (15:5fa2)
- db TX_START,"Thanks! We'll Rock this Match\n"
- db "with 4 Prizes!",TX_END
+ text "Thanks! We'll Rock this Match"
+ line "with 4 Prizes!"
+ done
Text07a0: ; 55fd0 (15:5fd0)
- db TX_START,"Whoa! I lost!\n"
- db "A Rockin' guy like me can't lose!",TX_END
+ text "Whoa! I lost!"
+ line "A Rockin' guy like me can't lose!"
+ done
Text07a1: ; 56001 (15:6001)
- db TX_START,"A Rockin' guy like me should be\n"
- db "hard to beat!\n"
- db "I've got to Rock harder!",TX_END
+ text "A Rockin' guy like me should be"
+ line "hard to beat!"
+ line "I've got to Rock harder!"
+ done
Text07a2: ; 56049 (15:6049)
- db TX_START,"Hah! I won!\n"
- db "Am I Rockin' or what!",TX_END
+ text "Hah! I won!"
+ line "Am I Rockin' or what!"
+ done
Text07a3: ; 5606c (15:606c)
- db TX_START,"I am Gene, the Master of the\n"
- db "Rock Club! Rock is good...\n"
- db "Isn't Rock good, ",TX_RAM1,"...?\n"
- db "Rock is hard and strong!\n"
- db "Doesn't crumble under pressure!\n"
- db "After you Duel me, you'll know \n"
- db "I'm right! Come!\n"
- db "Show me what you're made of!",TX_END
+ text "I am Gene, the Master of the"
+ line "Rock Club! Rock is good..."
+ line "Isn't Rock good, ",TX_RAM1,"...?"
+ line "Rock is hard and strong!"
+ line "Doesn't crumble under pressure!"
+ line "After you Duel me, you'll know "
+ line "I'm right! Come!"
+ line "Show me what you're made of!"
+ done
Text07a4: ; 56143 (15:6143)
- db TX_START,"Would you like to Duel Gene?",TX_END
+ text "Would you like to Duel Gene?"
+ done
Text07a5: ; 56161 (15:6161)
- db TX_START,"I have no time for a softie \n"
- db "like you!\n"
- db "Come back after you've hardened\n"
- db "your nerve!",TX_END
+ text "I have no time for a softie "
+ line "like you!"
+ line "Come back after you've hardened"
+ line "your nerve!"
+ done
Text07a6: ; 561b5 (15:61b5)
- db TX_START,"Our Duel will be played\n"
- db "with 6 Prizes!\n"
- db "You won't get the Rock Medal\n"
- db "unless you defeat me!",TX_END
+ text "Our Duel will be played"
+ line "with 6 Prizes!"
+ line "You won't get the Rock Medal"
+ line "unless you defeat me!"
+ done
Text07a7: ; 56210 (15:6210)
- db TX_START,"Wonderful... Your persistence - \n"
- db "persistence that can even \n"
- db "break Rock - has led you to \n"
- db "defeat me!\n"
- db "You are worthy of receiving this\n"
- db "Rock Medal!",TX_END
+ text "Wonderful... Your persistence - "
+ line "persistence that can even "
+ line "break Rock - has led you to "
+ line "defeat me!"
+ line "You are worthy of receiving this"
+ line "Rock Medal!"
+ done
Text07a8: ; 562a2 (15:62a2)
- db TX_START,"And take this Booster Pack, too.",TX_END
+ text "And take this Booster Pack, too."
+ done
Text07a9: ; 562c4 (15:62c4)
- db TX_START,"I look forward to the day\n"
- db "We Duel again!",TX_END
+ text "I look forward to the day"
+ line "We Duel again!"
+ done
Text07aa: ; 562ee (15:62ee)
- db TX_START,"You see? Isn't Rock good?\n"
- db "Isn't Rock wonderful?\n"
- db "'Fess up and admit the greatness\n"
- db "of Rock Pok`mon!",TX_END
+ text "You see? Isn't Rock good?"
+ line "Isn't Rock wonderful?"
+ line "'Fess up and admit the greatness"
+ line "of Rock Pok`mon!"
+ done
Text07ab: ; 56351 (15:6351)
- db TX_START,"Yes!\n"
- db "Our last duel was wonderful!\n"
- db "You wish to have another\n"
- db "wonderful duel?",TX_END
+ text "Yes!"
+ line "Our last duel was wonderful!"
+ line "You wish to have another"
+ line "wonderful duel?"
+ done
Text07ac: ; 5639d (15:639d)
- db TX_START,"Mmmm...\n"
- db "I will be waiting for you here...",TX_END
+ text "Mmmm..."
+ line "I will be waiting for you here..."
+ done
Text07ad: ; 563c8 (15:63c8)
- db TX_START,"This will be a single match with \n"
- db "6 Prizes! Come! Let us begin!",TX_END
+ text "This will be a single match with "
+ line "6 Prizes! Come! Let us begin!"
+ done
Text07ae: ; 56409 (15:6409)
- db TX_START,"Yes! You are an worthy opponent!\n"
- db "Here, take this Booster Pack.",TX_END
+ text "Yes! You are an worthy opponent!"
+ line "Here, take this Booster Pack."
+ done
Text07af: ; 56449 (15:6449)
- db TX_START,"I look forward to the day\n"
- db "when we duel again!",TX_END
+ text "I look forward to the day"
+ line "when we duel again!"
+ done
Text07b0: ; 56478 (15:6478)
- db TX_START,"It was a wonderful duel!\n"
- db "But better luck next time!\n"
- db "I look forward to the day\n"
- db "when we Duel again!",TX_END
+ text "It was a wonderful duel!"
+ line "But better luck next time!"
+ line "I look forward to the day"
+ line "when we Duel again!"
+ done
Text07b1: ; 564db (15:64db)
- db TX_START,"\n"
- db " Pok`mon Trading Card Game \n"
- db " Staff",TX_END
+ text ""
+ line " Pok`mon Trading Card Game "
+ line " Staff"
+ done
Text07b2: ; 56518 (15:6518)
- db TX_START,"\n"
- db " Producers\n\n"
- db "\n"
- db " Tsunekazu Ishihara\n"
- db " Shinichi Nakamoto\n"
- db " Takehiro Izushi",TX_END
+ text ""
+ line " Producers\n"
+ line ""
+ line " Tsunekazu Ishihara"
+ line " Shinichi Nakamoto"
+ line " Takehiro Izushi"
+ done
Text07b3: ; 5658f (15:658f)
- db TX_START,"\n"
- db " Director\n\n"
- db "\n"
- db " Koji Arai",TX_END
+ text ""
+ line " Director\n"
+ line ""
+ line " Koji Arai"
+ done
Text07b4: ; 565c6 (15:65c6)
- db TX_START,"\n"
- db " Programmers\n\n"
- db "\n"
- db " Masahiro Tobita\n"
- db " Satoshi Mikami\n"
- db " Masaki Tsumori",TX_END
+ text ""
+ line " Programmers\n"
+ line ""
+ line " Masahiro Tobita"
+ line " Satoshi Mikami"
+ line " Masaki Tsumori"
+ done
Text07b5: ; 5663a (15:663a)
- db TX_START,"\n"
- db " GB Graphic Designers\n\n"
- db "\n"
- db " Kazuhiko Nonaka\n"
- db " Yasuhiro Fujii\n"
- db " Tsuguyuki Yamamoto",TX_END
+ text ""
+ line " GB Graphic Designers\n"
+ line ""
+ line " Kazuhiko Nonaka"
+ line " Yasuhiro Fujii"
+ line " Tsuguyuki Yamamoto"
+ done
Text07b6: ; 566b5 (15:66b5)
- db TX_START," Yasuhiro Ichizawa\n"
- db " Miwa Matsuda\n"
- db " Norihiro Kanie",TX_END
+ text " Yasuhiro Ichizawa"
+ line " Miwa Matsuda"
+ line " Norihiro Kanie"
+ done
Text07b7: ; 5670b (15:670b)
- db TX_START," Kazushi Kousaka\n"
- db " Hiromi Sugiue\n"
- db " Katsuhisa Nishikawa",TX_END
+ text " Kazushi Kousaka"
+ line " Hiromi Sugiue"
+ line " Katsuhisa Nishikawa"
+ done
Text07b8: ; 56764 (15:6764)
- db TX_START,"\n"
- db " Music\n\n"
- db "\n"
- db " Ichiro Shimakura",TX_END
+ text ""
+ line " Music\n"
+ line ""
+ line " Ichiro Shimakura"
+ done
Text07b9: ; 5679d (15:679d)
- db TX_START,"\n"
- db " Sound Effects\n\n"
- db "\n"
- db " Masato Aihara",TX_END
+ text ""
+ line " Sound Effects\n"
+ line ""
+ line " Masato Aihara"
+ done
Text07ba: ; 567d9 (15:67d9)
- db TX_START,"\n"
- db " Sound Director\n\n"
- db "\n"
- db " Toshiaki Takimoto",TX_END
+ text ""
+ line " Sound Director\n"
+ line ""
+ line " Toshiaki Takimoto"
+ done
Text07bb: ; 56817 (15:6817)
- db TX_START,"\n"
- db " Sound System Support\n\n"
- db "\n"
- db " Katsunori Takahashi\n"
- db " Hideki Oka",TX_END
+ text ""
+ line " Sound System Support\n"
+ line ""
+ line " Katsunori Takahashi"
+ line " Hideki Oka"
+ done
Text07bc: ; 56873 (15:6873)
- db TX_START,"\n"
- db " Card Game Creator\n\n"
- db "\n"
- db " Takumi Akabane",TX_END
+ text ""
+ line " Card Game Creator\n"
+ line ""
+ line " Takumi Akabane"
+ done
Text07bd: ; 568b1 (15:68b1)
- db TX_START,"\n"
- db " Card Game Creator\n\n"
- db "\n"
- db " Kouichi Oyama",TX_END
+ text ""
+ line " Card Game Creator\n"
+ line ""
+ line " Kouichi Oyama"
+ done
Text07be: ; 568ee (15:68ee)
- db TX_START,"\n"
- db " Card Game Creator\n\n"
- db "\n"
- db " Akihiko Miura",TX_END
+ text ""
+ line " Card Game Creator\n"
+ line ""
+ line " Akihiko Miura"
+ done
Text07bf: ; 5692c (15:692c)
- db TX_START,"\n"
- db " Card Illustrators\n\n"
- db "\n"
- db " Ken Sugimori\n"
- db " Mitsuhiro Arita\n"
- db " Keiji Kinebuchi\n"
- db " Kagemaru Himeno",TX_END
+ text ""
+ line " Card Illustrators\n"
+ line ""
+ line " Ken Sugimori"
+ line " Mitsuhiro Arita"
+ line " Keiji Kinebuchi"
+ line " Kagemaru Himeno"
+ done
Text07c0: ; 569c0 (15:69c0)
- db TX_START," Tomoaki Imakuni\n"
- db " Miki Tanaka\n"
- db " Toshinao Aoki\n"
- db " Benimaru Ito",TX_END
+ text " Tomoaki Imakuni"
+ line " Miki Tanaka"
+ line " Toshinao Aoki"
+ line " Benimaru Ito"
+ done
Text07c1: ; 56a30 (15:6a30)
- db TX_START,"\n"
- db " Special Appearances by\n\n"
- db "\n"
- db " Hiroko Ohashi\n"
- db " Masako Uchiyama",TX_END
+ text ""
+ line " Special Appearances by\n"
+ line ""
+ line " Hiroko Ohashi"
+ line " Masako Uchiyama"
+ done
Text07c2: ; 56a8c (15:6a8c)
- db TX_START," Kunimi Kawamura\n"
- db " Imakuni?",TX_END
+ text " Kunimi Kawamura"
+ line " Imakuni?"
+ done
Text07c3: ; 56ac3 (15:6ac3)
- db TX_START,"\n"
- db " US COORDINATION\n"
- db " NINTENDO OF AMERICA\n\n"
- db "\n"
- db " GAIL TILDEN\n"
- db " HIRO NAKAMURA",TX_END
+ text ""
+ line " US COORDINATION"
+ line " NINTENDO OF AMERICA\n"
+ line ""
+ line " GAIL TILDEN"
+ line " HIRO NAKAMURA"
+ done
Text07c4: ; 56b3a (15:6b3a)
- db TX_START," KENJI OKUBO\n"
- db " WILLIAM TRINEN",TX_END
+ text " KENJI OKUBO"
+ line " WILLIAM TRINEN"
+ done
Text07c5: ; 56b71 (15:6b71)
- db TX_START,"\n"
- db " US COORDINATION\n"
- db " Wizards of the Coast\n"
- db " Pok`mon Templating Team\n\n"
- db "\n"
- db " Robert Gutschera\n"
- db " Jessica Beaven",TX_END
+ text ""
+ line " US COORDINATION"
+ line " Wizards of the Coast"
+ line " Pok`mon Templating Team\n"
+ line ""
+ line " Robert Gutschera"
+ line " Jessica Beaven"
+ done
Text07c6: ; 56c0d (15:6c0d)
- db TX_START," Paul Peterson\n"
- db " Michael G. Ryan\n"
- db " Tom Wylie",TX_END
+ text " Paul Peterson"
+ line " Michael G. Ryan"
+ line " Tom Wylie"
+ done
Text07c7: ; 56c5e (15:6c5e)
- db TX_START,"\n"
- db " TRANSLATION/DRAFT\n\n"
- db "\n"
- db " BILL RITCH",TX_END
+ text ""
+ line " TRANSLATION/DRAFT\n"
+ line ""
+ line " BILL RITCH"
+ done
Text07c8: ; 56c9a (15:6c9a)
- db TX_START,"\n"
- db " Mastering\n\n"
- db "\n"
- db " Tetsuya Komatsu",TX_END
+ text ""
+ line " Mastering\n"
+ line ""
+ line " Tetsuya Komatsu"
+ done
Text07c9: ; 56cd5 (15:6cd5)
- db TX_START,"\n"
- db " Manual Creation\n\n"
- db "\n"
- db " Haruki Mitani",TX_END
+ text ""
+ line " Manual Creation\n"
+ line ""
+ line " Haruki Mitani"
+ done
Text07ca: ; 56d12 (15:6d12)
- db TX_START,"\n"
- db " Manual Illustrations\n\n"
- db "\n"
- db " Kagemaru Himeno",TX_END
+ text ""
+ line " Manual Illustrations\n"
+ line ""
+ line " Kagemaru Himeno"
+ done
Text07cb: ; 56d53 (15:6d53)
- db TX_START,"\n"
- db " Pok`mon Original Story\n\n"
- db "\n"
- db " Satoshi Tajiri\n"
- db TX_END
+ text ""
+ line " Pok`mon Original Story\n"
+ line ""
+ line " Satoshi Tajiri"
+ line TX_END
Text07cc: ; 56d95 (15:6d95)
- db TX_START,"\n"
- db " Created In Cooperation With\n\n"
- db "\n"
- db " Shinji Hatano\n"
- db " Satoshi Yamato\n"
- db " Takahiro Harada",TX_END
+ text ""
+ line " Created In Cooperation With\n"
+ line ""
+ line " Shinji Hatano"
+ line " Satoshi Yamato"
+ line " Takahiro Harada"
+ done
Text07cd: ; 56e11 (15:6e11)
- db TX_START,"\n"
- db " With Cooperation from\n\n"
- db "\n"
- db " Yoshio Motosako\n"
- db " Hiroyuki Mikami\n"
- db " Keigo Yasuda",TX_END
+ text ""
+ line " With Cooperation from\n"
+ line ""
+ line " Yoshio Motosako"
+ line " Hiroyuki Mikami"
+ line " Keigo Yasuda"
+ done
Text07ce: ; 56e8a (15:6e8a)
- db TX_START," Yusuke Kurushima\n"
- db " Nobuchika Takahashi\n"
- db " Junko Igarashi\n"
- db " Yukiko Tomita",TX_END
+ text " Yusuke Kurushima"
+ line " Nobuchika Takahashi"
+ line " Junko Igarashi"
+ line " Yukiko Tomita"
+ done
Text07cf: ; 56eff (15:6eff)
- db TX_START," Mari Matsuda\n"
- db " Moto Yamaguchi\n"
- db " Shigeru Sato\n"
- db " Chiaki Nishiki",TX_END
+ text " Mari Matsuda"
+ line " Moto Yamaguchi"
+ line " Shigeru Sato"
+ line " Chiaki Nishiki"
+ done
Text07d0: ; 56f6e (15:6f6e)
- db TX_START,"\n"
- db " Project Manager\n\n"
- db "\n"
- db " Yasutaka Kakiseko",TX_END
+ text ""
+ line " Project Manager\n"
+ line ""
+ line " Yasutaka Kakiseko"
+ done
Text07d1: ; 56fad (15:6fad)
- db TX_START,"\n"
- db " Supervisor\n\n"
- db "\n\n"
- db " Hiroshi Kudo",TX_END
+ text ""
+ line " Supervisor\n"
+ line "\n"
+ line " Hiroshi Kudo"
+ done
Text07d2: ; 56fe7 (15:6fe7)
- db TX_START,"\n"
- db " Executive Producer\n\n"
- db "\n\n"
- db " Hiroshi Yamauchi",TX_END
+ text ""
+ line " Executive Producer\n"
+ line "\n"
+ line " Hiroshi Yamauchi"
+ done
Text07d3: ; 57027 (15:7027)
- db TX_START,"\n"
- db " Created by\n\n"
- db "\n\n"
- db " Hudson",TX_END
+ text ""
+ line " Created by\n"
+ line "\n"
+ line " Hudson"
+ done
Text07d4: ; 5705e (15:705e)
- db TX_START," Challenge Machine ",TX_END
+ text " Challenge Machine "
+ done
Text07d5: ; 57075 (15:7075)
- db TX_START,TX_RAM1,"'s Score",TX_END
+ text TX_RAM1,"'s Score"
+ done
Text07d6: ; 57080 (15:7080)
- db TX_START,"Defeated 5 opponents time(s).",TX_END
+ text "Defeated 5 opponents time(s)."
+ done
Text07d7: ; 570a4 (15:70a4)
- db TX_START,"Present Consecutive Wins",TX_END
+ text "Present Consecutive Wins"
+ done
Text07d8: ; 570be (15:70be)
- db TX_START,"Maximum Consecutive Wins\n"
- db " [ ",TX_RAM2," ]",TX_END
+ text "Maximum Consecutive Wins"
+ line " [ ",TX_RAM2," ]"
+ done
Text07d9: ; 570e3 (15:70e3)
- db TX_START,"Wins",TX_END
+ text "Wins"
+ done
Text07da: ; 570e9 (15:70e9)
- db TX_START,TX_RAM1," ",TX_RAM3," Consecutive Wins!\n"
- db TX_START,TX_RAM3," opponent is ",TX_RAM2,".",TX_END
+ text TX_RAM1," ",TX_RAM3," Consecutive Wins!"
+ line ""
+ text TX_RAM3," opponent is ",TX_RAM2,"."
+ done
Text07db: ; 57112 (15:7112)
- db TX_START,TX_RAM3," opponent is ",TX_RAM2,".",TX_END
+ text TX_RAM3," opponent is ",TX_RAM2,"."
+ done
Text07dc: ; 57124 (15:7124)
- db TX_START,"Would you like to begin the Duel?",TX_END
+ text "Would you like to begin the Duel?"
+ done
Text07dd: ; 57147 (15:7147)
- db TX_START,"If you quit the Duel,\n"
- db "Your Consecutive Wins will end.",TX_END
+ text "If you quit the Duel,"
+ line "Your Consecutive Wins will end."
+ done
Text07de: ; 5717e (15:717e)
- db TX_START,"Would you like to quit the Duel?",TX_END
+ text "Would you like to quit the Duel?"
+ done
Text07df: ; 571a0 (15:71a0)
- db TX_START,"Play the Challenge Machine?",TX_END
+ text "Play the Challenge Machine?"
+ done
Text07e0: ; 571bd (15:71bd)
- db TX_START,"OK,\n"
- db "Let us choose your opponent.",TX_END
+ text "OK,"
+ line "Let us choose your opponent."
+ done
Text07e1: ; 571df (15:71df)
- db TX_START,"You lost to the ",TX_RAM3," opponent,\n"
- db TX_RAM2,"!",TX_END
+ text "You lost to the ",TX_RAM3," opponent,"
+ line TX_RAM2,"!"
+ done
Text07e2: ; 571ff (15:71ff)
- db TX_START,TX_RAM1,"'s consecutive wins\n"
- db "ended at ",TX_RAM3,".",TX_END
+ text TX_RAM1,"'s consecutive wins"
+ line "ended at ",TX_RAM3,"."
+ done
Text07e3: ; 57221 (15:7221)
- db TX_START,"We await your next challenge.",TX_END
+ text "We await your next challenge."
+ done
Text07e4: ; 57240 (15:7240)
- db TX_START,"Your opponents for this game:",TX_END
+ text "Your opponents for this game:"
+ done
Text07e5: ; 5725f (15:725f)
- db TX_START,"Congratulations!\n"
- db "You won against ",TX_RAM3," opponents!",TX_END
+ text "Congratulations!"
+ line "You won against ",TX_RAM3," opponents!"
+ done
DefeatedFiveOpponentsText: ; 5728e (15:728e)
- db TX_START,"Congratulations!\n"
- db "You defeated 5 opponents!",TX_END
+ text "Congratulations!"
+ line "You defeated 5 opponents!"
+ done
Text07e7: ; 572ba (15:72ba)
- db TX_START,TX_RAM1," successfully defeated \n"
- db "5 opponents ",TX_START,TX_RAM3," time(s)!!!",TX_END
+ text TX_RAM1," successfully defeated "
+ line "5 opponents ",TX_START,TX_RAM3," time(s)!!!"
+ done
ConsecutiveWinRecordIncreasedText: ; 572ee (15:72ee)
- db TX_START,TX_RAM1,"'s consecutive win\n"
- db "record increased to ",TX_RAM3,"!",TX_END
+ text TX_RAM1,"'s consecutive win"
+ line "record increased to ",TX_RAM3,"!"
+ done
Text07e9: ; 5731a (15:731a)
- db TX_START,"Club Member",TX_END
+ text "Club Member"
+ done
Text07ea: ; 57327 (15:7327)
- db TX_START,"Club Master",TX_END
+ text "Club Master"
+ done
Text07eb: ; 57334 (15:7334)
- db TX_START,"TECH",TX_END
+ text "TECH"
+ done
Text07ec: ; 5733a (15:733a)
- db TX_START,"Strange Life-form",TX_END
+ text "Strange Life-form"
+ done
Text07ed: ; 5734d (15:734d)
- db TX_START,"Grand Master",TX_END
+ text "Grand Master"
+ done
Text07ee: ; 5735b (15:735b)
- db $61,TX_END
+ db $61
+ done
Text07ef: ; 5735d (15:735d)
- db $62,TX_END
+ db $62
+ done
Text07f0: ; 5735f (15:735f)
- db $63,TX_END
+ db $63
+ done
Text07f1: ; 57361 (15:7361)
- db $64,TX_END
+ db $64
+ done
Text07f2: ; 57363 (15:7363)
- db $65,TX_END
+ db $65
+ done
Text07f3: ; 57365 (15:7365)
- db $70,TX_END
+ db $70
+ done
Text07f4: ; 57367 (15:7367)
- db $03,$55,TX_END
+ db $03,$55
+ done
Text07f5: ; 5736a (15:736a)
- db $03,$54,TX_END
+ db $03,$54
+ done
Text07f6: ; 5736d (15:736d)
- db $03,$50,TX_FIRE,$03,$51,TX_END
+ db $03,$50,TX_FIRE,$03,$51
+ done
Text07f7: ; 57374 (15:7374)
- db $03,$50,TX_LIGHTNING,$03,$51,TX_END
+ db $03,$50,TX_LIGHTNING,$03,$51
+ done
Text07f8: ; 5737b (15:737b)
- db $03,$50,TX_WATER,$03,$51,TX_END
+ db $03,$50,TX_WATER,$03,$51
+ done
Text07f9: ; 57382 (15:7382)
- db $03,$50,TX_FIGHTING,$03,$51,TX_END
+ db $03,$50,TX_FIGHTING,$03,$51
+ done
Text07fa: ; 57389 (15:7389)
- db $03,$50,TX_PSYCHIC,$03,$51,TX_END
+ db $03,$50,TX_PSYCHIC,$03,$51
+ done
Text07fb: ; 57390 (15:7390)
- db $03,$50,TX_GRASS,$03,$51,TX_END
+ db $03,$50,TX_GRASS,$03,$51
+ done
GrassEnergyName: ; 57397 (15:7397)
- db TX_START,"Grass Energy",TX_END
+ text "Grass Energy"
+ done
GrassEnergyDescription: ; 573a5 (15:73a5)
- db TX_START,"Provides 1 ",TX_GRASS," Energy.",TX_END
+ text "Provides 1 ",TX_GRASS," Energy."
+ done
FireEnergyName: ; 573bc (15:73bc)
- db TX_START,"Fire Energy",TX_END
+ text "Fire Energy"
+ done
FireEnergyDescription: ; 573c9 (15:73c9)
- db TX_START,"Provides 1 ",TX_FIRE," Energy.",TX_END
+ text "Provides 1 ",TX_FIRE," Energy."
+ done
WaterEnergyName: ; 573e0 (15:73e0)
- db TX_START,"Water Energy",TX_END
+ text "Water Energy"
+ done
WaterEnergyDescription: ; 573ee (15:73ee)
- db TX_START,"Provides 1 ",TX_WATER," Energy.",TX_END
+ text "Provides 1 ",TX_WATER," Energy."
+ done
LightningEnergyName: ; 57405 (15:7405)
- db TX_START,"Lightning Energy",TX_END
+ text "Lightning Energy"
+ done
LightningEnergyDescription: ; 57417 (15:7417)
- db TX_START,"Provides 1 ",TX_LIGHTNING," Energy.",TX_END
+ text "Provides 1 ",TX_LIGHTNING," Energy."
+ done
FightingEnergyName: ; 5742e (15:742e)
- db TX_START,"Fighting Energy",TX_END
+ text "Fighting Energy"
+ done
FightingEnergyDescription: ; 5743f (15:743f)
- db TX_START,"Provides 1 ",TX_FIGHTING," Energy.",TX_END
+ text "Provides 1 ",TX_FIGHTING," Energy."
+ done
PsychicEnergyName: ; 57456 (15:7456)
- db TX_START,"Psychic Energy",TX_END
+ text "Psychic Energy"
+ done
PsychicEnergyDescription: ; 57466 (15:7466)
- db TX_START,"Provides 1 ",TX_PSYCHIC," Energy.",TX_END
+ text "Provides 1 ",TX_PSYCHIC," Energy."
+ done
DoubleColorlessEnergyName: ; 5747d (15:747d)
- db TX_START,"Double Colorless Energy",TX_END
+ text "Double Colorless Energy"
+ done
DoubleColorlessEnergyDescription: ; 57496 (15:7496)
- db TX_START,"Provides ",TX_COLORLESS,TX_COLORLESS," Energy. (Doesn't\n"
- db "count as a basic Energy card.) \n"
- db "Colorless Energy can't be used to\n"
- db "pay colored Energy costs. (Any type\n"
- db "of Energy can be used to pay\n"
- db "Colorless Energy costs.)",TX_END
+ text "Provides ",TX_COLORLESS,TX_COLORLESS," Energy. (Doesn't"
+ line "count as a basic Energy card.) "
+ line "Colorless Energy can't be used to"
+ line "pay colored Energy costs. (Any type"
+ line "of Energy can be used to pay"
+ line "Colorless Energy costs.)"
+ done
BulbasaurName: ; 57552 (15:7552)
- db TX_START,"Bulbasaur",TX_END
+ text "Bulbasaur"
+ done
LeechSeedName: ; 5755d (15:755d)
- db TX_START,"Leech Seed",TX_END
+ text "Leech Seed"
+ done
BulbasaursLeechSeedDescription: ; 57569 (15:7569)
- db TX_START,"Unless all damage from this attack\n"
- db "is prevented, you may remove 1\n"
- db "damage counter from Bulbasaur.",TX_END
+ text "Unless all damage from this attack"
+ line "is prevented, you may remove 1"
+ line "damage counter from Bulbasaur."
+ done
BulbasaurKind: ; 575cb (15:75cb)
- db TX_START,"Seed",TX_END
+ text "Seed"
+ done
BulbasaurDescription: ; 575d1 (15:75d1)
- db TX_START,"A strange seed was planted on its\n"
- db "back at birth. Thus, a plant\n"
- db "sprouted and now grows with this\n"
- db "Pok`mon.",TX_END
+ text "A strange seed was planted on its"
+ line "back at birth. Thus, a plant"
+ line "sprouted and now grows with this"
+ line "Pok`mon."
+ done
IvysaurName: ; 5763b (15:763b)
- db TX_START,"Ivysaur",TX_END
+ text "Ivysaur"
+ done
VineWhipName: ; 57644 (15:7644)
- db TX_START,"Vine Whip",TX_END
+ text "Vine Whip"
+ done
PoisonPowderName: ; 5764f (15:764f)
- db TX_START,"Poisonpowder",TX_END
+ text "Poisonpowder"
+ done
InflictPoisonDescription: ; 5765d (15:765d)
- db TX_START,"The Defending Pok`mon is now\n"
- db "Poisoned.",TX_END
+ text "The Defending Pok`mon is now"
+ line "Poisoned."
+ done
IvysaurDescription: ; 57685 (15:7685)
- db TX_START,"When the bulb on its back grows\n"
- db "large, the Pok`mon seems to lose the\n"
- db "ability to stand on its hind legs.",TX_END
+ text "When the bulb on its back grows"
+ line "large, the Pok`mon seems to lose the"
+ line "ability to stand on its hind legs."
+ done
VenusaurName: ; 576ee (15:76ee)
- db TX_START,"Venusaur",TX_END
+ text "Venusaur"
+ done
SolarPowerName: ; 576f8 (15:76f8)
- db TX_START,"Solar Power",TX_END
+ text "Solar Power"
+ done
SolarPowerDescription: ; 57705 (15:7705)
- db TX_START,"Once during your turn (before your\n"
- db "attack), you may use this power.\n"
- db "Your Active Pok`mon and the\n"
- db "Defending Pok`mon are no longer\n"
- db "Asleep, Confused, Paralyzed, or\n"
- db "Poisoned.",TX_END
+ text "Once during your turn (before your"
+ line "attack), you may use this power."
+ line "Your Active Pok`mon and the"
+ line "Defending Pok`mon are no longer"
+ line "Asleep, Confused, Paralyzed, or"
+ line "Poisoned."
+ done
SolarPowerDescriptionCont: ; 577b0 (15:77b0)
- db TX_START,"This power can't be used if\n"
- db "Venusaur is Asleep, Confused,\n"
- db "or Paralyzed.",TX_END
+ text "This power can't be used if"
+ line "Venusaur is Asleep, Confused,"
+ line "or Paralyzed."
+ done
MegaDrainName: ; 577f9 (15:77f9)
- db TX_START,"Mega Drain",TX_END
+ text "Mega Drain"
+ done
VenusaursMegaDrainDescription: ; 57805 (15:7805)
- db TX_START,"Remove a number of damage counters\n"
- db "from Venusaur equal to half the\n"
- db "damage done to the Defending Pok`mon\n"
- db "(after applying Weakness and\n"
- db "Resistance) (rounded up to the\n"
- db "nearest 10).",TX_END
+ text "Remove a number of damage counters"
+ line "from Venusaur equal to half the"
+ line "damage done to the Defending Pok`mon"
+ line "(after applying Weakness and"
+ line "Resistance) (rounded up to the"
+ line "nearest 10)."
+ done
VenusaursMegaDrainDescriptionCont: ; 578b7 (15:78b7)
- db TX_START,"If Venusaur has fewer damage\n"
- db "counters than that, remove all of\n"
- db "them.",TX_END
+ text "If Venusaur has fewer damage"
+ line "counters than that, remove all of"
+ line "them."
+ done
Venusaur1Description: ; 578fd (15:78fd)
- db TX_START,"The flower on its back catches\n"
- db "the sun's rays. The sunlight is then\n"
- db "absorbed and used for energy.",TX_END
+ text "The flower on its back catches"
+ line "the sun's rays. The sunlight is then"
+ line "absorbed and used for energy."
+ done
EnergyTransName: ; 57960 (15:7960)
- db TX_START,"Energy Trans",TX_END
+ text "Energy Trans"
+ done
EnergyTransDescription: ; 5796e (15:796e)
- db TX_START,"As often as you like during your\n"
- db "turn (before your attack), you may\n"
- db "take 1 ",TX_GRASS," Energy card attached to 1\n"
- db "of your Pok`mon and attach it to a\n"
- db "different one. This power can't be\n"
- db "used if Venusaur is Asleep,\n"
- db "Confused, or Paralyzed.",TX_END
+ text "As often as you like during your"
+ line "turn (before your attack), you may"
+ line "take 1 ",TX_GRASS," Energy card attached to 1"
+ line "of your Pok`mon and attach it to a"
+ line "different one. This power can't be"
+ line "used if Venusaur is Asleep,"
+ line "Confused, or Paralyzed."
+ done
SolarBeamName: ; 57a51 (15:7a51)
- db TX_START,"Solarbeam",TX_END
+ text "Solarbeam"
+ done
Venusaur2Description: ; 57a5c (15:7a5c)
- db TX_START,"This plant blooms when it is\n"
- db "absorbing solar energy. It stays on\n"
- db "the move to seek sunlight.",TX_END
+ text "This plant blooms when it is"
+ line "absorbing solar energy. It stays on"
+ line "the move to seek sunlight."
+ done
CaterpieName: ; 57ab9 (15:7ab9)
- db TX_START,"Caterpie",TX_END
+ text "Caterpie"
+ done
StringShotName: ; 57ac3 (15:7ac3)
- db TX_START,"String Shot",TX_END
+ text "String Shot"
+ done
MayInflictParalysisDescription: ; 57ad0 (15:7ad0)
- db TX_START,"Flip a coin. If heads, the Defending\n"
- db "Pok`mon is now Paralyzed.",TX_END
+ text "Flip a coin. If heads, the Defending"
+ line "Pok`mon is now Paralyzed."
+ done
CaterpieKind: ; 57b10 (15:7b10)
- db TX_START,"Worm",TX_END
+ text "Worm"
+ done
CaterpieDescription: ; 57b16 (15:7b16)
- db TX_START,"Its short feet are tipped with\n"
- db "suction pads that enable it to\n"
- db "tirelessly climb slopes and walls.",TX_END
+ text "Its short feet are tipped with"
+ line "suction pads that enable it to"
+ line "tirelessly climb slopes and walls."
+ done
MetapodName: ; 57b78 (15:7b78)
- db TX_START,"Metapod",TX_END
+ text "Metapod"
+ done
StiffenName: ; 57b81 (15:7b81)
- db TX_START,"Stiffen",TX_END
+ text "Stiffen"
+ done
MetapodsStiffenDescription: ; 57b8a (15:7b8a)
- db TX_START,"Flip a coin. If heads, prevent all\n"
- db "damage done to Metapod during your\n"
- db "opponent's next turn. (Any other\n"
- db "effects of attacks still happen.)",TX_END
+ text "Flip a coin. If heads, prevent all"
+ line "damage done to Metapod during your"
+ line "opponent's next turn. (Any other"
+ line "effects of attacks still happen.)"
+ done
StunSporeName: ; 57c14 (15:7c14)
- db TX_START,"Stun Spore",TX_END
+ text "Stun Spore"
+ done
MetapodKind: ; 57c20 (15:7c20)
- db TX_START,"Cocoon",TX_END
+ text "Cocoon"
+ done
MetapodDescription: ; 57c28 (15:7c28)
- db TX_START,"It is vulnerable to attack because\n"
- db "its shell is soft, exposing its weak\n"
- db "and tender body.",TX_END
+ text "It is vulnerable to attack because"
+ line "its shell is soft, exposing its weak"
+ line "and tender body."
+ done
ButterfreeName: ; 57c82 (15:7c82)
- db TX_START,"Butterfree",TX_END
+ text "Butterfree"
+ done
WhirlwindName: ; 57c8e (15:7c8e)
- db TX_START,"Whirlwind",TX_END
+ text "Whirlwind"
+ done
WhirlwindDescription: ; 57c99 (15:7c99)
- db TX_START,"If your opponent has any Benched\n"
- db "Pok`mon, he or she chooses 1 of them\n"
- db "and switches it with the Defending\n"
- db "Pok`mon. (Do the damage before\n"
- db "switching the Pok`mon.)",TX_END
+ text "If your opponent has any Benched"
+ line "Pok`mon, he or she chooses 1 of them"
+ line "and switches it with the Defending"
+ line "Pok`mon. (Do the damage before"
+ line "switching the Pok`mon.)"
+ done
ButterfreesMegaDrainDescription: ; 57d3a (15:7d3a)
- db TX_START,"Remove a number of damage counters\n"
- db "from Butterfree equal to half the\n"
- db "damage done to the Defending Pok`mon\n"
- db "(after applying Weakness and\n"
- db "Resistance) (rounded up to the\n"
- db "nearest 10).",TX_END
+ text "Remove a number of damage counters"
+ line "from Butterfree equal to half the"
+ line "damage done to the Defending Pok`mon"
+ line "(after applying Weakness and"
+ line "Resistance) (rounded up to the"
+ line "nearest 10)."
+ done
ButterfreesMegaDrainDescriptionCont: ; 57dee (15:7dee)
- db TX_START,"If Butterfree has fewer damage\n"
- db "counters than that, remove all of\n"
- db "them.",TX_END
+ text "If Butterfree has fewer damage"
+ line "counters than that, remove all of"
+ line "them."
+ done
ButterfreeKind: ; 57e36 (15:7e36)
- db TX_START,"Butterfly",TX_END
+ text "Butterfly"
+ done
ButterfreeDescription: ; 57e41 (15:7e41)
- db TX_START,"In battle, it flaps its wings at\n"
- db "high speed to release highly toxic\n"
- db "dust into the air.",TX_END
+ text "In battle, it flaps its wings at"
+ line "high speed to release highly toxic"
+ line "dust into the air."
+ done
WeedleName: ; 57e99 (15:7e99)
- db TX_START,"Weedle",TX_END
+ text "Weedle"
+ done
PoisonStingName: ; 57ea1 (15:7ea1)
- db TX_START,"Poison Sting",TX_END
+ text "Poison Sting"
+ done
MayInflictPoisonDescription: ; 57eaf (15:7eaf)
- db TX_START,"Flip a coin. If heads, the Defending\n"
- db "Pok`mon is now Poisoned.",TX_END
+ text "Flip a coin. If heads, the Defending"
+ line "Pok`mon is now Poisoned."
+ done
WeedleKind: ; 57eee (15:7eee)
- db TX_START,"Hairy Bug",TX_END
+ text "Hairy Bug"
+ done
WeedleDescription: ; 57ef9 (15:7ef9)
- db TX_START,"Often found in forests, eating\n"
- db "leaves. It has a sharp, venomous\n"
- db "stinger on its head.",TX_END
+ text "Often found in forests, eating"
+ line "leaves. It has a sharp, venomous"
+ line "stinger on its head."
+ done
KakunaName: ; 57f4f (15:7f4f)
- db TX_START,"Kakuna",TX_END
+ text "Kakuna"
+ done
KakunasStiffenDescription: ; 57f57 (15:7f57)
- db TX_START,"Flip a coin. If heads, prevent all\n"
- db "damage done to Kakuna during your\n"
- db "opponent's next turn. (Any other\n"
- db "effects of attacks still happen.)",TX_END
+ text "Flip a coin. If heads, prevent all"
+ line "damage done to Kakuna during your"
+ line "opponent's next turn. (Any other"
+ line "effects of attacks still happen.)"
+ done
diff --git a/src/text/text_offsets.asm b/src/text/text_offsets.asm
index d313873..e33eae1 100755
--- a/src/text/text_offsets.asm
+++ b/src/text/text_offsets.asm
@@ -3,2992 +3,2992 @@ const_value = 1
TextOffsets:: ; 34000 (d:4000)
db $00,$00,$00
- text HandText
- text CheckText
- text AttackText
- text PKMNPowerText
- text DoneText
- text TypeText
- text RetreatText
- text WeaknessText
- text ResistanceText
- text PKMNPWRText
- text Text000b
- text LengthText
- text WeightText
- text PokemonText
- text Text000f
- text lbsText
- text Text0011
- text Text0012
- text Text0013
- text Text0014
- text Text0015
- text Text0016
- text Text0017
- text Text0018
- text Text0019
- text Text001a
- text Text001b
- text Text001c
- text Text001d
- text Text001e
- text Text001f
- text Text0020
- text Text0021
- text Text0022
- text NoPokemonOnTheBenchText
- text UnableDueToSleepText
- text UnableDueToParalysisText
- text Received10DamageDueToPoisonText
- text Received20DamageDueToPoisonText
- text IsStillAsleepText
- text IsCuredOfSleepText
- text IsCuredOfParalysisText
- text Text002b
- text Text002c
- text Text002d
- text Text002e
- text YesOrNoText
- text DiscardName
- text Text0031
- text Text0032
- text Text0033
- text Text0034
- text PokemonsAttackText
- text Text0036
- text Text0037
- text Text0038
- text Text0039
- text Text003a
- text Text003b
- text NoSelectableAttackText
- text UnableToRetreatText
- text OnlyOneEnergyCardText
- text Text003f
- text Text0040
- text DiscardDescription
- text Text0042
- text Text0043
- text Text0044
- text Text0045
- text Text0046
- text Text0047
- text Text0048
- text Text0049
- text Text004a
- text Text004b
- text Text004c
- text Text004d
- text Text004e
- text DamageToSelfDueToConfusionText
- text Text0050
- text Text0051
- text Text0052
- text Text0053
- text Text0054
- text TransmissionErrorText
- text Text0056
- text Text0057
- text Text0058
- text Text0059
- text Text005a
- text Text005b
- text Text005c
- text Text005d
- text Text005e
- text Text005f
- text Text0060
- text Text0061
- text Text0062
- text Text0063
- text Text0064
- text Text0065
- text Text0066
- text Text0067
- text Text0068
- text Text0069
- text Text006a
- text Text006b
- text Text006c
- text Text006d
- text Text006e
- text Text006f
- text Text0070
- text Text0071
- text Text0072
- text Text0073
- text Text0074
- text Text0075
- text DecisionText
- text DuelWasDrawText
- text WonDuelText
- text LostDuelText
- text StartSuddenDeathMatchText
- text Text007b
- text Text007c
- text Text007d
- text Text007e
- text Text007f
- text Text0080
- text WasKnockedOutText
- text Text0082
- text Text0083
- text Text0084
- text Text0085
- text Text0086
- text Text0087
- text DuelistIsThinkingText
- text Text0089
- text Text008a
- text Text008b
- text Text008c
- text Text008d
- text Text008e
- text Text008f
- text Text0090
- text Text0091
- text Player2
- text Text0093
- text Text0094
- text Text0095
- text Text0096
- text Text0097
- text Text0098
- text Text0099
- text Text009a
- text Text009b
- text Text009c
- text Text009d
- text Text009e
- text Text009f
- text Text00a0
- text Text00a1
- text ResetBackUpRamText
- text Text00a3
- text NoCardsInHandText
- text Text00a5
- text Text00a6
- text Text00a7
- text Text00a8
- text Text00a9
- text Text00aa
- text Text00ab
- text Text00ac
- text Text00ad
- text Text00ae
- text Text00af
- text Text00b0
- text Text00b1
- text Text00b2
- text Text00b3
- text Text00b4
- text Text00b5
- text Text00b6
- text Text00b7
- text Text00b8
- text Text00b9
- text Text00ba
- text Text00bb
- text Text00bc
- text Text00bd
- text Text00be
- text Text00bf
- text NotEnoughEnergyCardsText
- text Text00c1
- text Text00c2
- text Text00c3
- text Text00c4
- text Text00c5
- text Text00c6
- text Text00c7
- text Text00c8
- text Text00c9
- text Text00ca
- text CannotUseDueToStatusText
- text Text00cc
- text Text00cd
- text Text00ce
- text Text00cf
- text Text00d0
- text Text00d1
- text Text00d2
- text Text00d3
- text UnableDueToToxicGasText
- text Text00d5
- text Text00d6
- text Text00d7
- text Text00d8
- text Text00d9
- text Text00da
- text Text00db
- text Text00dc
- text Text00dd
- text SandAttackCheckText
- text SmokescreenCheckText
- text ParalysisCheckText
- text SleepCheckText
- text PoisonCheckText
- text ConfusionCheckText
- text VenomPowderCheckText
- text Text00e5
- text Text00e6
- text Text00e7
- text Text00e8
- text Text00e9
- text Text00ea
- text Text00eb
- text Text00ec
- text Text00ed
- text Text00ee
- text Text00ef
- text Text00f0
- text Text00f1
- text Text00f2
- text Text00f3
- text Text00f4
- text Text00f5
- text Text00f6
- text Text00f7
- text Text00f8
- text Text00f9
- text Text00fa
- text Text00fb
- text Text00fc
- text AttackUnsuccessfulText
- text UnableToRetreatDueToAcidText
- text UnableToUseTrainerDueToHeadacheText
- text UnableToAttackDueToTailWagText
- text UnableToAttackDueToLeerText
- text UnableToAttackDueToBoneAttackText
- text UnableToUseAttackDueToAmnesiaText
- text KnockedOutDueToDestinyBondText
- text ReceivesDamageDueToStrikesBackText
- text UnableToEvolveDueToPrehistoricPowerText
- text NoDamageOrEffectDueToFlyText
- text NoDamageOrEffectDueToBarrierText
- text NoDamageOrEffectDueToAgilityText
- text UnableToUseAttackDueToNShieldText
- text NoDamageOrEffectDueToNShieldText
- text NoDamageOrEffectDueToTransparencyText
- text Text010d
- text SelectMonOnBenchToSwitchWithActiveText
- text Text010f
- text Text0110
- text Text0111
- text Text0112
- text Text0113
- text Text0114
- text Text0115
- text Text0116
- text Text0117
- text Text0118
- text Text0119
- text Text011a
- text Text011b
- text Text011c
- text Text011d
- text Text011e
- text Text011f
- text Text0120
- text Text0121
- text Text0122
- text Text0123
- text Text0124
- text Text0125
- text Text0126
- text Text0127
- text Text0128
- text Text0129
- text Text012a
- text Text012b
- text Text012c
- text Text012d
- text Text012e
- text Text012f
- text Text0130
- text Text0131
- text Text0132
- text Text0133
- text Text0134
- text Text0135
- text Text0136
- text Text0137
- text Text0138
- text Text0139
- text Text013a
- text Text013b
- text Text013c
- text Text013d
- text Text013e
- text Text013f
- text Text0140
- text Text0141
- text Text0142
- text Text0143
- text Text0144
- text Text0145
- text Text0146
- text Text0147
- text Text0148
- text Text0149
- text WasUnsuccessfulText
- text Text014b
- text Text014c
- text Text014d
- text Text014e
- text Text014f
- text Text0150
- text Text0151
- text Text0152
- text Text0153
- text Text0154
- text Text0155
- text Text0156
- text Text0157
- text Text0158
- text Text0159
- text Text015a
- text Text015b
- text Text015c
- text Text015d
- text Text015e
- text Text015f
- text Text0160
- text Text0161
- text Text0162
- text Text0163
- text Text0164
- text Text0165
- text Text0166
- text Text0167
- text Text0168
- text Text0169
- text Text016a
- text Text016b
- text Text016c
- text Text016d
- text Text016e
- text Text016f
- text Text0170
- text Text0171
- text Text0172
- text Text0173
- text Text0174
- text Text0175
- text Text0176
- text Text0177
- text Text0178
- text Text0179
- text Text017a
- text Text017b
- text Text017c
- text Text017d
- text Text017e
- text Text017f
- text Text0180
- text Text0181
- text Text0182
- text Text0183
- text Text0184
- text Text0185
- text Text0186
- text Text0187
- text Text0188
- text Text0189
- text Text018a
- text Text018b
- text Text018c
- text Text018d
- text Text018e
- text ReceivedCardText
- text ReceivedPromotionalCardText
- text ReceivedLegendaryCardText
- text ReceivedPromotionalFlyingPikachuText
- text ReceivedPromotionalSurfingPikachuText
- text Text0194
- text Text0195
- text Text0196
- text Text0197
- text Text0198
- text Text0199
- text Text019a
- text Text019b
- text Text019c
- text Text019d
- text Text019e
- text Text019f
- text Text01a0
- text Text01a1
- text Text01a2
- text Text01a3
- text Text01a4
- text Text01a5
- text Text01a6
- text Text01a7
- text Text01a8
- text Text01a9
- text Text01aa
- text Text01ab
- text Text01ac
- text Text01ad
- text Text01ae
- text Text01af
- text Text01b0
- text Text01b1
- text Text01b2
- text Text01b3
- text Text01b4
- text Text01b5
- text Text01b6
- text Text01b7
- text Text01b8
- text Text01b9
- text Text01ba
- text Text01bb
- text Text01bc
- text Text01bd
- text Text01be
- text Text01bf
- text Text01c0
- text Text01c1
- text Text01c2
- text Text01c3
- text Text01c4
- text Text01c5
- text Text01c6
- text Text01c7
- text Text01c8
- text Text01c9
- text Text01ca
- text Text01cb
- text Text01cc
- text Text01cd
- text Text01ce
- text Text01cf
- text Text01d0
- text Text01d1
- text Text01d2
- text Text01d3
- text Text01d4
- text Text01d5
- text Text01d6
- text Text01d7
- text Text01d8
- text Text01d9
- text Text01da
- text Text01db
- text Text01dc
- text Text01dd
- text PracticePlayerDeckName
- text SamsPracticeDeckName
- text CharmanderAndFriendsDeckName
- text CharmanderExtraDeckName
- text SquirtleAndFriendsDeckName
- text SquirtleExtraDeckName
- text BulbasaurAndFriendsDeckName
- text BulbasaurExtraDeckName
- text FirstStrikeDeckName
- text RockCrusherDeckName
- text GoGoRainDanceDeckName
- text ZappingSelfdestructDeckName
- text FlowerPowerDeckName
- text StrangePsyshockDeckName
- text WondersofScienceDeckName
- text FireChargeDeckName
- text LegendaryMoltresDeckName
- text LegendaryZapdosDeckName
- text LegendaryArticunoDeckName
- text LegendaryDragoniteDeckName
- text ImRonaldDeckName
- text PowerfulRonaldDeckName
- text InvincibleRonaldDeckName
- text LegendaryRonaldDeckName
- text WaterfrontPokemonDeckName
- text LonelyFriendsDeckName
- text SoundoftheWavesDeckName
- text AngerDeckName
- text FlamethrowerDeckName
- text ReshuffleDeckName
- text ExcavationDeckName
- text BlisteringPokemonDeckName
- text HardPokemonDeckName
- text EtceteraDeckName
- text FlowerGardenDeckName
- text KaleidoscopeDeckName
- text MusclesforBrainsDeckName
- text HeatedBattleDeckName
- text LovetoBattleDeckName
- text PikachuDeckName
- text BoomBoomSelfdestructDeckName
- text PowerGeneratorDeckName
- text GhostDeckName
- text NapTimeDeckName
- text StrangePowerDeckName
- text FlyinPokemonDeckName
- text LovelyNidoranDeckName
- text PoisonDeckName
- text ImakuniDeckName
- text LightningAndFireDeckName
- text WaterAndFightingDeckName
- text GrassAndPsychicDeckName
- text Text0212
- text Text0213
- text Text0214
- text Text0215
- text Text0216
- text Text0217
- text Text0218
- text Text0219
- text Text021a
- text Text021b
- text Text021c
- text Text021d
- text Text021e
- text Text021f
- text Text0220
- text Text0221
- text Text0222
- text NewDeckText
- text PleaseSelectDeckText
- text Text0225
- text Text0226
- text Text0227
- text Text0228
- text Text0229
- text ChosenAsDuelingDeckText
- text Text022b
- text Text022c
- text Text022d
- text Text022e
- text ThereIsNoDeckHereText
- text Text0230
- text Text0231
- text Text0232
- text Text0233
- text Text0234
- text Text0235
- text Text0236
- text Text0237
- text Text0238
- text Text0239
- text Text023a
- text Text023b
- text Text023c
- text Text023d
- text Text023e
- text Text023f
- text Text0240
- text Text0241
- text Text0242
- text Text0243
- text Text0244
- text Text0245
- text Text0246
- text Text0247
- text Text0248
- text Text0249
- text Text024a
- text Text024b
- text Text024c
- text Text024d
- text Text024e
- text Text024f
- text Text0250
- text Text0251
- text Text0252
- text Text0253
- text Text0254
- text Text0255
- text Text0256
- text Text0257
- text Text0258
- text Text0259
- text Text025a
- text Text025b
- text Text025c
- text Text025d
- text Text025e
- text Text025f
- text Text0260
- text Text0261
- text Text0262
- text Text0263
- text Text0264
- text Text0265
- text Text0266
- text Text0267
- text Text0268
- text Text0269
- text Text026a
- text Text026b
- text Text026c
- text Text026d
- text Text026e
- text Text026f
- text Text0270
- text Text0271
- text Text0272
- text Text0273
- text Text0274
- text Text0275
- text Text0276
- text Text0277
- text Text0278
- text Text0279
- text Text027a
- text Text027b
- text Text027c
- text Text027d
- text Text027e
- text Text027f
- text Text0280
- text Text0281
- text Text0282
- text Text0283
- text Text0284
- text Text0285
- text Text0286
- text Text0287
- text Text0288
- text Text0289
- text Text028a
- text Text028b
- text Text028c
- text Text028d
- text Text028e
- text Text028f
- text Text0290
- text Text0291
- text Text0292
- text Text0293
- text Text0294
- text Text0295
- text Text0296
- text Text0297
- text Text0298
- text Text0299
- text Text029a
- text Text029b
- text Text029c
- text Text029d
- text Text029e
- text Text029f
- text Text02a0
- text Text02a1
- text Text02a2
- text Text02a3
- text Text02a4
- text Text02a5
- text Text02a6
- text Text02a7
- text Text02a8
- text Text02a9
- text Text02aa
- text Text02ab
- text Text02ac
- text Text02ad
- text Text02ae
- text Text02af
- text Text02b0
- text Text02b1
- text Text02b2
- text Text02b3
- text Text02b4
- text Text02b5
- text Text02b6
- text Text02b7
- text Text02b8
- text Text02b9
- text Text02ba
- text Text02bb
- text Text02bc
- text Text02bd
- text Text02be
- text Text02bf
- text Text02c0
- text Text02c1
- text Text02c2
- text Text02c3
- text Text02c4
- text Text02c5
- text Text02c6
- text Text02c7
- text Text02c8
- text Text02c9
- text Text02ca
- text Text02cb
- text Text02cc
- text Text02cd
- text Text02ce
- text Text02cf
- text Text02d0
- text Text02d1
- text Text02d2
- text Text02d3
- text Text02d4
- text Text02d5
- text Text02d6
- text Text02d7
- text Text02d8
- text Text02d9
- text Text02da
- text Text02db
- text Text02dc
- text Text02dd
- text Text02de
- text Text02df
- text Text02e0
- text Text02e1
- text Text02e2
- text Text02e3
- text Text02e4
- text Text02e5
- text Text02e6
- text Text02e7
- text Text02e8
- text Text02e9
- text Text02ea
- text Text02eb
- text Text02ec
- text Text02ed
- text Text02ee
- text Text02ef
- text Text02f0
- text Text02f1
- text Text02f2
- text Text02f3
- text Text02f4
- text Text02f5
- text Text02f6
- text Text02f7
- text Text02f8
- text Text02f9
- text Text02fa
- text Text02fb
- text Text02fc
- text Text02fd
- text Text02fe
- text Text02ff
- text Text0300
- text Text0301
- text Text0302
- text Text0303
- text Text0304
- text Text0305
- text Text0306
- text Text0307
- text Text0308
- text Text0309
- text Text030a
- text Text030b
- text Text030c
- text Text030d
- text Text030e
- text Text030f
- text Text0310
- text Text0311
- text Text0312
- text Text0313
- text Text0314
- text Text0315
- text Text0316
- text Text0317
- text Text0318
- text Text0319
- text Text031a
- text Text031b
- text Text031c
- text Text031d
- text Text031e
- text Text031f
- text Text0320
- text Text0321
- text Text0322
- text Text0323
- text Text0324
- text Text0325
- text Text0326
- text Text0327
- text Text0328
- text Text0329
- text Text032a
- text Text032b
- text Text032c
- text Text032d
- text Text032e
- text Text032f
- text Text0330
- text Text0331
- text Text0332
- text Text0333
- text Text0334
- text Text0335
- text Text0336
- text Text0337
- text Text0338
- text Text0339
- text Text033a
- text Text033b
- text Text033c
- text Text033d
- text Text033e
- text Text033f
- text Text0340
- text Text0341
- text Text0342
- text Text0343
- text Text0344
- text Text0345
- text Text0346
- text Text0347
- text Text0348
- text Text0349
- text Text034a
- text Text034b
- text Text034c
- text Text034d
- text Text034e
- text Text034f
- text Text0350
- text Text0351
- text TurnedPCOnText
- text TurnedPCOffText
- text Text0354
- text Text0355
- text Text0356
- text Text0357
- text Text0358
- text Text0359
- text Text035a
- text Text035b
- text Text035c
- text Text035d
- text Text035e
- text Text035f
- text Text0360
- text Text0361
- text Text0362
- text Text0363
- text Text0364
- text Text0365
- text Text0366
- text Text0367
- text Text0368
- text Text0369
- text Text036a
- text Text036b
- text Text036c
- text Text036d
- text Text036e
- text Text036f
- text Text0370
- text Text0371
- text Text0372
- text Text0373
- text Text0374
- text Text0375
- text Text0376
- text Text0377
- text Text0378
- text Text0379
- text Text037a
- text Text037b
- text Text037c
- text Text037d
- text Text037e
- text Text037f
- text Text0380
- text Text0381
- text Text0382
- text Text0383
- text Text0384
- text Text0385
- text Text0386
- text ReceivedBoosterPackText
- text AndAnotherBoosterPackText
- text CheckedCardsInBoosterPackText
- text Text038a
- text WonTheMedalText
- text Text038c
- text Text038d
- text Text038e
- text Text038f
- text Text0390
- text Text0391
- text Text0392
- text Text0393
- text Text0394
- text Text0395
- text Text0396
- text Text0397
- text Text0398
- text Text0399
- text Text039a
- text Text039b
- text Text039c
- text Text039d
- text Text039e
- text Text039f
- text Text03a0
- text Text03a1
- text Text03a2
- text Text03a3
- text Text03a4
- text Text03a5
- text Text03a6
- text Text03a7
- text Text03a8
- text Text03a9
- text Text03aa
- text Text03ab
- text Text03ac
- text Text03ad
- text Text03ae
- text Text03af
- text Text03b0
- text Text03b1
- text Text03b2
- text Text03b3
- text Text03b4
- text Text03b5
- text Text03b6
- text Text03b7
- text Text03b8
- text Text03b9
- text Text03ba
- text Text03bb
- text Text03bc
- text Text03bd
- text Text03be
- text Text03bf
- text Text03c0
- text Text03c1
- text Text03c2
- text Text03c3
- text Text03c4
- text Text03c5
- text Text03c6
- text Text03c7
- text Text03c8
- text Text03c9
- text Text03ca
- text Text03cb
- text Text03cc
- text Text03cd
- text Text03ce
- text Text03cf
- text Text03d0
- text Text03d1
- text Text03d2
- text Text03d3
- text Text03d4
- text Text03d5
- text Text03d6
- text Text03d7
- text Text03d8
- text Text03d9
- text Text03da
- text Text03db
- text Text03dc
- text Text03dd
- text Text03de
- text Text03df
- text Text03e0
- text Text03e1
- text Text03e2
- text Text03e3
- text Text03e4
- text Text03e5
- text Text03e6
- text Text03e7
- text Text03e8
- text Text03e9
- text Text03ea
- text Text03eb
- text Text03ec
- text Text03ed
- text Text03ee
- text Text03ef
- text Text03f0
- text Text03f1
- text Text03f2
- text Text03f3
- text Text03f4
- text Text03f5
- text Text03f6
- text Text03f7
- text Text03f8
- text Text03f9
- text Text03fa
- text Text03fb
- text Text03fc
- text Text03fd
- text Text03fe
- text Text03ff
- text Text0400
- text Text0401
- text Text0402
- text Text0403
- text Text0404
- text Text0405
- text Text0406
- text Text0407
- text Text0408
- text Text0409
- text Text040a
- text Text040b
- text Text040c
- text Text040d
- text Text040e
- text Text040f
- text Text0410
- text Text0411
- text Text0412
- text Text0413
- text Text0414
- text Text0415
- text Text0416
- text Text0417
- text Text0418
- text Text0419
- text Text041a
- text Text041b
- text Text041c
- text Text041d
- text Text041e
- text Text041f
- text Text0420
- text Text0421
- text Text0422
- text Text0423
- text Text0424
- text Text0425
- text Text0426
- text Text0427
- text Text0428
- text Text0429
- text Text042a
- text Text042b
- text Text042c
- text Text042d
- text Text042e
- text Text042f
- text Text0430
- text Text0431
- text Text0432
- text Text0433
- text Text0434
- text Text0435
- text Text0436
- text Text0437
- text Text0438
- text Text0439
- text Text043a
- text Text043b
- text Text043c
- text Text043d
- text Text043e
- text Text043f
- text Text0440
- text Text0441
- text Text0442
- text Text0443
- text Text0444
- text Text0445
- text Text0446
- text Text0447
- text Text0448
- text Text0449
- text Text044a
- text Text044b
- text Text044c
- text Text044d
- text Text044e
- text Text044f
- text Text0450
- text Text0451
- text Text0452
- text Text0453
- text Text0454
- text Text0455
- text Text0456
- text Text0457
- text Text0458
- text Text0459
- text Text045a
- text Text045b
- text Text045c
- text Text045d
- text Text045e
- text Text045f
- text Text0460
- text Text0461
- text Text0462
- text Text0463
- text Text0464
- text Text0465
- text Text0466
- text Text0467
- text Text0468
- text Text0469
- text Text046a
- text Text046b
- text Text046c
- text Text046d
- text Text046e
- text Text046f
- text Text0470
- text Text0471
- text Text0472
- text Text0473
- text Text0474
- text Text0475
- text Text0476
- text Text0477
- text Text0478
- text Text0479
- text Text047a
- text Text047b
- text Text047c
- text Text047d
- text Text047e
- text Text047f
- text Text0480
- text Text0481
- text Text0482
- text Text0483
- text Text0484
- text Text0485
- text Text0486
- text Text0487
- text Text0488
- text Text0489
- text Text048a
- text Text048b
- text Text048c
- text Text048d
- text Text048e
- text Text048f
- text Text0490
- text Text0491
- text Text0492
- text Text0493
- text Text0494
- text Text0495
- text Text0496
- text Text0497
- text Text0498
- text Text0499
- text Text049a
- text Text049b
- text Text049c
- text Text049d
- text Text049e
- text Text049f
- text Text04a0
- text Text04a1
- text Text04a2
- text Text04a3
- text Text04a4
- text Text04a5
- text Text04a6
- text Text04a7
- text Text04a8
- text Text04a9
- text Text04aa
- text Text04ab
- text Text04ac
- text Text04ad
- text Text04ae
- text Text04af
- text Text04b0
- text Text04b1
- text Text04b2
- text Text04b3
- text Text04b4
- text Text04b5
- text Text04b6
- text Text04b7
- text Text04b8
- text Text04b9
- text Text04ba
- text Text04bb
- text Text04bc
- text Text04bd
- text Text04be
- text Text04bf
- text Text04c0
- text Text04c1
- text Text04c2
- text Text04c3
- text Text04c4
- text Text04c5
- text Text04c6
- text Text04c7
- text Text04c8
- text Text04c9
- text Text04ca
- text Text04cb
- text Text04cc
- text Text04cd
- text Text04ce
- text Text04cf
- text Text04d0
- text Text04d1
- text Text04d2
- text Text04d3
- text Text04d4
- text Text04d5
- text Text04d6
- text Text04d7
- text Text04d8
- text Text04d9
- text Text04da
- text Text04db
- text Text04dc
- text Text04dd
- text Text04de
- text Text04df
- text Text04e0
- text Text04e1
- text Text04e2
- text Text04e3
- text Text04e4
- text Text04e5
- text Text04e6
- text Text04e7
- text Text04e8
- text Text04e9
- text Text04ea
- text Text04eb
- text Text04ec
- text Text04ed
- text Text04ee
- text Text04ef
- text Text04f0
- text Text04f1
- text Text04f2
- text Text04f3
- text Text04f4
- text Text04f5
- text Text04f6
- text Text04f7
- text Text04f8
- text Text04f9
- text Text04fa
- text Text04fb
- text Text04fc
- text Text04fd
- text Text04fe
- text Text04ff
- text Text0500
- text Text0501
- text Text0502
- text Text0503
- text Text0504
- text Text0505
- text Text0506
- text Text0507
- text Text0508
- text Text0509
- text Text050a
- text Text050b
- text Text050c
- text Text050d
- text Text050e
- text Text050f
- text Text0510
- text Text0511
- text Text0512
- text Text0513
- text Text0514
- text Text0515
- text Text0516
- text Text0517
- text Text0518
- text Text0519
- text Text051a
- text Text051b
- text Text051c
- text Text051d
- text Text051e
- text Text051f
- text Text0520
- text Text0521
- text Text0522
- text Text0523
- text Text0524
- text Text0525
- text Text0526
- text Text0527
- text Text0528
- text Text0529
- text Text052a
- text Text052b
- text Text052c
- text Text052d
- text Text052e
- text Text052f
- text Text0530
- text Text0531
- text Text0532
- text Text0533
- text Text0534
- text Text0535
- text Text0536
- text Text0537
- text Text0538
- text Text0539
- text Text053a
- text Text053b
- text Text053c
- text Text053d
- text Text053e
- text Text053f
- text Text0540
- text Text0541
- text Text0542
- text Text0543
- text Text0544
- text Text0545
- text Text0546
- text Text0547
- text Text0548
- text Text0549
- text Text054a
- text Text054b
- text Text054c
- text Text054d
- text Text054e
- text Text054f
- text Text0550
- text Text0551
- text Text0552
- text Text0553
- text Text0554
- text Text0555
- text Text0556
- text Text0557
- text Text0558
- text Text0559
- text Text055a
- text Text055b
- text Text055c
- text Text055d
- text Text055e
- text Text055f
- text Text0560
- text Text0561
- text Text0562
- text Text0563
- text Text0564
- text Text0565
- text Text0566
- text Text0567
- text Text0568
- text Text0569
- text Text056a
- text Text056b
- text Text056c
- text Text056d
- text Text056e
- text Text056f
- text Text0570
- text Text0571
- text Text0572
- text Text0573
- text Text0574
- text Text0575
- text Text0576
- text Text0577
- text Text0578
- text Text0579
- text Text057a
- text Text057b
- text Text057c
- text Text057d
- text Text057e
- text Text057f
- text Text0580
- text Text0581
- text Text0582
- text Text0583
- text Text0584
- text Text0585
- text Text0586
- text Text0587
- text Text0588
- text Text0589
- text Text058a
- text Text058b
- text Text058c
- text Text058d
- text Text058e
- text Text058f
- text Text0590
- text Text0591
- text Text0592
- text Text0593
- text Text0594
- text Text0595
- text Text0596
- text Text0597
- text Text0598
- text Text0599
- text Text059a
- text Text059b
- text Text059c
- text Text059d
- text Text059e
- text Text059f
- text Text05a0
- text Text05a1
- text Text05a2
- text Text05a3
- text Text05a4
- text Text05a5
- text Text05a6
- text Text05a7
- text Text05a8
- text Text05a9
- text Text05aa
- text Text05ab
- text Text05ac
- text Text05ad
- text Text05ae
- text Text05af
- text Text05b0
- text Text05b1
- text Text05b2
- text Text05b3
- text Text05b4
- text Text05b5
- text Text05b6
- text Text05b7
- text Text05b8
- text Text05b9
- text Text05ba
- text Text05bb
- text Text05bc
- text Text05bd
- text Text05be
- text Text05bf
- text Text05c0
- text Text05c1
- text Text05c2
- text Text05c3
- text Text05c4
- text Text05c5
- text Text05c6
- text Text05c7
- text Text05c8
- text Text05c9
- text Text05ca
- text Text05cb
- text Text05cc
- text Text05cd
- text Text05ce
- text Text05cf
- text Text05d0
- text Text05d1
- text Text05d2
- text Text05d3
- text Text05d4
- text Text05d5
- text Text05d6
- text Text05d7
- text Text05d8
- text Text05d9
- text Text05da
- text Text05db
- text Text05dc
- text Text05dd
- text Text05de
- text Text05df
- text Text05e0
- text Text05e1
- text Text05e2
- text Text05e3
- text Text05e4
- text Text05e5
- text Text05e6
- text Text05e7
- text Text05e8
- text Text05e9
- text Text05ea
- text Text05eb
- text Text05ec
- text Text05ed
- text Text05ee
- text Text05ef
- text Text05f0
- text Text05f1
- text Text05f2
- text Text05f3
- text Text05f4
- text Text05f5
- text Text05f6
- text Text05f7
- text Text05f8
- text Text05f9
- text Text05fa
- text Text05fb
- text Text05fc
- text Text05fd
- text Text05fe
- text Text05ff
- text Text0600
- text Text0601
- text Text0602
- text Text0603
- text Text0604
- text Text0605
- text Text0606
- text Text0607
- text Text0608
- text Text0609
- text Text060a
- text Text060b
- text Text060c
- text Text060d
- text Text060e
- text Text060f
- text Text0610
- text Text0611
- text Text0612
- text Text0613
- text Text0614
- text Text0615
- text Text0616
- text Text0617
- text Text0618
- text Text0619
- text Text061a
- text Text061b
- text Text061c
- text Text061d
- text Text061e
- text Text061f
- text Text0620
- text Text0621
- text Text0622
- text Text0623
- text Text0624
- text Text0625
- text Text0626
- text Text0627
- text Text0628
- text Text0629
- text Text062a
- text Text062b
- text Text062c
- text Text062d
- text Text062e
- text Text062f
- text Text0630
- text Text0631
- text Text0632
- text Text0633
- text Text0634
- text Text0635
- text Text0636
- text Text0637
- text Text0638
- text Text0639
- text Text063a
- text Text063b
- text Text063c
- text Text063d
- text Text063e
- text Text063f
- text Text0640
- text Text0641
- text Text0642
- text Text0643
- text Text0644
- text Text0645
- text Text0646
- text Text0647
- text Text0648
- text Text0649
- text Text064a
- text Text064b
- text Text064c
- text Text064d
- text Text064e
- text Text064f
- text Text0650
- text Text0651
- text Text0652
- text Text0653
- text Text0654
- text Text0655
- text Text0656
- text Text0657
- text Text0658
- text Text0659
- text Text065a
- text Text065b
- text Text065c
- text Text065d
- text Text065e
- text Text065f
- text Text0660
- text Text0661
- text Text0662
- text Text0663
- text Text0664
- text Text0665
- text Text0666
- text Text0667
- text Text0668
- text Text0669
- text Text066a
- text Text066b
- text Text066c
- text Text066d
- text Text066e
- text Text066f
- text Text0670
- text Text0671
- text Text0672
- text Text0673
- text Text0674
- text Text0675
- text Text0676
- text Text0677
- text Text0678
- text Text0679
- text Text067a
- text Text067b
- text Text067c
- text Text067d
- text Text067e
- text Text067f
- text Text0680
- text Text0681
- text Text0682
- text Text0683
- text Text0684
- text Text0685
- text Text0686
- text Text0687
- text Text0688
- text Text0689
- text Text068a
- text Text068b
- text Text068c
- text Text068d
- text Text068e
- text Text068f
- text Text0690
- text Text0691
- text Text0692
- text Text0693
- text Text0694
- text Text0695
- text Text0696
- text Text0697
- text Text0698
- text Text0699
- text Text069a
- text Text069b
- text Text069c
- text Text069d
- text Text069e
- text Text069f
- text Text06a0
- text Text06a1
- text Text06a2
- text Text06a3
- text Text06a4
- text Text06a5
- text Text06a6
- text Text06a7
- text Text06a8
- text Text06a9
- text Text06aa
- text Text06ab
- text Text06ac
- text Text06ad
- text Text06ae
- text Text06af
- text Text06b0
- text Text06b1
- text Text06b2
- text Text06b3
- text Text06b4
- text Text06b5
- text Text06b6
- text Text06b7
- text Text06b8
- text Text06b9
- text Text06ba
- text Text06bb
- text Text06bc
- text Text06bd
- text Text06be
- text Text06bf
- text Text06c0
- text Text06c1
- text Text06c2
- text Text06c3
- text Text06c4
- text Text06c5
- text Text06c6
- text Text06c7
- text Text06c8
- text Text06c9
- text Text06ca
- text Text06cb
- text Text06cc
- text Text06cd
- text Text06ce
- text Text06cf
- text Text06d0
- text Text06d1
- text Text06d2
- text Text06d3
- text Text06d4
- text Text06d5
- text Text06d6
- text Text06d7
- text Text06d8
- text Text06d9
- text Text06da
- text Text06db
- text Text06dc
- text Text06dd
- text Text06de
- text Text06df
- text Text06e0
- text Text06e1
- text Text06e2
- text Text06e3
- text Text06e4
- text Text06e5
- text Text06e6
- text Text06e7
- text Text06e8
- text Text06e9
- text Text06ea
- text Text06eb
- text Text06ec
- text Text06ed
- text Text06ee
- text Text06ef
- text Text06f0
- text Text06f1
- text Text06f2
- text Text06f3
- text Text06f4
- text Text06f5
- text Text06f6
- text Text06f7
- text Text06f8
- text Text06f9
- text Text06fa
- text Text06fb
- text Text06fc
- text Text06fd
- text Text06fe
- text Text06ff
- text Text0700
- text Text0701
- text Text0702
- text Text0703
- text Text0704
- text Text0705
- text Text0706
- text Text0707
- text Text0708
- text Text0709
- text Text070a
- text Text070b
- text Text070c
- text Text070d
- text Text070e
- text Text070f
- text Text0710
- text Text0711
- text Text0712
- text Text0713
- text Text0714
- text Text0715
- text Text0716
- text Text0717
- text Text0718
- text Text0719
- text Text071a
- text Text071b
- text Text071c
- text Text071d
- text Text071e
- text Text071f
- text Text0720
- text Text0721
- text Text0722
- text Text0723
- text Text0724
- text Text0725
- text Text0726
- text Text0727
- text Text0728
- text Text0729
- text Text072a
- text Text072b
- text Text072c
- text Text072d
- text Text072e
- text Text072f
- text Text0730
- text Text0731
- text Text0732
- text Text0733
- text Text0734
- text Text0735
- text Text0736
- text Text0737
- text Text0738
- text Text0739
- text Text073a
- text Text073b
- text Text073c
- text Text073d
- text Text073e
- text Text073f
- text Text0740
- text Text0741
- text Text0742
- text Text0743
- text Text0744
- text Text0745
- text Text0746
- text Text0747
- text Text0748
- text Text0749
- text Text074a
- text Text074b
- text Text074c
- text Text074d
- text Text074e
- text Text074f
- text Text0750
- text Text0751
- text Text0752
- text Text0753
- text Text0754
- text Text0755
- text Text0756
- text Text0757
- text Text0758
- text Text0759
- text Text075a
- text Text075b
- text Text075c
- text Text075d
- text Text075e
- text Text075f
- text Text0760
- text Text0761
- text Text0762
- text Text0763
- text Text0764
- text Text0765
- text Text0766
- text Text0767
- text Text0768
- text Text0769
- text Text076a
- text Text076b
- text Text076c
- text Text076d
- text Text076e
- text Text076f
- text Text0770
- text Text0771
- text Text0772
- text Text0773
- text Text0774
- text Text0775
- text Text0776
- text Text0777
- text Text0778
- text Text0779
- text Text077a
- text Text077b
- text Text077c
- text Text077d
- text Text077e
- text Text077f
- text Text0780
- text Text0781
- text Text0782
- text Text0783
- text Text0784
- text Text0785
- text Text0786
- text Text0787
- text Text0788
- text Text0789
- text Text078a
- text Text078b
- text Text078c
- text Text078d
- text Text078e
- text Text078f
- text Text0790
- text Text0791
- text Text0792
- text Text0793
- text Text0794
- text Text0795
- text Text0796
- text Text0797
- text Text0798
- text Text0799
- text Text079a
- text Text079b
- text Text079c
- text Text079d
- text Text079e
- text Text079f
- text Text07a0
- text Text07a1
- text Text07a2
- text Text07a3
- text Text07a4
- text Text07a5
- text Text07a6
- text Text07a7
- text Text07a8
- text Text07a9
- text Text07aa
- text Text07ab
- text Text07ac
- text Text07ad
- text Text07ae
- text Text07af
- text Text07b0
- text Text07b1
- text Text07b2
- text Text07b3
- text Text07b4
- text Text07b5
- text Text07b6
- text Text07b7
- text Text07b8
- text Text07b9
- text Text07ba
- text Text07bb
- text Text07bc
- text Text07bd
- text Text07be
- text Text07bf
- text Text07c0
- text Text07c1
- text Text07c2
- text Text07c3
- text Text07c4
- text Text07c5
- text Text07c6
- text Text07c7
- text Text07c8
- text Text07c9
- text Text07ca
- text Text07cb
- text Text07cc
- text Text07cd
- text Text07ce
- text Text07cf
- text Text07d0
- text Text07d1
- text Text07d2
- text Text07d3
- text Text07d4
- text Text07d5
- text Text07d6
- text Text07d7
- text Text07d8
- text Text07d9
- text Text07da
- text Text07db
- text Text07dc
- text Text07dd
- text Text07de
- text Text07df
- text Text07e0
- text Text07e1
- text Text07e2
- text Text07e3
- text Text07e4
- text Text07e5
- text DefeatedFiveOpponentsText
- text Text07e7
- text ConsecutiveWinRecordIncreasedText
- text Text07e9
- text Text07ea
- text Text07eb
- text Text07ec
- text Text07ed
- text Text07ee
- text Text07ef
- text Text07f0
- text Text07f1
- text Text07f2
- text Text07f3
- text Text07f4
- text Text07f5
- text Text07f6
- text Text07f7
- text Text07f8
- text Text07f9
- text Text07fa
- text Text07fb
- text GrassEnergyName
- text GrassEnergyDescription
- text FireEnergyName
- text FireEnergyDescription
- text WaterEnergyName
- text WaterEnergyDescription
- text LightningEnergyName
- text LightningEnergyDescription
- text FightingEnergyName
- text FightingEnergyDescription
- text PsychicEnergyName
- text PsychicEnergyDescription
- text DoubleColorlessEnergyName
- text DoubleColorlessEnergyDescription
- text BulbasaurName
- text LeechSeedName
- text BulbasaursLeechSeedDescription
- text BulbasaurKind
- text BulbasaurDescription
- text IvysaurName
- text VineWhipName
- text PoisonPowderName
- text InflictPoisonDescription
- text IvysaurDescription
- text VenusaurName
- text SolarPowerName
- text SolarPowerDescription
- text SolarPowerDescriptionCont
- text MegaDrainName
- text VenusaursMegaDrainDescription
- text VenusaursMegaDrainDescriptionCont
- text Venusaur1Description
- text EnergyTransName
- text EnergyTransDescription
- text SolarBeamName
- text Venusaur2Description
- text CaterpieName
- text StringShotName
- text MayInflictParalysisDescription
- text CaterpieKind
- text CaterpieDescription
- text MetapodName
- text StiffenName
- text MetapodsStiffenDescription
- text StunSporeName
- text MetapodKind
- text MetapodDescription
- text ButterfreeName
- text WhirlwindName
- text WhirlwindDescription
- text ButterfreesMegaDrainDescription
- text ButterfreesMegaDrainDescriptionCont
- text ButterfreeKind
- text ButterfreeDescription
- text WeedleName
- text PoisonStingName
- text MayInflictPoisonDescription
- text WeedleKind
- text WeedleDescription
- text KakunaName
- text KakunasStiffenDescription
- text KakunaDescription
- text BeedrillName
- text TwineedleName
- text DoubleAttackX30Description
- text BeedrillKind
- text BeedrillDescription
- text EkansName
- text SpitPoisonName
- text WrapName
- text EkansKind
- text EkansDescription
- text ArbokName
- text TerrorStrikeName
- text TerrorStrikeDescription
- text PoisonFangName
- text ArbokKind
- text ArbokDescription
- text NidoranFName
- text FurySweepesName
- text TripleAttackX10Description
- text CallforFamilyName
- text NidoranFsCallforFamilyDescription
- text NidoranFKind
- text NidoranFDescription
- text NidorinaName
- text SupersonicName
- text MayInflictConfusionDescription
- text DoubleKickName
- text NidorinaDescription
- text NidoqueenName
- text BoyfriendsName
- text BoyfriendsDescription
- text MegaPunchName
- text NidoqueenKind
- text NidoqueenDescription
- text NidoranMName
- text HornHazardName
- text MayDoNothingDescription
- text NidoranMDescription
- text NidorinoName
- text HornDrillName
- text NidorinoDescription
- text NidokingName
- text ThrashName
- text ThrashDescriptipn
- text ToxicName
- text ToxicDescription
- text NidokingDescription
- text ZubatName
- text LeechLifeName
- text ZubatsLeechLifeDescription
- text ZubatKind
- text ZubatDescription
- text GolbatName
- text WingAttackName
- text GolbatsLeechLifeDescription
- text GolbatDescription
- text OddishName
- text SproutName
- text SproutDescription
- text OddishKind
- text OddishDescription
- text GloomName
- text FoulOdorName
- text FoulOdorDescription
- text GloomDescription
- text VileplumeName
- text HealName
- text HealDescription
- text PetalDanceName
- text PetalDanceDescription
- text VileplumeKind
- text VileplumeDescription
- text ParasName
- text ScratchName
- text SporeName
- text InflictSleepDescription
- text ParasKind
- text ParasDescription
- text ParasectName
- text SlashName
- text ParasectDescription
- text VenonatName
- text VenonatLeechLifeDescription
- text VenonatKind
- text VenonatDescription
- text VenomothName
- text ShiftName
- text ShiftDescription
- text VenomPowderName
- text VenomPowderDescription
- text VenomothKind
- text VenomothDescription
- text BellsproutName
- text BellsproutsCallforFamilyDescription
- text BellsproutDescription
- text WeepinbellName
- text RazorLeafName
- text WeepinbellKind
- text WeepinbellDescription
- text VictreebelName
- text LureName
- text VictreebelsLureDescription
- text AcidName
- text VictreebelsAcidDescription
- text VictreebelDescription
- text GrimerName
- text NastyGooName
- text MinimizeName
- text GrimersMinimizeDescription
- text GrimerKindOrSludgeName
- text GrimerDescription
- text MukName
- text ToxicGasName
- text ToxicGasDescription
- text MukDescription
- text ExeggcuteName
- text DrowzeeKindOrHypnosisName
- text ExeggcutesLeechSeedDescription
- text ExeggcuteKind
- text ExeggcuteDescription
- text ExeggutorName
- text TeleportName
- text TeleportDescription
- text BigEggsplosionName
- text BigEggsplosionDescription
- text ExeggutorKind
- text ExeggutorDescription
- text KoffingName
- text FoulGasName
- text FoulGasDescription
- text KoffingKind
- text KoffingDescription
- text WeezingName
- text SmogName
- text SelfdestructName
- text WeezingsSelfdestructDescription
- text WeezingDescription
- text TangelaName
- text BindName
- text TangelaKind
- text Tangela1Description
- text PoisonWhipName
- text Tangela2Description
- text ScytherName
- text SwordsDanceName
- text SwordsDanceDescription
- text ScytherKind
- text ScytherDescription
- text PinsirName
- text IronGripName
- text GuillotineName
- text PinsirKind
- text PinsirDescription
- text CharmanderName
- text EmberName
- text EmberDescription
- text CharmanderKind
- text CharmanderDescription
- text CharmeleonName
- text FlamethrowerName
- text CharmeleonsFlamethrowerDescription
- text CharmeleonKind
- text CharmeleonDescription
- text CharizardName
- text EnergyBurnName
- text EnergyBurnDescription
- text FireSpinName
- text FireSpinDescription
- text CharizardDescription
- text VulpixName
- text ConfuseRayName
- text VulpixKind
- text VulpixDescription
- text NinetailsName
- text NinetailsLureDescription
- text FireBlastName
- text FireBlastDescription
- text Ninetails1Description
- text MixUpName
- text MixUpDescription
- text MixUpDescriptionCont
- text DancingEmbersName
- text DancingEmbersDescription
- text Ninetails2Description
- text GrowlitheName
- text FlareName
- text GrowlitheKind
- text GrowlitheDescription
- text ArcanineName
- text QuickAttackName
- text QuickAttackDescription
- text FlamesofRageName
- text FlamesofRageDescription
- text ArcanineKind
- text Arcanine1Description
- text ArcaninesFlamethrowerDescription
- text TakeDownName
- text TakeDownDescription
- text Arcanine2Description
- text PonytaName
- text SmashKickName
- text FlameTailName
- text PonytaKind
- text PonytaDescription
- text RapidashName
- text StompName
- text StompDescription
- text AgilityName
- text RapidashsAgilityDescription
- text RapidashDescription
- text MagmarName
- text FirePunchName
- text FirePunchDescription
- text MagmarKind
- text Magmar1Description
- text SmokescreenName
- text MagmarsSmokescreenDescription
- text Magmar2Description
- text FlareonName
- text EeveeName
- text BiteName
- text RageName
- text FlareonsRageDescription
- text Flareon1Description
- text FlareonsFlamethrowerDescription
- text Flareon2Description
- text MoltresName
- text WildfireName
- text WildfireDescription
- text DiveBombName
- text Moltres1Description
- text FiregiverName
- text FiregiverDescription
- text Moltres2Description
- text SquirtleName
- text BubbleName
- text WithdrawName
- text SquirtlesWithdrawDescription
- text SquirtleKind
- text SquirtleDescription
- text WartortleName
- text WartortlesWithdrawDescription
- text WartortleKind
- text WartortleDescription
- text BlastoiseName
- text RainDanceName
- text RainDanceDescription
- text RainDanceDescriptionCont
- text HydroPumpName
- text HydroPumpDescription
- text BlastoiseKind
- text BlastoiseDescription
- text PsyduckName
- text HeadacheName
- text HeadacheDescription
- text PsyduckKind
- text PsyduckDescription
- text GolduckName
- text PsyshockName
- text HyperBeamName
- text Discard1EnergyFromTargetDescription
- text GolduckDescription
- text PoliwagName
- text WaterGunName
- text PoliwagsWaterGunDescription
- text PoliwagKind
- text PoliwagDescription
- text PoliwhirlName
- text AmnesiaName
- text PoliwhirlsAmnesiaDescription
- text DoubleslapName
- text PoliwhirlsDescription
- text PoliwrathName
- text PoliwrathsWaterGunDescription
- text WhirlpoolName
- text PoliwrathDescription
- text TentacoolName
- text CowardiceName
- text CowardiceDescription
- text TentacoolKind
- text TentacoolDescription
- text TentacruelName
- text JellyfishStingName
- text TentacruelDescription
- text SeelName
- text HeadbuttName
- text SeelKind
- text SeelDescription
- text DewgongName
- text AuroraBeamName
- text IceBeamName
- text DewgongDescription
- text ShellderName
- text HideinShellName
- text HideinShellDescription
- text ShellderKind
- text ShellderDescription
- text CloysterName
- text ClampName
- text ClampDescription
- text SpikeCannonName
- text CloysterDescription
- text KrabbyName
- text KrabbysCallforFamilyDescription
- text KrabbyKind
- text KrabbyDescription
- text KinglerName
- text FlailName
- text KinglersFlailDescription
- text CrabhammerName
- text KinglerKind
- text KinglerDescription
- text HorseaName
- text OpponentAttackMayDoNothingDescription
- text HorseaKind
- text HorseaDescription
- text SeadraName
- text SeadrasWaterGunDescription
- text SeadrasAgilityDescription
- text SeadraDescription
- text GoldeenName
- text HornAttackName
- text GoldeenKind
- text GoldeenDescription
- text SeakingName
- text WaterfallName
- text SeakingDescription
- text StaryuName
- text SlapName
- text StaryuKind
- text StaryuDescription
- text StarmieName
- text RecoverName
- text StarmiesRecoverDescription
- text StarFreezeName
- text StarmieKind
- text StarmieDescription
- text MagikarpName
- text TackleName
- text MagikarpsFlailDescription
- text MagikarpKind
- text MagikarpDescription
- text GyaradosName
- text DragonRageName
- text BubblebeamName
- text GyaradosKind
- text GyaradosDescription
- text LaprasName
- text LaprasWaterGunDescription
- text LaprasKind
- text LaprasDescription
- text VaporeonName
- text FocusEnergyName
- text FocusEnergyDescription
- text VaporeonKind
- text Vaporeon1Description
- text VaporeonsWaterGunDescription
- text Vaporeon2Description
- text OmanyteName
- text MysteriousFossilName
- text ClairvoyanceName
- text ClairvoyanceDescription
- text OmanytesWaterGunDescription
- text OmanyteKind
- text OmanyteDescription
- text OmastarName
- text OmastarsWaterGunDescription
- text OmastarDescription
- text ArticunoName
- text FreezeDryName
- text BlizzardName
- text BlizzardDescription
- text ArticunoKind
- text Articuno1Description
- text QuickfreezeName
- text QuickfreezeDescription
- text IceBreathName
- text IceBreathDescription
- text Articuno2Description
- text PikachuName
- text GnawName
- text ThunderJoltName
- text ThunderJoltDescription
- text PikachuKind
- text Pikachu1Description
- text SparkName
- text SparkDescription
- text Pikachu2Description
- text GrowlName
- text GrowlDescription
- text ThundershockName
- text Pikachu3Description
- text FlyingPikachuName
- text FlyName
- text FlyDescription
- text FlyingPikachuDescription
- text SurfingPikachuName
- text SurfName
- text SurfingPikachuDescription
- text RaichuName
- text RaichusAgilityDescription
- text ThunderName
- text RaichusThunderDescription
- text Raichu1Description
- text GigashockName
- text GigashockDescription
- text Raichu2Description
- text MagnemiteName
- text ThunderWaveName
- text MagnemitesSelfdestructDescription
- text MagnemiteKind
- text Magnemite1Description
- text MagneticStormName
- text MagneticStormDescription
- text Magnemite2Description
- text MagnetonName
- text Magneton1sSelfdestructDescription
- text Magneton1Description
- text SonicboomName
- text SonicboomDescription
- text Magneton2sSelfdestructDescription
- text Magneton2Description
- text VoltorbName
- text VoltorbKind
- text VoltorbDescription
- text ElectrodeName
- text EnergySpikeName
- text EnergySpikeDescription
- text Electrode1Description
- text ChainLightningName
- text ChainLightningDescription
- text Electrode2Description
- text ElectabuzzName
- text LightScreenName
- text LightScreenDescription
- text LightScreenDescriptionCont
- text ElectabuzzsQuickAttackDescription
- text ElectabuzzKind
- text Electabuzz1Description
- text ThunderpunchName
- text ThunderpunchDescription
- text Electabuzz2Description
- text JolteonName
- text DoubleAttackX20Description
- text StunNeedleName
- text JolteonKind
- text Jolteon1Description
- text PinMissileName
- text QuadrupleAttackX20Description
- text Jolteon2Description
- text ZapdosName
- text ThunderstormName
- text ThunderstormDescription
- text Zapdos1Description
- text ZapdosThunderDescription
- text ThunderboltName
- text ThunderboltDescription
- text Zapdos2Description
- text PealofThunderName
- text PealofThunderDescription
- text BigThunderName
- text BigThunderDescription
- text Zapdos3Description
- text SandshrewName
- text SandAttackName
- text SandshrewDescription
- text SandslashName
- text TripleAttackX20Description
- text SandslashDescription
- text DiglettName
- text DigName
- text MudSlapName
- text DiglettKind
- text DiglettDescription
- text DugtrioName
- text EarthquakeName
- text EarthquakeDescription
- text DugtrioDescription
- text MankeyName
- text PeekName
- text PeekDescription
- text PeekDescriptionCont
- text MankeyKind
- text MankeyDescription
- text PrimeapeName
- text TantrumName
- text TantrumDescription
- text PrimeapeDescription
- text MachopName
- text LowKickName
- text MachopKindOrSuperpowerName
- text MachopDescription
- text MachokeName
- text KarateChopName
- text KarateChopDescription
- text SubmissionName
- text SubmissionDescription
- text MachokeDescription
- text MachampName
- text StrikesBackName
- text StrikesBackDescription
- text StrikesBackDescriptionCont
- text SeismicTossName
- text MachampDescription
- text GeodudeName
- text StoneBarrageName
- text StoneBarrageDescription
- text GeodudeKind
- text GeodudeDescription
- text GravelerName
- text HardenName
- text GravelersHardenDescription
- text RockThrowName
- text GravelerDescription
- text GolemName
- text AvalancheName
- text GolemsSelfdestructDescription
- text GolemKind
- text GolemDescription
- text OnixName
- text OnixsHardenDescription
- text OnixKind
- text OnixDescription
- text CuboneName
- text SnivelName
- text SnivelDescription
- text CubonesRageDescription
- text CuboneKind
- text CuboneDescription
- text MarowakName
- text BonemerangName
- text CallforFriendName
- text CallforFriendDescription
- text MarowakKind
- text Marowak1Description
- text BoneAttackName
- text BoneAttackDescription
- text WailName
- text WailDescription
- text Marowak2Description
- text HitmonleeName
- text StretchKickName
- text StretchKickDescription
- text HighJumpKickName
- text HitmonleeKind
- text HitmonleeDescription
- text HitmonchanName
- text JabName
- text SpecialPunch
- text HitmonchanKind
- text HitmonchanDescription
- text RhyhornName
- text LeerName
- text LeerDescription
- text RhyhornKind
- text RhyhornDescription
- text RhydonName
- text RamName
- text RamDescription
- text RamDescriptionCont
- text RhydonDescription
- text KabutoName
- text KabutoArmorName
- text KabutoArmorDescription
- text KabutoArmorDescriptionCont
- text KabutoDescription
- text KabutopsName
- text SharpSickleName
- text AbsorbName
- text AbsorbDescription
- text AbsorbDescriptionCont
- text KabutopsDescription
- text AerodactylName
- text PrehistoricPowerName
- text PrehistoricPowerDescription
- text AerodactylKind
- text AerodactylDescription
- text AbraName
- text AbraKind
- text AbraDescription
- text KadabraName
- text KadabrasRecoverDescription
- text SuperPsiName
- text KadabraDescription
- text AlakazamName
- text DamageSwapName
- text DamageSwapDescription
- text AlakazamDescription
- text SlowpokeName
- text SlowpokesAmnesiaDescription
- text SlowpokeKind
- text Slowpoke1Description
- text SpacingOutName
- text SpacingOutDescription
- text ScavengeName
- text ScavengeDescription
- text SlowbroName
- text StrangeBehaviorName
- text StrangeBehaviorDescription
- text SlowbroKind
- text SlowbroDescription
- text GastlyName
- text SleepingGasName
- text MayInflictSleepDescription
- text DestinyBondName
- text DestinyBondDescription
- text GastlyKind
- text Gastly1Description
- text LickName
- text EnergyConversionName
- text EnergyConversionDescription
- text Gastly2Description
- text HaunterName
- text TransparencyName
- text TransparencyDescription
- text NightmareName
- text HaunterDescription
- text DreamEaterName
- text DreamEaterDescription
- text GengarName
- text CurseName
- text CurseDescription
- text DarkMindName
- text DarkMindDescription
- text GengarKind
- text GengarDescription
- text DrowzeeName
- text PoundName
- text DrowzeeDescription
- text HypnoName
- text ProphecyName
- text ProphecyDescription
- text HypnoDescription
- text MrMimeName
- text InvisibleWallName
- text InvisibleWallDescription
- text InvisibleWallDescriptionCont
- text MeditateName
- text MrMimesMeditateDescription
- text MrMimeKindOrBarrierName
- text MrMimeDescription
- text JynxName
- text DoubleAttackX10Description
- text JynxsMeditateDescription
- text JynxKind
- text JynxDescription
- text MewtwoName
- text PsychicName
- text PsychicDescription
- text BarrierDescription
- text MewtwoKind
- text Mewtwo1Description
- text EnergyAbsorptionName
- text EnergyAbsorptionDescription
- text PsyburnName
- text Mewtwo2Description
- text MewName
- text NeutralizingShieldName
- text NeutralizingShieldDescription
- text MewKind
- text Mew1Description
- text MysteryAttackName
- text MysteryAttackDescription
- text Mew2Description
- text PsywaveName
- text PsywaveDescription
- text DevolutionBeamName
- text DevolutionBeamDescription
- text PidgeyName
- text PidgeyKind
- text PidgeyDescription
- text PidgeottoName
- text MirrorMoveName
- text PidgeottosMirrorMoveDescription
- text PidgeottoKind
- text PidgeottoDescription
- text PidgeotName
- text SlicingWindName
- text SlicingWildDescription
- text GaleName
- text GaleDescription
- text Pidgeot1Description
- text HurricaneName
- text HurricaneDescription
- text Pidgeot2Description
- text RattataName
- text RattataKind
- text RattataDescription
- text RaticateName
- text SuperFangName
- text SuperFangDescription
- text RaticateDescription
- text SpearowName
- text PeckName
- text SpearowsMirrorMoveDescription
- text SpearowDescription
- text FearowName
- text FearowsAgilityDescription
- text DrillPeckName
- text FearowKind
- text FearowDescription
- text ClefairyName
- text SingName
- text MetronomeName
- text ClefairysMetronomeDescription
- text ClefairyKind
- text ClefairyDescription
- text ClefableName
- text ClefablesMetronomeDescription
- text ClefablesMinimizeDescription
- text ClefableDescription
- text JigglypuffName
- text FirstAidName
- text FirstAidDescription
- text DoubleEdgeName
- text JigglypuffsDoubleEdgeDescription
- text JigglypuffKind
- text Jigglypuff1Description
- text FriendshipSongName
- text FriendshipSongDescription
- text ExpandName
- text ExpandDescription
- text Jigglypuff2Description
- text LullabyName
- text Jigglypuff3Description
- text WigglytuffName
- text DotheWaveName
- text DotheWaveDescription
- text WigglytuffDescription
- text MeowthName
- text CatPunchName
- text CatPunchDescription
- text MeowthKind
- text Meowth1Description
- text PayDayName
- text PayDayDescription
- text Meowth2Description
- text PersianName
- text PounceName
- text PounceDescription
- text PersianKind
- text PersianDescription
- text FarfetchdName
- text LeekSlapName
- text LeekSlapDescription
- text PotSmashName
- text FarfetchdKind
- text FarfetchdDescription
- text DoduoName
- text FuryAttackName
- text DoduoKind
- text DoduoDescription
- text DodrioName
- text RetreatAidName
- text RetreatAidDescription
- text DodriosRageDescription
- text DodrioKind
- text DodrioDescription
- text LickitungName
- text TongueWrapName
- text LickitungKind
- text LickitungDescription
- text ChanseyName
- text ScrunchName
- text ScrunchDescription
- text ChanseysDoubleEdgeDescription
- text ChanseyDescription
- text KangaskhanName
- text FetchName
- text FetchDescription
- text CometPunchName
- text KangaskhanKind
- text KangaskhanDescription
- text TaurosName
- text RampageName
- text RampageDescription
- text TaurosKind
- text TaurosDescription
- text DittoName
- text MorphName
- text MorphDescription
- text MorphDescriptionCont
- text DittoKind
- text DittoDescription
- text TailWagName
- text TailWagDescription
- text EeveeKind
- text EeveeDescription
- text PorygonName
- text Conversion1Name
- text Conversion1Description
- text Conversion2Name
- text Conversion2Description
- text PorygonKind
- text PorygonDescription
- text SnorlaxName
- text ThickSkinnedName
- text ThickSkinnedDescription
- text BodySlamName
- text SnorlaxKind
- text SnorlaxDescription
- text DratiniName
- text DratiniDescription
- text DragonairName
- text SlamName
- text DragonairDescription
- text DragoniteName
- text HealingWindName
- text HealingWindDescription
- text Dragonite1Description
- text StepInName
- text StepInDescription
- text DoubleAttackX40Description
- text DragoniteDescription
- text ProfessorOakName
- text ProfessorOakDescription
- text ImposterProfessorOakName
- text ImposterProfessorOakDescription
- text BillName
- text BillDescription
- text MrFujiName
- text MrFujiDescription
- text LassName
- text LassDescription
- text ImakuniName
- text ImakuniDescription
- text PokemonTraderName
- text PokemonTraderDescription
- text PokemonBreederName
- text PokemonBreederDescription
- text ClefairyDollName
- text ClefairyDollDescription
- text ClefairyDollDescriptionCont
- text MysteriousFossilDescription
- text MysteriousFossilDescriptionCont
- text EnergyRetrievalName
- text EnergyRetrievalDescription
- text SuperEnergyRetrievalName
- text SuperEnergyRetrievalDescription
- text EnergySearchName
- text EnergySearchDescription
- text EnergyRemovalName
- text EnergyRemovalDescription
- text SuperEnergyRemovalName
- text SuperEnergyRemovalDescription
- text SwitchName
- text SwitchDescription
- text PokemonCenterName
- text PokemonCenterDescription
- text PokeBallName
- text PokeBallDescription
- text ScoopUpName
- text ScoopUpDescription
- text ComputerSearchName
- text ComputerSearchDescription
- text PokedexName
- text PokedexDescription
- text PlusPowerName
- text PlusPowerDescription
- text DefenderName
- text DefenderDescription
- text ItemFinderName
- text ItemFinderDescription
- text GustofWindName
- text GustofWindDescription
- text DevolutionSprayName
- text DevolutionSprayDescription
- text DevolutionSprayDescriptionCont
- text PotionName
- text PotionDescription
- text SuperPotionName
- text SuperPotionDescription
- text FullHealName
- text FullHealDescription
- text ReviveName
- text ReviveDescription
- text MaintenanceName
- text MaintenanceDescription
- text PokemonFluteName
- text PokemonFluteDescription
- text GamblerName
- text GamblerDescription
- text RecycleName
- text RecycleDescription
+ textpointer HandText
+ textpointer CheckText
+ textpointer AttackText
+ textpointer PKMNPowerText
+ textpointer DoneText
+ textpointer TypeText
+ textpointer RetreatText
+ textpointer WeaknessText
+ textpointer ResistanceText
+ textpointer PKMNPWRText
+ textpointer Text000b
+ textpointer LengthText
+ textpointer WeightText
+ textpointer PokemonText
+ textpointer Text000f
+ textpointer lbsText
+ textpointer Text0011
+ textpointer Text0012
+ textpointer Text0013
+ textpointer Text0014
+ textpointer Text0015
+ textpointer Text0016
+ textpointer Text0017
+ textpointer Text0018
+ textpointer Text0019
+ textpointer Text001a
+ textpointer Text001b
+ textpointer Text001c
+ textpointer Text001d
+ textpointer Text001e
+ textpointer Text001f
+ textpointer Text0020
+ textpointer Text0021
+ textpointer Text0022
+ textpointer NoPokemonOnTheBenchText
+ textpointer UnableDueToSleepText
+ textpointer UnableDueToParalysisText
+ textpointer Received10DamageDueToPoisonText
+ textpointer Received20DamageDueToPoisonText
+ textpointer IsStillAsleepText
+ textpointer IsCuredOfSleepText
+ textpointer IsCuredOfParalysisText
+ textpointer Text002b
+ textpointer Text002c
+ textpointer Text002d
+ textpointer Text002e
+ textpointer YesOrNoText
+ textpointer DiscardName
+ textpointer Text0031
+ textpointer Text0032
+ textpointer Text0033
+ textpointer Text0034
+ textpointer PokemonsAttackText
+ textpointer Text0036
+ textpointer Text0037
+ textpointer Text0038
+ textpointer Text0039
+ textpointer Text003a
+ textpointer Text003b
+ textpointer NoSelectableAttackText
+ textpointer UnableToRetreatText
+ textpointer OnlyOneEnergyCardText
+ textpointer Text003f
+ textpointer Text0040
+ textpointer DiscardDescription
+ textpointer Text0042
+ textpointer Text0043
+ textpointer Text0044
+ textpointer Text0045
+ textpointer Text0046
+ textpointer Text0047
+ textpointer Text0048
+ textpointer Text0049
+ textpointer Text004a
+ textpointer Text004b
+ textpointer Text004c
+ textpointer Text004d
+ textpointer Text004e
+ textpointer DamageToSelfDueToConfusionText
+ textpointer Text0050
+ textpointer Text0051
+ textpointer Text0052
+ textpointer Text0053
+ textpointer Text0054
+ textpointer TransmissionErrorText
+ textpointer Text0056
+ textpointer Text0057
+ textpointer Text0058
+ textpointer Text0059
+ textpointer Text005a
+ textpointer Text005b
+ textpointer Text005c
+ textpointer Text005d
+ textpointer Text005e
+ textpointer Text005f
+ textpointer Text0060
+ textpointer Text0061
+ textpointer Text0062
+ textpointer Text0063
+ textpointer Text0064
+ textpointer Text0065
+ textpointer Text0066
+ textpointer Text0067
+ textpointer Text0068
+ textpointer Text0069
+ textpointer Text006a
+ textpointer Text006b
+ textpointer Text006c
+ textpointer Text006d
+ textpointer Text006e
+ textpointer Text006f
+ textpointer Text0070
+ textpointer Text0071
+ textpointer Text0072
+ textpointer Text0073
+ textpointer Text0074
+ textpointer Text0075
+ textpointer DecisionText
+ textpointer DuelWasDrawText
+ textpointer WonDuelText
+ textpointer LostDuelText
+ textpointer StartSuddenDeathMatchText
+ textpointer Text007b
+ textpointer Text007c
+ textpointer Text007d
+ textpointer Text007e
+ textpointer Text007f
+ textpointer Text0080
+ textpointer WasKnockedOutText
+ textpointer Text0082
+ textpointer Text0083
+ textpointer Text0084
+ textpointer Text0085
+ textpointer Text0086
+ textpointer Text0087
+ textpointer DuelistIsThinkingText
+ textpointer Text0089
+ textpointer Text008a
+ textpointer Text008b
+ textpointer Text008c
+ textpointer Text008d
+ textpointer Text008e
+ textpointer Text008f
+ textpointer Text0090
+ textpointer Text0091
+ textpointer Player2
+ textpointer Text0093
+ textpointer Text0094
+ textpointer Text0095
+ textpointer Text0096
+ textpointer Text0097
+ textpointer Text0098
+ textpointer Text0099
+ textpointer Text009a
+ textpointer Text009b
+ textpointer Text009c
+ textpointer Text009d
+ textpointer Text009e
+ textpointer Text009f
+ textpointer Text00a0
+ textpointer Text00a1
+ textpointer ResetBackUpRamText
+ textpointer Text00a3
+ textpointer NoCardsInHandText
+ textpointer Text00a5
+ textpointer Text00a6
+ textpointer Text00a7
+ textpointer Text00a8
+ textpointer Text00a9
+ textpointer Text00aa
+ textpointer Text00ab
+ textpointer Text00ac
+ textpointer Text00ad
+ textpointer Text00ae
+ textpointer Text00af
+ textpointer Text00b0
+ textpointer Text00b1
+ textpointer Text00b2
+ textpointer Text00b3
+ textpointer Text00b4
+ textpointer Text00b5
+ textpointer Text00b6
+ textpointer Text00b7
+ textpointer Text00b8
+ textpointer Text00b9
+ textpointer Text00ba
+ textpointer Text00bb
+ textpointer Text00bc
+ textpointer Text00bd
+ textpointer Text00be
+ textpointer Text00bf
+ textpointer NotEnoughEnergyCardsText
+ textpointer Text00c1
+ textpointer Text00c2
+ textpointer Text00c3
+ textpointer Text00c4
+ textpointer Text00c5
+ textpointer Text00c6
+ textpointer Text00c7
+ textpointer Text00c8
+ textpointer Text00c9
+ textpointer Text00ca
+ textpointer CannotUseDueToStatusText
+ textpointer Text00cc
+ textpointer Text00cd
+ textpointer Text00ce
+ textpointer Text00cf
+ textpointer Text00d0
+ textpointer Text00d1
+ textpointer Text00d2
+ textpointer Text00d3
+ textpointer UnableDueToToxicGasText
+ textpointer Text00d5
+ textpointer Text00d6
+ textpointer Text00d7
+ textpointer Text00d8
+ textpointer Text00d9
+ textpointer Text00da
+ textpointer Text00db
+ textpointer Text00dc
+ textpointer Text00dd
+ textpointer SandAttackCheckText
+ textpointer SmokescreenCheckText
+ textpointer ParalysisCheckText
+ textpointer SleepCheckText
+ textpointer PoisonCheckText
+ textpointer ConfusionCheckText
+ textpointer VenomPowderCheckText
+ textpointer Text00e5
+ textpointer Text00e6
+ textpointer Text00e7
+ textpointer Text00e8
+ textpointer Text00e9
+ textpointer Text00ea
+ textpointer Text00eb
+ textpointer Text00ec
+ textpointer Text00ed
+ textpointer Text00ee
+ textpointer Text00ef
+ textpointer Text00f0
+ textpointer Text00f1
+ textpointer Text00f2
+ textpointer Text00f3
+ textpointer Text00f4
+ textpointer Text00f5
+ textpointer Text00f6
+ textpointer Text00f7
+ textpointer Text00f8
+ textpointer Text00f9
+ textpointer Text00fa
+ textpointer Text00fb
+ textpointer Text00fc
+ textpointer AttackUnsuccessfulText
+ textpointer UnableToRetreatDueToAcidText
+ textpointer UnableToUseTrainerDueToHeadacheText
+ textpointer UnableToAttackDueToTailWagText
+ textpointer UnableToAttackDueToLeerText
+ textpointer UnableToAttackDueToBoneAttackText
+ textpointer UnableToUseAttackDueToAmnesiaText
+ textpointer KnockedOutDueToDestinyBondText
+ textpointer ReceivesDamageDueToStrikesBackText
+ textpointer UnableToEvolveDueToPrehistoricPowerText
+ textpointer NoDamageOrEffectDueToFlyText
+ textpointer NoDamageOrEffectDueToBarrierText
+ textpointer NoDamageOrEffectDueToAgilityText
+ textpointer UnableToUseAttackDueToNShieldText
+ textpointer NoDamageOrEffectDueToNShieldText
+ textpointer NoDamageOrEffectDueToTransparencyText
+ textpointer Text010d
+ textpointer SelectMonOnBenchToSwitchWithActiveText
+ textpointer Text010f
+ textpointer Text0110
+ textpointer Text0111
+ textpointer Text0112
+ textpointer Text0113
+ textpointer Text0114
+ textpointer Text0115
+ textpointer Text0116
+ textpointer Text0117
+ textpointer Text0118
+ textpointer Text0119
+ textpointer Text011a
+ textpointer Text011b
+ textpointer Text011c
+ textpointer Text011d
+ textpointer Text011e
+ textpointer Text011f
+ textpointer Text0120
+ textpointer Text0121
+ textpointer Text0122
+ textpointer Text0123
+ textpointer Text0124
+ textpointer Text0125
+ textpointer Text0126
+ textpointer Text0127
+ textpointer Text0128
+ textpointer Text0129
+ textpointer Text012a
+ textpointer Text012b
+ textpointer Text012c
+ textpointer Text012d
+ textpointer Text012e
+ textpointer Text012f
+ textpointer Text0130
+ textpointer Text0131
+ textpointer Text0132
+ textpointer Text0133
+ textpointer Text0134
+ textpointer Text0135
+ textpointer Text0136
+ textpointer Text0137
+ textpointer Text0138
+ textpointer Text0139
+ textpointer Text013a
+ textpointer Text013b
+ textpointer Text013c
+ textpointer Text013d
+ textpointer Text013e
+ textpointer Text013f
+ textpointer Text0140
+ textpointer Text0141
+ textpointer Text0142
+ textpointer Text0143
+ textpointer Text0144
+ textpointer Text0145
+ textpointer Text0146
+ textpointer Text0147
+ textpointer Text0148
+ textpointer Text0149
+ textpointer WasUnsuccessfulText
+ textpointer Text014b
+ textpointer Text014c
+ textpointer Text014d
+ textpointer Text014e
+ textpointer Text014f
+ textpointer Text0150
+ textpointer Text0151
+ textpointer Text0152
+ textpointer Text0153
+ textpointer Text0154
+ textpointer Text0155
+ textpointer Text0156
+ textpointer Text0157
+ textpointer Text0158
+ textpointer Text0159
+ textpointer Text015a
+ textpointer Text015b
+ textpointer Text015c
+ textpointer Text015d
+ textpointer Text015e
+ textpointer Text015f
+ textpointer Text0160
+ textpointer Text0161
+ textpointer Text0162
+ textpointer Text0163
+ textpointer Text0164
+ textpointer Text0165
+ textpointer Text0166
+ textpointer Text0167
+ textpointer Text0168
+ textpointer Text0169
+ textpointer Text016a
+ textpointer Text016b
+ textpointer Text016c
+ textpointer Text016d
+ textpointer Text016e
+ textpointer Text016f
+ textpointer Text0170
+ textpointer Text0171
+ textpointer Text0172
+ textpointer Text0173
+ textpointer Text0174
+ textpointer Text0175
+ textpointer Text0176
+ textpointer Text0177
+ textpointer Text0178
+ textpointer Text0179
+ textpointer Text017a
+ textpointer Text017b
+ textpointer Text017c
+ textpointer Text017d
+ textpointer Text017e
+ textpointer Text017f
+ textpointer Text0180
+ textpointer Text0181
+ textpointer Text0182
+ textpointer Text0183
+ textpointer Text0184
+ textpointer Text0185
+ textpointer Text0186
+ textpointer Text0187
+ textpointer Text0188
+ textpointer Text0189
+ textpointer Text018a
+ textpointer Text018b
+ textpointer Text018c
+ textpointer Text018d
+ textpointer Text018e
+ textpointer ReceivedCardText
+ textpointer ReceivedPromotionalCardText
+ textpointer ReceivedLegendaryCardText
+ textpointer ReceivedPromotionalFlyingPikachuText
+ textpointer ReceivedPromotionalSurfingPikachuText
+ textpointer Text0194
+ textpointer Text0195
+ textpointer Text0196
+ textpointer Text0197
+ textpointer Text0198
+ textpointer Text0199
+ textpointer Text019a
+ textpointer Text019b
+ textpointer Text019c
+ textpointer Text019d
+ textpointer Text019e
+ textpointer Text019f
+ textpointer Text01a0
+ textpointer Text01a1
+ textpointer Text01a2
+ textpointer Text01a3
+ textpointer Text01a4
+ textpointer Text01a5
+ textpointer Text01a6
+ textpointer Text01a7
+ textpointer Text01a8
+ textpointer Text01a9
+ textpointer Text01aa
+ textpointer Text01ab
+ textpointer Text01ac
+ textpointer Text01ad
+ textpointer Text01ae
+ textpointer Text01af
+ textpointer Text01b0
+ textpointer Text01b1
+ textpointer Text01b2
+ textpointer Text01b3
+ textpointer Text01b4
+ textpointer Text01b5
+ textpointer Text01b6
+ textpointer Text01b7
+ textpointer Text01b8
+ textpointer Text01b9
+ textpointer Text01ba
+ textpointer Text01bb
+ textpointer Text01bc
+ textpointer Text01bd
+ textpointer Text01be
+ textpointer Text01bf
+ textpointer Text01c0
+ textpointer Text01c1
+ textpointer Text01c2
+ textpointer Text01c3
+ textpointer Text01c4
+ textpointer Text01c5
+ textpointer Text01c6
+ textpointer Text01c7
+ textpointer Text01c8
+ textpointer Text01c9
+ textpointer Text01ca
+ textpointer Text01cb
+ textpointer Text01cc
+ textpointer Text01cd
+ textpointer Text01ce
+ textpointer Text01cf
+ textpointer Text01d0
+ textpointer Text01d1
+ textpointer Text01d2
+ textpointer Text01d3
+ textpointer Text01d4
+ textpointer Text01d5
+ textpointer Text01d6
+ textpointer Text01d7
+ textpointer Text01d8
+ textpointer Text01d9
+ textpointer Text01da
+ textpointer Text01db
+ textpointer Text01dc
+ textpointer Text01dd
+ textpointer PracticePlayerDeckName
+ textpointer SamsPracticeDeckName
+ textpointer CharmanderAndFriendsDeckName
+ textpointer CharmanderExtraDeckName
+ textpointer SquirtleAndFriendsDeckName
+ textpointer SquirtleExtraDeckName
+ textpointer BulbasaurAndFriendsDeckName
+ textpointer BulbasaurExtraDeckName
+ textpointer FirstStrikeDeckName
+ textpointer RockCrusherDeckName
+ textpointer GoGoRainDanceDeckName
+ textpointer ZappingSelfdestructDeckName
+ textpointer FlowerPowerDeckName
+ textpointer StrangePsyshockDeckName
+ textpointer WondersofScienceDeckName
+ textpointer FireChargeDeckName
+ textpointer LegendaryMoltresDeckName
+ textpointer LegendaryZapdosDeckName
+ textpointer LegendaryArticunoDeckName
+ textpointer LegendaryDragoniteDeckName
+ textpointer ImRonaldDeckName
+ textpointer PowerfulRonaldDeckName
+ textpointer InvincibleRonaldDeckName
+ textpointer LegendaryRonaldDeckName
+ textpointer WaterfrontPokemonDeckName
+ textpointer LonelyFriendsDeckName
+ textpointer SoundoftheWavesDeckName
+ textpointer AngerDeckName
+ textpointer FlamethrowerDeckName
+ textpointer ReshuffleDeckName
+ textpointer ExcavationDeckName
+ textpointer BlisteringPokemonDeckName
+ textpointer HardPokemonDeckName
+ textpointer EtceteraDeckName
+ textpointer FlowerGardenDeckName
+ textpointer KaleidoscopeDeckName
+ textpointer MusclesforBrainsDeckName
+ textpointer HeatedBattleDeckName
+ textpointer LovetoBattleDeckName
+ textpointer PikachuDeckName
+ textpointer BoomBoomSelfdestructDeckName
+ textpointer PowerGeneratorDeckName
+ textpointer GhostDeckName
+ textpointer NapTimeDeckName
+ textpointer StrangePowerDeckName
+ textpointer FlyinPokemonDeckName
+ textpointer LovelyNidoranDeckName
+ textpointer PoisonDeckName
+ textpointer ImakuniDeckName
+ textpointer LightningAndFireDeckName
+ textpointer WaterAndFightingDeckName
+ textpointer GrassAndPsychicDeckName
+ textpointer Text0212
+ textpointer Text0213
+ textpointer Text0214
+ textpointer Text0215
+ textpointer Text0216
+ textpointer Text0217
+ textpointer Text0218
+ textpointer Text0219
+ textpointer Text021a
+ textpointer Text021b
+ textpointer Text021c
+ textpointer Text021d
+ textpointer Text021e
+ textpointer Text021f
+ textpointer Text0220
+ textpointer Text0221
+ textpointer Text0222
+ textpointer NewDeckText
+ textpointer PleaseSelectDeckText
+ textpointer Text0225
+ textpointer Text0226
+ textpointer Text0227
+ textpointer Text0228
+ textpointer Text0229
+ textpointer ChosenAsDuelingDeckText
+ textpointer Text022b
+ textpointer Text022c
+ textpointer Text022d
+ textpointer Text022e
+ textpointer ThereIsNoDeckHereText
+ textpointer Text0230
+ textpointer Text0231
+ textpointer Text0232
+ textpointer Text0233
+ textpointer Text0234
+ textpointer Text0235
+ textpointer Text0236
+ textpointer Text0237
+ textpointer Text0238
+ textpointer Text0239
+ textpointer Text023a
+ textpointer Text023b
+ textpointer Text023c
+ textpointer Text023d
+ textpointer Text023e
+ textpointer Text023f
+ textpointer Text0240
+ textpointer Text0241
+ textpointer Text0242
+ textpointer Text0243
+ textpointer Text0244
+ textpointer Text0245
+ textpointer Text0246
+ textpointer Text0247
+ textpointer Text0248
+ textpointer Text0249
+ textpointer Text024a
+ textpointer Text024b
+ textpointer Text024c
+ textpointer Text024d
+ textpointer Text024e
+ textpointer Text024f
+ textpointer Text0250
+ textpointer Text0251
+ textpointer Text0252
+ textpointer Text0253
+ textpointer Text0254
+ textpointer Text0255
+ textpointer Text0256
+ textpointer Text0257
+ textpointer Text0258
+ textpointer Text0259
+ textpointer Text025a
+ textpointer Text025b
+ textpointer Text025c
+ textpointer Text025d
+ textpointer Text025e
+ textpointer Text025f
+ textpointer Text0260
+ textpointer Text0261
+ textpointer Text0262
+ textpointer Text0263
+ textpointer Text0264
+ textpointer Text0265
+ textpointer Text0266
+ textpointer Text0267
+ textpointer Text0268
+ textpointer Text0269
+ textpointer Text026a
+ textpointer Text026b
+ textpointer Text026c
+ textpointer Text026d
+ textpointer Text026e
+ textpointer Text026f
+ textpointer Text0270
+ textpointer Text0271
+ textpointer Text0272
+ textpointer Text0273
+ textpointer Text0274
+ textpointer Text0275
+ textpointer Text0276
+ textpointer Text0277
+ textpointer Text0278
+ textpointer Text0279
+ textpointer Text027a
+ textpointer Text027b
+ textpointer Text027c
+ textpointer Text027d
+ textpointer Text027e
+ textpointer Text027f
+ textpointer Text0280
+ textpointer Text0281
+ textpointer Text0282
+ textpointer Text0283
+ textpointer Text0284
+ textpointer Text0285
+ textpointer Text0286
+ textpointer Text0287
+ textpointer Text0288
+ textpointer Text0289
+ textpointer Text028a
+ textpointer Text028b
+ textpointer Text028c
+ textpointer Text028d
+ textpointer Text028e
+ textpointer Text028f
+ textpointer Text0290
+ textpointer Text0291
+ textpointer Text0292
+ textpointer Text0293
+ textpointer Text0294
+ textpointer Text0295
+ textpointer Text0296
+ textpointer Text0297
+ textpointer Text0298
+ textpointer Text0299
+ textpointer Text029a
+ textpointer Text029b
+ textpointer Text029c
+ textpointer Text029d
+ textpointer Text029e
+ textpointer Text029f
+ textpointer Text02a0
+ textpointer Text02a1
+ textpointer Text02a2
+ textpointer Text02a3
+ textpointer Text02a4
+ textpointer Text02a5
+ textpointer Text02a6
+ textpointer Text02a7
+ textpointer Text02a8
+ textpointer Text02a9
+ textpointer Text02aa
+ textpointer Text02ab
+ textpointer Text02ac
+ textpointer Text02ad
+ textpointer Text02ae
+ textpointer Text02af
+ textpointer Text02b0
+ textpointer Text02b1
+ textpointer Text02b2
+ textpointer Text02b3
+ textpointer Text02b4
+ textpointer Text02b5
+ textpointer Text02b6
+ textpointer Text02b7
+ textpointer Text02b8
+ textpointer Text02b9
+ textpointer Text02ba
+ textpointer Text02bb
+ textpointer Text02bc
+ textpointer Text02bd
+ textpointer Text02be
+ textpointer Text02bf
+ textpointer Text02c0
+ textpointer Text02c1
+ textpointer Text02c2
+ textpointer Text02c3
+ textpointer Text02c4
+ textpointer Text02c5
+ textpointer Text02c6
+ textpointer Text02c7
+ textpointer Text02c8
+ textpointer Text02c9
+ textpointer Text02ca
+ textpointer Text02cb
+ textpointer Text02cc
+ textpointer Text02cd
+ textpointer Text02ce
+ textpointer Text02cf
+ textpointer Text02d0
+ textpointer Text02d1
+ textpointer Text02d2
+ textpointer Text02d3
+ textpointer Text02d4
+ textpointer Text02d5
+ textpointer Text02d6
+ textpointer Text02d7
+ textpointer Text02d8
+ textpointer Text02d9
+ textpointer Text02da
+ textpointer Text02db
+ textpointer Text02dc
+ textpointer Text02dd
+ textpointer Text02de
+ textpointer Text02df
+ textpointer Text02e0
+ textpointer Text02e1
+ textpointer Text02e2
+ textpointer Text02e3
+ textpointer Text02e4
+ textpointer Text02e5
+ textpointer Text02e6
+ textpointer Text02e7
+ textpointer Text02e8
+ textpointer Text02e9
+ textpointer Text02ea
+ textpointer Text02eb
+ textpointer Text02ec
+ textpointer Text02ed
+ textpointer Text02ee
+ textpointer Text02ef
+ textpointer Text02f0
+ textpointer Text02f1
+ textpointer Text02f2
+ textpointer Text02f3
+ textpointer Text02f4
+ textpointer Text02f5
+ textpointer Text02f6
+ textpointer Text02f7
+ textpointer Text02f8
+ textpointer Text02f9
+ textpointer Text02fa
+ textpointer Text02fb
+ textpointer Text02fc
+ textpointer Text02fd
+ textpointer Text02fe
+ textpointer Text02ff
+ textpointer Text0300
+ textpointer Text0301
+ textpointer Text0302
+ textpointer Text0303
+ textpointer Text0304
+ textpointer Text0305
+ textpointer Text0306
+ textpointer Text0307
+ textpointer Text0308
+ textpointer Text0309
+ textpointer Text030a
+ textpointer Text030b
+ textpointer Text030c
+ textpointer Text030d
+ textpointer Text030e
+ textpointer Text030f
+ textpointer Text0310
+ textpointer Text0311
+ textpointer Text0312
+ textpointer Text0313
+ textpointer Text0314
+ textpointer Text0315
+ textpointer Text0316
+ textpointer Text0317
+ textpointer Text0318
+ textpointer Text0319
+ textpointer Text031a
+ textpointer Text031b
+ textpointer Text031c
+ textpointer Text031d
+ textpointer Text031e
+ textpointer Text031f
+ textpointer Text0320
+ textpointer Text0321
+ textpointer Text0322
+ textpointer Text0323
+ textpointer Text0324
+ textpointer Text0325
+ textpointer Text0326
+ textpointer Text0327
+ textpointer Text0328
+ textpointer Text0329
+ textpointer Text032a
+ textpointer Text032b
+ textpointer Text032c
+ textpointer Text032d
+ textpointer Text032e
+ textpointer Text032f
+ textpointer Text0330
+ textpointer Text0331
+ textpointer Text0332
+ textpointer Text0333
+ textpointer Text0334
+ textpointer Text0335
+ textpointer Text0336
+ textpointer Text0337
+ textpointer Text0338
+ textpointer Text0339
+ textpointer Text033a
+ textpointer Text033b
+ textpointer Text033c
+ textpointer Text033d
+ textpointer Text033e
+ textpointer Text033f
+ textpointer Text0340
+ textpointer Text0341
+ textpointer Text0342
+ textpointer Text0343
+ textpointer Text0344
+ textpointer Text0345
+ textpointer Text0346
+ textpointer Text0347
+ textpointer Text0348
+ textpointer Text0349
+ textpointer Text034a
+ textpointer Text034b
+ textpointer Text034c
+ textpointer Text034d
+ textpointer Text034e
+ textpointer Text034f
+ textpointer Text0350
+ textpointer Text0351
+ textpointer TurnedPCOnText
+ textpointer TurnedPCOffText
+ textpointer Text0354
+ textpointer Text0355
+ textpointer Text0356
+ textpointer Text0357
+ textpointer Text0358
+ textpointer Text0359
+ textpointer Text035a
+ textpointer Text035b
+ textpointer Text035c
+ textpointer Text035d
+ textpointer Text035e
+ textpointer Text035f
+ textpointer Text0360
+ textpointer Text0361
+ textpointer Text0362
+ textpointer Text0363
+ textpointer Text0364
+ textpointer Text0365
+ textpointer Text0366
+ textpointer Text0367
+ textpointer Text0368
+ textpointer Text0369
+ textpointer Text036a
+ textpointer Text036b
+ textpointer Text036c
+ textpointer Text036d
+ textpointer Text036e
+ textpointer Text036f
+ textpointer Text0370
+ textpointer Text0371
+ textpointer Text0372
+ textpointer Text0373
+ textpointer Text0374
+ textpointer Text0375
+ textpointer Text0376
+ textpointer Text0377
+ textpointer Text0378
+ textpointer Text0379
+ textpointer Text037a
+ textpointer Text037b
+ textpointer Text037c
+ textpointer Text037d
+ textpointer Text037e
+ textpointer Text037f
+ textpointer Text0380
+ textpointer Text0381
+ textpointer Text0382
+ textpointer Text0383
+ textpointer Text0384
+ textpointer Text0385
+ textpointer Text0386
+ textpointer ReceivedBoosterPackText
+ textpointer AndAnotherBoosterPackText
+ textpointer CheckedCardsInBoosterPackText
+ textpointer Text038a
+ textpointer WonTheMedalText
+ textpointer Text038c
+ textpointer Text038d
+ textpointer Text038e
+ textpointer Text038f
+ textpointer Text0390
+ textpointer Text0391
+ textpointer Text0392
+ textpointer Text0393
+ textpointer Text0394
+ textpointer Text0395
+ textpointer Text0396
+ textpointer Text0397
+ textpointer Text0398
+ textpointer Text0399
+ textpointer Text039a
+ textpointer Text039b
+ textpointer Text039c
+ textpointer Text039d
+ textpointer Text039e
+ textpointer Text039f
+ textpointer Text03a0
+ textpointer Text03a1
+ textpointer Text03a2
+ textpointer Text03a3
+ textpointer Text03a4
+ textpointer Text03a5
+ textpointer Text03a6
+ textpointer Text03a7
+ textpointer Text03a8
+ textpointer Text03a9
+ textpointer Text03aa
+ textpointer Text03ab
+ textpointer Text03ac
+ textpointer Text03ad
+ textpointer Text03ae
+ textpointer Text03af
+ textpointer Text03b0
+ textpointer Text03b1
+ textpointer Text03b2
+ textpointer Text03b3
+ textpointer Text03b4
+ textpointer Text03b5
+ textpointer Text03b6
+ textpointer Text03b7
+ textpointer Text03b8
+ textpointer Text03b9
+ textpointer Text03ba
+ textpointer Text03bb
+ textpointer Text03bc
+ textpointer Text03bd
+ textpointer Text03be
+ textpointer Text03bf
+ textpointer Text03c0
+ textpointer Text03c1
+ textpointer Text03c2
+ textpointer Text03c3
+ textpointer Text03c4
+ textpointer Text03c5
+ textpointer Text03c6
+ textpointer Text03c7
+ textpointer Text03c8
+ textpointer Text03c9
+ textpointer Text03ca
+ textpointer Text03cb
+ textpointer Text03cc
+ textpointer Text03cd
+ textpointer Text03ce
+ textpointer Text03cf
+ textpointer Text03d0
+ textpointer Text03d1
+ textpointer Text03d2
+ textpointer Text03d3
+ textpointer Text03d4
+ textpointer Text03d5
+ textpointer Text03d6
+ textpointer Text03d7
+ textpointer Text03d8
+ textpointer Text03d9
+ textpointer Text03da
+ textpointer Text03db
+ textpointer Text03dc
+ textpointer Text03dd
+ textpointer Text03de
+ textpointer Text03df
+ textpointer Text03e0
+ textpointer Text03e1
+ textpointer Text03e2
+ textpointer Text03e3
+ textpointer Text03e4
+ textpointer Text03e5
+ textpointer Text03e6
+ textpointer Text03e7
+ textpointer Text03e8
+ textpointer Text03e9
+ textpointer Text03ea
+ textpointer Text03eb
+ textpointer Text03ec
+ textpointer Text03ed
+ textpointer Text03ee
+ textpointer Text03ef
+ textpointer Text03f0
+ textpointer Text03f1
+ textpointer Text03f2
+ textpointer Text03f3
+ textpointer Text03f4
+ textpointer Text03f5
+ textpointer Text03f6
+ textpointer Text03f7
+ textpointer Text03f8
+ textpointer Text03f9
+ textpointer Text03fa
+ textpointer Text03fb
+ textpointer Text03fc
+ textpointer Text03fd
+ textpointer Text03fe
+ textpointer Text03ff
+ textpointer Text0400
+ textpointer Text0401
+ textpointer Text0402
+ textpointer Text0403
+ textpointer Text0404
+ textpointer Text0405
+ textpointer Text0406
+ textpointer Text0407
+ textpointer Text0408
+ textpointer Text0409
+ textpointer Text040a
+ textpointer Text040b
+ textpointer Text040c
+ textpointer Text040d
+ textpointer Text040e
+ textpointer Text040f
+ textpointer Text0410
+ textpointer Text0411
+ textpointer Text0412
+ textpointer Text0413
+ textpointer Text0414
+ textpointer Text0415
+ textpointer Text0416
+ textpointer Text0417
+ textpointer Text0418
+ textpointer Text0419
+ textpointer Text041a
+ textpointer Text041b
+ textpointer Text041c
+ textpointer Text041d
+ textpointer Text041e
+ textpointer Text041f
+ textpointer Text0420
+ textpointer Text0421
+ textpointer Text0422
+ textpointer Text0423
+ textpointer Text0424
+ textpointer Text0425
+ textpointer Text0426
+ textpointer Text0427
+ textpointer Text0428
+ textpointer Text0429
+ textpointer Text042a
+ textpointer Text042b
+ textpointer Text042c
+ textpointer Text042d
+ textpointer Text042e
+ textpointer Text042f
+ textpointer Text0430
+ textpointer Text0431
+ textpointer Text0432
+ textpointer Text0433
+ textpointer Text0434
+ textpointer Text0435
+ textpointer Text0436
+ textpointer Text0437
+ textpointer Text0438
+ textpointer Text0439
+ textpointer Text043a
+ textpointer Text043b
+ textpointer Text043c
+ textpointer Text043d
+ textpointer Text043e
+ textpointer Text043f
+ textpointer Text0440
+ textpointer Text0441
+ textpointer Text0442
+ textpointer Text0443
+ textpointer Text0444
+ textpointer Text0445
+ textpointer Text0446
+ textpointer Text0447
+ textpointer Text0448
+ textpointer Text0449
+ textpointer Text044a
+ textpointer Text044b
+ textpointer Text044c
+ textpointer Text044d
+ textpointer Text044e
+ textpointer Text044f
+ textpointer Text0450
+ textpointer Text0451
+ textpointer Text0452
+ textpointer Text0453
+ textpointer Text0454
+ textpointer Text0455
+ textpointer Text0456
+ textpointer Text0457
+ textpointer Text0458
+ textpointer Text0459
+ textpointer Text045a
+ textpointer Text045b
+ textpointer Text045c
+ textpointer Text045d
+ textpointer Text045e
+ textpointer Text045f
+ textpointer Text0460
+ textpointer Text0461
+ textpointer Text0462
+ textpointer Text0463
+ textpointer Text0464
+ textpointer Text0465
+ textpointer Text0466
+ textpointer Text0467
+ textpointer Text0468
+ textpointer Text0469
+ textpointer Text046a
+ textpointer Text046b
+ textpointer Text046c
+ textpointer Text046d
+ textpointer Text046e
+ textpointer Text046f
+ textpointer Text0470
+ textpointer Text0471
+ textpointer Text0472
+ textpointer Text0473
+ textpointer Text0474
+ textpointer Text0475
+ textpointer Text0476
+ textpointer Text0477
+ textpointer Text0478
+ textpointer Text0479
+ textpointer Text047a
+ textpointer Text047b
+ textpointer Text047c
+ textpointer Text047d
+ textpointer Text047e
+ textpointer Text047f
+ textpointer Text0480
+ textpointer Text0481
+ textpointer Text0482
+ textpointer Text0483
+ textpointer Text0484
+ textpointer Text0485
+ textpointer Text0486
+ textpointer Text0487
+ textpointer Text0488
+ textpointer Text0489
+ textpointer Text048a
+ textpointer Text048b
+ textpointer Text048c
+ textpointer Text048d
+ textpointer Text048e
+ textpointer Text048f
+ textpointer Text0490
+ textpointer Text0491
+ textpointer Text0492
+ textpointer Text0493
+ textpointer Text0494
+ textpointer Text0495
+ textpointer Text0496
+ textpointer Text0497
+ textpointer Text0498
+ textpointer Text0499
+ textpointer Text049a
+ textpointer Text049b
+ textpointer Text049c
+ textpointer Text049d
+ textpointer Text049e
+ textpointer Text049f
+ textpointer Text04a0
+ textpointer Text04a1
+ textpointer Text04a2
+ textpointer Text04a3
+ textpointer Text04a4
+ textpointer Text04a5
+ textpointer Text04a6
+ textpointer Text04a7
+ textpointer Text04a8
+ textpointer Text04a9
+ textpointer Text04aa
+ textpointer Text04ab
+ textpointer Text04ac
+ textpointer Text04ad
+ textpointer Text04ae
+ textpointer Text04af
+ textpointer Text04b0
+ textpointer Text04b1
+ textpointer Text04b2
+ textpointer Text04b3
+ textpointer Text04b4
+ textpointer Text04b5
+ textpointer Text04b6
+ textpointer Text04b7
+ textpointer Text04b8
+ textpointer Text04b9
+ textpointer Text04ba
+ textpointer Text04bb
+ textpointer Text04bc
+ textpointer Text04bd
+ textpointer Text04be
+ textpointer Text04bf
+ textpointer Text04c0
+ textpointer Text04c1
+ textpointer Text04c2
+ textpointer Text04c3
+ textpointer Text04c4
+ textpointer Text04c5
+ textpointer Text04c6
+ textpointer Text04c7
+ textpointer Text04c8
+ textpointer Text04c9
+ textpointer Text04ca
+ textpointer Text04cb
+ textpointer Text04cc
+ textpointer Text04cd
+ textpointer Text04ce
+ textpointer Text04cf
+ textpointer Text04d0
+ textpointer Text04d1
+ textpointer Text04d2
+ textpointer Text04d3
+ textpointer Text04d4
+ textpointer Text04d5
+ textpointer Text04d6
+ textpointer Text04d7
+ textpointer Text04d8
+ textpointer Text04d9
+ textpointer Text04da
+ textpointer Text04db
+ textpointer Text04dc
+ textpointer Text04dd
+ textpointer Text04de
+ textpointer Text04df
+ textpointer Text04e0
+ textpointer Text04e1
+ textpointer Text04e2
+ textpointer Text04e3
+ textpointer Text04e4
+ textpointer Text04e5
+ textpointer Text04e6
+ textpointer Text04e7
+ textpointer Text04e8
+ textpointer Text04e9
+ textpointer Text04ea
+ textpointer Text04eb
+ textpointer Text04ec
+ textpointer Text04ed
+ textpointer Text04ee
+ textpointer Text04ef
+ textpointer Text04f0
+ textpointer Text04f1
+ textpointer Text04f2
+ textpointer Text04f3
+ textpointer Text04f4
+ textpointer Text04f5
+ textpointer Text04f6
+ textpointer Text04f7
+ textpointer Text04f8
+ textpointer Text04f9
+ textpointer Text04fa
+ textpointer Text04fb
+ textpointer Text04fc
+ textpointer Text04fd
+ textpointer Text04fe
+ textpointer Text04ff
+ textpointer Text0500
+ textpointer Text0501
+ textpointer Text0502
+ textpointer Text0503
+ textpointer Text0504
+ textpointer Text0505
+ textpointer Text0506
+ textpointer Text0507
+ textpointer Text0508
+ textpointer Text0509
+ textpointer Text050a
+ textpointer Text050b
+ textpointer Text050c
+ textpointer Text050d
+ textpointer Text050e
+ textpointer Text050f
+ textpointer Text0510
+ textpointer Text0511
+ textpointer Text0512
+ textpointer Text0513
+ textpointer Text0514
+ textpointer Text0515
+ textpointer Text0516
+ textpointer Text0517
+ textpointer Text0518
+ textpointer Text0519
+ textpointer Text051a
+ textpointer Text051b
+ textpointer Text051c
+ textpointer Text051d
+ textpointer Text051e
+ textpointer Text051f
+ textpointer Text0520
+ textpointer Text0521
+ textpointer Text0522
+ textpointer Text0523
+ textpointer Text0524
+ textpointer Text0525
+ textpointer Text0526
+ textpointer Text0527
+ textpointer Text0528
+ textpointer Text0529
+ textpointer Text052a
+ textpointer Text052b
+ textpointer Text052c
+ textpointer Text052d
+ textpointer Text052e
+ textpointer Text052f
+ textpointer Text0530
+ textpointer Text0531
+ textpointer Text0532
+ textpointer Text0533
+ textpointer Text0534
+ textpointer Text0535
+ textpointer Text0536
+ textpointer Text0537
+ textpointer Text0538
+ textpointer Text0539
+ textpointer Text053a
+ textpointer Text053b
+ textpointer Text053c
+ textpointer Text053d
+ textpointer Text053e
+ textpointer Text053f
+ textpointer Text0540
+ textpointer Text0541
+ textpointer Text0542
+ textpointer Text0543
+ textpointer Text0544
+ textpointer Text0545
+ textpointer Text0546
+ textpointer Text0547
+ textpointer Text0548
+ textpointer Text0549
+ textpointer Text054a
+ textpointer Text054b
+ textpointer Text054c
+ textpointer Text054d
+ textpointer Text054e
+ textpointer Text054f
+ textpointer Text0550
+ textpointer Text0551
+ textpointer Text0552
+ textpointer Text0553
+ textpointer Text0554
+ textpointer Text0555
+ textpointer Text0556
+ textpointer Text0557
+ textpointer Text0558
+ textpointer Text0559
+ textpointer Text055a
+ textpointer Text055b
+ textpointer Text055c
+ textpointer Text055d
+ textpointer Text055e
+ textpointer Text055f
+ textpointer Text0560
+ textpointer Text0561
+ textpointer Text0562
+ textpointer Text0563
+ textpointer Text0564
+ textpointer Text0565
+ textpointer Text0566
+ textpointer Text0567
+ textpointer Text0568
+ textpointer Text0569
+ textpointer Text056a
+ textpointer Text056b
+ textpointer Text056c
+ textpointer Text056d
+ textpointer Text056e
+ textpointer Text056f
+ textpointer Text0570
+ textpointer Text0571
+ textpointer Text0572
+ textpointer Text0573
+ textpointer Text0574
+ textpointer Text0575
+ textpointer Text0576
+ textpointer Text0577
+ textpointer Text0578
+ textpointer Text0579
+ textpointer Text057a
+ textpointer Text057b
+ textpointer Text057c
+ textpointer Text057d
+ textpointer Text057e
+ textpointer Text057f
+ textpointer Text0580
+ textpointer Text0581
+ textpointer Text0582
+ textpointer Text0583
+ textpointer Text0584
+ textpointer Text0585
+ textpointer Text0586
+ textpointer Text0587
+ textpointer Text0588
+ textpointer Text0589
+ textpointer Text058a
+ textpointer Text058b
+ textpointer Text058c
+ textpointer Text058d
+ textpointer Text058e
+ textpointer Text058f
+ textpointer Text0590
+ textpointer Text0591
+ textpointer Text0592
+ textpointer Text0593
+ textpointer Text0594
+ textpointer Text0595
+ textpointer Text0596
+ textpointer Text0597
+ textpointer Text0598
+ textpointer Text0599
+ textpointer Text059a
+ textpointer Text059b
+ textpointer Text059c
+ textpointer Text059d
+ textpointer Text059e
+ textpointer Text059f
+ textpointer Text05a0
+ textpointer Text05a1
+ textpointer Text05a2
+ textpointer Text05a3
+ textpointer Text05a4
+ textpointer Text05a5
+ textpointer Text05a6
+ textpointer Text05a7
+ textpointer Text05a8
+ textpointer Text05a9
+ textpointer Text05aa
+ textpointer Text05ab
+ textpointer Text05ac
+ textpointer Text05ad
+ textpointer Text05ae
+ textpointer Text05af
+ textpointer Text05b0
+ textpointer Text05b1
+ textpointer Text05b2
+ textpointer Text05b3
+ textpointer Text05b4
+ textpointer Text05b5
+ textpointer Text05b6
+ textpointer Text05b7
+ textpointer Text05b8
+ textpointer Text05b9
+ textpointer Text05ba
+ textpointer Text05bb
+ textpointer Text05bc
+ textpointer Text05bd
+ textpointer Text05be
+ textpointer Text05bf
+ textpointer Text05c0
+ textpointer Text05c1
+ textpointer Text05c2
+ textpointer Text05c3
+ textpointer Text05c4
+ textpointer Text05c5
+ textpointer Text05c6
+ textpointer Text05c7
+ textpointer Text05c8
+ textpointer Text05c9
+ textpointer Text05ca
+ textpointer Text05cb
+ textpointer Text05cc
+ textpointer Text05cd
+ textpointer Text05ce
+ textpointer Text05cf
+ textpointer Text05d0
+ textpointer Text05d1
+ textpointer Text05d2
+ textpointer Text05d3
+ textpointer Text05d4
+ textpointer Text05d5
+ textpointer Text05d6
+ textpointer Text05d7
+ textpointer Text05d8
+ textpointer Text05d9
+ textpointer Text05da
+ textpointer Text05db
+ textpointer Text05dc
+ textpointer Text05dd
+ textpointer Text05de
+ textpointer Text05df
+ textpointer Text05e0
+ textpointer Text05e1
+ textpointer Text05e2
+ textpointer Text05e3
+ textpointer Text05e4
+ textpointer Text05e5
+ textpointer Text05e6
+ textpointer Text05e7
+ textpointer Text05e8
+ textpointer Text05e9
+ textpointer Text05ea
+ textpointer Text05eb
+ textpointer Text05ec
+ textpointer Text05ed
+ textpointer Text05ee
+ textpointer Text05ef
+ textpointer Text05f0
+ textpointer Text05f1
+ textpointer Text05f2
+ textpointer Text05f3
+ textpointer Text05f4
+ textpointer Text05f5
+ textpointer Text05f6
+ textpointer Text05f7
+ textpointer Text05f8
+ textpointer Text05f9
+ textpointer Text05fa
+ textpointer Text05fb
+ textpointer Text05fc
+ textpointer Text05fd
+ textpointer Text05fe
+ textpointer Text05ff
+ textpointer Text0600
+ textpointer Text0601
+ textpointer Text0602
+ textpointer Text0603
+ textpointer Text0604
+ textpointer Text0605
+ textpointer Text0606
+ textpointer Text0607
+ textpointer Text0608
+ textpointer Text0609
+ textpointer Text060a
+ textpointer Text060b
+ textpointer Text060c
+ textpointer Text060d
+ textpointer Text060e
+ textpointer Text060f
+ textpointer Text0610
+ textpointer Text0611
+ textpointer Text0612
+ textpointer Text0613
+ textpointer Text0614
+ textpointer Text0615
+ textpointer Text0616
+ textpointer Text0617
+ textpointer Text0618
+ textpointer Text0619
+ textpointer Text061a
+ textpointer Text061b
+ textpointer Text061c
+ textpointer Text061d
+ textpointer Text061e
+ textpointer Text061f
+ textpointer Text0620
+ textpointer Text0621
+ textpointer Text0622
+ textpointer Text0623
+ textpointer Text0624
+ textpointer Text0625
+ textpointer Text0626
+ textpointer Text0627
+ textpointer Text0628
+ textpointer Text0629
+ textpointer Text062a
+ textpointer Text062b
+ textpointer Text062c
+ textpointer Text062d
+ textpointer Text062e
+ textpointer Text062f
+ textpointer Text0630
+ textpointer Text0631
+ textpointer Text0632
+ textpointer Text0633
+ textpointer Text0634
+ textpointer Text0635
+ textpointer Text0636
+ textpointer Text0637
+ textpointer Text0638
+ textpointer Text0639
+ textpointer Text063a
+ textpointer Text063b
+ textpointer Text063c
+ textpointer Text063d
+ textpointer Text063e
+ textpointer Text063f
+ textpointer Text0640
+ textpointer Text0641
+ textpointer Text0642
+ textpointer Text0643
+ textpointer Text0644
+ textpointer Text0645
+ textpointer Text0646
+ textpointer Text0647
+ textpointer Text0648
+ textpointer Text0649
+ textpointer Text064a
+ textpointer Text064b
+ textpointer Text064c
+ textpointer Text064d
+ textpointer Text064e
+ textpointer Text064f
+ textpointer Text0650
+ textpointer Text0651
+ textpointer Text0652
+ textpointer Text0653
+ textpointer Text0654
+ textpointer Text0655
+ textpointer Text0656
+ textpointer Text0657
+ textpointer Text0658
+ textpointer Text0659
+ textpointer Text065a
+ textpointer Text065b
+ textpointer Text065c
+ textpointer Text065d
+ textpointer Text065e
+ textpointer Text065f
+ textpointer Text0660
+ textpointer Text0661
+ textpointer Text0662
+ textpointer Text0663
+ textpointer Text0664
+ textpointer Text0665
+ textpointer Text0666
+ textpointer Text0667
+ textpointer Text0668
+ textpointer Text0669
+ textpointer Text066a
+ textpointer Text066b
+ textpointer Text066c
+ textpointer Text066d
+ textpointer Text066e
+ textpointer Text066f
+ textpointer Text0670
+ textpointer Text0671
+ textpointer Text0672
+ textpointer Text0673
+ textpointer Text0674
+ textpointer Text0675
+ textpointer Text0676
+ textpointer Text0677
+ textpointer Text0678
+ textpointer Text0679
+ textpointer Text067a
+ textpointer Text067b
+ textpointer Text067c
+ textpointer Text067d
+ textpointer Text067e
+ textpointer Text067f
+ textpointer Text0680
+ textpointer Text0681
+ textpointer Text0682
+ textpointer Text0683
+ textpointer Text0684
+ textpointer Text0685
+ textpointer Text0686
+ textpointer Text0687
+ textpointer Text0688
+ textpointer Text0689
+ textpointer Text068a
+ textpointer Text068b
+ textpointer Text068c
+ textpointer Text068d
+ textpointer Text068e
+ textpointer Text068f
+ textpointer Text0690
+ textpointer Text0691
+ textpointer Text0692
+ textpointer Text0693
+ textpointer Text0694
+ textpointer Text0695
+ textpointer Text0696
+ textpointer Text0697
+ textpointer Text0698
+ textpointer Text0699
+ textpointer Text069a
+ textpointer Text069b
+ textpointer Text069c
+ textpointer Text069d
+ textpointer Text069e
+ textpointer Text069f
+ textpointer Text06a0
+ textpointer Text06a1
+ textpointer Text06a2
+ textpointer Text06a3
+ textpointer Text06a4
+ textpointer Text06a5
+ textpointer Text06a6
+ textpointer Text06a7
+ textpointer Text06a8
+ textpointer Text06a9
+ textpointer Text06aa
+ textpointer Text06ab
+ textpointer Text06ac
+ textpointer Text06ad
+ textpointer Text06ae
+ textpointer Text06af
+ textpointer Text06b0
+ textpointer Text06b1
+ textpointer Text06b2
+ textpointer Text06b3
+ textpointer Text06b4
+ textpointer Text06b5
+ textpointer Text06b6
+ textpointer Text06b7
+ textpointer Text06b8
+ textpointer Text06b9
+ textpointer Text06ba
+ textpointer Text06bb
+ textpointer Text06bc
+ textpointer Text06bd
+ textpointer Text06be
+ textpointer Text06bf
+ textpointer Text06c0
+ textpointer Text06c1
+ textpointer Text06c2
+ textpointer Text06c3
+ textpointer Text06c4
+ textpointer Text06c5
+ textpointer Text06c6
+ textpointer Text06c7
+ textpointer Text06c8
+ textpointer Text06c9
+ textpointer Text06ca
+ textpointer Text06cb
+ textpointer Text06cc
+ textpointer Text06cd
+ textpointer Text06ce
+ textpointer Text06cf
+ textpointer Text06d0
+ textpointer Text06d1
+ textpointer Text06d2
+ textpointer Text06d3
+ textpointer Text06d4
+ textpointer Text06d5
+ textpointer Text06d6
+ textpointer Text06d7
+ textpointer Text06d8
+ textpointer Text06d9
+ textpointer Text06da
+ textpointer Text06db
+ textpointer Text06dc
+ textpointer Text06dd
+ textpointer Text06de
+ textpointer Text06df
+ textpointer Text06e0
+ textpointer Text06e1
+ textpointer Text06e2
+ textpointer Text06e3
+ textpointer Text06e4
+ textpointer Text06e5
+ textpointer Text06e6
+ textpointer Text06e7
+ textpointer Text06e8
+ textpointer Text06e9
+ textpointer Text06ea
+ textpointer Text06eb
+ textpointer Text06ec
+ textpointer Text06ed
+ textpointer Text06ee
+ textpointer Text06ef
+ textpointer Text06f0
+ textpointer Text06f1
+ textpointer Text06f2
+ textpointer Text06f3
+ textpointer Text06f4
+ textpointer Text06f5
+ textpointer Text06f6
+ textpointer Text06f7
+ textpointer Text06f8
+ textpointer Text06f9
+ textpointer Text06fa
+ textpointer Text06fb
+ textpointer Text06fc
+ textpointer Text06fd
+ textpointer Text06fe
+ textpointer Text06ff
+ textpointer Text0700
+ textpointer Text0701
+ textpointer Text0702
+ textpointer Text0703
+ textpointer Text0704
+ textpointer Text0705
+ textpointer Text0706
+ textpointer Text0707
+ textpointer Text0708
+ textpointer Text0709
+ textpointer Text070a
+ textpointer Text070b
+ textpointer Text070c
+ textpointer Text070d
+ textpointer Text070e
+ textpointer Text070f
+ textpointer Text0710
+ textpointer Text0711
+ textpointer Text0712
+ textpointer Text0713
+ textpointer Text0714
+ textpointer Text0715
+ textpointer Text0716
+ textpointer Text0717
+ textpointer Text0718
+ textpointer Text0719
+ textpointer Text071a
+ textpointer Text071b
+ textpointer Text071c
+ textpointer Text071d
+ textpointer Text071e
+ textpointer Text071f
+ textpointer Text0720
+ textpointer Text0721
+ textpointer Text0722
+ textpointer Text0723
+ textpointer Text0724
+ textpointer Text0725
+ textpointer Text0726
+ textpointer Text0727
+ textpointer Text0728
+ textpointer Text0729
+ textpointer Text072a
+ textpointer Text072b
+ textpointer Text072c
+ textpointer Text072d
+ textpointer Text072e
+ textpointer Text072f
+ textpointer Text0730
+ textpointer Text0731
+ textpointer Text0732
+ textpointer Text0733
+ textpointer Text0734
+ textpointer Text0735
+ textpointer Text0736
+ textpointer Text0737
+ textpointer Text0738
+ textpointer Text0739
+ textpointer Text073a
+ textpointer Text073b
+ textpointer Text073c
+ textpointer Text073d
+ textpointer Text073e
+ textpointer Text073f
+ textpointer Text0740
+ textpointer Text0741
+ textpointer Text0742
+ textpointer Text0743
+ textpointer Text0744
+ textpointer Text0745
+ textpointer Text0746
+ textpointer Text0747
+ textpointer Text0748
+ textpointer Text0749
+ textpointer Text074a
+ textpointer Text074b
+ textpointer Text074c
+ textpointer Text074d
+ textpointer Text074e
+ textpointer Text074f
+ textpointer Text0750
+ textpointer Text0751
+ textpointer Text0752
+ textpointer Text0753
+ textpointer Text0754
+ textpointer Text0755
+ textpointer Text0756
+ textpointer Text0757
+ textpointer Text0758
+ textpointer Text0759
+ textpointer Text075a
+ textpointer Text075b
+ textpointer Text075c
+ textpointer Text075d
+ textpointer Text075e
+ textpointer Text075f
+ textpointer Text0760
+ textpointer Text0761
+ textpointer Text0762
+ textpointer Text0763
+ textpointer Text0764
+ textpointer Text0765
+ textpointer Text0766
+ textpointer Text0767
+ textpointer Text0768
+ textpointer Text0769
+ textpointer Text076a
+ textpointer Text076b
+ textpointer Text076c
+ textpointer Text076d
+ textpointer Text076e
+ textpointer Text076f
+ textpointer Text0770
+ textpointer Text0771
+ textpointer Text0772
+ textpointer Text0773
+ textpointer Text0774
+ textpointer Text0775
+ textpointer Text0776
+ textpointer Text0777
+ textpointer Text0778
+ textpointer Text0779
+ textpointer Text077a
+ textpointer Text077b
+ textpointer Text077c
+ textpointer Text077d
+ textpointer Text077e
+ textpointer Text077f
+ textpointer Text0780
+ textpointer Text0781
+ textpointer Text0782
+ textpointer Text0783
+ textpointer Text0784
+ textpointer Text0785
+ textpointer Text0786
+ textpointer Text0787
+ textpointer Text0788
+ textpointer Text0789
+ textpointer Text078a
+ textpointer Text078b
+ textpointer Text078c
+ textpointer Text078d
+ textpointer Text078e
+ textpointer Text078f
+ textpointer Text0790
+ textpointer Text0791
+ textpointer Text0792
+ textpointer Text0793
+ textpointer Text0794
+ textpointer Text0795
+ textpointer Text0796
+ textpointer Text0797
+ textpointer Text0798
+ textpointer Text0799
+ textpointer Text079a
+ textpointer Text079b
+ textpointer Text079c
+ textpointer Text079d
+ textpointer Text079e
+ textpointer Text079f
+ textpointer Text07a0
+ textpointer Text07a1
+ textpointer Text07a2
+ textpointer Text07a3
+ textpointer Text07a4
+ textpointer Text07a5
+ textpointer Text07a6
+ textpointer Text07a7
+ textpointer Text07a8
+ textpointer Text07a9
+ textpointer Text07aa
+ textpointer Text07ab
+ textpointer Text07ac
+ textpointer Text07ad
+ textpointer Text07ae
+ textpointer Text07af
+ textpointer Text07b0
+ textpointer Text07b1
+ textpointer Text07b2
+ textpointer Text07b3
+ textpointer Text07b4
+ textpointer Text07b5
+ textpointer Text07b6
+ textpointer Text07b7
+ textpointer Text07b8
+ textpointer Text07b9
+ textpointer Text07ba
+ textpointer Text07bb
+ textpointer Text07bc
+ textpointer Text07bd
+ textpointer Text07be
+ textpointer Text07bf
+ textpointer Text07c0
+ textpointer Text07c1
+ textpointer Text07c2
+ textpointer Text07c3
+ textpointer Text07c4
+ textpointer Text07c5
+ textpointer Text07c6
+ textpointer Text07c7
+ textpointer Text07c8
+ textpointer Text07c9
+ textpointer Text07ca
+ textpointer Text07cb
+ textpointer Text07cc
+ textpointer Text07cd
+ textpointer Text07ce
+ textpointer Text07cf
+ textpointer Text07d0
+ textpointer Text07d1
+ textpointer Text07d2
+ textpointer Text07d3
+ textpointer Text07d4
+ textpointer Text07d5
+ textpointer Text07d6
+ textpointer Text07d7
+ textpointer Text07d8
+ textpointer Text07d9
+ textpointer Text07da
+ textpointer Text07db
+ textpointer Text07dc
+ textpointer Text07dd
+ textpointer Text07de
+ textpointer Text07df
+ textpointer Text07e0
+ textpointer Text07e1
+ textpointer Text07e2
+ textpointer Text07e3
+ textpointer Text07e4
+ textpointer Text07e5
+ textpointer DefeatedFiveOpponentsText
+ textpointer Text07e7
+ textpointer ConsecutiveWinRecordIncreasedText
+ textpointer Text07e9
+ textpointer Text07ea
+ textpointer Text07eb
+ textpointer Text07ec
+ textpointer Text07ed
+ textpointer Text07ee
+ textpointer Text07ef
+ textpointer Text07f0
+ textpointer Text07f1
+ textpointer Text07f2
+ textpointer Text07f3
+ textpointer Text07f4
+ textpointer Text07f5
+ textpointer Text07f6
+ textpointer Text07f7
+ textpointer Text07f8
+ textpointer Text07f9
+ textpointer Text07fa
+ textpointer Text07fb
+ textpointer GrassEnergyName
+ textpointer GrassEnergyDescription
+ textpointer FireEnergyName
+ textpointer FireEnergyDescription
+ textpointer WaterEnergyName
+ textpointer WaterEnergyDescription
+ textpointer LightningEnergyName
+ textpointer LightningEnergyDescription
+ textpointer FightingEnergyName
+ textpointer FightingEnergyDescription
+ textpointer PsychicEnergyName
+ textpointer PsychicEnergyDescription
+ textpointer DoubleColorlessEnergyName
+ textpointer DoubleColorlessEnergyDescription
+ textpointer BulbasaurName
+ textpointer LeechSeedName
+ textpointer BulbasaursLeechSeedDescription
+ textpointer BulbasaurKind
+ textpointer BulbasaurDescription
+ textpointer IvysaurName
+ textpointer VineWhipName
+ textpointer PoisonPowderName
+ textpointer InflictPoisonDescription
+ textpointer IvysaurDescription
+ textpointer VenusaurName
+ textpointer SolarPowerName
+ textpointer SolarPowerDescription
+ textpointer SolarPowerDescriptionCont
+ textpointer MegaDrainName
+ textpointer VenusaursMegaDrainDescription
+ textpointer VenusaursMegaDrainDescriptionCont
+ textpointer Venusaur1Description
+ textpointer EnergyTransName
+ textpointer EnergyTransDescription
+ textpointer SolarBeamName
+ textpointer Venusaur2Description
+ textpointer CaterpieName
+ textpointer StringShotName
+ textpointer MayInflictParalysisDescription
+ textpointer CaterpieKind
+ textpointer CaterpieDescription
+ textpointer MetapodName
+ textpointer StiffenName
+ textpointer MetapodsStiffenDescription
+ textpointer StunSporeName
+ textpointer MetapodKind
+ textpointer MetapodDescription
+ textpointer ButterfreeName
+ textpointer WhirlwindName
+ textpointer WhirlwindDescription
+ textpointer ButterfreesMegaDrainDescription
+ textpointer ButterfreesMegaDrainDescriptionCont
+ textpointer ButterfreeKind
+ textpointer ButterfreeDescription
+ textpointer WeedleName
+ textpointer PoisonStingName
+ textpointer MayInflictPoisonDescription
+ textpointer WeedleKind
+ textpointer WeedleDescription
+ textpointer KakunaName
+ textpointer KakunasStiffenDescription
+ textpointer KakunaDescription
+ textpointer BeedrillName
+ textpointer TwineedleName
+ textpointer DoubleAttackX30Description
+ textpointer BeedrillKind
+ textpointer BeedrillDescription
+ textpointer EkansName
+ textpointer SpitPoisonName
+ textpointer WrapName
+ textpointer EkansKind
+ textpointer EkansDescription
+ textpointer ArbokName
+ textpointer TerrorStrikeName
+ textpointer TerrorStrikeDescription
+ textpointer PoisonFangName
+ textpointer ArbokKind
+ textpointer ArbokDescription
+ textpointer NidoranFName
+ textpointer FurySweepesName
+ textpointer TripleAttackX10Description
+ textpointer CallforFamilyName
+ textpointer NidoranFsCallforFamilyDescription
+ textpointer NidoranFKind
+ textpointer NidoranFDescription
+ textpointer NidorinaName
+ textpointer SupersonicName
+ textpointer MayInflictConfusionDescription
+ textpointer DoubleKickName
+ textpointer NidorinaDescription
+ textpointer NidoqueenName
+ textpointer BoyfriendsName
+ textpointer BoyfriendsDescription
+ textpointer MegaPunchName
+ textpointer NidoqueenKind
+ textpointer NidoqueenDescription
+ textpointer NidoranMName
+ textpointer HornHazardName
+ textpointer MayDoNothingDescription
+ textpointer NidoranMDescription
+ textpointer NidorinoName
+ textpointer HornDrillName
+ textpointer NidorinoDescription
+ textpointer NidokingName
+ textpointer ThrashName
+ textpointer ThrashDescriptipn
+ textpointer ToxicName
+ textpointer ToxicDescription
+ textpointer NidokingDescription
+ textpointer ZubatName
+ textpointer LeechLifeName
+ textpointer ZubatsLeechLifeDescription
+ textpointer ZubatKind
+ textpointer ZubatDescription
+ textpointer GolbatName
+ textpointer WingAttackName
+ textpointer GolbatsLeechLifeDescription
+ textpointer GolbatDescription
+ textpointer OddishName
+ textpointer SproutName
+ textpointer SproutDescription
+ textpointer OddishKind
+ textpointer OddishDescription
+ textpointer GloomName
+ textpointer FoulOdorName
+ textpointer FoulOdorDescription
+ textpointer GloomDescription
+ textpointer VileplumeName
+ textpointer HealName
+ textpointer HealDescription
+ textpointer PetalDanceName
+ textpointer PetalDanceDescription
+ textpointer VileplumeKind
+ textpointer VileplumeDescription
+ textpointer ParasName
+ textpointer ScratchName
+ textpointer SporeName
+ textpointer InflictSleepDescription
+ textpointer ParasKind
+ textpointer ParasDescription
+ textpointer ParasectName
+ textpointer SlashName
+ textpointer ParasectDescription
+ textpointer VenonatName
+ textpointer VenonatLeechLifeDescription
+ textpointer VenonatKind
+ textpointer VenonatDescription
+ textpointer VenomothName
+ textpointer ShiftName
+ textpointer ShiftDescription
+ textpointer VenomPowderName
+ textpointer VenomPowderDescription
+ textpointer VenomothKind
+ textpointer VenomothDescription
+ textpointer BellsproutName
+ textpointer BellsproutsCallforFamilyDescription
+ textpointer BellsproutDescription
+ textpointer WeepinbellName
+ textpointer RazorLeafName
+ textpointer WeepinbellKind
+ textpointer WeepinbellDescription
+ textpointer VictreebelName
+ textpointer LureName
+ textpointer VictreebelsLureDescription
+ textpointer AcidName
+ textpointer VictreebelsAcidDescription
+ textpointer VictreebelDescription
+ textpointer GrimerName
+ textpointer NastyGooName
+ textpointer MinimizeName
+ textpointer GrimersMinimizeDescription
+ textpointer GrimerKindOrSludgeName
+ textpointer GrimerDescription
+ textpointer MukName
+ textpointer ToxicGasName
+ textpointer ToxicGasDescription
+ textpointer MukDescription
+ textpointer ExeggcuteName
+ textpointer DrowzeeKindOrHypnosisName
+ textpointer ExeggcutesLeechSeedDescription
+ textpointer ExeggcuteKind
+ textpointer ExeggcuteDescription
+ textpointer ExeggutorName
+ textpointer TeleportName
+ textpointer TeleportDescription
+ textpointer BigEggsplosionName
+ textpointer BigEggsplosionDescription
+ textpointer ExeggutorKind
+ textpointer ExeggutorDescription
+ textpointer KoffingName
+ textpointer FoulGasName
+ textpointer FoulGasDescription
+ textpointer KoffingKind
+ textpointer KoffingDescription
+ textpointer WeezingName
+ textpointer SmogName
+ textpointer SelfdestructName
+ textpointer WeezingsSelfdestructDescription
+ textpointer WeezingDescription
+ textpointer TangelaName
+ textpointer BindName
+ textpointer TangelaKind
+ textpointer Tangela1Description
+ textpointer PoisonWhipName
+ textpointer Tangela2Description
+ textpointer ScytherName
+ textpointer SwordsDanceName
+ textpointer SwordsDanceDescription
+ textpointer ScytherKind
+ textpointer ScytherDescription
+ textpointer PinsirName
+ textpointer IronGripName
+ textpointer GuillotineName
+ textpointer PinsirKind
+ textpointer PinsirDescription
+ textpointer CharmanderName
+ textpointer EmberName
+ textpointer EmberDescription
+ textpointer CharmanderKind
+ textpointer CharmanderDescription
+ textpointer CharmeleonName
+ textpointer FlamethrowerName
+ textpointer CharmeleonsFlamethrowerDescription
+ textpointer CharmeleonKind
+ textpointer CharmeleonDescription
+ textpointer CharizardName
+ textpointer EnergyBurnName
+ textpointer EnergyBurnDescription
+ textpointer FireSpinName
+ textpointer FireSpinDescription
+ textpointer CharizardDescription
+ textpointer VulpixName
+ textpointer ConfuseRayName
+ textpointer VulpixKind
+ textpointer VulpixDescription
+ textpointer NinetailsName
+ textpointer NinetailsLureDescription
+ textpointer FireBlastName
+ textpointer FireBlastDescription
+ textpointer Ninetails1Description
+ textpointer MixUpName
+ textpointer MixUpDescription
+ textpointer MixUpDescriptionCont
+ textpointer DancingEmbersName
+ textpointer DancingEmbersDescription
+ textpointer Ninetails2Description
+ textpointer GrowlitheName
+ textpointer FlareName
+ textpointer GrowlitheKind
+ textpointer GrowlitheDescription
+ textpointer ArcanineName
+ textpointer QuickAttackName
+ textpointer QuickAttackDescription
+ textpointer FlamesofRageName
+ textpointer FlamesofRageDescription
+ textpointer ArcanineKind
+ textpointer Arcanine1Description
+ textpointer ArcaninesFlamethrowerDescription
+ textpointer TakeDownName
+ textpointer TakeDownDescription
+ textpointer Arcanine2Description
+ textpointer PonytaName
+ textpointer SmashKickName
+ textpointer FlameTailName
+ textpointer PonytaKind
+ textpointer PonytaDescription
+ textpointer RapidashName
+ textpointer StompName
+ textpointer StompDescription
+ textpointer AgilityName
+ textpointer RapidashsAgilityDescription
+ textpointer RapidashDescription
+ textpointer MagmarName
+ textpointer FirePunchName
+ textpointer FirePunchDescription
+ textpointer MagmarKind
+ textpointer Magmar1Description
+ textpointer SmokescreenName
+ textpointer MagmarsSmokescreenDescription
+ textpointer Magmar2Description
+ textpointer FlareonName
+ textpointer EeveeName
+ textpointer BiteName
+ textpointer RageName
+ textpointer FlareonsRageDescription
+ textpointer Flareon1Description
+ textpointer FlareonsFlamethrowerDescription
+ textpointer Flareon2Description
+ textpointer MoltresName
+ textpointer WildfireName
+ textpointer WildfireDescription
+ textpointer DiveBombName
+ textpointer Moltres1Description
+ textpointer FiregiverName
+ textpointer FiregiverDescription
+ textpointer Moltres2Description
+ textpointer SquirtleName
+ textpointer BubbleName
+ textpointer WithdrawName
+ textpointer SquirtlesWithdrawDescription
+ textpointer SquirtleKind
+ textpointer SquirtleDescription
+ textpointer WartortleName
+ textpointer WartortlesWithdrawDescription
+ textpointer WartortleKind
+ textpointer WartortleDescription
+ textpointer BlastoiseName
+ textpointer RainDanceName
+ textpointer RainDanceDescription
+ textpointer RainDanceDescriptionCont
+ textpointer HydroPumpName
+ textpointer HydroPumpDescription
+ textpointer BlastoiseKind
+ textpointer BlastoiseDescription
+ textpointer PsyduckName
+ textpointer HeadacheName
+ textpointer HeadacheDescription
+ textpointer PsyduckKind
+ textpointer PsyduckDescription
+ textpointer GolduckName
+ textpointer PsyshockName
+ textpointer HyperBeamName
+ textpointer Discard1EnergyFromTargetDescription
+ textpointer GolduckDescription
+ textpointer PoliwagName
+ textpointer WaterGunName
+ textpointer PoliwagsWaterGunDescription
+ textpointer PoliwagKind
+ textpointer PoliwagDescription
+ textpointer PoliwhirlName
+ textpointer AmnesiaName
+ textpointer PoliwhirlsAmnesiaDescription
+ textpointer DoubleslapName
+ textpointer PoliwhirlsDescription
+ textpointer PoliwrathName
+ textpointer PoliwrathsWaterGunDescription
+ textpointer WhirlpoolName
+ textpointer PoliwrathDescription
+ textpointer TentacoolName
+ textpointer CowardiceName
+ textpointer CowardiceDescription
+ textpointer TentacoolKind
+ textpointer TentacoolDescription
+ textpointer TentacruelName
+ textpointer JellyfishStingName
+ textpointer TentacruelDescription
+ textpointer SeelName
+ textpointer HeadbuttName
+ textpointer SeelKind
+ textpointer SeelDescription
+ textpointer DewgongName
+ textpointer AuroraBeamName
+ textpointer IceBeamName
+ textpointer DewgongDescription
+ textpointer ShellderName
+ textpointer HideinShellName
+ textpointer HideinShellDescription
+ textpointer ShellderKind
+ textpointer ShellderDescription
+ textpointer CloysterName
+ textpointer ClampName
+ textpointer ClampDescription
+ textpointer SpikeCannonName
+ textpointer CloysterDescription
+ textpointer KrabbyName
+ textpointer KrabbysCallforFamilyDescription
+ textpointer KrabbyKind
+ textpointer KrabbyDescription
+ textpointer KinglerName
+ textpointer FlailName
+ textpointer KinglersFlailDescription
+ textpointer CrabhammerName
+ textpointer KinglerKind
+ textpointer KinglerDescription
+ textpointer HorseaName
+ textpointer OpponentAttackMayDoNothingDescription
+ textpointer HorseaKind
+ textpointer HorseaDescription
+ textpointer SeadraName
+ textpointer SeadrasWaterGunDescription
+ textpointer SeadrasAgilityDescription
+ textpointer SeadraDescription
+ textpointer GoldeenName
+ textpointer HornAttackName
+ textpointer GoldeenKind
+ textpointer GoldeenDescription
+ textpointer SeakingName
+ textpointer WaterfallName
+ textpointer SeakingDescription
+ textpointer StaryuName
+ textpointer SlapName
+ textpointer StaryuKind
+ textpointer StaryuDescription
+ textpointer StarmieName
+ textpointer RecoverName
+ textpointer StarmiesRecoverDescription
+ textpointer StarFreezeName
+ textpointer StarmieKind
+ textpointer StarmieDescription
+ textpointer MagikarpName
+ textpointer TackleName
+ textpointer MagikarpsFlailDescription
+ textpointer MagikarpKind
+ textpointer MagikarpDescription
+ textpointer GyaradosName
+ textpointer DragonRageName
+ textpointer BubblebeamName
+ textpointer GyaradosKind
+ textpointer GyaradosDescription
+ textpointer LaprasName
+ textpointer LaprasWaterGunDescription
+ textpointer LaprasKind
+ textpointer LaprasDescription
+ textpointer VaporeonName
+ textpointer FocusEnergyName
+ textpointer FocusEnergyDescription
+ textpointer VaporeonKind
+ textpointer Vaporeon1Description
+ textpointer VaporeonsWaterGunDescription
+ textpointer Vaporeon2Description
+ textpointer OmanyteName
+ textpointer MysteriousFossilName
+ textpointer ClairvoyanceName
+ textpointer ClairvoyanceDescription
+ textpointer OmanytesWaterGunDescription
+ textpointer OmanyteKind
+ textpointer OmanyteDescription
+ textpointer OmastarName
+ textpointer OmastarsWaterGunDescription
+ textpointer OmastarDescription
+ textpointer ArticunoName
+ textpointer FreezeDryName
+ textpointer BlizzardName
+ textpointer BlizzardDescription
+ textpointer ArticunoKind
+ textpointer Articuno1Description
+ textpointer QuickfreezeName
+ textpointer QuickfreezeDescription
+ textpointer IceBreathName
+ textpointer IceBreathDescription
+ textpointer Articuno2Description
+ textpointer PikachuName
+ textpointer GnawName
+ textpointer ThunderJoltName
+ textpointer ThunderJoltDescription
+ textpointer PikachuKind
+ textpointer Pikachu1Description
+ textpointer SparkName
+ textpointer SparkDescription
+ textpointer Pikachu2Description
+ textpointer GrowlName
+ textpointer GrowlDescription
+ textpointer ThundershockName
+ textpointer Pikachu3Description
+ textpointer FlyingPikachuName
+ textpointer FlyName
+ textpointer FlyDescription
+ textpointer FlyingPikachuDescription
+ textpointer SurfingPikachuName
+ textpointer SurfName
+ textpointer SurfingPikachuDescription
+ textpointer RaichuName
+ textpointer RaichusAgilityDescription
+ textpointer ThunderName
+ textpointer RaichusThunderDescription
+ textpointer Raichu1Description
+ textpointer GigashockName
+ textpointer GigashockDescription
+ textpointer Raichu2Description
+ textpointer MagnemiteName
+ textpointer ThunderWaveName
+ textpointer MagnemitesSelfdestructDescription
+ textpointer MagnemiteKind
+ textpointer Magnemite1Description
+ textpointer MagneticStormName
+ textpointer MagneticStormDescription
+ textpointer Magnemite2Description
+ textpointer MagnetonName
+ textpointer Magneton1sSelfdestructDescription
+ textpointer Magneton1Description
+ textpointer SonicboomName
+ textpointer SonicboomDescription
+ textpointer Magneton2sSelfdestructDescription
+ textpointer Magneton2Description
+ textpointer VoltorbName
+ textpointer VoltorbKind
+ textpointer VoltorbDescription
+ textpointer ElectrodeName
+ textpointer EnergySpikeName
+ textpointer EnergySpikeDescription
+ textpointer Electrode1Description
+ textpointer ChainLightningName
+ textpointer ChainLightningDescription
+ textpointer Electrode2Description
+ textpointer ElectabuzzName
+ textpointer LightScreenName
+ textpointer LightScreenDescription
+ textpointer LightScreenDescriptionCont
+ textpointer ElectabuzzsQuickAttackDescription
+ textpointer ElectabuzzKind
+ textpointer Electabuzz1Description
+ textpointer ThunderpunchName
+ textpointer ThunderpunchDescription
+ textpointer Electabuzz2Description
+ textpointer JolteonName
+ textpointer DoubleAttackX20Description
+ textpointer StunNeedleName
+ textpointer JolteonKind
+ textpointer Jolteon1Description
+ textpointer PinMissileName
+ textpointer QuadrupleAttackX20Description
+ textpointer Jolteon2Description
+ textpointer ZapdosName
+ textpointer ThunderstormName
+ textpointer ThunderstormDescription
+ textpointer Zapdos1Description
+ textpointer ZapdosThunderDescription
+ textpointer ThunderboltName
+ textpointer ThunderboltDescription
+ textpointer Zapdos2Description
+ textpointer PealofThunderName
+ textpointer PealofThunderDescription
+ textpointer BigThunderName
+ textpointer BigThunderDescription
+ textpointer Zapdos3Description
+ textpointer SandshrewName
+ textpointer SandAttackName
+ textpointer SandshrewDescription
+ textpointer SandslashName
+ textpointer TripleAttackX20Description
+ textpointer SandslashDescription
+ textpointer DiglettName
+ textpointer DigName
+ textpointer MudSlapName
+ textpointer DiglettKind
+ textpointer DiglettDescription
+ textpointer DugtrioName
+ textpointer EarthquakeName
+ textpointer EarthquakeDescription
+ textpointer DugtrioDescription
+ textpointer MankeyName
+ textpointer PeekName
+ textpointer PeekDescription
+ textpointer PeekDescriptionCont
+ textpointer MankeyKind
+ textpointer MankeyDescription
+ textpointer PrimeapeName
+ textpointer TantrumName
+ textpointer TantrumDescription
+ textpointer PrimeapeDescription
+ textpointer MachopName
+ textpointer LowKickName
+ textpointer MachopKindOrSuperpowerName
+ textpointer MachopDescription
+ textpointer MachokeName
+ textpointer KarateChopName
+ textpointer KarateChopDescription
+ textpointer SubmissionName
+ textpointer SubmissionDescription
+ textpointer MachokeDescription
+ textpointer MachampName
+ textpointer StrikesBackName
+ textpointer StrikesBackDescription
+ textpointer StrikesBackDescriptionCont
+ textpointer SeismicTossName
+ textpointer MachampDescription
+ textpointer GeodudeName
+ textpointer StoneBarrageName
+ textpointer StoneBarrageDescription
+ textpointer GeodudeKind
+ textpointer GeodudeDescription
+ textpointer GravelerName
+ textpointer HardenName
+ textpointer GravelersHardenDescription
+ textpointer RockThrowName
+ textpointer GravelerDescription
+ textpointer GolemName
+ textpointer AvalancheName
+ textpointer GolemsSelfdestructDescription
+ textpointer GolemKind
+ textpointer GolemDescription
+ textpointer OnixName
+ textpointer OnixsHardenDescription
+ textpointer OnixKind
+ textpointer OnixDescription
+ textpointer CuboneName
+ textpointer SnivelName
+ textpointer SnivelDescription
+ textpointer CubonesRageDescription
+ textpointer CuboneKind
+ textpointer CuboneDescription
+ textpointer MarowakName
+ textpointer BonemerangName
+ textpointer CallforFriendName
+ textpointer CallforFriendDescription
+ textpointer MarowakKind
+ textpointer Marowak1Description
+ textpointer BoneAttackName
+ textpointer BoneAttackDescription
+ textpointer WailName
+ textpointer WailDescription
+ textpointer Marowak2Description
+ textpointer HitmonleeName
+ textpointer StretchKickName
+ textpointer StretchKickDescription
+ textpointer HighJumpKickName
+ textpointer HitmonleeKind
+ textpointer HitmonleeDescription
+ textpointer HitmonchanName
+ textpointer JabName
+ textpointer SpecialPunch
+ textpointer HitmonchanKind
+ textpointer HitmonchanDescription
+ textpointer RhyhornName
+ textpointer LeerName
+ textpointer LeerDescription
+ textpointer RhyhornKind
+ textpointer RhyhornDescription
+ textpointer RhydonName
+ textpointer RamName
+ textpointer RamDescription
+ textpointer RamDescriptionCont
+ textpointer RhydonDescription
+ textpointer KabutoName
+ textpointer KabutoArmorName
+ textpointer KabutoArmorDescription
+ textpointer KabutoArmorDescriptionCont
+ textpointer KabutoDescription
+ textpointer KabutopsName
+ textpointer SharpSickleName
+ textpointer AbsorbName
+ textpointer AbsorbDescription
+ textpointer AbsorbDescriptionCont
+ textpointer KabutopsDescription
+ textpointer AerodactylName
+ textpointer PrehistoricPowerName
+ textpointer PrehistoricPowerDescription
+ textpointer AerodactylKind
+ textpointer AerodactylDescription
+ textpointer AbraName
+ textpointer AbraKind
+ textpointer AbraDescription
+ textpointer KadabraName
+ textpointer KadabrasRecoverDescription
+ textpointer SuperPsiName
+ textpointer KadabraDescription
+ textpointer AlakazamName
+ textpointer DamageSwapName
+ textpointer DamageSwapDescription
+ textpointer AlakazamDescription
+ textpointer SlowpokeName
+ textpointer SlowpokesAmnesiaDescription
+ textpointer SlowpokeKind
+ textpointer Slowpoke1Description
+ textpointer SpacingOutName
+ textpointer SpacingOutDescription
+ textpointer ScavengeName
+ textpointer ScavengeDescription
+ textpointer SlowbroName
+ textpointer StrangeBehaviorName
+ textpointer StrangeBehaviorDescription
+ textpointer SlowbroKind
+ textpointer SlowbroDescription
+ textpointer GastlyName
+ textpointer SleepingGasName
+ textpointer MayInflictSleepDescription
+ textpointer DestinyBondName
+ textpointer DestinyBondDescription
+ textpointer GastlyKind
+ textpointer Gastly1Description
+ textpointer LickName
+ textpointer EnergyConversionName
+ textpointer EnergyConversionDescription
+ textpointer Gastly2Description
+ textpointer HaunterName
+ textpointer TransparencyName
+ textpointer TransparencyDescription
+ textpointer NightmareName
+ textpointer HaunterDescription
+ textpointer DreamEaterName
+ textpointer DreamEaterDescription
+ textpointer GengarName
+ textpointer CurseName
+ textpointer CurseDescription
+ textpointer DarkMindName
+ textpointer DarkMindDescription
+ textpointer GengarKind
+ textpointer GengarDescription
+ textpointer DrowzeeName
+ textpointer PoundName
+ textpointer DrowzeeDescription
+ textpointer HypnoName
+ textpointer ProphecyName
+ textpointer ProphecyDescription
+ textpointer HypnoDescription
+ textpointer MrMimeName
+ textpointer InvisibleWallName
+ textpointer InvisibleWallDescription
+ textpointer InvisibleWallDescriptionCont
+ textpointer MeditateName
+ textpointer MrMimesMeditateDescription
+ textpointer MrMimeKindOrBarrierName
+ textpointer MrMimeDescription
+ textpointer JynxName
+ textpointer DoubleAttackX10Description
+ textpointer JynxsMeditateDescription
+ textpointer JynxKind
+ textpointer JynxDescription
+ textpointer MewtwoName
+ textpointer PsychicName
+ textpointer PsychicDescription
+ textpointer BarrierDescription
+ textpointer MewtwoKind
+ textpointer Mewtwo1Description
+ textpointer EnergyAbsorptionName
+ textpointer EnergyAbsorptionDescription
+ textpointer PsyburnName
+ textpointer Mewtwo2Description
+ textpointer MewName
+ textpointer NeutralizingShieldName
+ textpointer NeutralizingShieldDescription
+ textpointer MewKind
+ textpointer Mew1Description
+ textpointer MysteryAttackName
+ textpointer MysteryAttackDescription
+ textpointer Mew2Description
+ textpointer PsywaveName
+ textpointer PsywaveDescription
+ textpointer DevolutionBeamName
+ textpointer DevolutionBeamDescription
+ textpointer PidgeyName
+ textpointer PidgeyKind
+ textpointer PidgeyDescription
+ textpointer PidgeottoName
+ textpointer MirrorMoveName
+ textpointer PidgeottosMirrorMoveDescription
+ textpointer PidgeottoKind
+ textpointer PidgeottoDescription
+ textpointer PidgeotName
+ textpointer SlicingWindName
+ textpointer SlicingWildDescription
+ textpointer GaleName
+ textpointer GaleDescription
+ textpointer Pidgeot1Description
+ textpointer HurricaneName
+ textpointer HurricaneDescription
+ textpointer Pidgeot2Description
+ textpointer RattataName
+ textpointer RattataKind
+ textpointer RattataDescription
+ textpointer RaticateName
+ textpointer SuperFangName
+ textpointer SuperFangDescription
+ textpointer RaticateDescription
+ textpointer SpearowName
+ textpointer PeckName
+ textpointer SpearowsMirrorMoveDescription
+ textpointer SpearowDescription
+ textpointer FearowName
+ textpointer FearowsAgilityDescription
+ textpointer DrillPeckName
+ textpointer FearowKind
+ textpointer FearowDescription
+ textpointer ClefairyName
+ textpointer SingName
+ textpointer MetronomeName
+ textpointer ClefairysMetronomeDescription
+ textpointer ClefairyKind
+ textpointer ClefairyDescription
+ textpointer ClefableName
+ textpointer ClefablesMetronomeDescription
+ textpointer ClefablesMinimizeDescription
+ textpointer ClefableDescription
+ textpointer JigglypuffName
+ textpointer FirstAidName
+ textpointer FirstAidDescription
+ textpointer DoubleEdgeName
+ textpointer JigglypuffsDoubleEdgeDescription
+ textpointer JigglypuffKind
+ textpointer Jigglypuff1Description
+ textpointer FriendshipSongName
+ textpointer FriendshipSongDescription
+ textpointer ExpandName
+ textpointer ExpandDescription
+ textpointer Jigglypuff2Description
+ textpointer LullabyName
+ textpointer Jigglypuff3Description
+ textpointer WigglytuffName
+ textpointer DotheWaveName
+ textpointer DotheWaveDescription
+ textpointer WigglytuffDescription
+ textpointer MeowthName
+ textpointer CatPunchName
+ textpointer CatPunchDescription
+ textpointer MeowthKind
+ textpointer Meowth1Description
+ textpointer PayDayName
+ textpointer PayDayDescription
+ textpointer Meowth2Description
+ textpointer PersianName
+ textpointer PounceName
+ textpointer PounceDescription
+ textpointer PersianKind
+ textpointer PersianDescription
+ textpointer FarfetchdName
+ textpointer LeekSlapName
+ textpointer LeekSlapDescription
+ textpointer PotSmashName
+ textpointer FarfetchdKind
+ textpointer FarfetchdDescription
+ textpointer DoduoName
+ textpointer FuryAttackName
+ textpointer DoduoKind
+ textpointer DoduoDescription
+ textpointer DodrioName
+ textpointer RetreatAidName
+ textpointer RetreatAidDescription
+ textpointer DodriosRageDescription
+ textpointer DodrioKind
+ textpointer DodrioDescription
+ textpointer LickitungName
+ textpointer TongueWrapName
+ textpointer LickitungKind
+ textpointer LickitungDescription
+ textpointer ChanseyName
+ textpointer ScrunchName
+ textpointer ScrunchDescription
+ textpointer ChanseysDoubleEdgeDescription
+ textpointer ChanseyDescription
+ textpointer KangaskhanName
+ textpointer FetchName
+ textpointer FetchDescription
+ textpointer CometPunchName
+ textpointer KangaskhanKind
+ textpointer KangaskhanDescription
+ textpointer TaurosName
+ textpointer RampageName
+ textpointer RampageDescription
+ textpointer TaurosKind
+ textpointer TaurosDescription
+ textpointer DittoName
+ textpointer MorphName
+ textpointer MorphDescription
+ textpointer MorphDescriptionCont
+ textpointer DittoKind
+ textpointer DittoDescription
+ textpointer TailWagName
+ textpointer TailWagDescription
+ textpointer EeveeKind
+ textpointer EeveeDescription
+ textpointer PorygonName
+ textpointer Conversion1Name
+ textpointer Conversion1Description
+ textpointer Conversion2Name
+ textpointer Conversion2Description
+ textpointer PorygonKind
+ textpointer PorygonDescription
+ textpointer SnorlaxName
+ textpointer ThickSkinnedName
+ textpointer ThickSkinnedDescription
+ textpointer BodySlamName
+ textpointer SnorlaxKind
+ textpointer SnorlaxDescription
+ textpointer DratiniName
+ textpointer DratiniDescription
+ textpointer DragonairName
+ textpointer SlamName
+ textpointer DragonairDescription
+ textpointer DragoniteName
+ textpointer HealingWindName
+ textpointer HealingWindDescription
+ textpointer Dragonite1Description
+ textpointer StepInName
+ textpointer StepInDescription
+ textpointer DoubleAttackX40Description
+ textpointer DragoniteDescription
+ textpointer ProfessorOakName
+ textpointer ProfessorOakDescription
+ textpointer ImposterProfessorOakName
+ textpointer ImposterProfessorOakDescription
+ textpointer BillName
+ textpointer BillDescription
+ textpointer MrFujiName
+ textpointer MrFujiDescription
+ textpointer LassName
+ textpointer LassDescription
+ textpointer ImakuniName
+ textpointer ImakuniDescription
+ textpointer PokemonTraderName
+ textpointer PokemonTraderDescription
+ textpointer PokemonBreederName
+ textpointer PokemonBreederDescription
+ textpointer ClefairyDollName
+ textpointer ClefairyDollDescription
+ textpointer ClefairyDollDescriptionCont
+ textpointer MysteriousFossilDescription
+ textpointer MysteriousFossilDescriptionCont
+ textpointer EnergyRetrievalName
+ textpointer EnergyRetrievalDescription
+ textpointer SuperEnergyRetrievalName
+ textpointer SuperEnergyRetrievalDescription
+ textpointer EnergySearchName
+ textpointer EnergySearchDescription
+ textpointer EnergyRemovalName
+ textpointer EnergyRemovalDescription
+ textpointer SuperEnergyRemovalName
+ textpointer SuperEnergyRemovalDescription
+ textpointer SwitchName
+ textpointer SwitchDescription
+ textpointer PokemonCenterName
+ textpointer PokemonCenterDescription
+ textpointer PokeBallName
+ textpointer PokeBallDescription
+ textpointer ScoopUpName
+ textpointer ScoopUpDescription
+ textpointer ComputerSearchName
+ textpointer ComputerSearchDescription
+ textpointer PokedexName
+ textpointer PokedexDescription
+ textpointer PlusPowerName
+ textpointer PlusPowerDescription
+ textpointer DefenderName
+ textpointer DefenderDescription
+ textpointer ItemFinderName
+ textpointer ItemFinderDescription
+ textpointer GustofWindName
+ textpointer GustofWindDescription
+ textpointer DevolutionSprayName
+ textpointer DevolutionSprayDescription
+ textpointer DevolutionSprayDescriptionCont
+ textpointer PotionName
+ textpointer PotionDescription
+ textpointer SuperPotionName
+ textpointer SuperPotionDescription
+ textpointer FullHealName
+ textpointer FullHealDescription
+ textpointer ReviveName
+ textpointer ReviveDescription
+ textpointer MaintenanceName
+ textpointer MaintenanceDescription
+ textpointer PokemonFluteName
+ textpointer PokemonFluteDescription
+ textpointer GamblerName
+ textpointer GamblerDescription
+ textpointer RecycleName
+ textpointer RecycleDescription
diff --git a/src/text/texta.asm b/src/text/texta.asm
index d9f2281..385fc69 100644
--- a/src/text/texta.asm
+++ b/src/text/texta.asm
@@ -1,1277 +1,1593 @@
KakunaDescription: ; 58000 (16:4000)
- db TX_START,"Almost incapable of moving, this\n"
- db "Pok`mon can only harden its shell to\n"
- db "protect itself from predators.",TX_END
+ text "Almost incapable of moving, this"
+ line "Pok`mon can only harden its shell to"
+ line "protect itself from predators."
+ done
BeedrillName: ; 58066 (16:4066)
- db TX_START,"Beedrill",TX_END
+ text "Beedrill"
+ done
TwineedleName: ; 58070 (16:4070)
- db TX_START,"Twineedle",TX_END
+ text "Twineedle"
+ done
DoubleAttackX30Description: ; 5807b (16:407b)
- db TX_START,"Flip 2 coins. This attack does 30\n"
- db "damage times the number of heads.",TX_END
+ text "Flip 2 coins. This attack does 30"
+ line "damage times the number of heads."
+ done
BeedrillKind: ; 580c0 (16:40c0)
- db TX_START,"Poison Bee",TX_END
+ text "Poison Bee"
+ done
BeedrillDescription: ; 580cc (16:40cc)
- db TX_START,"Flies at high speed and attacks\n"
- db "using the large, venomous stingers\n"
- db "on its forelegs and tail.",TX_END
+ text "Flies at high speed and attacks"
+ line "using the large, venomous stingers"
+ line "on its forelegs and tail."
+ done
EkansName: ; 5812a (16:412a)
- db TX_START,"Ekans",TX_END
+ text "Ekans"
+ done
SpitPoisonName: ; 58131 (16:4131)
- db TX_START,"Spit Poison",TX_END
+ text "Spit Poison"
+ done
WrapName: ; 5813e (16:413e)
- db TX_START,"Wrap",TX_END
+ text "Wrap"
+ done
EkansKind: ; 58144 (16:4144)
- db TX_START,"Snake",TX_END
+ text "Snake"
+ done
EkansDescription: ; 5814b (16:414b)
- db TX_START,"Moves silently and stealthily. Eats\n"
- db "the eggs of birds, such as Pidgey\n"
- db "and Spearow, whole.",TX_END
+ text "Moves silently and stealthily. Eats"
+ line "the eggs of birds, such as Pidgey"
+ line "and Spearow, whole."
+ done
ArbokName: ; 581a6 (16:41a6)
- db TX_START,"Arbok",TX_END
+ text "Arbok"
+ done
TerrorStrikeName: ; 581ad (16:41ad)
- db TX_START,"Terror Strike",TX_END
+ text "Terror Strike"
+ done
TerrorStrikeDescription: ; 581bc (16:41bc)
- db TX_START,"Flip a coin. If heads and if your\n"
- db "opponent has any Benched Pok`mon,\n"
- db "he or she chooses 1 of them and\n"
- db "switches it with the Defending\n"
- db "Pok`mon.\n"
- db "(Do the damage before switching\n"
- db "the Pok`mon.)",TX_END
+ text "Flip a coin. If heads and if your"
+ line "opponent has any Benched Pok`mon,"
+ line "he or she chooses 1 of them and"
+ line "switches it with the Defending"
+ line "Pok`mon."
+ line "(Do the damage before switching"
+ line "the Pok`mon.)"
+ done
PoisonFangName: ; 58277 (16:4277)
- db TX_START,"Poison Fang",TX_END
+ text "Poison Fang"
+ done
ArbokKind: ; 58284 (16:4284)
- db TX_START,"Cobra",TX_END
+ text "Cobra"
+ done
ArbokDescription: ; 5828b (16:428b)
- db TX_START,"It is rumored that the ferocious\n"
- db "warning markings on its belly differ\n"
- db "from area to area.",TX_END
+ text "It is rumored that the ferocious"
+ line "warning markings on its belly differ"
+ line "from area to area."
+ done
NidoranFName: ; 582e5 (16:42e5)
- db TX_START,"Nidoran%",TX_END
+ text "Nidoran%"
+ done
FurySweepesName: ; 582ef (16:42ef)
- db TX_START,"Fury Swipes",TX_END
+ text "Fury Swipes"
+ done
TripleAttackX10Description: ; 582fc (16:42fc)
- db TX_START,"Flip 3 coins. This attack does 10\n"
- db "damage times the number of heads.",TX_END
+ text "Flip 3 coins. This attack does 10"
+ line "damage times the number of heads."
+ done
CallforFamilyName: ; 58341 (16:4341)
- db TX_START,"Call for Family",TX_END
+ text "Call for Family"
+ done
NidoranFsCallforFamilyDescription: ; 58352 (16:4352)
- db TX_START,"Search your deck for a Basic Pok`mon\n"
- db "named Nidoran% or Nidoran$ and put\n"
- db "it onto your Bench. Shuffle your\n"
- db "deck afterward. (You can't use this\n"
- db "attack if your Bench is full.)",TX_END
+ text "Search your deck for a Basic Pok`mon"
+ line "named Nidoran% or Nidoran$ and put"
+ line "it onto your Bench. Shuffle your"
+ line "deck afterward. (You can't use this"
+ line "attack if your Bench is full.)"
+ done
NidoranFKind: ; 583ff (16:43ff)
- db TX_START,"Poison Pin",TX_END
+ text "Poison Pin"
+ done
NidoranFDescription: ; 5840b (16:440b)
- db TX_START,"Although small, its venomous barbs\n"
- db "make this Pok`mon dangerous.\n"
- db "The female has smaller horns.",TX_END
+ text "Although small, its venomous barbs"
+ line "make this Pok`mon dangerous."
+ line "The female has smaller horns."
+ done
NidorinaName: ; 5846a (16:446a)
- db TX_START,"Nidorina",TX_END
+ text "Nidorina"
+ done
SupersonicName: ; 58474 (16:4474)
- db TX_START,"Supersonic",TX_END
+ text "Supersonic"
+ done
MayInflictConfusionDescription: ; 58480 (16:4480)
- db TX_START,"Flip a coin. If heads, the Defending\n"
- db "Pok`mon is now Confused.",TX_END
+ text "Flip a coin. If heads, the Defending"
+ line "Pok`mon is now Confused."
+ done
DoubleKickName: ; 584bf (16:44bf)
- db TX_START,"Double Kick",TX_END
+ text "Double Kick"
+ done
NidorinaDescription: ; 584cc (16:44cc)
- db TX_START,"The female's horn develops slowly.\n"
- db "Prefers physical attacks such as\n"
- db "clawing and biting.",TX_END
+ text "The female's horn develops slowly."
+ line "Prefers physical attacks such as"
+ line "clawing and biting."
+ done
NidoqueenName: ; 58525 (16:4525)
- db TX_START,"Nidoqueen",TX_END
+ text "Nidoqueen"
+ done
BoyfriendsName: ; 58530 (16:4530)
- db TX_START,"Boyfriends",TX_END
+ text "Boyfriends"
+ done
BoyfriendsDescription: ; 5853c (16:453c)
- db TX_START,"Does 20 damage plus 20 more damage\n"
- db "for each Nidoking you have in play.",TX_END
+ text "Does 20 damage plus 20 more damage"
+ line "for each Nidoking you have in play."
+ done
MegaPunchName: ; 58584 (16:4584)
- db TX_START,"Mega Punch",TX_END
+ text "Mega Punch"
+ done
NidoqueenKind: ; 58590 (16:4590)
- db TX_START,"Drill",TX_END
+ text "Drill"
+ done
NidoqueenDescription: ; 58597 (16:4597)
- db TX_START,"Its hard scales provide strong\n"
- db "protection. It uses its hefty bulk\n"
- db "to execute powerful moves.",TX_END
+ text "Its hard scales provide strong"
+ line "protection. It uses its hefty bulk"
+ line "to execute powerful moves."
+ done
NidoranMName: ; 585f5 (16:45f5)
- db TX_START,"Nidoran$",TX_END
+ text "Nidoran$"
+ done
HornHazardName: ; 585ff (16:45ff)
- db TX_START,"Horn Hazard",TX_END
+ text "Horn Hazard"
+ done
MayDoNothingDescription: ; 5860c (16:460c)
- db TX_START,"Flip a coin. If tails, this attack\n"
- db "does nothing.",TX_END
+ text "Flip a coin. If tails, this attack"
+ line "does nothing."
+ done
NidoranMDescription: ; 5863e (16:463e)
- db TX_START,"Stiffens its ears to sense danger.\n"
- db "The larger, more powerful of its\n"
- db "horns secretes venom.",TX_END
+ text "Stiffens its ears to sense danger."
+ line "The larger, more powerful of its"
+ line "horns secretes venom."
+ done
NidorinoName: ; 58699 (16:4699)
- db TX_START,"Nidorino",TX_END
+ text "Nidorino"
+ done
HornDrillName: ; 586a3 (16:46a3)
- db TX_START,"Horn Drill",TX_END
+ text "Horn Drill"
+ done
NidorinoDescription: ; 586af (16:46af)
- db TX_START,"An aggressive Pok`mon that is quick\n"
- db "to attack. The horn on its head\n"
- db "secretes a powerful venom.",TX_END
+ text "An aggressive Pok`mon that is quick"
+ line "to attack. The horn on its head"
+ line "secretes a powerful venom."
+ done
NidokingName: ; 5870f (16:470f)
- db TX_START,"Nidoking",TX_END
+ text "Nidoking"
+ done
ThrashName: ; 58719 (16:4719)
- db TX_START,"Thrash",TX_END
+ text "Thrash"
+ done
ThrashDescriptipn: ; 58721 (16:4721)
- db TX_START,"Flip a coin. If heads, this attack\n"
- db "does 30 damage plus 10 more damage;\n"
- db "if tails, this attack does 30 damage\n"
- db "and Nidoking does 10 damage to\n"
- db "itself.",TX_END
+ text "Flip a coin. If heads, this attack"
+ line "does 30 damage plus 10 more damage;"
+ line "if tails, this attack does 30 damage"
+ line "and Nidoking does 10 damage to"
+ line "itself."
+ done
ToxicName: ; 587b5 (16:47b5)
- db TX_START,"Toxic",TX_END
+ text "Toxic"
+ done
ToxicDescription: ; 587bc (16:47bc)
- db TX_START,"The Defending Pok`mon is now\n"
- db "Poisoned. It now takes 20 Poison\n"
- db "damage instead of 10 after each\n"
- db "player's turn (even if it was\n"
- db "already Poisoned).",TX_END
+ text "The Defending Pok`mon is now"
+ line "Poisoned. It now takes 20 Poison"
+ line "damage instead of 10 after each"
+ line "player's turn (even if it was"
+ line "already Poisoned)."
+ done
NidokingDescription: ; 5884c (16:484c)
- db TX_START,"Uses its powerful tail in battle to\n"
- db "smash, constrict, then break its\n"
- db "prey's bones.",TX_END
+ text "Uses its powerful tail in battle to"
+ line "smash, constrict, then break its"
+ line "prey's bones."
+ done
ZubatName: ; 588a0 (16:48a0)
- db TX_START,"Zubat",TX_END
+ text "Zubat"
+ done
LeechLifeName: ; 588a7 (16:48a7)
- db TX_START,"Leech Life",TX_END
+ text "Leech Life"
+ done
ZubatsLeechLifeDescription: ; 588b3 (16:48b3)
- db TX_START,"Remove a number of damage counters\n"
- db "from Zubat equal to the damage done\n"
- db "to the Defending Pok`mon (after\n"
- db "applying Weakness and Resistance).\n"
- db "If Zubat has fewer damage counters\n"
- db "than that, remove all of them.",TX_END
+ text "Remove a number of damage counters"
+ line "from Zubat equal to the damage done"
+ line "to the Defending Pok`mon (after"
+ line "applying Weakness and Resistance)."
+ line "If Zubat has fewer damage counters"
+ line "than that, remove all of them."
+ done
ZubatKind: ; 58980 (16:4980)
- db TX_START,"Bat",TX_END
+ text "Bat"
+ done
ZubatDescription: ; 58985 (16:4985)
- db TX_START,"Forms colonies in perpetually dark\n"
- db "places. Uses ultrasonic waves to\n"
- db "identify and approach targets.",TX_END
+ text "Forms colonies in perpetually dark"
+ line "places. Uses ultrasonic waves to"
+ line "identify and approach targets."
+ done
GolbatName: ; 589e9 (16:49e9)
- db TX_START,"Golbat",TX_END
+ text "Golbat"
+ done
WingAttackName: ; 589f1 (16:49f1)
- db TX_START,"Wing Attack",TX_END
+ text "Wing Attack"
+ done
GolbatsLeechLifeDescription: ; 589fe (16:49fe)
- db TX_START,"Remove a number of damage counters\n"
- db "from Golbat equal to the damage done\n"
- db "to the Defending Pok`mon (after\n"
- db "applying Weakness and Resistance).\n"
- db "If Golbat has fewer damage counters\n"
- db "than that, remove all of them.",TX_END
+ text "Remove a number of damage counters"
+ line "from Golbat equal to the damage done"
+ line "to the Defending Pok`mon (after"
+ line "applying Weakness and Resistance)."
+ line "If Golbat has fewer damage counters"
+ line "than that, remove all of them."
+ done
GolbatDescription: ; 58acd (16:4acd)
- db TX_START,"Once it strikes, it will not stop\n"
- db "draining energy from the victim even\n"
- db "if it gets too heavy to fly.",TX_END
+ text "Once it strikes, it will not stop"
+ line "draining energy from the victim even"
+ line "if it gets too heavy to fly."
+ done
OddishName: ; 58b32 (16:4b32)
- db TX_START,"Oddish",TX_END
+ text "Oddish"
+ done
SproutName: ; 58b3a (16:4b3a)
- db TX_START,"Sprout",TX_END
+ text "Sprout"
+ done
SproutDescription: ; 58b42 (16:4b42)
- db TX_START,"Search your deck for a Basic Pok`mon\n"
- db "named Oddish and put it onto your\n"
- db "Bench. Shuffle your deck afterward.\n"
- db "(You can't use this attack if your\n"
- db "Bench is full.)",TX_END
+ text "Search your deck for a Basic Pok`mon"
+ line "named Oddish and put it onto your"
+ line "Bench. Shuffle your deck afterward."
+ line "(You can't use this attack if your"
+ line "Bench is full.)"
+ done
OddishKind: ; 58be1 (16:4be1)
- db TX_START,"Weed",TX_END
+ text "Weed"
+ done
OddishDescription: ; 58be7 (16:4be7)
- db TX_START,"During the day, it keeps its face\n"
- db "buried in the ground. At night, it\n"
- db "wanders around sowing its seeds.",TX_END
+ text "During the day, it keeps its face"
+ line "buried in the ground. At night, it"
+ line "wanders around sowing its seeds."
+ done
GloomName: ; 58c4e (16:4c4e)
- db TX_START,"Gloom",TX_END
+ text "Gloom"
+ done
FoulOdorName: ; 58c55 (16:4c55)
- db TX_START,"Foul Odor",TX_END
+ text "Foul Odor"
+ done
FoulOdorDescription: ; 58c60 (16:4c60)
- db TX_START,"Both the Defending Pok`mon and\n"
- db "Gloom are now Confused (after doing\n"
- db "damage).",TX_END
+ text "Both the Defending Pok`mon and"
+ line "Gloom are now Confused (after doing"
+ line "damage)."
+ done
GloomDescription: ; 58cad (16:4cad)
- db TX_START,"The fluid that oozes from its mouth\n"
- db "isn't drool; it is a nectar that is\n"
- db "used to attract prey.",TX_END
+ text "The fluid that oozes from its mouth"
+ line "isn't drool; it is a nectar that is"
+ line "used to attract prey."
+ done
VileplumeName: ; 58d0c (16:4d0c)
- db TX_START,"Vileplume",TX_END
+ text "Vileplume"
+ done
HealName: ; 58d17 (16:4d17)
- db TX_START,"Heal",TX_END
+ text "Heal"
+ done
HealDescription: ; 58d1d (16:4d1d)
- db TX_START,"Once during your turn (before your\n"
- db "attack), you may flip a coin. If\n"
- db "heads, remove 1 damage counter from\n"
- db "1 of your Pok`mon. This power can't\n"
- db "be used if Vileplume is Asleep,\n"
- db "Confused, or Paralyzed.",TX_END
+ text "Once during your turn (before your"
+ line "attack), you may flip a coin. If"
+ line "heads, remove 1 damage counter from"
+ line "1 of your Pok`mon. This power can't"
+ line "be used if Vileplume is Asleep,"
+ line "Confused, or Paralyzed."
+ done
PetalDanceName: ; 58de2 (16:4de2)
- db TX_START,"Petal Dance",TX_END
+ text "Petal Dance"
+ done
PetalDanceDescription: ; 58def (16:4def)
- db TX_START,"Flip 3 coins. This attack does 40\n"
- db "damage times the number of heads.\n"
- db "Vileplume is now Confused (after\n"
- db "doing damage).",TX_END
+ text "Flip 3 coins. This attack does 40"
+ line "damage times the number of heads."
+ line "Vileplume is now Confused (after"
+ line "doing damage)."
+ done
VileplumeKind: ; 58e64 (16:4e64)
- db TX_START,"Flower",TX_END
+ text "Flower"
+ done
VileplumeDescription: ; 58e6c (16:4e6c)
- db TX_START,"The larger its petals, the more\n"
- db "toxic pollen it contains. Its big\n"
- db "head is heavy and hard to hold up.",TX_END
+ text "The larger its petals, the more"
+ line "toxic pollen it contains. Its big"
+ line "head is heavy and hard to hold up."
+ done
ParasName: ; 58ed2 (16:4ed2)
- db TX_START,"Paras",TX_END
+ text "Paras"
+ done
ScratchName: ; 58ed9 (16:4ed9)
- db TX_START,"Scratch",TX_END
+ text "Scratch"
+ done
SporeName: ; 58ee2 (16:4ee2)
- db TX_START,"Spore",TX_END
+ text "Spore"
+ done
InflictSleepDescription: ; 58ee9 (16:4ee9)
- db TX_START,"The Defending Pok`mon is now Asleep.",TX_END
+ text "The Defending Pok`mon is now Asleep."
+ done
ParasKind: ; 58f0f (16:4f0f)
- db TX_START,"Mushroom",TX_END
+ text "Mushroom"
+ done
ParasDescription: ; 58f19 (16:4f19)
- db TX_START,"Burrows to suck tree roots.\n"
- db "The mushrooms on its back grow by\n"
- db "drawing nutrients from the bug host.",TX_END
+ text "Burrows to suck tree roots."
+ line "The mushrooms on its back grow by"
+ line "drawing nutrients from the bug host."
+ done
ParasectName: ; 58f7d (16:4f7d)
- db TX_START,"Parasect",TX_END
+ text "Parasect"
+ done
SlashName: ; 58f87 (16:4f87)
- db TX_START,"Slash",TX_END
+ text "Slash"
+ done
ParasectDescription: ; 58f8e (16:4f8e)
- db TX_START,"A host-parasite pair in which the\n"
- db "parasite mushroom has taken over\n"
- db "the host bug. Prefers damp places.",TX_END
+ text "A host-parasite pair in which the"
+ line "parasite mushroom has taken over"
+ line "the host bug. Prefers damp places."
+ done
VenonatName: ; 58ff5 (16:4ff5)
- db TX_START,"Venonat",TX_END
+ text "Venonat"
+ done
VenonatLeechLifeDescription: ; 58ffe (16:4ffe)
- db TX_START,"Remove a number of damage counters\n"
- db "from Venonat equal to the damage\n"
- db "done to the Defending Pok`mon (after\n"
- db "applying Weakness and Resistance).\n"
- db "If Venonat has fewer damage counters\n"
- db "than that, remove all of them.",TX_END
+ text "Remove a number of damage counters"
+ line "from Venonat equal to the damage"
+ line "done to the Defending Pok`mon (after"
+ line "applying Weakness and Resistance)."
+ line "If Venonat has fewer damage counters"
+ line "than that, remove all of them."
+ done
VenonatKind: ; 590cf (16:50cf)
- db TX_START,"Insect",TX_END
+ text "Insect"
+ done
VenonatDescription: ; 590d7 (16:50d7)
- db TX_START,"Lives in the shadows of tall trees\n"
- db "where it eats insects.\n"
- db "It is attracted by light at night.",TX_END
+ text "Lives in the shadows of tall trees"
+ line "where it eats insects."
+ line "It is attracted by light at night."
+ done
VenomothName: ; 59135 (16:5135)
- db TX_START,"Venomoth",TX_END
+ text "Venomoth"
+ done
ShiftName: ; 5913f (16:513f)
- db TX_START,"Shift",TX_END
+ text "Shift"
+ done
ShiftDescription: ; 59146 (16:5146)
- db TX_START,"Once during your turn (before your\n"
- db "attack), you may change the type of\n"
- db "Venomoth to the type of any other\n"
- db "Pok`mon in play other than\n"
- db "Colorless.\n"
- db "This power can't be used if Venomoth\n"
- db "is Asleep, Confused, or Paralyzed.",TX_END
+ text "Once during your turn (before your"
+ line "attack), you may change the type of"
+ line "Venomoth to the type of any other"
+ line "Pok`mon in play other than"
+ line "Colorless."
+ line "This power can't be used if Venomoth"
+ line "is Asleep, Confused, or Paralyzed."
+ done
VenomPowderName: ; 5921e (16:521e)
- db TX_START,"Venom Powder",TX_END
+ text "Venom Powder"
+ done
VenomPowderDescription: ; 5922c (16:522c)
- db TX_START,"Flip a coin. If heads, the Defending\n"
- db "Pok`mon is now Confused and\n"
- db "Poisoned.",TX_END
+ text "Flip a coin. If heads, the Defending"
+ line "Pok`mon is now Confused and"
+ line "Poisoned."
+ done
VenomothKind: ; 59278 (16:5278)
- db TX_START,"Poisonmoth",TX_END
+ text "Poisonmoth"
+ done
VenomothDescription: ; 59284 (16:5284)
- db TX_START,"The dust-like scales covering its\n"
- db "wings are color coded to indicate\n"
- db "the kinds of poison it has.",TX_END
+ text "The dust-like scales covering its"
+ line "wings are color coded to indicate"
+ line "the kinds of poison it has."
+ done
BellsproutName: ; 592e5 (16:52e5)
- db TX_START,"Bellsprout",TX_END
+ text "Bellsprout"
+ done
BellsproutsCallforFamilyDescription: ; 592f1 (16:52f1)
- db TX_START,"Search your deck for a Basic Pok`mon\n"
- db "named Bellsprout and put it onto\n"
- db "your Bench. Shuffle your deck\n"
- db "afterward. (You can't use this\n"
- db "attack if your Bench is full.)",TX_END
+ text "Search your deck for a Basic Pok`mon"
+ line "named Bellsprout and put it onto"
+ line "your Bench. Shuffle your deck"
+ line "afterward. (You can't use this"
+ line "attack if your Bench is full.)"
+ done
BellsproutDescription: ; 59394 (16:5394)
- db TX_START,"A carnivorous Pok`mon that traps and\n"
- db "eats bugs. It uses its root feet to\n"
- db "soak up needed moisture.",TX_END
+ text "A carnivorous Pok`mon that traps and"
+ line "eats bugs. It uses its root feet to"
+ line "soak up needed moisture."
+ done
WeepinbellName: ; 593f7 (16:53f7)
- db TX_START,"Weepinbell",TX_END
+ text "Weepinbell"
+ done
RazorLeafName: ; 59403 (16:5403)
- db TX_START,"Razor Leaf",TX_END
+ text "Razor Leaf"
+ done
WeepinbellKind: ; 5940f (16:540f)
- db TX_START,"Flycatcher",TX_END
+ text "Flycatcher"
+ done
WeepinbellDescription: ; 5941b (16:541b)
- db TX_START,"It spits out poisonpowder to\n"
- db "immobilize the enemy, and then\n"
- db "finishes the enemy with a spray of\n"
- db "acid.",TX_END
+ text "It spits out poisonpowder to"
+ line "immobilize the enemy, and then"
+ line "finishes the enemy with a spray of"
+ line "acid."
+ done
VictreebelName: ; 59481 (16:5481)
- db TX_START,"Victreebel",TX_END
+ text "Victreebel"
+ done
LureName: ; 5948d (16:548d)
- db TX_START,"Lure",TX_END
+ text "Lure"
+ done
VictreebelsLureDescription: ; 59493 (16:5493)
- db TX_START,"If your opponent has any Benched\n"
- db "Pok`mon, choose 1 of them and switch\n"
- db "it with his or her Active Pok`mon.",TX_END
+ text "If your opponent has any Benched"
+ line "Pok`mon, choose 1 of them and switch"
+ line "it with his or her Active Pok`mon."
+ done
AcidName: ; 594fd (16:54fd)
- db TX_START,"Acid",TX_END
+ text "Acid"
+ done
VictreebelsAcidDescription: ; 59503 (16:5503)
- db TX_START,"Flip a coin. If heads, the Defending\n"
- db "Pok`mon can't retreat during your\n"
- db "opponent's next turn.",TX_END
+ text "Flip a coin. If heads, the Defending"
+ line "Pok`mon can't retreat during your"
+ line "opponent's next turn."
+ done
VictreebelDescription: ; 59561 (16:5561)
- db TX_START,"Said to live in huge colonies deep\n"
- db "in jungles, although no one has ever\n"
- db "returned from there.",TX_END
+ text "Said to live in huge colonies deep"
+ line "in jungles, although no one has ever"
+ line "returned from there."
+ done
GrimerName: ; 595bf (16:55bf)
- db TX_START,"Grimer",TX_END
+ text "Grimer"
+ done
NastyGooName: ; 595c7 (16:55c7)
- db TX_START,"Nasty Goo",TX_END
+ text "Nasty Goo"
+ done
MinimizeName: ; 595d2 (16:55d2)
- db TX_START,"Minimize",TX_END
+ text "Minimize"
+ done
GrimersMinimizeDescription: ; 595dc (16:55dc)
- db TX_START,"All damage done by attacks to Grimer\n"
- db "during your opponent's next turn is\n"
- db "reduced by 20 (after applying\n"
- db "Weakness and Resistance).",TX_END
+ text "All damage done by attacks to Grimer"
+ line "during your opponent's next turn is"
+ line "reduced by 20 (after applying"
+ line "Weakness and Resistance)."
+ done
GrimerKindOrSludgeName: ; 5965e (16:565e)
- db TX_START,"Sludge",TX_END
+ text "Sludge"
+ done
GrimerDescription: ; 59666 (16:5666)
- db TX_START,"Appears in filthy areas. Thrives by\n"
- db "sucking up polluted sludge that is\n"
- db "pumped out of factories.",TX_END
+ text "Appears in filthy areas. Thrives by"
+ line "sucking up polluted sludge that is"
+ line "pumped out of factories."
+ done
MukName: ; 596c7 (16:56c7)
- db TX_START,"Muk",TX_END
+ text "Muk"
+ done
ToxicGasName: ; 596cc (16:56cc)
- db TX_START,"Toxic Gas",TX_END
+ text "Toxic Gas"
+ done
ToxicGasDescription: ; 596d7 (16:56d7)
- db TX_START,"Ignore all Pok`mon Powers other\n"
- db "than Toxic Gases. This power stops\n"
- db "working while Muk is Asleep,\n"
- db "Confused, or Paralyzed.",TX_END
+ text "Ignore all Pok`mon Powers other"
+ line "than Toxic Gases. This power stops"
+ line "working while Muk is Asleep,"
+ line "Confused, or Paralyzed."
+ done
MukDescription: ; 59750 (16:5750)
- db TX_START,"Thickly covered with a filthy, vile\n"
- db "sludge. It is so toxic, even its\n"
- db "footprints contain poison.",TX_END
+ text "Thickly covered with a filthy, vile"
+ line "sludge. It is so toxic, even its"
+ line "footprints contain poison."
+ done
ExeggcuteName: ; 597b1 (16:57b1)
- db TX_START,"Exeggcute",TX_END
+ text "Exeggcute"
+ done
DrowzeeKindOrHypnosisName: ; 597bc (16:57bc)
- db TX_START,"Hypnosis",TX_END
+ text "Hypnosis"
+ done
ExeggcutesLeechSeedDescription: ; 597c6 (16:57c6)
- db TX_START,"Unless all damage from this attack\n"
- db "is prevented, you may remove 1\n"
- db "damage counter from Exeggcute.",TX_END
+ text "Unless all damage from this attack"
+ line "is prevented, you may remove 1"
+ line "damage counter from Exeggcute."
+ done
ExeggcuteKind: ; 59828 (16:5828)
- db TX_START,"Egg",TX_END
+ text "Egg"
+ done
ExeggcuteDescription: ; 5982d (16:582d)
- db TX_START,"Often mistaken for eggs.\n"
- db "When disturbed, they quickly gather\n"
- db "and attack in swarms.",TX_END
+ text "Often mistaken for eggs."
+ line "When disturbed, they quickly gather"
+ line "and attack in swarms."
+ done
ExeggutorName: ; 59881 (16:5881)
- db TX_START,"Exeggutor",TX_END
+ text "Exeggutor"
+ done
TeleportName: ; 5988c (16:588c)
- db TX_START,"Teleport",TX_END
+ text "Teleport"
+ done
TeleportDescription: ; 59896 (16:5896)
- db TX_START,"Switch Exeggutor with 1 of your\n"
- db "Benched Pok`mon.",TX_END
+ text "Switch Exeggutor with 1 of your"
+ line "Benched Pok`mon."
+ done
BigEggsplosionName: ; 598c8 (16:58c8)
- db TX_START,"Big Eggsplosion",TX_END
+ text "Big Eggsplosion"
+ done
BigEggsplosionDescription: ; 598d9 (16:58d9)
- db TX_START,"Flip a number of coins equal to the\n"
- db "number of Energy attached to\n"
- db "Exeggutor. This attack does 20\n"
- db "damage times the number of heads.",TX_END
+ text "Flip a number of coins equal to the"
+ line "number of Energy attached to"
+ line "Exeggutor. This attack does 20"
+ line "damage times the number of heads."
+ done
ExeggutorKind: ; 5995c (16:595c)
- db TX_START,"Coconut",TX_END
+ text "Coconut"
+ done
ExeggutorDescription: ; 59965 (16:5965)
- db TX_START,"Legend has it that on rare\n"
- db "occasions, one of its heads will\n"
- db "drop off and continue on as an\n"
- db "Exeggcute.",TX_END
+ text "Legend has it that on rare"
+ line "occasions, one of its heads will"
+ line "drop off and continue on as an"
+ line "Exeggcute."
+ done
KoffingName: ; 599cc (16:59cc)
- db TX_START,"Koffing",TX_END
+ text "Koffing"
+ done
FoulGasName: ; 599d5 (16:59d5)
- db TX_START,"Foul Gas",TX_END
+ text "Foul Gas"
+ done
FoulGasDescription: ; 599df (16:59df)
- db TX_START,"Flip a coin. If heads, the Defending\n"
- db "Pok`mon is now Poisoned; if tails,\n"
- db "it is now Confused.",TX_END
+ text "Flip a coin. If heads, the Defending"
+ line "Pok`mon is now Poisoned; if tails,"
+ line "it is now Confused."
+ done
KoffingKind: ; 59a3c (16:5a3c)
- db TX_START,"Poison Gas",TX_END
+ text "Poison Gas"
+ done
KoffingDescription: ; 59a48 (16:5a48)
- db TX_START,"Because it stores several kinds of\n"
- db "toxic gases in its body, it is prone\n"
- db "to exploding without warning.",TX_END
+ text "Because it stores several kinds of"
+ line "toxic gases in its body, it is prone"
+ line "to exploding without warning."
+ done
WeezingName: ; 59aaf (16:5aaf)
- db TX_START,"Weezing",TX_END
+ text "Weezing"
+ done
SmogName: ; 59ab8 (16:5ab8)
- db TX_START,"Smog",TX_END
+ text "Smog"
+ done
SelfdestructName: ; 59abe (16:5abe)
- db TX_START,"Selfdestruct",TX_END
+ text "Selfdestruct"
+ done
WeezingsSelfdestructDescription: ; 59acc (16:5acc)
- db TX_START,"Does 10 damage to each Pok`mon on\n"
- db "each player's Bench. (Don't apply\n"
- db "Weakness and Resistance for Benched\n"
- db "Pok`mon.) Weezing does 60 damage to\n"
- db "itself.",TX_END
+ text "Does 10 damage to each Pok`mon on"
+ line "each player's Bench. (Don't apply"
+ line "Weakness and Resistance for Benched"
+ line "Pok`mon.) Weezing does 60 damage to"
+ line "itself."
+ done
WeezingDescription: ; 59b61 (16:5b61)
- db TX_START,"Where two kinds of poison gases\n"
- db "meet, two Koffings can fuse into a\n"
- db "Weezing over many years.",TX_END
+ text "Where two kinds of poison gases"
+ line "meet, two Koffings can fuse into a"
+ line "Weezing over many years."
+ done
TangelaName: ; 59bbe (16:5bbe)
- db TX_START,"Tangela",TX_END
+ text "Tangela"
+ done
BindName: ; 59bc7 (16:5bc7)
- db TX_START,"Bind",TX_END
+ text "Bind"
+ done
TangelaKind: ; 59bcd (16:5bcd)
- db TX_START,"Vine",TX_END
+ text "Vine"
+ done
Tangela1Description: ; 59bd3 (16:5bd3)
- db TX_START,"Its whole body is swathed with wide\n"
- db "vines that are similar to seaweed.\n"
- db "These vines shake as it walks.",TX_END
+ text "Its whole body is swathed with wide"
+ line "vines that are similar to seaweed."
+ line "These vines shake as it walks."
+ done
PoisonWhipName: ; 59c3a (16:5c3a)
- db TX_START,"Poison Whip",TX_END
+ text "Poison Whip"
+ done
Tangela2Description: ; 59c47 (16:5c47)
- db TX_START,"Its identity is obscured by masses\n"
- db "of thick, blue vines. The vines are\n"
- db "said to never stop growing.",TX_END
+ text "Its identity is obscured by masses"
+ line "of thick, blue vines. The vines are"
+ line "said to never stop growing."
+ done
ScytherName: ; 59cab (16:5cab)
- db TX_START,"Scyther",TX_END
+ text "Scyther"
+ done
SwordsDanceName: ; 59cb4 (16:5cb4)
- db TX_START,"Swords Dance",TX_END
+ text "Swords Dance"
+ done
SwordsDanceDescription: ; 59cc2 (16:5cc2)
- db TX_START,"During your next turn, Scyther's\n"
- db "Slash attack's base damage is\n"
- db "doubled.",TX_END
+ text "During your next turn, Scyther's"
+ line "Slash attack's base damage is"
+ line "doubled."
+ done
ScytherKind: ; 59d0b (16:5d0b)
- db TX_START,"Mantis",TX_END
+ text "Mantis"
+ done
ScytherDescription: ; 59d13 (16:5d13)
- db TX_START,"With ninja-like agility and speed,\n"
- db "it can create the illusion that\n"
- db "there is more than one of it.",TX_END
+ text "With ninja-like agility and speed,"
+ line "it can create the illusion that"
+ line "there is more than one of it."
+ done
PinsirName: ; 59d75 (16:5d75)
- db TX_START,"Pinsir",TX_END
+ text "Pinsir"
+ done
IronGripName: ; 59d7d (16:5d7d)
- db TX_START,"Irongrip",TX_END
+ text "Irongrip"
+ done
GuillotineName: ; 59d87 (16:5d87)
- db TX_START,"Guillotine",TX_END
+ text "Guillotine"
+ done
PinsirKind: ; 59d93 (16:5d93)
- db TX_START,"Stagbeetle",TX_END
+ text "Stagbeetle"
+ done
PinsirDescription: ; 59d9f (16:5d9f)
- db TX_START,"If it fails to crush the victim in\n"
- db "its pincers, it will swing its\n"
- db "victim around and toss it hard.",TX_END
+ text "If it fails to crush the victim in"
+ line "its pincers, it will swing its"
+ line "victim around and toss it hard."
+ done
CharmanderName: ; 59e02 (16:5e02)
- db TX_START,"Charmander",TX_END
+ text "Charmander"
+ done
EmberName: ; 59e0e (16:5e0e)
- db TX_START,"Ember",TX_END
+ text "Ember"
+ done
EmberDescription: ; 59e15 (16:5e15)
- db TX_START,"Discard 1 ",TX_FIRE," Energy card attached to\n"
- db "Charmander in order to use this\n"
- db "attack.",TX_END
+ text "Discard 1 ",TX_FIRE," Energy card attached to"
+ line "Charmander in order to use this"
+ line "attack."
+ done
CharmanderKind: ; 59e63 (16:5e63)
- db TX_START,"Lizard",TX_END
+ text "Lizard"
+ done
CharmanderDescription: ; 59e6b (16:5e6b)
- db TX_START,"Obviously prefers hot places. If it\n"
- db "gets caught in the rain, steam is\n"
- db "said to spout from the tip of its\n"
- db "tail.",TX_END
+ text "Obviously prefers hot places. If it"
+ line "gets caught in the rain, steam is"
+ line "said to spout from the tip of its"
+ line "tail."
+ done
CharmeleonName: ; 59eda (16:5eda)
- db TX_START,"Charmeleon",TX_END
+ text "Charmeleon"
+ done
FlamethrowerName: ; 59ee6 (16:5ee6)
- db TX_START,"Flamethrower",TX_END
+ text "Flamethrower"
+ done
CharmeleonsFlamethrowerDescription: ; 59ef4 (16:5ef4)
- db TX_START,"Discard 1 ",TX_FIRE," Energy card attached to\n"
- db "Charmeleon in order to use this\n"
- db "attack.",TX_END
+ text "Discard 1 ",TX_FIRE," Energy card attached to"
+ line "Charmeleon in order to use this"
+ line "attack."
+ done
CharmeleonKind: ; 59f42 (16:5f42)
- db TX_START,"Flame",TX_END
+ text "Flame"
+ done
CharmeleonDescription: ; 59f49 (16:5f49)
- db TX_START,"When it swings its burning tail, it\n"
- db "raises the temperature to unbearably\n"
- db "high levels.",TX_END
+ text "When it swings its burning tail, it"
+ line "raises the temperature to unbearably"
+ line "high levels."
+ done
CharizardName: ; 59fa0 (16:5fa0)
- db TX_START,"Charizard",TX_END
+ text "Charizard"
+ done
EnergyBurnName: ; 59fab (16:5fab)
- db TX_START,"Energy Burn",TX_END
+ text "Energy Burn"
+ done
EnergyBurnDescription: ; 59fb8 (16:5fb8)
- db TX_START,"As often as you like during your\n"
- db "turn (before your attack), you may\n"
- db "turn all Energy attached to\n"
- db "Charizard into ",TX_FIRE," Energy for the\n"
- db "rest of the turn. This power can't\n"
- db "be used if Charizard is Asleep,\n"
- db "Confused, or Paralyzed.",TX_END
+ text "As often as you like during your"
+ line "turn (before your attack), you may"
+ line "turn all Energy attached to"
+ line "Charizard into ",TX_FIRE," Energy for the"
+ line "rest of the turn. This power can't"
+ line "be used if Charizard is Asleep,"
+ line "Confused, or Paralyzed."
+ done
FireSpinName: ; 5a095 (16:6095)
- db TX_START,"Fire Spin",TX_END
+ text "Fire Spin"
+ done
FireSpinDescription: ; 5a0a0 (16:60a0)
- db TX_START,"Discard 2 Energy cards attached to\n"
- db "Charizard in order to use this\n"
- db "attack.",TX_END
+ text "Discard 2 Energy cards attached to"
+ line "Charizard in order to use this"
+ line "attack."
+ done
CharizardDescription: ; 5a0eb (16:60eb)
- db TX_START,"Spits fire that is hot enough to\n"
- db "melt boulders. Known to\n"
- db "unintentionally cause forest fires.",TX_END
+ text "Spits fire that is hot enough to"
+ line "melt boulders. Known to"
+ line "unintentionally cause forest fires."
+ done
VulpixName: ; 5a149 (16:6149)
- db TX_START,"Vulpix",TX_END
+ text "Vulpix"
+ done
ConfuseRayName: ; 5a151 (16:6151)
- db TX_START,"Confuse Ray",TX_END
+ text "Confuse Ray"
+ done
VulpixKind: ; 5a15e (16:615e)
- db TX_START,"Fox",TX_END
+ text "Fox"
+ done
VulpixDescription: ; 5a163 (16:6163)
- db TX_START,"At the time of birth, it has just\n"
- db "one tail. Its tail splits from the\n"
- db "tip as it grows older.",TX_END
+ text "At the time of birth, it has just"
+ line "one tail. Its tail splits from the"
+ line "tip as it grows older."
+ done
NinetailsName: ; 5a1c0 (16:61c0)
- db TX_START,"Ninetails",TX_END
+ text "Ninetails"
+ done
NinetailsLureDescription: ; 5a1cb (16:61cb)
- db TX_START,"If your opponent has any Benched\n"
- db "Pok`mon, choose 1 of them and switch\n"
- db "it with the Defending Pok`mon.",TX_END
+ text "If your opponent has any Benched"
+ line "Pok`mon, choose 1 of them and switch"
+ line "it with the Defending Pok`mon."
+ done
FireBlastName: ; 5a231 (16:6231)
- db TX_START,"Fire Blast",TX_END
+ text "Fire Blast"
+ done
FireBlastDescription: ; 5a23d (16:623d)
- db TX_START,"Discard 1 ",TX_FIRE," Energy card attached\n"
- db "to Ninetales in order to use this\n"
- db "attack.",TX_END
+ text "Discard 1 ",TX_FIRE," Energy card attached"
+ line "to Ninetales in order to use this"
+ line "attack."
+ done
Ninetails1Description: ; 5a28a (16:628a)
- db TX_START,"Very smart and very vengeful.\n"
- db "Grabbing one of its many tails could\n"
- db "result in a 1,000-year curse.",TX_END
+ text "Very smart and very vengeful."
+ line "Grabbing one of its many tails could"
+ line "result in a 1,000-year curse."
+ done
MixUpName: ; 5a2ec (16:62ec)
- db TX_START,"Mix-Up",TX_END
+ text "Mix-Up"
+ done
MixUpDescription: ; 5a2f4 (16:62f4)
- db TX_START,"If your opponent has any Basic\n"
- db "Pok`mon or Evolution cards in his\n"
- db "or her hand, your opponent shuffles\n"
- db "them into his or her deck. Then,\n"
- db "your opponent puts an equal number\n"
- db "of Basic Pok`mon or Evolution cards\n"
- db "chosen at random from his or",TX_END
+ text "If your opponent has any Basic"
+ line "Pok`mon or Evolution cards in his"
+ line "or her hand, your opponent shuffles"
+ line "them into his or her deck. Then,"
+ line "your opponent puts an equal number"
+ line "of Basic Pok`mon or Evolution cards"
+ line "chosen at random from his or"
+ done
MixUpDescriptionCont: ; 5a3df (16:63df)
- db TX_START,"her deck into his or her hand. Your\n"
- db "opponent shuffles his or her deck\n"
- db "afterward.",TX_END
+ text "her deck into his or her hand. Your"
+ line "opponent shuffles his or her deck"
+ line "afterward."
+ done
DancingEmbersName: ; 5a431 (16:6431)
- db TX_START,"Dancing Embers",TX_END
+ text "Dancing Embers"
+ done
DancingEmbersDescription: ; 5a441 (16:6441)
- db TX_START,"Flip 8 coins. This attack does 10\n"
- db "damage times the number of heads.",TX_END
+ text "Flip 8 coins. This attack does 10"
+ line "damage times the number of heads."
+ done
Ninetails2Description: ; 5a486 (16:6486)
- db TX_START,"According to an enduring legend,\n"
- db "9 noble heroes were united and\n"
- db "reincarnated as this.",TX_END
+ text "According to an enduring legend,"
+ line "9 noble heroes were united and"
+ line "reincarnated as this."
+ done
GrowlitheName: ; 5a4dd (16:64dd)
- db TX_START,"Growlithe",TX_END
+ text "Growlithe"
+ done
FlareName: ; 5a4e8 (16:64e8)
- db TX_START,"Flare",TX_END
+ text "Flare"
+ done
GrowlitheKind: ; 5a4ef (16:64ef)
- db TX_START,"Puppy",TX_END
+ text "Puppy"
+ done
GrowlitheDescription: ; 5a4f6 (16:64f6)
- db TX_START,"Very protective of its territory.\n"
- db "It will bark and bite to repel\n"
- db "intruders from its space.",TX_END
+ text "Very protective of its territory."
+ line "It will bark and bite to repel"
+ line "intruders from its space."
+ done
ArcanineName: ; 5a552 (16:6552)
- db TX_START,"Arcanine",TX_END
+ text "Arcanine"
+ done
QuickAttackName: ; 5a55c (16:655c)
- db TX_START,"Quick Attack",TX_END
+ text "Quick Attack"
+ done
QuickAttackDescription: ; 5a56a (16:656a)
- db TX_START,"Flip a coin. If heads, this attack\n"
- db "does 10 damage plus 20 more damage;\n"
- db "if tails, this attack does 10\n"
- db "damage.",TX_END
+ text "Flip a coin. If heads, this attack"
+ line "does 10 damage plus 20 more damage;"
+ line "if tails, this attack does 10"
+ line "damage."
+ done
FlamesofRageName: ; 5a5d8 (16:65d8)
- db TX_START,"Flames of Rage",TX_END
+ text "Flames of Rage"
+ done
FlamesofRageDescription: ; 5a5e8 (16:65e8)
- db TX_START,"Discard 2 ",TX_FIRE," Energy cards attached\n"
- db "to Arcanine in order to use this\n"
- db "attack. This attack does 40 damage\n"
- db "plus 10 more damage for each damage\n"
- db "counter on Arcanine.",TX_END
+ text "Discard 2 ",TX_FIRE," Energy cards attached"
+ line "to Arcanine in order to use this"
+ line "attack. This attack does 40 damage"
+ line "plus 10 more damage for each damage"
+ line "counter on Arcanine."
+ done
ArcanineKind: ; 5a689 (16:6689)
- db TX_START,"Legendary",TX_END
+ text "Legendary"
+ done
Arcanine1Description: ; 5a694 (16:6694)
- db TX_START,"A legendary Pok`mon famous for its\n"
- db "beauty. It looks almost as if it\n"
- db "flies when it runs.",TX_END
+ text "A legendary Pok`mon famous for its"
+ line "beauty. It looks almost as if it"
+ line "flies when it runs."
+ done
ArcaninesFlamethrowerDescription: ; 5a6ed (16:66ed)
- db TX_START,"Discard 1 ",TX_FIRE," Energy card attached to\n"
- db "Arcanine in order to use this\n"
- db "attack.",TX_END
+ text "Discard 1 ",TX_FIRE," Energy card attached to"
+ line "Arcanine in order to use this"
+ line "attack."
+ done
TakeDownName: ; 5a739 (16:6739)
- db TX_START,"Take Down",TX_END
+ text "Take Down"
+ done
TakeDownDescription: ; 5a744 (16:6744)
- db TX_START,"Arcanine does 30 damage to itself.",TX_END
+ text "Arcanine does 30 damage to itself."
+ done
Arcanine2Description: ; 5a768 (16:6768)
- db TX_START,"A Pok`mon that has been long admired\n"
- db "for its beauty. It runs gracefully,\n"
- db "as if on wings.",TX_END
+ text "A Pok`mon that has been long admired"
+ line "for its beauty. It runs gracefully,"
+ line "as if on wings."
+ done
PonytaName: ; 5a7c2 (16:67c2)
- db TX_START,"Ponyta",TX_END
+ text "Ponyta"
+ done
SmashKickName: ; 5a7ca (16:67ca)
- db TX_START,"Smash Kick",TX_END
+ text "Smash Kick"
+ done
FlameTailName: ; 5a7d6 (16:67d6)
- db TX_START,"Flame Tail",TX_END
+ text "Flame Tail"
+ done
PonytaKind: ; 5a7e2 (16:67e2)
- db TX_START,"Fire Horse",TX_END
+ text "Fire Horse"
+ done
PonytaDescription: ; 5a7ee (16:67ee)
- db TX_START,"Its hooves are 10 times harder than\n"
- db "diamonds. It can trample anything\n"
- db "flat in moments.",TX_END
+ text "Its hooves are 10 times harder than"
+ line "diamonds. It can trample anything"
+ line "flat in moments."
+ done
RapidashName: ; 5a846 (16:6846)
- db TX_START,"Rapidash",TX_END
+ text "Rapidash"
+ done
StompName: ; 5a850 (16:6850)
- db TX_START,"Stomp",TX_END
+ text "Stomp"
+ done
StompDescription: ; 5a857 (16:6857)
- db TX_START,"Flip a coin. If heads, this attack\n"
- db "does 20 damage plus 10 more damage;\n"
- db "if tails, this attack does 20\n"
- db "damage.",TX_END
+ text "Flip a coin. If heads, this attack"
+ line "does 20 damage plus 10 more damage;"
+ line "if tails, this attack does 20"
+ line "damage."
+ done
AgilityName: ; 5a8c5 (16:68c5)
- db TX_START,"Agility",TX_END
+ text "Agility"
+ done
RapidashsAgilityDescription: ; 5a8ce (16:68ce)
- db TX_START,"Flip a coin. If heads, during your\n"
- db "opponent's next turn, prevent all\n"
- db "effects of attacks, including\n"
- db "damage, done to Rapidash.",TX_END
+ text "Flip a coin. If heads, during your"
+ line "opponent's next turn, prevent all"
+ line "effects of attacks, including"
+ line "damage, done to Rapidash."
+ done
RapidashDescription: ; 5a94c (16:694c)
- db TX_START,"Very competitive, this Pok`mon will\n"
- db "chase anything that moves fast in\n"
- db "the hopes of racing it.",TX_END
+ text "Very competitive, this Pok`mon will"
+ line "chase anything that moves fast in"
+ line "the hopes of racing it."
+ done
MagmarName: ; 5a9ab (16:69ab)
- db TX_START,"Magmar",TX_END
+ text "Magmar"
+ done
FirePunchName: ; 5a9b3 (16:69b3)
- db TX_START,"Fire Punch",TX_END
+ text "Fire Punch"
+ done
FirePunchDescription: ; 5a9bf (16:69bf)
- db TX_START,"Discard 1 ",TX_FIRE," Energy card attached to\n"
- db "Magmar in order to use this attack.",TX_END
+ text "Discard 1 ",TX_FIRE," Energy card attached to"
+ line "Magmar in order to use this attack."
+ done
MagmarKind: ; 5aa09 (16:6a09)
- db TX_START,"Spitfire",TX_END
+ text "Spitfire"
+ done
Magmar1Description: ; 5aa13 (16:6a13)
- db TX_START,"Its body always burns with an orange\n"
- db "glow that enables it to hide\n"
- db "perfectly among flames.",TX_END
+ text "Its body always burns with an orange"
+ line "glow that enables it to hide"
+ line "perfectly among flames."
+ done
SmokescreenName: ; 5aa6e (16:6a6e)
- db TX_START,"Smokescreen",TX_END
+ text "Smokescreen"
+ done
MagmarsSmokescreenDescription: ; 5aa7b (16:6a7b)
- db TX_START,"If the Defending Pok`mon tries to\n"
- db "attack during your opponent's next\n"
- db "turn, your opponent flips a coin. If\n"
- db "tails, that attack does nothing.",TX_END
+ text "If the Defending Pok`mon tries to"
+ line "attack during your opponent's next"
+ line "turn, your opponent flips a coin. If"
+ line "tails, that attack does nothing."
+ done
Magmar2Description: ; 5ab07 (16:6b07)
- db TX_START,"Found at the mouths of volcanoes and\n"
- db "extremely hard to spot. There are\n"
- db "very few instances of capturing this\n"
- db "Pok`mon.",TX_END
+ text "Found at the mouths of volcanoes and"
+ line "extremely hard to spot. There are"
+ line "very few instances of capturing this"
+ line "Pok`mon."
+ done
FlareonName: ; 5ab7d (16:6b7d)
- db TX_START,"Flareon",TX_END
+ text "Flareon"
+ done
EeveeName: ; 5ab86 (16:6b86)
- db TX_START,"Eevee",TX_END
+ text "Eevee"
+ done
BiteName: ; 5ab8d (16:6b8d)
- db TX_START,"Bite",TX_END
+ text "Bite"
+ done
RageName: ; 5ab93 (16:6b93)
- db TX_START,"Rage",TX_END
+ text "Rage"
+ done
FlareonsRageDescription: ; 5ab99 (16:6b99)
- db TX_START,"Does 10 damage plus 10 more damage\n"
- db "for each damage counter on Flareon.",TX_END
+ text "Does 10 damage plus 10 more damage"
+ line "for each damage counter on Flareon."
+ done
Flareon1Description: ; 5abe1 (16:6be1)
- db TX_START,"It has a flame chamber inside its\n"
- db "body. It inhales, then blows out\n"
- db "fire that is over 3,000 degrees.",TX_END
+ text "It has a flame chamber inside its"
+ line "body. It inhales, then blows out"
+ line "fire that is over 3,000 degrees."
+ done
FlareonsFlamethrowerDescription: ; 5ac46 (16:6c46)
- db TX_START,"Discard 1 ",TX_FIRE," Energy card attached to\n"
- db "Flareon in order to use this attack.",TX_END
+ text "Discard 1 ",TX_FIRE," Energy card attached to"
+ line "Flareon in order to use this attack."
+ done
Flareon2Description: ; 5ac91 (16:6c91)
- db TX_START,"When storing thermal energy in its\n"
- db "body, its temperature could soar to\n"
- db "over 1,600 degrees.",TX_END
+ text "When storing thermal energy in its"
+ line "body, its temperature could soar to"
+ line "over 1,600 degrees."
+ done
MoltresName: ; 5aced (16:6ced)
- db TX_START,"Moltres",TX_END
+ text "Moltres"
+ done
WildfireName: ; 5acf6 (16:6cf6)
- db TX_START,"Wildfire",TX_END
+ text "Wildfire"
+ done
WildfireDescription: ; 5ad00 (16:6d00)
- db TX_START,"You may discard any number of ",TX_FIRE,"\n"
- db "Energy cards attached to Moltres\n"
- db "when you use this attack. If you do,\n"
- db "discard that many cards from the top\n"
- db "of your opponent's deck.",TX_END
+ text "You may discard any number of ",TX_FIRE,""
+ line "Energy cards attached to Moltres"
+ line "when you use this attack. If you do,"
+ line "discard that many cards from the top"
+ line "of your opponent's deck."
+ done
DiveBombName: ; 5ada6 (16:6da6)
- db TX_START,"Dive Bomb",TX_END
+ text "Dive Bomb"
+ done
Moltres1Description: ; 5adb1 (16:6db1)
- db TX_START,"Known as the legendary bird of fire.\n"
- db "Every flap of its wings creates a\n"
- db "dazzling flash of flames.",TX_END
+ text "Known as the legendary bird of fire."
+ line "Every flap of its wings creates a"
+ line "dazzling flash of flames."
+ done
FiregiverName: ; 5ae13 (16:6e13)
- db TX_START,"Firegiver",TX_END
+ text "Firegiver"
+ done
FiregiverDescription: ; 5ae1e (16:6e1e)
- db TX_START,"When you put Moltres into play\n"
- db "during your turn (not during\n"
- db "set-up), put from 1 to 4 (chosen at\n"
- db "random) ",TX_FIRE," Energy cards from your\n"
- db "deck into your hand. Shuffle your\n"
- db "deck afterward.",TX_END
+ text "When you put Moltres into play"
+ line "during your turn (not during"
+ line "set-up), put from 1 to 4 (chosen at"
+ line "random) ",TX_FIRE," Energy cards from your"
+ line "deck into your hand. Shuffle your"
+ line "deck afterward."
+ done
Moltres2Description: ; 5aed3 (16:6ed3)
- db TX_START,"A legendary bird Pok`mon. As it\n"
- db "flaps its flaming wings, even the\n"
- db "night sky will turn red.",TX_END
+ text "A legendary bird Pok`mon. As it"
+ line "flaps its flaming wings, even the"
+ line "night sky will turn red."
+ done
SquirtleName: ; 5af2f (16:6f2f)
- db TX_START,"Squirtle",TX_END
+ text "Squirtle"
+ done
BubbleName: ; 5af39 (16:6f39)
- db TX_START,"Bubble",TX_END
+ text "Bubble"
+ done
WithdrawName: ; 5af41 (16:6f41)
- db TX_START,"Withdraw",TX_END
+ text "Withdraw"
+ done
SquirtlesWithdrawDescription: ; 5af4b (16:6f4b)
- db TX_START,"Flip a coin. If heads, prevent all\n"
- db "damage done to Squirtle during your\n"
- db "opponent's next turn. (Any other\n"
- db "effects of attacks still happen.)",TX_END
+ text "Flip a coin. If heads, prevent all"
+ line "damage done to Squirtle during your"
+ line "opponent's next turn. (Any other"
+ line "effects of attacks still happen.)"
+ done
SquirtleKind: ; 5afd6 (16:6fd6)
- db TX_START,"Tiny Turtle",TX_END
+ text "Tiny Turtle"
+ done
SquirtleDescription: ; 5afe3 (16:6fe3)
- db TX_START,"After birth, its back swells and\n"
- db "hardens into a shell. It powerfully\n"
- db "sprays foam from its mouth.",TX_END
+ text "After birth, its back swells and"
+ line "hardens into a shell. It powerfully"
+ line "sprays foam from its mouth."
+ done
WartortleName: ; 5b045 (16:7045)
- db TX_START,"Wartortle",TX_END
+ text "Wartortle"
+ done
WartortlesWithdrawDescription: ; 5b050 (16:7050)
- db TX_START,"Flip a coin. If heads, prevent all\n"
- db "damage done to Wartortle during your\n"
- db "opponent's next turn. (Any other\n"
- db "effects of attacks still happen.)",TX_END
+ text "Flip a coin. If heads, prevent all"
+ line "damage done to Wartortle during your"
+ line "opponent's next turn. (Any other"
+ line "effects of attacks still happen.)"
+ done
WartortleKind: ; 5b0dc (16:70dc)
- db TX_START,"Turtle",TX_END
+ text "Turtle"
+ done
WartortleDescription: ; 5b0e4 (16:70e4)
- db TX_START,"Often hides in water to stalk unwary\n"
- db "prey. When swimming quickly, it\n"
- db "moves its ears to maintain balance.",TX_END
+ text "Often hides in water to stalk unwary"
+ line "prey. When swimming quickly, it"
+ line "moves its ears to maintain balance."
+ done
BlastoiseName: ; 5b14e (16:714e)
- db TX_START,"Blastoise",TX_END
+ text "Blastoise"
+ done
RainDanceName: ; 5b159 (16:7159)
- db TX_START,"Rain Dance",TX_END
+ text "Rain Dance"
+ done
RainDanceDescription: ; 5b165 (16:7165)
- db TX_START,"As often as you like during your\n"
- db "turn (before your attack), you may\n"
- db "attach 1 ",TX_WATER," Energy card to 1 of\n"
- db "your ",TX_WATER," Pok`mon. (This doesn't use\n"
- db "up your 1 Energy card attachment\n"
- db "for the turn.)",TX_END
+ text "As often as you like during your"
+ line "turn (before your attack), you may"
+ line "attach 1 ",TX_WATER," Energy card to 1 of"
+ line "your ",TX_WATER," Pok`mon. (This doesn't use"
+ line "up your 1 Energy card attachment"
+ line "for the turn.)"
+ done
RainDanceDescriptionCont: ; 5b21d (16:721d)
- db TX_START,"This power can't be used if\n"
- db "Blastoise is Asleep, Confused, or\n"
- db "Paralyzed.",TX_END
+ text "This power can't be used if"
+ line "Blastoise is Asleep, Confused, or"
+ line "Paralyzed."
+ done
HydroPumpName: ; 5b267 (16:7267)
- db TX_START,"Hydro Pump",TX_END
+ text "Hydro Pump"
+ done
HydroPumpDescription: ; 5b273 (16:7273)
- db TX_START,"Does 40 damage plus 10 more damage\n"
- db "for each ",TX_WATER," Energy attached to\n"
- db "Blastoise but not used to pay for\n"
- db "this attack's Energy cost. You can't\n"
- db "add more than 20 damage in this way.",TX_END
+ text "Does 40 damage plus 10 more damage"
+ line "for each ",TX_WATER," Energy attached to"
+ line "Blastoise but not used to pay for"
+ line "this attack's Energy cost. You can't"
+ line "add more than 20 damage in this way."
+ done
BlastoiseKind: ; 5b322 (16:7322)
- db TX_START,"Shellfish",TX_END
+ text "Shellfish"
+ done
BlastoiseDescription: ; 5b32d (16:732d)
- db TX_START,"A brutal Pok`mon with pressurized\n"
- db "water jets on its shell. They are\n"
- db "used for high-speed tackles.",TX_END
+ text "A brutal Pok`mon with pressurized"
+ line "water jets on its shell. They are"
+ line "used for high-speed tackles."
+ done
PsyduckName: ; 5b38f (16:738f)
- db TX_START,"Psyduck",TX_END
+ text "Psyduck"
+ done
HeadacheName: ; 5b398 (16:7398)
- db TX_START,"Headache",TX_END
+ text "Headache"
+ done
HeadacheDescription: ; 5b3a2 (16:73a2)
- db TX_START,"Your opponent can't play Trainer\n"
- db "cards during his or her next turn.",TX_END
+ text "Your opponent can't play Trainer"
+ line "cards during his or her next turn."
+ done
PsyduckKind: ; 5b3e7 (16:73e7)
- db TX_START,"Duck",TX_END
+ text "Duck"
+ done
PsyduckDescription: ; 5b3ed (16:73ed)
- db TX_START,"While lulling its enemies with its\n"
- db "vacant look, this wily Pok`mon will\n"
- db "use psychokinetic powers.",TX_END
+ text "While lulling its enemies with its"
+ line "vacant look, this wily Pok`mon will"
+ line "use psychokinetic powers."
+ done
GolduckName: ; 5b44f (16:744f)
- db TX_START,"Golduck",TX_END
+ text "Golduck"
+ done
PsyshockName: ; 5b458 (16:7458)
- db TX_START,"Psyshock",TX_END
+ text "Psyshock"
+ done
HyperBeamName: ; 5b462 (16:7462)
- db TX_START,"Hyper Beam",TX_END
+ text "Hyper Beam"
+ done
Discard1EnergyFromTargetDescription: ; 5b46e (16:746e)
- db TX_START,"If the Defending Pok`mon has any\n"
- db "Energy cards attached to it, choose\n"
- db "1 of them and discard it.",TX_END
+ text "If the Defending Pok`mon has any"
+ line "Energy cards attached to it, choose"
+ line "1 of them and discard it."
+ done
GolduckDescription: ; 5b4ce (16:74ce)
- db TX_START,"Often seen swimming elegantly by\n"
- db "lake shores. It is often mistaken\n"
- db "for the Japanese monster, Kappa.",TX_END
+ text "Often seen swimming elegantly by"
+ line "lake shores. It is often mistaken"
+ line "for the Japanese monster, Kappa."
+ done
PoliwagName: ; 5b533 (16:7533)
- db TX_START,"Poliwag",TX_END
+ text "Poliwag"
+ done
WaterGunName: ; 5b53c (16:753c)
- db TX_START,"Water Gun",TX_END
+ text "Water Gun"
+ done
PoliwagsWaterGunDescription: ; 5b547 (16:7547)
- db TX_START,"Does 10 damage plus 10 more damage\n"
- db "for each ",TX_WATER," Energy attached to\n"
- db "Poliwag but not used to pay for\n"
- db "this attack's Energy cost. You can't\n"
- db "add more than 20 damage in this way.",TX_END
+ text "Does 10 damage plus 10 more damage"
+ line "for each ",TX_WATER," Energy attached to"
+ line "Poliwag but not used to pay for"
+ line "this attack's Energy cost. You can't"
+ line "add more than 20 damage in this way."
+ done
PoliwagKind: ; 5b5f4 (16:75f4)
- db TX_START,"Tadpole",TX_END
+ text "Tadpole"
+ done
PoliwagDescription: ; 5b5fd (16:75fd)
- db TX_START,"Its newly grown legs prevent it\n"
- db "from running. It appears to prefer\n"
- db "swimming over trying to stand.",TX_END
+ text "Its newly grown legs prevent it"
+ line "from running. It appears to prefer"
+ line "swimming over trying to stand."
+ done
PoliwhirlName: ; 5b660 (16:7660)
- db TX_START,"Poliwhirl",TX_END
+ text "Poliwhirl"
+ done
AmnesiaName: ; 5b66b (16:766b)
- db TX_START,"Amnesia",TX_END
+ text "Amnesia"
+ done
PoliwhirlsAmnesiaDescription: ; 5b674 (16:7674)
- db TX_START,"Choose 1 of the Defending Pok`mon's\n"
- db "attacks. That Pok`mon can't use that\n"
- db "attack during your opponent's next\n"
- db "turn.",TX_END
+ text "Choose 1 of the Defending Pok`mon's"
+ line "attacks. That Pok`mon can't use that"
+ line "attack during your opponent's next"
+ line "turn."
+ done
DoubleslapName: ; 5b6e7 (16:76e7)
- db TX_START,"Doubleslap",TX_END
+ text "Doubleslap"
+ done
PoliwhirlsDescription: ; 5b6f3 (16:76f3)
- db TX_START,"Capable of living in or out of\n"
- db "water. When out of water, it sweats\n"
- db "to keep its body slimy.",TX_END
+ text "Capable of living in or out of"
+ line "water. When out of water, it sweats"
+ line "to keep its body slimy."
+ done
PoliwrathName: ; 5b74f (16:774f)
- db TX_START,"Poliwrath",TX_END
+ text "Poliwrath"
+ done
PoliwrathsWaterGunDescription: ; 5b75a (16:775a)
- db TX_START,"Does 30 damage plus 10 more damage\n"
- db "for each ",TX_WATER," Energy attached to\n"
- db "Poliwrath but not used to pay for\n"
- db "this attack's Energy cost. You\n"
- db "can't add more than 20 damage in\n"
- db "this way.",TX_END
+ text "Does 30 damage plus 10 more damage"
+ line "for each ",TX_WATER," Energy attached to"
+ line "Poliwrath but not used to pay for"
+ line "this attack's Energy cost. You"
+ line "can't add more than 20 damage in"
+ line "this way."
+ done
WhirlpoolName: ; 5b809 (16:7809)
- db TX_START,"Whirlpool",TX_END
+ text "Whirlpool"
+ done
PoliwrathDescription: ; 5b814 (16:7814)
- db TX_START,"An adept swimmer at both the front\n"
- db "crawl and breaststroke. Easily\n"
- db "overtakes the best human swimmers.",TX_END
+ text "An adept swimmer at both the front"
+ line "crawl and breaststroke. Easily"
+ line "overtakes the best human swimmers."
+ done
TentacoolName: ; 5b87a (16:787a)
- db TX_START,"Tentacool",TX_END
+ text "Tentacool"
+ done
CowardiceName: ; 5b885 (16:7885)
- db TX_START,"Cowardice",TX_END
+ text "Cowardice"
+ done
CowardiceDescription: ; 5b890 (16:7890)
- db TX_START,"At any time during your turn\n"
- db "(before your attack), you may return\n"
- db "Tentacool to your hand. (Discard all\n"
- db "cards attached to Tentacool.) This\n"
- db "power can't be used the turn you put\n"
- db "Tentacool into play or if Tentacool\n"
- db "is Asleep, Confused, or Paralyzed.",TX_END
+ text "At any time during your turn"
+ line "(before your attack), you may return"
+ line "Tentacool to your hand. (Discard all"
+ line "cards attached to Tentacool.) This"
+ line "power can't be used the turn you put"
+ line "Tentacool into play or if Tentacool"
+ line "is Asleep, Confused, or Paralyzed."
+ done
TentacoolKind: ; 5b987 (16:7987)
- db TX_START,"Jellyfish",TX_END
+ text "Jellyfish"
+ done
TentacoolDescription: ; 5b992 (16:7992)
- db TX_START,"Drifts in shallow seas. Anglers who\n"
- db "hook them by accident are often\n"
- db "punished by its stinging acid.",TX_END
+ text "Drifts in shallow seas. Anglers who"
+ line "hook them by accident are often"
+ line "punished by its stinging acid."
+ done
TentacruelName: ; 5b9f6 (16:79f6)
- db TX_START,"Tentacruel",TX_END
+ text "Tentacruel"
+ done
JellyfishStingName: ; 5ba02 (16:7a02)
- db TX_START,"Jellyfish Sting",TX_END
+ text "Jellyfish Sting"
+ done
TentacruelDescription: ; 5ba13 (16:7a13)
- db TX_START,"The tentacles are normally kept\n"
- db "short. On hunts, they are extended\n"
- db "to ensnare and immobilize prey.",TX_END
+ text "The tentacles are normally kept"
+ line "short. On hunts, they are extended"
+ line "to ensnare and immobilize prey."
+ done
SeelName: ; 5ba77 (16:7a77)
- db TX_START,"Seel",TX_END
+ text "Seel"
+ done
HeadbuttName: ; 5ba7d (16:7a7d)
- db TX_START,"Headbutt",TX_END
+ text "Headbutt"
+ done
SeelKind: ; 5ba87 (16:7a87)
- db TX_START,"Sea Lion",TX_END
+ text "Sea Lion"
+ done
SeelDescription: ; 5ba91 (16:7a91)
- db TX_START,"The protruding horn on its head is\n"
- db "very hard. This horn is used for\n"
- db "bashing through thick ice.",TX_END
+ text "The protruding horn on its head is"
+ line "very hard. This horn is used for"
+ line "bashing through thick ice."
+ done
DewgongName: ; 5baf1 (16:7af1)
- db TX_START,"Dewgong",TX_END
+ text "Dewgong"
+ done
AuroraBeamName: ; 5bafa (16:7afa)
- db TX_START,"Aurora Beam",TX_END
+ text "Aurora Beam"
+ done
IceBeamName: ; 5bb07 (16:7b07)
- db TX_START,"Ice Beam",TX_END
+ text "Ice Beam"
+ done
DewgongDescription: ; 5bb11 (16:7b11)
- db TX_START,"Stores thermal energy in its body.\n"
- db "Swims at a steady 8 knots even in\n"
- db "intensely cold waters.",TX_END
+ text "Stores thermal energy in its body."
+ line "Swims at a steady 8 knots even in"
+ line "intensely cold waters."
+ done
ShellderName: ; 5bb6e (16:7b6e)
- db TX_START,"Shellder",TX_END
+ text "Shellder"
+ done
HideinShellName: ; 5bb78 (16:7b78)
- db TX_START,"Hide in Shell",TX_END
+ text "Hide in Shell"
+ done
HideinShellDescription: ; 5bb87 (16:7b87)
- db TX_START,"Flip a coin. If heads, prevent all\n"
- db "damage done to Shellder during your\n"
- db "opponent's next turn. (Any other\n"
- db "effects of attacks still happen.)",TX_END
+ text "Flip a coin. If heads, prevent all"
+ line "damage done to Shellder during your"
+ line "opponent's next turn. (Any other"
+ line "effects of attacks still happen.)"
+ done
ShellderKind: ; 5bc12 (16:7c12)
- db TX_START,"Bivalve",TX_END
+ text "Bivalve"
+ done
ShellderDescription: ; 5bc1b (16:7c1b)
- db TX_START,"Its hard shell repels any kind of\n"
- db "attack. It is vulnerable only when\n"
- db "its shell is open.",TX_END
+ text "Its hard shell repels any kind of"
+ line "attack. It is vulnerable only when"
+ line "its shell is open."
+ done
CloysterName: ; 5bc74 (16:7c74)
- db TX_START,"Cloyster",TX_END
+ text "Cloyster"
+ done
ClampName: ; 5bc7e (16:7c7e)
- db TX_START,"Clamp",TX_END
+ text "Clamp"
+ done
ClampDescription: ; 5bc85 (16:7c85)
- db TX_START,"Flip a coin. If heads, the Defending\n"
- db "Pok`mon is now Paralyzed. If tails,\n"
- db "this attack does nothing (not even\n"
- db "damage).",TX_END
+ text "Flip a coin. If heads, the Defending"
+ line "Pok`mon is now Paralyzed. If tails,"
+ line "this attack does nothing (not even"
+ line "damage)."
+ done
SpikeCannonName: ; 5bcfb (16:7cfb)
- db TX_START,"Spike Cannon",TX_END
+ text "Spike Cannon"
+ done
CloysterDescription: ; 5bd09 (16:7d09)
- db TX_START,"When attacked, it launches its horns\n"
- db "in quick volleys. Its innards have\n"
- db "never been seen.",TX_END
+ text "When attacked, it launches its horns"
+ line "in quick volleys. Its innards have"
+ line "never been seen."
+ done
KrabbyName: ; 5bd63 (16:7d63)
- db TX_START,"Krabby",TX_END
+ text "Krabby"
+ done
KrabbysCallforFamilyDescription: ; 5bd6b (16:7d6b)
- db TX_START,"Search your deck for a Basic Pok`mon\n"
- db "named Krabby and put it onto your\n"
- db "Bench. Shuffle your deck afterward.\n"
- db "(You can't use this attack if your\n"
- db "Bench is full.)",TX_END
+ text "Search your deck for a Basic Pok`mon"
+ line "named Krabby and put it onto your"
+ line "Bench. Shuffle your deck afterward."
+ line "(You can't use this attack if your"
+ line "Bench is full.)"
+ done
KrabbyKind: ; 5be0a (16:7e0a)
- db TX_START,"River Crab",TX_END
+ text "River Crab"
+ done
KrabbyDescription: ; 5be16 (16:7e16)
- db TX_START,"Its pincers are not only powerful\n"
- db "weapons, they are used for balance\n"
- db "when walking sideways.",TX_END
+ text "Its pincers are not only powerful"
+ line "weapons, they are used for balance"
+ line "when walking sideways."
+ done
KinglerName: ; 5be73 (16:7e73)
- db TX_START,"Kingler",TX_END
+ text "Kingler"
+ done
FlailName: ; 5be7c (16:7e7c)
- db TX_START,"Flail",TX_END
+ text "Flail"
+ done
KinglersFlailDescription: ; 5be83 (16:7e83)
- db TX_START,"Does 10 damage times the number of\n"
- db "damage counters on Kingler.",TX_END
+ text "Does 10 damage times the number of"
+ line "damage counters on Kingler."
+ done
CrabhammerName: ; 5bec3 (16:7ec3)
- db TX_START,"Crabhammer",TX_END
+ text "Crabhammer"
+ done
KinglerKind: ; 5becf (16:7ecf)
- db TX_START,"Pincer",TX_END
+ text "Pincer"
+ done
KinglerDescription: ; 5bed7 (16:7ed7)
- db TX_START,"The large pincer has 10,000\n"
- db "horsepower of crushing power.\n"
- db "However, its huge size makes it\n"
- db "unwieldy to use.",TX_END
+ text "The large pincer has 10,000"
+ line "horsepower of crushing power."
+ line "However, its huge size makes it"
+ line "unwieldy to use."
+ done
HorseaName: ; 5bf43 (16:7f43)
- db TX_START,"Horsea",TX_END
+ text "Horsea"
+ done
OpponentAttackMayDoNothingDescription: ; 5bf4b (16:7f4b)
- db TX_START,"If the Defending Pok`mon tries to\n"
- db "attack during your opponent's next\n"
- db "turn, your opponent flips a coin.\n"
- db "If tails, that attack does nothing.",TX_END
+ text "If the Defending Pok`mon tries to"
+ line "attack during your opponent's next"
+ line "turn, your opponent flips a coin."
+ line "If tails, that attack does nothing."
+ done
HorseaKind: ; 5bfd7 (16:7fd7)
- db TX_START,"Dragon",TX_END
+ text "Dragon"
+ done
diff --git a/src/text/textb.asm b/src/text/textb.asm
index d03046e..b99e881 100644
--- a/src/text/textb.asm
+++ b/src/text/textb.asm
@@ -1,1159 +1,1430 @@
HorseaDescription: ; 5c000 (17:4000)
- db TX_START,"Known to shoot down flying bugs with\n"
- db "precision blasts of ink from the\n"
- db "surface of the water.",TX_END
+ text "Known to shoot down flying bugs with"
+ line "precision blasts of ink from the"
+ line "surface of the water."
+ done
SeadraName: ; 5c05d (17:405d)
- db TX_START,"Seadra",TX_END
+ text "Seadra"
+ done
SeadrasWaterGunDescription: ; 5c065 (17:4065)
- db TX_START,"Does 20 damage plus 10 more damage\n"
- db "for each ",TX_WATER," Energy attached to\n"
- db "Seadra but not used to pay for this\n"
- db "attack's Energy cost. You can't add\n"
- db "more than 20 damage in this way.",TX_END
+ text "Does 20 damage plus 10 more damage"
+ line "for each ",TX_WATER," Energy attached to"
+ line "Seadra but not used to pay for this"
+ line "attack's Energy cost. You can't add"
+ line "more than 20 damage in this way."
+ done
SeadrasAgilityDescription: ; 5c111 (17:4111)
- db TX_START,"Flip a coin. If heads, during your\n"
- db "opponent's next turn, prevent all \n"
- db "effects of attacks, including\n"
- db "damage, done to Seadra.",TX_END
+ text "Flip a coin. If heads, during your"
+ line "opponent's next turn, prevent all "
+ line "effects of attacks, including"
+ line "damage, done to Seadra."
+ done
SeadraDescription: ; 5c18e (17:418e)
- db TX_START,"Capable of swimming backward by\n"
- db "rapidly flapping its wing-like\n"
- db "pectoral fins and stout tail.",TX_END
+ text "Capable of swimming backward by"
+ line "rapidly flapping its wing-like"
+ line "pectoral fins and stout tail."
+ done
GoldeenName: ; 5c1ec (17:41ec)
- db TX_START,"Goldeen",TX_END
+ text "Goldeen"
+ done
HornAttackName: ; 5c1f5 (17:41f5)
- db TX_START,"Horn Attack",TX_END
+ text "Horn Attack"
+ done
GoldeenKind: ; 5c202 (17:4202)
- db TX_START,"Goldfish",TX_END
+ text "Goldfish"
+ done
GoldeenDescription: ; 5c20c (17:420c)
- db TX_START,"Its tail fin billows like an elegant\n"
- db "ballroom dress, giving it the\n"
- db "nickname \"Water Queen.\"",TX_END
+ text "Its tail fin billows like an elegant"
+ line "ballroom dress, giving it the"
+ line "nickname \"Water Queen.\""
+ done
SeakingName: ; 5c268 (17:4268)
- db TX_START,"Seaking",TX_END
+ text "Seaking"
+ done
WaterfallName: ; 5c271 (17:4271)
- db TX_START,"Waterfall",TX_END
+ text "Waterfall"
+ done
SeakingDescription: ; 5c27c (17:427c)
- db TX_START,"In the autumn spawning season, they\n"
- db "can be seen swimming powerfully up\n"
- db "rivers and creeks.",TX_END
+ text "In the autumn spawning season, they"
+ line "can be seen swimming powerfully up"
+ line "rivers and creeks."
+ done
StaryuName: ; 5c2d7 (17:42d7)
- db TX_START,"Staryu",TX_END
+ text "Staryu"
+ done
SlapName: ; 5c2df (17:42df)
- db TX_START,"Slap",TX_END
+ text "Slap"
+ done
StaryuKind: ; 5c2e5 (17:42e5)
- db TX_START,"Starshape",TX_END
+ text "Starshape"
+ done
StaryuDescription: ; 5c2f0 (17:42f0)
- db TX_START,"An enigmatic Pok`mon that can\n"
- db "effortlessly regenerate any\n"
- db "appendage it loses in battle.",TX_END
+ text "An enigmatic Pok`mon that can"
+ line "effortlessly regenerate any"
+ line "appendage it loses in battle."
+ done
StarmieName: ; 5c349 (17:4349)
- db TX_START,"Starmie",TX_END
+ text "Starmie"
+ done
RecoverName: ; 5c352 (17:4352)
- db TX_START,"Recover",TX_END
+ text "Recover"
+ done
StarmiesRecoverDescription: ; 5c35b (17:435b)
- db TX_START,"Discard 1 ",TX_WATER," Energy card attached to\n"
- db "Starmie in order to use this attack.\n"
- db "Remove all damage counters from\n"
- db "Starmie.",TX_END
+ text "Discard 1 ",TX_WATER," Energy card attached to"
+ line "Starmie in order to use this attack."
+ line "Remove all damage counters from"
+ line "Starmie."
+ done
StarFreezeName: ; 5c3cf (17:43cf)
- db TX_START,"Star Freeze",TX_END
+ text "Star Freeze"
+ done
StarmieKind: ; 5c3dc (17:43dc)
- db TX_START,"Mysterious",TX_END
+ text "Mysterious"
+ done
StarmieDescription: ; 5c3e8 (17:43e8)
- db TX_START,"Its central core glows with the\n"
- db "seven colors of the rainbow. Some\n"
- db "people value this core as a gem.",TX_END
+ text "Its central core glows with the"
+ line "seven colors of the rainbow. Some"
+ line "people value this core as a gem."
+ done
MagikarpName: ; 5c44c (17:444c)
- db TX_START,"Magikarp",TX_END
+ text "Magikarp"
+ done
TackleName: ; 5c456 (17:4456)
- db TX_START,"Tackle",TX_END
+ text "Tackle"
+ done
MagikarpsFlailDescription: ; 5c45e (17:445e)
- db TX_START,"Does 10 damage times the number of\n"
- db "damage counters on Magikarp.",TX_END
+ text "Does 10 damage times the number of"
+ line "damage counters on Magikarp."
+ done
MagikarpKind: ; 5c49f (17:449f)
- db TX_START,"Fish",TX_END
+ text "Fish"
+ done
MagikarpDescription: ; 5c4a5 (17:44a5)
- db TX_START,"In the distant past, it was stronger\n"
- db "than its horribly weak descendants\n"
- db "that exist today.",TX_END
+ text "In the distant past, it was stronger"
+ line "than its horribly weak descendants"
+ line "that exist today."
+ done
GyaradosName: ; 5c500 (17:4500)
- db TX_START,"Gyarados",TX_END
+ text "Gyarados"
+ done
DragonRageName: ; 5c50a (17:450a)
- db TX_START,"Dragon Rage",TX_END
+ text "Dragon Rage"
+ done
BubblebeamName: ; 5c517 (17:4517)
- db TX_START,"Bubblebeam",TX_END
+ text "Bubblebeam"
+ done
GyaradosKind: ; 5c523 (17:4523)
- db TX_START,"Atrocious",TX_END
+ text "Atrocious"
+ done
GyaradosDescription: ; 5c52e (17:452e)
- db TX_START,"Rarely seen in the wild. Huge and\n"
- db "vicious, it is capable of destroying\n"
- db "entire cities in a rage.",TX_END
+ text "Rarely seen in the wild. Huge and"
+ line "vicious, it is capable of destroying"
+ line "entire cities in a rage."
+ done
LaprasName: ; 5c58f (17:458f)
- db TX_START,"Lapras",TX_END
+ text "Lapras"
+ done
LaprasWaterGunDescription: ; 5c597 (17:4597)
- db TX_START,"Does 10 damage plus 10 more damage\n"
- db "for each ",TX_WATER," Energy attached to\n"
- db "Lapras but not used to pay for this\n"
- db "attack's Energy cost. You can't add\n"
- db "more than 20 damage in this way.",TX_END
+ text "Does 10 damage plus 10 more damage"
+ line "for each ",TX_WATER," Energy attached to"
+ line "Lapras but not used to pay for this"
+ line "attack's Energy cost. You can't add"
+ line "more than 20 damage in this way."
+ done
LaprasKind: ; 5c643 (17:4643)
- db TX_START,"Transport",TX_END
+ text "Transport"
+ done
LaprasDescription: ; 5c64e (17:464e)
- db TX_START,"A Pok`mon that has been overhunted\n"
- db "almost to extinction. It can ferry\n"
- db "people across water.",TX_END
+ text "A Pok`mon that has been overhunted"
+ line "almost to extinction. It can ferry"
+ line "people across water."
+ done
VaporeonName: ; 5c6aa (17:46aa)
- db TX_START,"Vaporeon",TX_END
+ text "Vaporeon"
+ done
FocusEnergyName: ; 5c6b4 (17:46b4)
- db TX_START,"Focus Energy",TX_END
+ text "Focus Energy"
+ done
FocusEnergyDescription: ; 5c6c2 (17:46c2)
- db TX_START,"During your next turn, Vaporeon's\n"
- db "Bite attack's base damage is\n"
- db "doubled.",TX_END
+ text "During your next turn, Vaporeon's"
+ line "Bite attack's base damage is"
+ line "doubled."
+ done
VaporeonKind: ; 5c70b (17:470b)
- db TX_START,"Bubble Jet",TX_END
+ text "Bubble Jet"
+ done
Vaporeon1Description: ; 5c717 (17:4717)
- db TX_START,"Its cell structure is similar to\n"
- db "water molecules. It will melt away\n"
- db "and become invisible in water.",TX_END
+ text "Its cell structure is similar to"
+ line "water molecules. It will melt away"
+ line "and become invisible in water."
+ done
VaporeonsWaterGunDescription: ; 5c77b (17:477b)
- db TX_START,"Does 30 damage plus 10 more damage\n"
- db "for each ",TX_WATER," Energy attached to\n"
- db "Vaporeon but not used to pay for\n"
- db "this attack's Energy cost. You can't\n"
- db "add more than 20 damage in this way.",TX_END
+ text "Does 30 damage plus 10 more damage"
+ line "for each ",TX_WATER," Energy attached to"
+ line "Vaporeon but not used to pay for"
+ line "this attack's Energy cost. You can't"
+ line "add more than 20 damage in this way."
+ done
Vaporeon2Description: ; 5c829 (17:4829)
- db TX_START,"Lives close to water. Its long tail\n"
- db "is ridged with a fin that is often\n"
- db "mistaken for a mermaid's.",TX_END
+ text "Lives close to water. Its long tail"
+ line "is ridged with a fin that is often"
+ line "mistaken for a mermaid's."
+ done
OmanyteName: ; 5c88b (17:488b)
- db TX_START,"Omanyte",TX_END
+ text "Omanyte"
+ done
MysteriousFossilName: ; 5c894 (17:4894)
- db TX_START,"Mysterious Fossil",TX_END
+ text "Mysterious Fossil"
+ done
ClairvoyanceName: ; 5c8a7 (17:48a7)
- db TX_START,"Clairvoyance",TX_END
+ text "Clairvoyance"
+ done
ClairvoyanceDescription: ; 5c8b5 (17:48b5)
- db TX_START,"Your opponent plays with his or her\n"
- db "hand face up. This power stops\n"
- db "working while Omanyte is Asleep,\n"
- db "Confused, or Paralyzed.",TX_END
+ text "Your opponent plays with his or her"
+ line "hand face up. This power stops"
+ line "working while Omanyte is Asleep,"
+ line "Confused, or Paralyzed."
+ done
OmanytesWaterGunDescription: ; 5c932 (17:4932)
- db TX_START,"Does 10 damage plus 10 more damage\n"
- db "for each ",TX_WATER," Energy attached to\n"
- db "Omanyte but not used to pay for this\n"
- db "attack's Energy cost. You can't add\n"
- db "more than 20 damage in this way.",TX_END
+ text "Does 10 damage plus 10 more damage"
+ line "for each ",TX_WATER," Energy attached to"
+ line "Omanyte but not used to pay for this"
+ line "attack's Energy cost. You can't add"
+ line "more than 20 damage in this way."
+ done
OmanyteKind: ; 5c9df (17:49df)
- db TX_START,"Spiral",TX_END
+ text "Spiral"
+ done
OmanyteDescription: ; 5c9e7 (17:49e7)
- db TX_START,"Although long extinct, in rare\n"
- db "cases, it can be genetically\n"
- db "resurrected from fossils.",TX_END
+ text "Although long extinct, in rare"
+ line "cases, it can be genetically"
+ line "resurrected from fossils."
+ done
OmastarName: ; 5ca3e (17:4a3e)
- db TX_START,"Omastar",TX_END
+ text "Omastar"
+ done
OmastarsWaterGunDescription: ; 5ca47 (17:4a47)
- db TX_START,"Does 20 damage plus 10 more damage\n"
- db "for each ",TX_WATER," Energy attached to\n"
- db "Omastar but not used to pay for this\n"
- db "attack's Energy cost. You can't add\n"
- db "more than 20 damage in this way.",TX_END
+ text "Does 20 damage plus 10 more damage"
+ line "for each ",TX_WATER," Energy attached to"
+ line "Omastar but not used to pay for this"
+ line "attack's Energy cost. You can't add"
+ line "more than 20 damage in this way."
+ done
OmastarDescription: ; 5caf4 (17:4af4)
- db TX_START,"A prehistoric Pok`mon that died out\n"
- db "when its heavy shell made it\n"
- db "impossible for it to catch prey.",TX_END
+ text "A prehistoric Pok`mon that died out"
+ line "when its heavy shell made it"
+ line "impossible for it to catch prey."
+ done
ArticunoName: ; 5cb57 (17:4b57)
- db TX_START,"Articuno",TX_END
+ text "Articuno"
+ done
FreezeDryName: ; 5cb61 (17:4b61)
- db TX_START,"Freeze Dry",TX_END
+ text "Freeze Dry"
+ done
BlizzardName: ; 5cb6d (17:4b6d)
- db TX_START,"Blizzard",TX_END
+ text "Blizzard"
+ done
BlizzardDescription: ; 5cb77 (17:4b77)
- db TX_START,"Flip a coin. If heads, this attack\n"
- db "does 10 damage to each of your\n"
- db "opponent's Benched Pok`mon.\n"
- db "If tails, this attack does 10 damage\n"
- db "to each of your own Benched Pok`mon.\n"
- db "(Don't apply Weakness and Resistance\n"
- db "for Benched Pok`mon.)",TX_END
+ text "Flip a coin. If heads, this attack"
+ line "does 10 damage to each of your"
+ line "opponent's Benched Pok`mon."
+ line "If tails, this attack does 10 damage"
+ line "to each of your own Benched Pok`mon."
+ line "(Don't apply Weakness and Resistance"
+ line "for Benched Pok`mon.)"
+ done
ArticunoKind: ; 5cc5b (17:4c5b)
- db TX_START,"Freeze",TX_END
+ text "Freeze"
+ done
Articuno1Description: ; 5cc63 (17:4c63)
- db TX_START,"A legendary bird Pok`mon that is\n"
- db "said to appear to doomed people who\n"
- db "are lost in icy mountains.",TX_END
+ text "A legendary bird Pok`mon that is"
+ line "said to appear to doomed people who"
+ line "are lost in icy mountains."
+ done
QuickfreezeName: ; 5ccc4 (17:4cc4)
- db TX_START,"Quickfreeze",TX_END
+ text "Quickfreeze"
+ done
QuickfreezeDescription: ; 5ccd1 (17:4cd1)
- db TX_START,"When you put Articuno into play\n"
- db "during your turn (not during\n"
- db "set-up), flip a coin. If heads, the\n"
- db "Defending Pok`mon is now Paralyzed.",TX_END
+ text "When you put Articuno into play"
+ line "during your turn (not during"
+ line "set-up), flip a coin. If heads, the"
+ line "Defending Pok`mon is now Paralyzed."
+ done
IceBreathName: ; 5cd57 (17:4d57)
- db TX_START,"Ice Breath",TX_END
+ text "Ice Breath"
+ done
IceBreathDescription: ; 5cd63 (17:4d63)
- db TX_START,"Does 40 damage to 1 of your\n"
- db "opponent's Pok`mon chosen at random.\n"
- db "Don't apply Weakness and Resistance\n"
- db "for this attack. (Any other effects\n"
- db "that would happen after applying\n"
- db "Weakness and Resistance still\n"
- db "happen.)",TX_END
+ text "Does 40 damage to 1 of your"
+ line "opponent's Pok`mon chosen at random."
+ line "Don't apply Weakness and Resistance"
+ line "for this attack. (Any other effects"
+ line "that would happen after applying"
+ line "Weakness and Resistance still"
+ line "happen.)"
+ done
Articuno2Description: ; 5ce35 (17:4e35)
- db TX_START,"A legendary bird Pok`mon. It freezes\n"
- db "water that is contained in winter\n"
- db "air and makes it snow.",TX_END
+ text "A legendary bird Pok`mon. It freezes"
+ line "water that is contained in winter"
+ line "air and makes it snow."
+ done
PikachuName: ; 5ce94 (17:4e94)
- db TX_START,"Pikachu",TX_END
+ text "Pikachu"
+ done
GnawName: ; 5ce9d (17:4e9d)
- db TX_START,"Gnaw",TX_END
+ text "Gnaw"
+ done
ThunderJoltName: ; 5cea3 (17:4ea3)
- db TX_START,"Thunder Jolt",TX_END
+ text "Thunder Jolt"
+ done
ThunderJoltDescription: ; 5ceb1 (17:4eb1)
- db TX_START,"Flip a coin. If tails, Pikachu does\n"
- db "10 damage to itself.",TX_END
+ text "Flip a coin. If tails, Pikachu does"
+ line "10 damage to itself."
+ done
PikachuKind: ; 5ceeb (17:4eeb)
- db TX_START,"Mouse",TX_END
+ text "Mouse"
+ done
Pikachu1Description: ; 5cef2 (17:4ef2)
- db TX_START,"When several of these Pok`mon\n"
- db "gather, their electricity can cause\n"
- db "lightning storms.",TX_END
+ text "When several of these Pok`mon"
+ line "gather, their electricity can cause"
+ line "lightning storms."
+ done
SparkName: ; 5cf47 (17:4f47)
- db TX_START,"Spark",TX_END
+ text "Spark"
+ done
SparkDescription: ; 5cf4e (17:4f4e)
- db TX_START,"If your opponent has any Benched\n"
- db "Pok`mon, choose 1 of them and this\n"
- db "attack does 10 damage to it. (Don't\n"
- db "apply Weakness and Resistance for\n"
- db "Benched Pok`mon.)",TX_END
+ text "If your opponent has any Benched"
+ line "Pok`mon, choose 1 of them and this"
+ line "attack does 10 damage to it. (Don't"
+ line "apply Weakness and Resistance for"
+ line "Benched Pok`mon.)"
+ done
Pikachu2Description: ; 5cfeb (17:4feb)
- db TX_START,"When several of these Pok`mon\n"
- db "gather, their electricity can build\n"
- db "and cause lightning storms.",TX_END
+ text "When several of these Pok`mon"
+ line "gather, their electricity can build"
+ line "and cause lightning storms."
+ done
GrowlName: ; 5d04a (17:504a)
- db TX_START,"Growl",TX_END
+ text "Growl"
+ done
GrowlDescription: ; 5d051 (17:5051)
- db TX_START,"If the Defending Pok`mon attacks\n"
- db "Pikachu during your opponent's next\n"
- db "turn, any damage done by the attack\n"
- db "is reduced by 10 (after applying\n"
- db "Weakness and Resistance). \n"
- db "(Benching or evolving either Pok`mon\n"
- db "ends this effect.)",TX_END
+ text "If the Defending Pok`mon attacks"
+ line "Pikachu during your opponent's next"
+ line "turn, any damage done by the attack"
+ line "is reduced by 10 (after applying"
+ line "Weakness and Resistance). "
+ line "(Benching or evolving either Pok`mon"
+ line "ends this effect.)"
+ done
ThundershockName: ; 5d12f (17:512f)
- db TX_START,"Thundershock",TX_END
+ text "Thundershock"
+ done
Pikachu3Description: ; 5d13d (17:513d)
- db TX_START,"When several of these Pok`mon\n"
- db "gather, their electricity could\n"
- db "build and cause lightning storms.",TX_END
+ text "When several of these Pok`mon"
+ line "gather, their electricity could"
+ line "build and cause lightning storms."
+ done
FlyingPikachuName: ; 5d19e (17:519e)
- db TX_START,"Flying Pikachu",TX_END
+ text "Flying Pikachu"
+ done
FlyName: ; 5d1ae (17:51ae)
- db TX_START,"Fly",TX_END
+ text "Fly"
+ done
FlyDescription: ; 5d1b3 (17:51b3)
- db TX_START,"Flip a coin. If heads, during your\n"
- db "opponent's next turn, prevent all\n"
- db "effects of attacks, including\n"
- db "damage, done to Flying Pikachu. \n"
- db "If tails, this attack does nothing \n"
- db "(not even damage).",TX_END
+ text "Flip a coin. If heads, during your"
+ line "opponent's next turn, prevent all"
+ line "effects of attacks, including"
+ line "damage, done to Flying Pikachu. "
+ line "If tails, this attack does nothing "
+ line "(not even damage)."
+ done
FlyingPikachuDescription: ; 5d26f (17:526f)
- db TX_START,"By learning how to fly, Pikachu\n"
- db "overcame its weakness to Fighting\n"
- db "Pok`mon.",TX_END
+ text "By learning how to fly, Pikachu"
+ line "overcame its weakness to Fighting"
+ line "Pok`mon."
+ done
SurfingPikachuName: ; 5d2bb (17:52bb)
- db TX_START,"Surfing Pikachu",TX_END
+ text "Surfing Pikachu"
+ done
SurfName: ; 5d2cc (17:52cc)
- db TX_START,"Surf",TX_END
+ text "Surf"
+ done
SurfingPikachuDescription: ; 5d2d2 (17:52d2)
- db TX_START,"One summer, a group of Pikachu\n"
- db "was found riding the waves at the\n"
- db "local beach.",TX_END
+ text "One summer, a group of Pikachu"
+ line "was found riding the waves at the"
+ line "local beach."
+ done
RaichuName: ; 5d321 (17:5321)
- db TX_START,"Raichu",TX_END
+ text "Raichu"
+ done
RaichusAgilityDescription: ; 5d329 (17:5329)
- db TX_START,"Flip a coin. If heads, during your\n"
- db "opponent's next turn, prevent all\n"
- db "effects of attacks, including\n"
- db "damage, done to Raichu.",TX_END
+ text "Flip a coin. If heads, during your"
+ line "opponent's next turn, prevent all"
+ line "effects of attacks, including"
+ line "damage, done to Raichu."
+ done
ThunderName: ; 5d3a5 (17:53a5)
- db TX_START,"Thunder",TX_END
+ text "Thunder"
+ done
RaichusThunderDescription: ; 5d3ae (17:53ae)
- db TX_START,"Flip a coin. If tails, Raichu does\n"
- db "30 damage to itself.",TX_END
+ text "Flip a coin. If tails, Raichu does"
+ line "30 damage to itself."
+ done
Raichu1Description: ; 5d3e7 (17:53e7)
- db TX_START,"Its long tail serves as a ground to\n"
- db "protect itself from its own\n"
- db "high-voltage power.",TX_END
+ text "Its long tail serves as a ground to"
+ line "protect itself from its own"
+ line "high-voltage power."
+ done
GigashockName: ; 5d43c (17:543c)
- db TX_START,"Gigashock",TX_END
+ text "Gigashock"
+ done
GigashockDescription: ; 5d447 (17:5447)
- db TX_START,"Choose 3 of your opponent's Benched\n"
- db "Pok`mon and this attack does 10\n"
- db "damage to each of them. (Don't apply\n"
- db "Weakness and Resistance for Benched\n"
- db "Pok`mon.) If your opponent has fewer\n"
- db "than 3 Benched Pok`mon, do the\n"
- db "damage to each of them.",TX_END
+ text "Choose 3 of your opponent's Benched"
+ line "Pok`mon and this attack does 10"
+ line "damage to each of them. (Don't apply"
+ line "Weakness and Resistance for Benched"
+ line "Pok`mon.) If your opponent has fewer"
+ line "than 3 Benched Pok`mon, do the"
+ line "damage to each of them."
+ done
Raichu2Description: ; 5d531 (17:5531)
- db TX_START,"Its long tail serves as a ground to\n"
- db "protect itself from its own high\n"
- db "voltage power.",TX_END
+ text "Its long tail serves as a ground to"
+ line "protect itself from its own high"
+ line "voltage power."
+ done
MagnemiteName: ; 5d586 (17:5586)
- db TX_START,"Magnemite",TX_END
+ text "Magnemite"
+ done
ThunderWaveName: ; 5d591 (17:5591)
- db TX_START,"Thunder Wave",TX_END
+ text "Thunder Wave"
+ done
MagnemitesSelfdestructDescription: ; 5d59f (17:559f)
- db TX_START,"Does 10 damage to each Pok`mon on\n"
- db "each player's Bench. (Don't apply\n"
- db "Weakness and Resistance for Benched\n"
- db "Pok`mon.) Magnemite does 40 damage\n"
- db "to itself.",TX_END
+ text "Does 10 damage to each Pok`mon on"
+ line "each player's Bench. (Don't apply"
+ line "Weakness and Resistance for Benched"
+ line "Pok`mon.) Magnemite does 40 damage"
+ line "to itself."
+ done
MagnemiteKind: ; 5d636 (17:5636)
- db TX_START,"Magnet",TX_END
+ text "Magnet"
+ done
Magnemite1Description: ; 5d63e (17:563e)
- db TX_START,"Uses anti-gravity to stay suspended.\n"
- db "Appears without warning and uses\n"
- db "attacks like Thunder Wave.",TX_END
+ text "Uses anti-gravity to stay suspended."
+ line "Appears without warning and uses"
+ line "attacks like Thunder Wave."
+ done
MagneticStormName: ; 5d6a0 (17:56a0)
- db TX_START,"Magnetic Storm",TX_END
+ text "Magnetic Storm"
+ done
MagneticStormDescription: ; 5d6b0 (17:56b0)
- db TX_START,"Remove all Energy cards attached to\n"
- db "all of your Pok`mon, then randomly\n"
- db "reattach each of them.",TX_END
+ text "Remove all Energy cards attached to"
+ line "all of your Pok`mon, then randomly"
+ line "reattach each of them."
+ done
Magnemite2Description: ; 5d70f (17:570f)
- db TX_START,"It is born with the ability to defy\n"
- db "gravity. Floats in air on powerful\n"
- db "electromagnetic waves.",TX_END
+ text "It is born with the ability to defy"
+ line "gravity. Floats in air on powerful"
+ line "electromagnetic waves."
+ done
MagnetonName: ; 5d76e (17:576e)
- db TX_START,"Magneton",TX_END
+ text "Magneton"
+ done
Magneton1sSelfdestructDescription: ; 5d778 (17:5778)
- db TX_START,"Does 20 damage to each Pok`mon on\n"
- db "each player's Bench. (Don't apply\n"
- db "Weakness and Resistance for Benched\n"
- db "Pok`mon.)\n"
- db "Magneton does 80 damage to itself.",TX_END
+ text "Does 20 damage to each Pok`mon on"
+ line "each player's Bench. (Don't apply"
+ line "Weakness and Resistance for Benched"
+ line "Pok`mon.)"
+ line "Magneton does 80 damage to itself."
+ done
Magneton1Description: ; 5d80e (17:580e)
- db TX_START,"Formed by several Magnemites linked\n"
- db "together. It frequently appears when\n"
- db "sunspots flare up.",TX_END
+ text "Formed by several Magnemites linked"
+ line "together. It frequently appears when"
+ line "sunspots flare up."
+ done
SonicboomName: ; 5d86b (17:586b)
- db TX_START,"Sonicboom",TX_END
+ text "Sonicboom"
+ done
SonicboomDescription: ; 5d876 (17:5876)
- db TX_START,"Don't apply Weakness and Resistance\n"
- db "for this attack. (Any other effects\n"
- db "that would happen after applying\n"
- db "Weakness and Resistance still\n"
- db "happen.)",TX_END
+ text "Don't apply Weakness and Resistance"
+ line "for this attack. (Any other effects"
+ line "that would happen after applying"
+ line "Weakness and Resistance still"
+ line "happen.)"
+ done
Magneton2sSelfdestructDescription: ; 5d907 (17:5907)
- db TX_START,"Does 20 damage to each Pok`mon on\n"
- db "each player's Bench. (Don't apply\n"
- db "Weakness and Resistance for Benched\n"
- db "Pok`mon.) Magneton does 100 damage\n"
- db "to itself.",TX_END
+ text "Does 20 damage to each Pok`mon on"
+ line "each player's Bench. (Don't apply"
+ line "Weakness and Resistance for Benched"
+ line "Pok`mon.) Magneton does 100 damage"
+ line "to itself."
+ done
Magneton2Description: ; 5d99e (17:599e)
- db TX_START,"Formed by several Magnemites linked\n"
- db "together. They frequently appear\n"
- db "when sunspots flare up.",TX_END
+ text "Formed by several Magnemites linked"
+ line "together. They frequently appear"
+ line "when sunspots flare up."
+ done
VoltorbName: ; 5d9fc (17:59fc)
- db TX_START,"Voltorb",TX_END
+ text "Voltorb"
+ done
VoltorbKind: ; 5da05 (17:5a05)
- db TX_START,"Ball",TX_END
+ text "Ball"
+ done
VoltorbDescription: ; 5da0b (17:5a0b)
- db TX_START,"Usually found in power plants.\n"
- db "Easily mistaken for a Poke Ball, it\n"
- db "has zapped many people.",TX_END
+ text "Usually found in power plants."
+ line "Easily mistaken for a Poke Ball, it"
+ line "has zapped many people."
+ done
ElectrodeName: ; 5da67 (17:5a67)
- db TX_START,"Electrode",TX_END
+ text "Electrode"
+ done
EnergySpikeName: ; 5da72 (17:5a72)
- db TX_START,"Energy Spike",TX_END
+ text "Energy Spike"
+ done
EnergySpikeDescription: ; 5da80 (17:5a80)
- db TX_START,"Search your deck for a basic Energy\n"
- db "card and attach it to 1 of your\n"
- db "Pok`mon. Shuffle your deck\n"
- db "afterward.",TX_END
+ text "Search your deck for a basic Energy"
+ line "card and attach it to 1 of your"
+ line "Pok`mon. Shuffle your deck"
+ line "afterward."
+ done
Electrode1Description: ; 5daeb (17:5aeb)
- db TX_START,"Stores electrical energy inside its\n"
- db "body. Even the slightest shock could\n"
- db "trigger a huge explosion.",TX_END
+ text "Stores electrical energy inside its"
+ line "body. Even the slightest shock could"
+ line "trigger a huge explosion."
+ done
ChainLightningName: ; 5db4f (17:5b4f)
- db TX_START,"Chain Lightning",TX_END
+ text "Chain Lightning"
+ done
ChainLightningDescription: ; 5db60 (17:5b60)
- db TX_START,"If the Defending Pok`mon isn't\n"
- db "Colorless, this attack does 10\n"
- db "damage to each Benched Pok`mon of\n"
- db "the same type as the Defending\n"
- db "Pok`mon (including your own).",TX_END
+ text "If the Defending Pok`mon isn't"
+ line "Colorless, this attack does 10"
+ line "damage to each Benched Pok`mon of"
+ line "the same type as the Defending"
+ line "Pok`mon (including your own)."
+ done
Electrode2Description: ; 5dbfe (17:5bfe)
- db TX_START,"It stores electrical energy under\n"
- db "very high pressure. It often\n"
- db "explodes with little or no\n"
- db "provocation.",TX_END
+ text "It stores electrical energy under"
+ line "very high pressure. It often"
+ line "explodes with little or no"
+ line "provocation."
+ done
ElectabuzzName: ; 5dc66 (17:5c66)
- db TX_START,"Electabuzz",TX_END
+ text "Electabuzz"
+ done
LightScreenName: ; 5dc72 (17:5c72)
- db TX_START,"Light Screen",TX_END
+ text "Light Screen"
+ done
LightScreenDescription: ; 5dc80 (17:5c80)
- db TX_START,"Whenever an attack does damage to\n"
- db "Electabuzz (after applying Weakness\n"
- db "and Resistance) during your\n"
- db "opponent's next turn, that attack\n"
- db "only does half the damage to\n"
- db "Electabuzz (rounded down to the\n"
- db "nearest 10).",TX_END
+ text "Whenever an attack does damage to"
+ line "Electabuzz (after applying Weakness"
+ line "and Resistance) during your"
+ line "opponent's next turn, that attack"
+ line "only does half the damage to"
+ line "Electabuzz (rounded down to the"
+ line "nearest 10)."
+ done
LightScreenDescriptionCont: ; 5dd4f (17:5d4f)
- db TX_START,"(Any other effects of attacks still\n"
- db "happen.)",TX_END
+ text "(Any other effects of attacks still"
+ line "happen.)"
+ done
ElectabuzzsQuickAttackDescription: ; 5dd7d (17:5d7d)
- db TX_START,"Flip a coin. If heads, this attack\n"
- db "does 10 damage plus 20 more damage; \n"
- db "if tails, this attack does\n"
- db "10 damage.",TX_END
+ text "Flip a coin. If heads, this attack"
+ line "does 10 damage plus 20 more damage; "
+ line "if tails, this attack does"
+ line "10 damage."
+ done
ElectabuzzKind: ; 5ddec (17:5dec)
- db TX_START,"Electric",TX_END
+ text "Electric"
+ done
Electabuzz1Description: ; 5ddf6 (17:5df6)
- db TX_START,"A wild Pok`mon with a short temper.\n"
- db "It is able to distinguish colors\n"
- db "and likes the color red.",TX_END
+ text "A wild Pok`mon with a short temper."
+ line "It is able to distinguish colors"
+ line "and likes the color red."
+ done
ThunderpunchName: ; 5de55 (17:5e55)
- db TX_START,"Thunderpunch",TX_END
+ text "Thunderpunch"
+ done
ThunderpunchDescription: ; 5de63 (17:5e63)
- db TX_START,"Flip a coin. If heads, this attack\n"
- db "does 30 damage plus 10 more damage;\n"
- db "if tails, this attack does 30 damage\n"
- db "and Electabuzz does 10 damage to\n"
- db "itself.",TX_END
+ text "Flip a coin. If heads, this attack"
+ line "does 30 damage plus 10 more damage;"
+ line "if tails, this attack does 30 damage"
+ line "and Electabuzz does 10 damage to"
+ line "itself."
+ done
Electabuzz2Description: ; 5def9 (17:5ef9)
- db TX_START,"Normally found near power plants,\n"
- db "it can wander away and cause major\n"
- db "blackouts in cities.",TX_END
+ text "Normally found near power plants,"
+ line "it can wander away and cause major"
+ line "blackouts in cities."
+ done
JolteonName: ; 5df54 (17:5f54)
- db TX_START,"Jolteon",TX_END
+ text "Jolteon"
+ done
DoubleAttackX20Description: ; 5df5d (17:5f5d)
- db TX_START,"Flip 2 coins. This attack does 20\n"
- db "damage times the number of heads.",TX_END
+ text "Flip 2 coins. This attack does 20"
+ line "damage times the number of heads."
+ done
StunNeedleName: ; 5dfa2 (17:5fa2)
- db TX_START,"Stun Needle",TX_END
+ text "Stun Needle"
+ done
JolteonKind: ; 5dfaf (17:5faf)
- db TX_START,"Lightning",TX_END
+ text "Lightning"
+ done
Jolteon1Description: ; 5dfba (17:5fba)
- db TX_START,"A sensitive Pok`mon that easily\n"
- db "becomes sad or angry. Every time\n"
- db "its mood changes, it charges power.",TX_END
+ text "A sensitive Pok`mon that easily"
+ line "becomes sad or angry. Every time"
+ line "its mood changes, it charges power."
+ done
PinMissileName: ; 5e020 (17:6020)
- db TX_START,"Pin Missile",TX_END
+ text "Pin Missile"
+ done
QuadrupleAttackX20Description: ; 5e02d (17:602d)
- db TX_START,"Flip 4 coins. This attack does 20\n"
- db "damage times the number of heads.",TX_END
+ text "Flip 4 coins. This attack does 20"
+ line "damage times the number of heads."
+ done
Jolteon2Description: ; 5e072 (17:6072)
- db TX_START,"It accumulates negative ions from\n"
- db "the atmosphere to blast out 10,000-\n"
- db "volt lightning bolts.",TX_END
+ text "It accumulates negative ions from"
+ line "the atmosphere to blast out 10,000-"
+ line "volt lightning bolts."
+ done
ZapdosName: ; 5e0cf (17:60cf)
- db TX_START,"Zapdos",TX_END
+ text "Zapdos"
+ done
ThunderstormName: ; 5e0d7 (17:60d7)
- db TX_START,"Thunderstorm",TX_END
+ text "Thunderstorm"
+ done
ThunderstormDescription: ; 5e0e5 (17:60e5)
- db TX_START,"For each of your opponent's Benched\n"
- db "Pok`mon, flip a coin. If heads,\n"
- db "this attack does 20 damage to that\n"
- db "Pok`mon. (Don't apply Weakness and\n"
- db "Resistance for Benched Pok`mon.)\n"
- db "Then, Zapdos does 10 damage times\n"
- db "the number of tails to itself.",TX_END
+ text "For each of your opponent's Benched"
+ line "Pok`mon, flip a coin. If heads,"
+ line "this attack does 20 damage to that"
+ line "Pok`mon. (Don't apply Weakness and"
+ line "Resistance for Benched Pok`mon.)"
+ line "Then, Zapdos does 10 damage times"
+ line "the number of tails to itself."
+ done
Zapdos1Description: ; 5e1d2 (17:61d2)
- db TX_START,"A legendary thunderbird Pok`mon\n"
- db "whose anger is said to cause storms.\n"
- db "Some say it has lived above the\n"
- db "clouds for thousands of years.",TX_END
+ text "A legendary thunderbird Pok`mon"
+ line "whose anger is said to cause storms."
+ line "Some say it has lived above the"
+ line "clouds for thousands of years."
+ done
ZapdosThunderDescription: ; 5e257 (17:6257)
- db TX_START,"Flip a coin. If tails, Zapdos does\n"
- db "30 damage to itself.",TX_END
+ text "Flip a coin. If tails, Zapdos does"
+ line "30 damage to itself."
+ done
ThunderboltName: ; 5e290 (17:6290)
- db TX_START,"Thunderbolt",TX_END
+ text "Thunderbolt"
+ done
ThunderboltDescription: ; 5e29d (17:629d)
- db TX_START,"Discard all Energy cards attached to\n"
- db "Zapdos in order to use this attack.",TX_END
+ text "Discard all Energy cards attached to"
+ line "Zapdos in order to use this attack."
+ done
Zapdos2Description: ; 5e2e7 (17:62e7)
- db TX_START,"A legendary bird Pok`mon said to\n"
- db "appear from clouds while wielding\n"
- db "enormous lightning bolts.",TX_END
+ text "A legendary bird Pok`mon said to"
+ line "appear from clouds while wielding"
+ line "enormous lightning bolts."
+ done
PealofThunderName: ; 5e345 (17:6345)
- db TX_START,"Peal of Thunder",TX_END
+ text "Peal of Thunder"
+ done
PealofThunderDescription: ; 5e356 (17:6356)
- db TX_START,"When you put Zapdos into play during\n"
- db "your turn (not during set-up), do\n"
- db "30 damage to a Pok`mon other than\n"
- db "Zapdos chosen at random. (Don't\n"
- db "apply Weakness and Resistance.)",TX_END
+ text "When you put Zapdos into play during"
+ line "your turn (not during set-up), do"
+ line "30 damage to a Pok`mon other than"
+ line "Zapdos chosen at random. (Don't"
+ line "apply Weakness and Resistance.)"
+ done
BigThunderName: ; 5e400 (17:6400)
- db TX_START,"Big Thunder",TX_END
+ text "Big Thunder"
+ done
BigThunderDescription: ; 5e40d (17:640d)
- db TX_START,"Choose a Pok`mon other than Zapdos\n"
- db "at random. This attack does 70\n"
- db "damage to that Pok`mon. Don't apply\n"
- db "Weakness and Resistance for this\n"
- db "attack. (Any other effects that\n"
- db "would happen after applying Weakness\n"
- db "and Resistance still happen.)",TX_END
+ text "Choose a Pok`mon other than Zapdos"
+ line "at random. This attack does 70"
+ line "damage to that Pok`mon. Don't apply"
+ line "Weakness and Resistance for this"
+ line "attack. (Any other effects that"
+ line "would happen after applying Weakness"
+ line "and Resistance still happen.)"
+ done
Zapdos3Description: ; 5e4f8 (17:64f8)
- db TX_START,"This legendary bird Pok`mon is said\n"
- db "to appear when the sky turns dark\n"
- db "and lightning showers down.",TX_END
+ text "This legendary bird Pok`mon is said"
+ line "to appear when the sky turns dark"
+ line "and lightning showers down."
+ done
SandshrewName: ; 5e55b (17:655b)
- db TX_START,"Sandshrew",TX_END
+ text "Sandshrew"
+ done
SandAttackName: ; 5e566 (17:6566)
- db TX_START,"Sand-attack",TX_END
+ text "Sand-attack"
+ done
SandshrewDescription: ; 5e573 (17:6573)
- db TX_START,"Burrows deep underground in arid\n"
- db "locations far from water. It only\n"
- db "emerges to hunt for food.",TX_END
+ text "Burrows deep underground in arid"
+ line "locations far from water. It only"
+ line "emerges to hunt for food."
+ done
SandslashName: ; 5e5d1 (17:65d1)
- db TX_START,"Sandslash",TX_END
+ text "Sandslash"
+ done
TripleAttackX20Description: ; 5e5dc (17:65dc)
- db TX_START,"Flip 3 coins. This attack does 20\n"
- db "damage times the number of heads.",TX_END
+ text "Flip 3 coins. This attack does 20"
+ line "damage times the number of heads."
+ done
SandslashDescription: ; 5e621 (17:6621)
- db TX_START,"Curls up into a spiny ball when\n"
- db "threatened. It can roll while curled\n"
- db "up to attack or escape.",TX_END
+ text "Curls up into a spiny ball when"
+ line "threatened. It can roll while curled"
+ line "up to attack or escape."
+ done
DiglettName: ; 5e67f (17:667f)
- db TX_START,"Diglett",TX_END
+ text "Diglett"
+ done
DigName: ; 5e688 (17:6688)
- db TX_START,"Dig",TX_END
+ text "Dig"
+ done
MudSlapName: ; 5e68d (17:668d)
- db TX_START,"Mud Slap",TX_END
+ text "Mud Slap"
+ done
DiglettKind: ; 5e697 (17:6697)
- db TX_START,"Mole",TX_END
+ text "Mole"
+ done
DiglettDescription: ; 5e69d (17:669d)
- db TX_START,"Lives about three feet underground,\n"
- db "where it feeds on plant roots. It\n"
- db "sometimes appears above ground.",TX_END
+ text "Lives about three feet underground,"
+ line "where it feeds on plant roots. It"
+ line "sometimes appears above ground."
+ done
DugtrioName: ; 5e704 (17:6704)
- db TX_START,"Dugtrio",TX_END
+ text "Dugtrio"
+ done
EarthquakeName: ; 5e70d (17:670d)
- db TX_START,"Earthquake",TX_END
+ text "Earthquake"
+ done
EarthquakeDescription: ; 5e719 (17:6719)
- db TX_START,"Does 10 damage to each of your own\n"
- db "Benched Pok`mon. (Don't apply\n"
- db "Weakness and Resistance for Benched\n"
- db "Pok`mon.)",TX_END
+ text "Does 10 damage to each of your own"
+ line "Benched Pok`mon. (Don't apply"
+ line "Weakness and Resistance for Benched"
+ line "Pok`mon.)"
+ done
DugtrioDescription: ; 5e789 (17:6789)
- db TX_START,"A team of Diglett triplets.\n"
- db "It triggers huge earthquakes by\n"
- db "burrowing 60 miles underground.",TX_END
+ text "A team of Diglett triplets."
+ line "It triggers huge earthquakes by"
+ line "burrowing 60 miles underground."
+ done
MankeyName: ; 5e7e6 (17:67e6)
- db TX_START,"Mankey",TX_END
+ text "Mankey"
+ done
PeekName: ; 5e7ee (17:67ee)
- db TX_START,"Peek",TX_END
+ text "Peek"
+ done
PeekDescription: ; 5e7f4 (17:67f4)
- db TX_START,"Once during your turn (before your\n"
- db "attack), you may look at one of the\n"
- db "following: the top card of either\n"
- db "player's deck, a random card from\n"
- db "your opponent's hand, or one of\n"
- db "either player's Prizes.",TX_END
+ text "Once during your turn (before your"
+ line "attack), you may look at one of the"
+ line "following: the top card of either"
+ line "player's deck, a random card from"
+ line "your opponent's hand, or one of"
+ line "either player's Prizes."
+ done
PeekDescriptionCont: ; 5e8b8 (17:68b8)
- db TX_START,"This power can't be used if Mankey\n"
- db "is Asleep, Confused, or Paralyzed.",TX_END
+ text "This power can't be used if Mankey"
+ line "is Asleep, Confused, or Paralyzed."
+ done
MankeyKind: ; 5e8ff (17:68ff)
- db TX_START,"Pig Monkey",TX_END
+ text "Pig Monkey"
+ done
MankeyDescription: ; 5e90b (17:690b)
- db TX_START,"Extremely quick to anger. It could\n"
- db "be docile one moment, then thrashing\n"
- db "away the next.",TX_END
+ text "Extremely quick to anger. It could"
+ line "be docile one moment, then thrashing"
+ line "away the next."
+ done
PrimeapeName: ; 5e963 (17:6963)
- db TX_START,"Primeape",TX_END
+ text "Primeape"
+ done
TantrumName: ; 5e96d (17:696d)
- db TX_START,"Tantrum",TX_END
+ text "Tantrum"
+ done
TantrumDescription: ; 5e976 (17:6976)
- db TX_START,"Flip a coin. If tails, Primeape is\n"
- db "now Confused (after doing damage).",TX_END
+ text "Flip a coin. If tails, Primeape is"
+ line "now Confused (after doing damage)."
+ done
PrimeapeDescription: ; 5e9bd (17:69bd)
- db TX_START,"Always furious and tenacious to\n"
- db "boot. It will not abandon chasing\n"
- db "its quarry until its quarry is\n"
- db "caught.",TX_END
+ text "Always furious and tenacious to"
+ line "boot. It will not abandon chasing"
+ line "its quarry until its quarry is"
+ line "caught."
+ done
MachopName: ; 5ea27 (17:6a27)
- db TX_START,"Machop",TX_END
+ text "Machop"
+ done
LowKickName: ; 5ea2f (17:6a2f)
- db TX_START,"Low Kick",TX_END
+ text "Low Kick"
+ done
MachopKindOrSuperpowerName: ; 5ea39 (17:6a39)
- db TX_START,"Superpower",TX_END
+ text "Superpower"
+ done
MachopDescription: ; 5ea45 (17:6a45)
- db TX_START,"Loves to build its muscles. It\n"
- db "trains in all styles of martial arts\n"
- db "to become even stronger.",TX_END
+ text "Loves to build its muscles. It"
+ line "trains in all styles of martial arts"
+ line "to become even stronger."
+ done
MachokeName: ; 5eaa3 (17:6aa3)
- db TX_START,"Machoke",TX_END
+ text "Machoke"
+ done
KarateChopName: ; 5eaac (17:6aac)
- db TX_START,"Karate Chop",TX_END
+ text "Karate Chop"
+ done
KarateChopDescription: ; 5eab9 (17:6ab9)
- db TX_START,"Does 50 damage minus 10 damage for\n"
- db "each damage counter on Machoke.",TX_END
+ text "Does 50 damage minus 10 damage for"
+ line "each damage counter on Machoke."
+ done
SubmissionName: ; 5eafd (17:6afd)
- db TX_START,"Submission",TX_END
+ text "Submission"
+ done
SubmissionDescription: ; 5eb09 (17:6b09)
- db TX_START,"Machoke does 20 damage to itself.",TX_END
+ text "Machoke does 20 damage to itself."
+ done
MachokeDescription: ; 5eb2c (17:6b2c)
- db TX_START,"Its muscular body is so powerful\n"
- db "that it must wear a power-save belt\n"
- db "to help regulate its motions.",TX_END
+ text "Its muscular body is so powerful"
+ line "that it must wear a power-save belt"
+ line "to help regulate its motions."
+ done
MachampName: ; 5eb90 (17:6b90)
- db TX_START,"Machamp",TX_END
+ text "Machamp"
+ done
StrikesBackName: ; 5eb99 (17:6b99)
- db TX_START,"Strikes Back",TX_END
+ text "Strikes Back"
+ done
StrikesBackDescription: ; 5eba7 (17:6ba7)
- db TX_START,"Whenever your opponent's attack\n"
- db "damages Machamp (even if Machamp is\n"
- db "Knocked Out), this power does 10\n"
- db "damage to the attacking Pok`mon.\n"
- db "(Don't apply Weakness and\n"
- db "Resistance.) ",TX_END
+ text "Whenever your opponent's attack"
+ line "damages Machamp (even if Machamp is"
+ line "Knocked Out), this power does 10"
+ line "damage to the attacking Pok`mon."
+ line "(Don't apply Weakness and"
+ line "Resistance.) "
+ done
StrikesBackDescriptionCont: ; 5ec56 (17:6c56)
- db TX_START,"This power can't be used if Machamp\n"
- db "is already Asleep, Confused, or\n"
- db "Paralyzed when your opponent\n"
- db "attacks.",TX_END
+ text "This power can't be used if Machamp"
+ line "is already Asleep, Confused, or"
+ line "Paralyzed when your opponent"
+ line "attacks."
+ done
SeismicTossName: ; 5ecc1 (17:6cc1)
- db TX_START,"Seismic Toss",TX_END
+ text "Seismic Toss"
+ done
MachampDescription: ; 5eccf (17:6ccf)
- db TX_START,"Using its amazing muscles, it throws\n"
- db "powerful punches that can knock its\n"
- db "victim clear over the horizon.",TX_END
+ text "Using its amazing muscles, it throws"
+ line "powerful punches that can knock its"
+ line "victim clear over the horizon."
+ done
GeodudeName: ; 5ed38 (17:6d38)
- db TX_START,"Geodude",TX_END
+ text "Geodude"
+ done
StoneBarrageName: ; 5ed41 (17:6d41)
- db TX_START,"Stone Barrage",TX_END
+ text "Stone Barrage"
+ done
StoneBarrageDescription: ; 5ed50 (17:6d50)
- db TX_START,"Flip a coin until you get tails.\n"
- db "This attack does 10 damage times\n"
- db "the number of heads.",TX_END
+ text "Flip a coin until you get tails."
+ line "This attack does 10 damage times"
+ line "the number of heads."
+ done
GeodudeKind: ; 5eda8 (17:6da8)
- db TX_START,"Rock",TX_END
+ text "Rock"
+ done
GeodudeDescription: ; 5edae (17:6dae)
- db TX_START,"Found in fields and mountains.\n"
- db "Mistaking them for boulders, people\n"
- db "often step or trip on them.",TX_END
+ text "Found in fields and mountains."
+ line "Mistaking them for boulders, people"
+ line "often step or trip on them."
+ done
GravelerName: ; 5ee0e (17:6e0e)
- db TX_START,"Graveler",TX_END
+ text "Graveler"
+ done
HardenName: ; 5ee18 (17:6e18)
- db TX_START,"Harden",TX_END
+ text "Harden"
+ done
GravelersHardenDescription: ; 5ee20 (17:6e20)
- db TX_START,"During your opponent's next turn,\n"
- db "whenever 30 or less damage is done\n"
- db "to Graveler (after applying\n"
- db "Weakness and Resistance), prevent\n"
- db "that damage. (Any other effects of\n"
- db "attacks still happen.)",TX_END
+ text "During your opponent's next turn,"
+ line "whenever 30 or less damage is done"
+ line "to Graveler (after applying"
+ line "Weakness and Resistance), prevent"
+ line "that damage. (Any other effects of"
+ line "attacks still happen.)"
+ done
RockThrowName: ; 5eede (17:6ede)
- db TX_START,"Rock Throw",TX_END
+ text "Rock Throw"
+ done
GravelerDescription: ; 5eeea (17:6eea)
- db TX_START,"Rolls down slopes to move. It rolls\n"
- db "over any obstacle without slowing\n"
- db "or changing its direction.",TX_END
+ text "Rolls down slopes to move. It rolls"
+ line "over any obstacle without slowing"
+ line "or changing its direction."
+ done
GolemName: ; 5ef4c (17:6f4c)
- db TX_START,"Golem",TX_END
+ text "Golem"
+ done
AvalancheName: ; 5ef53 (17:6f53)
- db TX_START,"Avalanche",TX_END
+ text "Avalanche"
+ done
GolemsSelfdestructDescription: ; 5ef5e (17:6f5e)
- db TX_START,"Does 20 damage to each Pok`mon on\n"
- db "each player's Bench. (Don't apply\n"
- db "Weakness and Resistance for Benched\n"
- db "Pok`mon.) Golem does 100 damage to\n"
- db "itself.",TX_END
+ text "Does 20 damage to each Pok`mon on"
+ line "each player's Bench. (Don't apply"
+ line "Weakness and Resistance for Benched"
+ line "Pok`mon.) Golem does 100 damage to"
+ line "itself."
+ done
GolemKind: ; 5eff2 (17:6ff2)
- db TX_START,"Megaton",TX_END
+ text "Megaton"
+ done
GolemDescription: ; 5effb (17:6ffb)
- db TX_START,"Its boulder-like body is extremely\n"
- db "hard. It can easily withstand\n"
- db "dynamite blasts without damage.",TX_END
+ text "Its boulder-like body is extremely"
+ line "hard. It can easily withstand"
+ line "dynamite blasts without damage."
+ done
OnixName: ; 5f05d (17:705d)
- db TX_START,"Onix",TX_END
+ text "Onix"
+ done
OnixsHardenDescription: ; 5f063 (17:7063)
- db TX_START,"During your opponent's next turn,\n"
- db "whenever 30 or less damage is done\n"
- db "to Onix (after applying Weakness and\n"
- db "Resistance), prevent that damage.\n"
- db "(Any other effects of attacks still\n"
- db "happen.)",TX_END
+ text "During your opponent's next turn,"
+ line "whenever 30 or less damage is done"
+ line "to Onix (after applying Weakness and"
+ line "Resistance), prevent that damage."
+ line "(Any other effects of attacks still"
+ line "happen.)"
+ done
OnixKind: ; 5f11d (17:711d)
- db TX_START,"Rock Snake",TX_END
+ text "Rock Snake"
+ done
OnixDescription: ; 5f129 (17:7129)
- db TX_START,"As it grows, the stone portions of\n"
- db "its body harden to become similar\n"
- db "to a diamond, though colored black.",TX_END
+ text "As it grows, the stone portions of"
+ line "its body harden to become similar"
+ line "to a diamond, though colored black."
+ done
CuboneName: ; 5f193 (17:7193)
- db TX_START,"Cubone",TX_END
+ text "Cubone"
+ done
SnivelName: ; 5f19b (17:719b)
- db TX_START,"Snivel",TX_END
+ text "Snivel"
+ done
SnivelDescription: ; 5f1a3 (17:71a3)
- db TX_START,"If the Defending Pok`mon attacks\n"
- db "Cubone during your opponent's next\n"
- db "turn, any damage done by the attack\n"
- db "is reduced by 20 (after applying\n"
- db "Weakness and Resistance). (Benching\n"
- db "or evolving either Pok`mon ends this\n"
- db "effect.)",TX_END
+ text "If the Defending Pok`mon attacks"
+ line "Cubone during your opponent's next"
+ line "turn, any damage done by the attack"
+ line "is reduced by 20 (after applying"
+ line "Weakness and Resistance). (Benching"
+ line "or evolving either Pok`mon ends this"
+ line "effect.)"
+ done
CubonesRageDescription: ; 5f27f (17:727f)
- db TX_START,"Does 10 damage plus 10 more damage\n"
- db "for each damage counter on Cubone.",TX_END
+ text "Does 10 damage plus 10 more damage"
+ line "for each damage counter on Cubone."
+ done
CuboneKind: ; 5f2c6 (17:72c6)
- db TX_START,"Lonely",TX_END
+ text "Lonely"
+ done
CuboneDescription: ; 5f2ce (17:72ce)
- db TX_START,"Because it never removes its skull\n"
- db "helmet, no one has ever seen this\n"
- db "Pok`mon's real face.",TX_END
+ text "Because it never removes its skull"
+ line "helmet, no one has ever seen this"
+ line "Pok`mon's real face."
+ done
MarowakName: ; 5f329 (17:7329)
- db TX_START,"Marowak",TX_END
+ text "Marowak"
+ done
BonemerangName: ; 5f332 (17:7332)
- db TX_START,"Bonemerang",TX_END
+ text "Bonemerang"
+ done
CallforFriendName: ; 5f33e (17:733e)
- db TX_START,"Call for Friend",TX_END
+ text "Call for Friend"
+ done
CallforFriendDescription: ; 5f34f (17:734f)
- db TX_START,"Search your deck for a ",TX_FIGHTING," Basic\n"
- db "Pok`mon card and put it onto your\n"
- db "Bench. Shuffle your deck afterward.\n"
- db "(You can't use this attack if your\n"
- db "Bench is full.)",TX_END
+ text "Search your deck for a ",TX_FIGHTING," Basic"
+ line "Pok`mon card and put it onto your"
+ line "Bench. Shuffle your deck afterward."
+ line "(You can't use this attack if your"
+ line "Bench is full.)"
+ done
MarowakKind: ; 5f3e9 (17:73e9)
- db TX_START,"Bonekeeper",TX_END
+ text "Bonekeeper"
+ done
Marowak1Description: ; 5f3f5 (17:73f5)
- db TX_START,"The bone it holds is its key weapon.\n"
- db "It throws the bone skillfully like\n"
- db "a boomerang to K.O. targets.",TX_END
+ text "The bone it holds is its key weapon."
+ line "It throws the bone skillfully like"
+ line "a boomerang to K.O. targets."
+ done
BoneAttackName: ; 5f45b (17:745b)
- db TX_START,"Bone Attack",TX_END
+ text "Bone Attack"
+ done
BoneAttackDescription: ; 5f468 (17:7468)
- db TX_START,"Flip a coin. If heads, the Defending\n"
- db "Pok`mon can't attack during your\n"
- db "opponent's next turn.",TX_END
+ text "Flip a coin. If heads, the Defending"
+ line "Pok`mon can't attack during your"
+ line "opponent's next turn."
+ done
WailName: ; 5f4c5 (17:74c5)
- db TX_START,"Wail",TX_END
+ text "Wail"
+ done
WailDescription: ; 5f4cb (17:74cb)
- db TX_START,"Each player fills his or her Bench\n"
- db "with Basic Pok`mon chosen at random\n"
- db "from his or her deck. If a player\n"
- db "has fewer Basic Pok`mon than that in\n"
- db "his or deck, he or she chooses all\n"
- db "of them. Each player shuffles his\n"
- db "or her deck afterward.",TX_END
+ text "Each player fills his or her Bench"
+ line "with Basic Pok`mon chosen at random"
+ line "from his or her deck. If a player"
+ line "has fewer Basic Pok`mon than that in"
+ line "his or deck, he or she chooses all"
+ line "of them. Each player shuffles his"
+ line "or her deck afterward."
+ done
Marowak2Description: ; 5f5b6 (17:75b6)
- db TX_START,"Small and weak, this Pok`mon is\n"
- db "adept with its bone club. It has\n"
- db "grown more vicious over the ages.",TX_END
+ text "Small and weak, this Pok`mon is"
+ line "adept with its bone club. It has"
+ line "grown more vicious over the ages."
+ done
HitmonleeName: ; 5f61a (17:761a)
- db TX_START,"Hitmonlee",TX_END
+ text "Hitmonlee"
+ done
StretchKickName: ; 5f625 (17:7625)
- db TX_START,"Stretch Kick",TX_END
+ text "Stretch Kick"
+ done
StretchKickDescription: ; 5f633 (17:7633)
- db TX_START,"If your opponent has any Benched\n"
- db "Pok`mon, choose 1 of them and this\n"
- db "attack does 20 damage to it.\n"
- db "(Don't apply Weakness and\n"
- db "Resistance for Benched Pok`mon.)",TX_END
+ text "If your opponent has any Benched"
+ line "Pok`mon, choose 1 of them and this"
+ line "attack does 20 damage to it."
+ line "(Don't apply Weakness and"
+ line "Resistance for Benched Pok`mon.)"
+ done
HighJumpKickName: ; 5f6d0 (17:76d0)
- db TX_START,"High Jump Kick",TX_END
+ text "High Jump Kick"
+ done
HitmonleeKind: ; 5f6e0 (17:76e0)
- db TX_START,"Kicking",TX_END
+ text "Kicking"
+ done
HitmonleeDescription: ; 5f6e9 (17:76e9)
- db TX_START,"When in a hurry, its legs lengthen\n"
- db "progressively. It runs smoothly with\n"
- db "extra long, loping strides.",TX_END
+ text "When in a hurry, its legs lengthen"
+ line "progressively. It runs smoothly with"
+ line "extra long, loping strides."
+ done
HitmonchanName: ; 5f74e (17:774e)
- db TX_START,"Hitmonchan",TX_END
+ text "Hitmonchan"
+ done
JabName: ; 5f75a (17:775a)
- db TX_START,"Jab",TX_END
+ text "Jab"
+ done
SpecialPunch: ; 5f75f (17:775f)
- db TX_START,"Special Punch",TX_END
+ text "Special Punch"
+ done
HitmonchanKind: ; 5f76e (17:776e)
- db TX_START,"Punching",TX_END
+ text "Punching"
+ done
HitmonchanDescription: ; 5f778 (17:7778)
- db TX_START,"While seeming to do nothing, it\n"
- db "fires punches in lightning-fast\n"
- db "volleys that are impossible to see.",TX_END
+ text "While seeming to do nothing, it"
+ line "fires punches in lightning-fast"
+ line "volleys that are impossible to see."
+ done
RhyhornName: ; 5f7dd (17:77dd)
- db TX_START,"Rhyhorn",TX_END
+ text "Rhyhorn"
+ done
LeerName: ; 5f7e6 (17:77e6)
- db TX_START,"Leer",TX_END
+ text "Leer"
+ done
LeerDescription: ; 5f7ec (17:77ec)
- db TX_START,"Flip a coin. If heads, the Defending\n"
- db "Pok`mon can't attack Rhyhorn during\n"
- db "your opponent's next turn.\n"
- db "(Benching or evolving either Pok`mon\n"
- db "ends this effect.)",TX_END
+ text "Flip a coin. If heads, the Defending"
+ line "Pok`mon can't attack Rhyhorn during"
+ line "your opponent's next turn."
+ line "(Benching or evolving either Pok`mon"
+ line "ends this effect.)"
+ done
RhyhornKind: ; 5f889 (17:7889)
- db TX_START,"Spike",TX_END
+ text "Spike"
+ done
RhyhornDescription: ; 5f890 (17:7890)
- db TX_START,"Its massive bones are 1,000 times\n"
- db "harder than human bones. It can\n"
- db "easily knock a trailer flying.",TX_END
+ text "Its massive bones are 1,000 times"
+ line "harder than human bones. It can"
+ line "easily knock a trailer flying."
+ done
RhydonName: ; 5f8f2 (17:78f2)
- db TX_START,"Rhydon",TX_END
+ text "Rhydon"
+ done
RamName: ; 5f8fa (17:78fa)
- db TX_START,"Ram",TX_END
+ text "Ram"
+ done
RamDescription: ; 5f8ff (17:78ff)
- db TX_START,"Rhydon does 20 damage to itself.\n"
- db "If your opponent has any Benched\n"
- db "Pok`mon, he or she chooses 1 of them\n"
- db "and switches it with the Defending\n"
- db "Pok`mon.(Do the damage before\n"
- db "switching the Pok`mon.",TX_END
+ text "Rhydon does 20 damage to itself."
+ line "If your opponent has any Benched"
+ line "Pok`mon, he or she chooses 1 of them"
+ line "and switches it with the Defending"
+ line "Pok`mon.(Do the damage before"
+ line "switching the Pok`mon."
+ done
RamDescriptionCont: ; 5f9bf (17:79bf)
- db TX_START,"Switch the Pok`mon even if Rhydon\n"
- db "is Knocked Out.)",TX_END
+ text "Switch the Pok`mon even if Rhydon"
+ line "is Knocked Out.)"
+ done
RhydonDescription: ; 5f9f3 (17:79f3)
- db TX_START,"Protected by an armor-like hide, it\n"
- db "is capable of living in molten lava\n"
- db "of 3600 degrees.",TX_END
+ text "Protected by an armor-like hide, it"
+ line "is capable of living in molten lava"
+ line "of 3600 degrees."
+ done
KabutoName: ; 5fa4d (17:7a4d)
- db TX_START,"Kabuto",TX_END
+ text "Kabuto"
+ done
KabutoArmorName: ; 5fa55 (17:7a55)
- db TX_START,"Kabuto Armor",TX_END
+ text "Kabuto Armor"
+ done
KabutoArmorDescription: ; 5fa63 (17:7a63)
- db TX_START,"Whenever an attack (even your own)\n"
- db "does damage to Kabuto (after\n"
- db "applying Weakness and Resistance),\n"
- db "that attack only does half the\n"
- db "damage to Kabuto (rounded down to\n"
- db "the nearest 10).",TX_END
+ text "Whenever an attack (even your own)"
+ line "does damage to Kabuto (after"
+ line "applying Weakness and Resistance),"
+ line "that attack only does half the"
+ line "damage to Kabuto (rounded down to"
+ line "the nearest 10)."
+ done
KabutoArmorDescriptionCont: ; 5fb19 (17:7b19)
- db TX_START,"(Any other effects of attacks still\n"
- db "happen.) This power stops working\n"
- db "while Kabuto is Asleep, Confused,\n"
- db "or Paralyzed.",TX_END
+ text "(Any other effects of attacks still"
+ line "happen.) This power stops working"
+ line "while Kabuto is Asleep, Confused,"
+ line "or Paralyzed."
+ done
KabutoDescription: ; 5fb90 (17:7b90)
- db TX_START,"A Pok`mon that was resurrected from\n"
- db "a fossil found in what was once the\n"
- db "ocean floor eons ago.",TX_END
+ text "A Pok`mon that was resurrected from"
+ line "a fossil found in what was once the"
+ line "ocean floor eons ago."
+ done
KabutopsName: ; 5fbef (17:7bef)
- db TX_START,"Kabutops",TX_END
+ text "Kabutops"
+ done
SharpSickleName: ; 5fbf9 (17:7bf9)
- db TX_START,"Sharp Sickle",TX_END
+ text "Sharp Sickle"
+ done
AbsorbName: ; 5fc07 (17:7c07)
- db TX_START,"Absorb",TX_END
+ text "Absorb"
+ done
AbsorbDescription: ; 5fc0f (17:7c0f)
- db TX_START,"Remove a number of damage counters\n"
- db "from Kabutops equal to half the\n"
- db "damage done to the Defending\n"
- db "Pok`mon (after applying Weakness\n"
- db "and Resistance)\n"
- db "(rounded up to the nearest 10).",TX_END
+ text "Remove a number of damage counters"
+ line "from Kabutops equal to half the"
+ line "damage done to the Defending"
+ line "Pok`mon (after applying Weakness"
+ line "and Resistance)"
+ line "(rounded up to the nearest 10)."
+ done
AbsorbDescriptionCont: ; 5fcc1 (17:7cc1)
- db TX_START,"If Kabutops has fewer damage\n"
- db "counters than that, remove all of\n"
- db "them.",TX_END
+ text "If Kabutops has fewer damage"
+ line "counters than that, remove all of"
+ line "them."
+ done
KabutopsDescription: ; 5fd07 (17:7d07)
- db TX_START,"Its sleek shape is perfect for\n"
- db "swimming. It slashes prey with its\n"
- db "claws and drains the body fluids.",TX_END
+ text "Its sleek shape is perfect for"
+ line "swimming. It slashes prey with its"
+ line "claws and drains the body fluids."
+ done
AerodactylName: ; 5fd6c (17:7d6c)
- db TX_START,"Aerodactyl",TX_END
+ text "Aerodactyl"
+ done
PrehistoricPowerName: ; 5fd78 (17:7d78)
- db TX_START,"Prehistoric Power",TX_END
+ text "Prehistoric Power"
+ done
PrehistoricPowerDescription: ; 5fd8b (17:7d8b)
- db TX_START,"No more Evolution cards can be\n"
- db "played. This power stops working\n"
- db "while Aerodactyl is Asleep,\n"
- db "Confused, or Paralyzed.",TX_END
+ text "No more Evolution cards can be"
+ line "played. This power stops working"
+ line "while Aerodactyl is Asleep,"
+ line "Confused, or Paralyzed."
+ done
AerodactylKind: ; 5fe00 (17:7e00)
- db TX_START,"Fossil",TX_END
+ text "Fossil"
+ done
AerodactylDescription: ; 5fe08 (17:7e08)
- db TX_START,"A ferocious prehistoric Pok`mon that\n"
- db "goes for the enemy's throat with its\n"
- db "serrated saw-like fangs.",TX_END
+ text "A ferocious prehistoric Pok`mon that"
+ line "goes for the enemy's throat with its"
+ line "serrated saw-like fangs."
+ done
AbraName: ; 5fe6c (17:7e6c)
- db TX_START,"Abra",TX_END
+ text "Abra"
+ done
AbraKind: ; 5fe72 (17:7e72)
- db TX_START,"Psi",TX_END
+ text "Psi"
+ done
AbraDescription: ; 5fe77 (17:7e77)
- db TX_START,"Using its ability to read minds, it\n"
- db "will identify impending danger and\n"
- db "teleport to safety.",TX_END
+ text "Using its ability to read minds, it"
+ line "will identify impending danger and"
+ line "teleport to safety."
+ done
KadabraName: ; 5fed3 (17:7ed3)
- db TX_START,"Kadabra",TX_END
+ text "Kadabra"
+ done
KadabrasRecoverDescription: ; 5fedc (17:7edc)
- db TX_START,"Discard 1 ",TX_PSYCHIC," Energy card attached to\n"
- db "Kadabra in order to use this attack.\n"
- db "Remove all damage counters from\n"
- db "Kadabra.",TX_END
+ text "Discard 1 ",TX_PSYCHIC," Energy card attached to"
+ line "Kadabra in order to use this attack."
+ line "Remove all damage counters from"
+ line "Kadabra."
+ done
SuperPsiName: ; 5ff50 (17:7f50)
- db TX_START,"Super Psy",TX_END
+ text "Super Psy"
+ done
KadabraDescription: ; 5ff5b (17:7f5b)
- db TX_START,"It emits special alpha waves from\n"
- db "its body that induce headaches even\n"
- db "to those just nearby.",TX_END
+ text "It emits special alpha waves from"
+ line "its body that induce headaches even"
+ line "to those just nearby."
+ done
AlakazamName: ; 5ffb8 (17:7fb8)
- db TX_START,"Alakazam",TX_END
+ text "Alakazam"
+ done
DamageSwapName: ; 5ffc2 (17:7fc2)
- db TX_START,"Damage Swap",TX_END
+ text "Damage Swap"
+ done
diff --git a/src/text/textc.asm b/src/text/textc.asm
index 7887c18..37622bb 100644
--- a/src/text/textc.asm
+++ b/src/text/textc.asm
@@ -1,1147 +1,1413 @@
DamageSwapDescription: ; 60000 (18:4000)
- db TX_START,"As often as you like during your\n"
- db "turn (before your attack), you may\n"
- db "move 1 damage counter from 1 of your\n"
- db "Pok`mon to another as long as you\n"
- db "don't Knock Out that Pok`mon.\n"
- db "This power can't be used if Alakazam\n"
- db "is Asleep, Confused, or Paralyzed.",TX_END
+ text "As often as you like during your"
+ line "turn (before your attack), you may"
+ line "move 1 damage counter from 1 of your"
+ line "Pok`mon to another as long as you"
+ line "don't Knock Out that Pok`mon."
+ line "This power can't be used if Alakazam"
+ line "is Asleep, Confused, or Paralyzed."
+ done
AlakazamDescription: ; 600f2 (18:40f2)
- db TX_START,"Its brain can outperform a\n"
- db "supercomputer. Its intelligence\n"
- db "quotient is said to be 5000.",TX_END
+ text "Its brain can outperform a"
+ line "supercomputer. Its intelligence"
+ line "quotient is said to be 5000."
+ done
SlowpokeName: ; 6014b (18:414b)
- db TX_START,"Slowpoke",TX_END
+ text "Slowpoke"
+ done
SlowpokesAmnesiaDescription: ; 60155 (18:4155)
- db TX_START,"Choose 1 of the Defending Pok`mon's\n"
- db "attacks. That Pok`mon can't use\n"
- db "that attack during your opponent's\n"
- db "next turn.",TX_END
+ text "Choose 1 of the Defending Pok`mon's"
+ line "attacks. That Pok`mon can't use"
+ line "that attack during your opponent's"
+ line "next turn."
+ done
SlowpokeKind: ; 601c8 (18:41c8)
- db TX_START,"Dopey",TX_END
+ text "Dopey"
+ done
Slowpoke1Description: ; 601cf (18:41cf)
- db TX_START,"Incredibly slow and dopey. It takes\n"
- db "5 seconds for it to feel pain when\n"
- db "under attack.",TX_END
+ text "Incredibly slow and dopey. It takes"
+ line "5 seconds for it to feel pain when"
+ line "under attack."
+ done
SpacingOutName: ; 60225 (18:4225)
- db TX_START,"Spacing Out",TX_END
+ text "Spacing Out"
+ done
SpacingOutDescription: ; 60232 (18:4232)
- db TX_START,"Flip a coin. If heads, remove a\n"
- db "damage counter from Slowpoke. This\n"
- db "attack can't be used if Slowpoke\n"
- db "has no damage counters on it.",TX_END
+ text "Flip a coin. If heads, remove a"
+ line "damage counter from Slowpoke. This"
+ line "attack can't be used if Slowpoke"
+ line "has no damage counters on it."
+ done
ScavengeName: ; 602b5 (18:42b5)
- db TX_START,"Scavenge",TX_END
+ text "Scavenge"
+ done
ScavengeDescription: ; 602bf (18:42bf)
- db TX_START,"Discard 1 ",TX_PSYCHIC," Energy card attached\n"
- db "to Slowpoke in order to use this\n"
- db "attack. Put a Trainer card from your\n"
- db "discard pile into your hand.",TX_END
+ text "Discard 1 ",TX_PSYCHIC," Energy card attached"
+ line "to Slowpoke in order to use this"
+ line "attack. Put a Trainer card from your"
+ line "discard pile into your hand."
+ done
SlowbroName: ; 60345 (18:4345)
- db TX_START,"Slowbro",TX_END
+ text "Slowbro"
+ done
StrangeBehaviorName: ; 6034e (18:434e)
- db TX_START,"Strange Behavior",TX_END
+ text "Strange Behavior"
+ done
StrangeBehaviorDescription: ; 60360 (18:4360)
- db TX_START,"As often as you like during your\n"
- db "turn (before your attack), you may\n"
- db "move 1 damage counter from 1 of your\n"
- db "Pok`mon to Slowbro as long as you\n"
- db "don't Knock Out Slowbro. This power\n"
- db "can't be used if Slowbro is Asleep,\n"
- db "Confused, or Paralyzed.",TX_END
+ text "As often as you like during your"
+ line "turn (before your attack), you may"
+ line "move 1 damage counter from 1 of your"
+ line "Pok`mon to Slowbro as long as you"
+ line "don't Knock Out Slowbro. This power"
+ line "can't be used if Slowbro is Asleep,"
+ line "Confused, or Paralyzed."
+ done
SlowbroKind: ; 6044c (18:444c)
- db TX_START,"Hermitcrab",TX_END
+ text "Hermitcrab"
+ done
SlowbroDescription: ; 60458 (18:4458)
- db TX_START,"The Shellder that is latched onto\n"
- db "Slowpoke's tail is said to feed on\n"
- db "the host's left-over scraps.",TX_END
+ text "The Shellder that is latched onto"
+ line "Slowpoke's tail is said to feed on"
+ line "the host's left-over scraps."
+ done
GastlyName: ; 604bb (18:44bb)
- db TX_START,"Gastly",TX_END
+ text "Gastly"
+ done
SleepingGasName: ; 604c3 (18:44c3)
- db TX_START,"Sleeping Gas",TX_END
+ text "Sleeping Gas"
+ done
MayInflictSleepDescription: ; 604d1 (18:44d1)
- db TX_START,"Flip a coin. If heads, the Defending\n"
- db "Pok`mon is now Asleep.",TX_END
+ text "Flip a coin. If heads, the Defending"
+ line "Pok`mon is now Asleep."
+ done
DestinyBondName: ; 6050e (18:450e)
- db TX_START,"Destiny Bond",TX_END
+ text "Destiny Bond"
+ done
DestinyBondDescription: ; 6051c (18:451c)
- db TX_START,"Discard 1 ",TX_PSYCHIC," Energy card attached to\n"
- db "Gastly in order to use this attack.\n"
- db "If a Pok`mon Knocks Out Gastly\n"
- db "during your opponent's next turn,\n"
- db "Knock Out that Pok`mon.",TX_END
+ text "Discard 1 ",TX_PSYCHIC," Energy card attached to"
+ line "Gastly in order to use this attack."
+ line "If a Pok`mon Knocks Out Gastly"
+ line "during your opponent's next turn,"
+ line "Knock Out that Pok`mon."
+ done
GastlyKind: ; 605bf (18:45bf)
- db TX_START,"Gas",TX_END
+ text "Gas"
+ done
Gastly1Description: ; 605c4 (18:45c4)
- db TX_START,"Almost invisible, this gaseous\n"
- db "Pok`mon cloaks the target and puts\n"
- db "it to sleep without notice.",TX_END
+ text "Almost invisible, this gaseous"
+ line "Pok`mon cloaks the target and puts"
+ line "it to sleep without notice."
+ done
LickName: ; 60623 (18:4623)
- db TX_START,"Lick",TX_END
+ text "Lick"
+ done
EnergyConversionName: ; 60629 (18:4629)
- db TX_START,"Energy Conversion",TX_END
+ text "Energy Conversion"
+ done
EnergyConversionDescription: ; 6063c (18:463c)
- db TX_START,"Put up to 2 Energy cards from your\n"
- db "discard pile into your hand. Gastly\n"
- db "does 10 damage to itself.",TX_END
+ text "Put up to 2 Energy cards from your"
+ line "discard pile into your hand. Gastly"
+ line "does 10 damage to itself."
+ done
Gastly2Description: ; 6069e (18:469e)
- db TX_START,"A mysterious Pok`mon. Some say it is\n"
- db "a lifeform from another dimension,\n"
- db "while others believe it is formed\n"
- db "from smog.",TX_END
+ text "A mysterious Pok`mon. Some say it is"
+ line "a lifeform from another dimension,"
+ line "while others believe it is formed"
+ line "from smog."
+ done
HaunterName: ; 60714 (18:4714)
- db TX_START,"Haunter",TX_END
+ text "Haunter"
+ done
TransparencyName: ; 6071d (18:471d)
- db TX_START,"Transparency",TX_END
+ text "Transparency"
+ done
TransparencyDescription: ; 6072b (18:472b)
- db TX_START,"Whenever an attack does anything to\n"
- db "Haunter, flip a coin. If heads,\n"
- db "prevent all effects of that attack,\n"
- db "including damage, done to Haunter.\n"
- db "This power stops working while\n"
- db "Haunter is Asleep, Confused, or\n"
- db "Paralyzed.",TX_END
+ text "Whenever an attack does anything to"
+ line "Haunter, flip a coin. If heads,"
+ line "prevent all effects of that attack,"
+ line "including damage, done to Haunter."
+ line "This power stops working while"
+ line "Haunter is Asleep, Confused, or"
+ line "Paralyzed."
+ done
NightmareName: ; 60801 (18:4801)
- db TX_START,"Nightmare",TX_END
+ text "Nightmare"
+ done
HaunterDescription: ; 6080c (18:480c)
- db TX_START,"Because of its ability to slip\n"
- db "through block walls, it is said to\n"
- db "be from another dimension.",TX_END
+ text "Because of its ability to slip"
+ line "through block walls, it is said to"
+ line "be from another dimension."
+ done
DreamEaterName: ; 6086a (18:486a)
- db TX_START,"Dream Eater",TX_END
+ text "Dream Eater"
+ done
DreamEaterDescription: ; 60877 (18:4877)
- db TX_START,"You can't use this attack unless\n"
- db "the Defending Pok`mon is Asleep.",TX_END
+ text "You can't use this attack unless"
+ line "the Defending Pok`mon is Asleep."
+ done
GengarName: ; 608ba (18:48ba)
- db TX_START,"Gengar",TX_END
+ text "Gengar"
+ done
CurseName: ; 608c2 (18:48c2)
- db TX_START,"Curse",TX_END
+ text "Curse"
+ done
CurseDescription: ; 608c9 (18:48c9)
- db TX_START,"Once during your turn (before your\n"
- db "attack), you may move 1 damage\n"
- db "counter from 1 of your opponent's\n"
- db "Pok`mon to another (even if it would\n"
- db "Knock Out the other Pok`mon).\n"
- db "This power can't be used if Gengar\n"
- db "is Asleep, Confused, or Paralyzed.",TX_END
+ text "Once during your turn (before your"
+ line "attack), you may move 1 damage"
+ line "counter from 1 of your opponent's"
+ line "Pok`mon to another (even if it would"
+ line "Knock Out the other Pok`mon)."
+ line "This power can't be used if Gengar"
+ line "is Asleep, Confused, or Paralyzed."
+ done
DarkMindName: ; 609b7 (18:49b7)
- db TX_START,"Dark Mind",TX_END
+ text "Dark Mind"
+ done
DarkMindDescription: ; 609c2 (18:49c2)
- db TX_START,"If your opponent has any Benched\n"
- db "Pok`mon, choose 1 of them and this\n"
- db "attack does 10 damage to it.\n"
- db "(Don't apply Weakness and Resistance\n"
- db "for Benched Pok`mon.)",TX_END
+ text "If your opponent has any Benched"
+ line "Pok`mon, choose 1 of them and this"
+ line "attack does 10 damage to it."
+ line "(Don't apply Weakness and Resistance"
+ line "for Benched Pok`mon.)"
+ done
GengarKind: ; 60a5f (18:4a5f)
- db TX_START,"Shadow",TX_END
+ text "Shadow"
+ done
GengarDescription: ; 60a67 (18:4a67)
- db TX_START,"Under a full moon, this Pok`mon\n"
- db "likes to mimic the shadows of people\n"
- db "and laugh at their fright.",TX_END
+ text "Under a full moon, this Pok`mon"
+ line "likes to mimic the shadows of people"
+ line "and laugh at their fright."
+ done
DrowzeeName: ; 60ac8 (18:4ac8)
- db TX_START,"Drowzee",TX_END
+ text "Drowzee"
+ done
PoundName: ; 60ad1 (18:4ad1)
- db TX_START,"Pound",TX_END
+ text "Pound"
+ done
DrowzeeDescription: ; 60ad8 (18:4ad8)
- db TX_START,"Puts enemies to sleep, then eats\n"
- db "their dreams. Occasionally gets sick\n"
- db "from eating bad dreams.",TX_END
+ text "Puts enemies to sleep, then eats"
+ line "their dreams. Occasionally gets sick"
+ line "from eating bad dreams."
+ done
HypnoName: ; 60b37 (18:4b37)
- db TX_START,"Hypno",TX_END
+ text "Hypno"
+ done
ProphecyName: ; 60b3e (18:4b3e)
- db TX_START,"Prophecy",TX_END
+ text "Prophecy"
+ done
ProphecyDescription: ; 60b48 (18:4b48)
- db TX_START,"Look at up to 3 cards from the top\n"
- db "of either player's deck and\n"
- db "rearrange them as you like.",TX_END
+ text "Look at up to 3 cards from the top"
+ line "of either player's deck and"
+ line "rearrange them as you like."
+ done
HypnoDescription: ; 60ba4 (18:4ba4)
- db TX_START,"When it locks eyes with an enemy,\n"
- db "it will use a mix of psi moves such\n"
- db "as Hypnosis and Confusion.",TX_END
+ text "When it locks eyes with an enemy,"
+ line "it will use a mix of psi moves such"
+ line "as Hypnosis and Confusion."
+ done
MrMimeName: ; 60c06 (18:4c06)
- db TX_START,"Mr. Mime",TX_END
+ text "Mr. Mime"
+ done
InvisibleWallName: ; 60c10 (18:4c10)
- db TX_START,"Invisible Wall",TX_END
+ text "Invisible Wall"
+ done
InvisibleWallDescription: ; 60c20 (18:4c20)
- db TX_START,"Whenever an attack (including your\n"
- db "own) does 30 or more damage to Mr.\n"
- db "Mime (after applying Weakness and\n"
- db "Resistance), prevent that damage.\n"
- db "(Any other effects of attacks still\n"
- db "happen.)",TX_END
+ text "Whenever an attack (including your"
+ line "own) does 30 or more damage to Mr."
+ line "Mime (after applying Weakness and"
+ line "Resistance), prevent that damage."
+ line "(Any other effects of attacks still"
+ line "happen.)"
+ done
InvisibleWallDescriptionCont: ; 60cd8 (18:4cd8)
- db TX_START,"This power can't be used if Mr. Mime\n"
- db "is Asleep, Confused, or Paralyzed.",TX_END
+ text "This power can't be used if Mr. Mime"
+ line "is Asleep, Confused, or Paralyzed."
+ done
MeditateName: ; 60d21 (18:4d21)
- db TX_START,"Meditate",TX_END
+ text "Meditate"
+ done
MrMimesMeditateDescription: ; 60d2b (18:4d2b)
- db TX_START,"Does 10 damage plus 10 more damage\n"
- db "for each damage counter on the\n"
- db "Defending Pok`mon.",TX_END
+ text "Does 10 damage plus 10 more damage"
+ line "for each damage counter on the"
+ line "Defending Pok`mon."
+ done
MrMimeKindOrBarrierName: ; 60d81 (18:4d81)
- db TX_START,"Barrier",TX_END
+ text "Barrier"
+ done
MrMimeDescription: ; 60d8a (18:4d8a)
- db TX_START,"If interrupted while miming, it will\n"
- db "slap around the enemy with its broad\n"
- db "hands.",TX_END
+ text "If interrupted while miming, it will"
+ line "slap around the enemy with its broad"
+ line "hands."
+ done
JynxName: ; 60ddc (18:4ddc)
- db TX_START,"Jynx",TX_END
+ text "Jynx"
+ done
DoubleAttackX10Description: ; 60de2 (18:4de2)
- db TX_START,"Flip 2 coins. This attack does 10\n"
- db "damage times the number of heads.",TX_END
+ text "Flip 2 coins. This attack does 10"
+ line "damage times the number of heads."
+ done
JynxsMeditateDescription: ; 60e27 (18:4e27)
- db TX_START,"Does 20 damage plus 10 more damage\n"
- db "for each damage counter on the\n"
- db "Defending Pok`mon.",TX_END
+ text "Does 20 damage plus 10 more damage"
+ line "for each damage counter on the"
+ line "Defending Pok`mon."
+ done
JynxKind: ; 60e7d (18:4e7d)
- db TX_START,"Human Shape",TX_END
+ text "Human Shape"
+ done
JynxDescription: ; 60e8a (18:4e8a)
- db TX_START,"Merely by meditating, the Pok`mon\n"
- db "launches a powerful psychic energy\n"
- db "attack.",TX_END
+ text "Merely by meditating, the Pok`mon"
+ line "launches a powerful psychic energy"
+ line "attack."
+ done
MewtwoName: ; 60ed8 (18:4ed8)
- db TX_START,"Mewtwo",TX_END
+ text "Mewtwo"
+ done
PsychicName: ; 60ee0 (18:4ee0)
- db TX_START,"Psychic",TX_END
+ text "Psychic"
+ done
PsychicDescription: ; 60ee9 (18:4ee9)
- db TX_START,"Does 10 damage plus 10 more damage\n"
- db "for each Energy card attached to the\n"
- db "Defending Pok`mon.",TX_END
+ text "Does 10 damage plus 10 more damage"
+ line "for each Energy card attached to the"
+ line "Defending Pok`mon."
+ done
BarrierDescription: ; 60f45 (18:4f45)
- db TX_START,"Discard 1 ",TX_PSYCHIC," Energy card attached to\n"
- db "Mewtwo in order to use this attack.\n"
- db "During your opponent's next turn,\n"
- db "prevent all effects of attacks,\n"
- db "including damage, done to Mewtwo.",TX_END
+ text "Discard 1 ",TX_PSYCHIC," Energy card attached to"
+ line "Mewtwo in order to use this attack."
+ line "During your opponent's next turn,"
+ line "prevent all effects of attacks,"
+ line "including damage, done to Mewtwo."
+ done
MewtwoKind: ; 60ff3 (18:4ff3)
- db TX_START,"Genetic",TX_END
+ text "Genetic"
+ done
Mewtwo1Description: ; 60ffc (18:4ffc)
- db TX_START,"A scientist created this Pok`mon\n"
- db "after years of horrific\n"
- db "gene-splicing and DNA engineering\n"
- db "experiments.",TX_END
+ text "A scientist created this Pok`mon"
+ line "after years of horrific"
+ line "gene-splicing and DNA engineering"
+ line "experiments."
+ done
EnergyAbsorptionName: ; 61065 (18:5065)
- db TX_START,"Energy Absorption",TX_END
+ text "Energy Absorption"
+ done
EnergyAbsorptionDescription: ; 61078 (18:5078)
- db TX_START,"Choose up to 2 Energy cards from\n"
- db "your discard pile and attach them\n"
- db "to Mewtwo.",TX_END
+ text "Choose up to 2 Energy cards from"
+ line "your discard pile and attach them"
+ line "to Mewtwo."
+ done
PsyburnName: ; 610c7 (18:50c7)
- db TX_START,"Psyburn",TX_END
+ text "Psyburn"
+ done
Mewtwo2Description: ; 610d0 (18:50d0)
- db TX_START,"Years of genetic experiments\n"
- db "resulted in the creation of this\n"
- db "never-before-seen violent Pok`mon.",TX_END
+ text "Years of genetic experiments"
+ line "resulted in the creation of this"
+ line "never-before-seen violent Pok`mon."
+ done
MewName: ; 61132 (18:5132)
- db TX_START,"Mew",TX_END
+ text "Mew"
+ done
NeutralizingShieldName: ; 61137 (18:5137)
- db TX_START,"Neutralizing Shield",TX_END
+ text "Neutralizing Shield"
+ done
NeutralizingShieldDescription: ; 6114c (18:514c)
- db TX_START,"Prevent all effects of attacks,\n"
- db "including damage, done to Mew by\n"
- db "evolved Pok`mon (excluding your\n"
- db "own). This power stops working while\n"
- db "Mew is Asleep, Confused, or\n"
- db "Paralyzed.",TX_END
+ text "Prevent all effects of attacks,"
+ line "including damage, done to Mew by"
+ line "evolved Pok`mon (excluding your"
+ line "own). This power stops working while"
+ line "Mew is Asleep, Confused, or"
+ line "Paralyzed."
+ done
MewKind: ; 611fa (18:51fa)
- db TX_START,"New Species",TX_END
+ text "New Species"
+ done
Mew1Description: ; 61207 (18:5207)
- db TX_START,"So rare that it is still said to be\n"
- db "a mirage by many experts. Only a few\n"
- db "people have seen it worldwide.",TX_END
+ text "So rare that it is still said to be"
+ line "a mirage by many experts. Only a few"
+ line "people have seen it worldwide."
+ done
MysteryAttackName: ; 61270 (18:5270)
- db TX_START,"Mystery Attack",TX_END
+ text "Mystery Attack"
+ done
MysteryAttackDescription: ; 61280 (18:5280)
- db TX_START,"Does a random amount of damage to\n"
- db "the Defending Pok`mon and may cause\n"
- db "a random effect to the Defending\n"
- db "Pok`mon.",TX_END
+ text "Does a random amount of damage to"
+ line "the Defending Pok`mon and may cause"
+ line "a random effect to the Defending"
+ line "Pok`mon."
+ done
Mew2Description: ; 612f1 (18:52f1)
- db TX_START,"When viewed through a microscope, \n"
- db "this Pok`mon's short, fine, delicate\n"
- db "hair can be seen.",TX_END
+ text "When viewed through a microscope, "
+ line "this Pok`mon's short, fine, delicate"
+ line "hair can be seen."
+ done
PsywaveName: ; 6134c (18:534c)
- db TX_START,"Psywave",TX_END
+ text "Psywave"
+ done
PsywaveDescription: ; 61355 (18:5355)
- db TX_START,"Does 10 damage times the number of\n"
- db "Energy cards attached to the\n"
- db "Defending Pok`mon.",TX_END
+ text "Does 10 damage times the number of"
+ line "Energy cards attached to the"
+ line "Defending Pok`mon."
+ done
DevolutionBeamName: ; 613a9 (18:53a9)
- db TX_START,"Devolution Beam",TX_END
+ text "Devolution Beam"
+ done
DevolutionBeamDescription: ; 613ba (18:53ba)
- db TX_START,"Choose an evolved Pok`mon (Your\n"
- db "own or your opponent's). Return\n"
- db "the highest stage evolution card\n"
- db "on that Pok`mon to Its player's\n"
- db "hand.",TX_END
+ text "Choose an evolved Pok`mon (Your"
+ line "own or your opponent's). Return"
+ line "the highest stage evolution card"
+ line "on that Pok`mon to Its player's"
+ line "hand."
+ done
PidgeyName: ; 61442 (18:5442)
- db TX_START,"Pidgey",TX_END
+ text "Pidgey"
+ done
PidgeyKind: ; 6144a (18:544a)
- db TX_START,"Tiny Bird",TX_END
+ text "Tiny Bird"
+ done
PidgeyDescription: ; 61455 (18:5455)
- db TX_START,"A common sight in forests and woods.\n"
- db "It flaps its wings at ground level\n"
- db "to kick up blinding sand.",TX_END
+ text "A common sight in forests and woods."
+ line "It flaps its wings at ground level"
+ line "to kick up blinding sand."
+ done
PidgeottoName: ; 614b8 (18:54b8)
- db TX_START,"Pidgeotto",TX_END
+ text "Pidgeotto"
+ done
MirrorMoveName: ; 614c3 (18:54c3)
- db TX_START,"Mirror Move",TX_END
+ text "Mirror Move"
+ done
PidgeottosMirrorMoveDescription: ; 614d0 (18:54d0)
- db TX_START,"If Pidgeotto was attacked last turn,\n"
- db "do the final result of that attack\n"
- db "on Pidgeotto to the Defending\n"
- db "Pok`mon.",TX_END
+ text "If Pidgeotto was attacked last turn,"
+ line "do the final result of that attack"
+ line "on Pidgeotto to the Defending"
+ line "Pok`mon."
+ done
PidgeottoKind: ; 61540 (18:5540)
- db TX_START,"Bird",TX_END
+ text "Bird"
+ done
PidgeottoDescription: ; 61546 (18:5546)
- db TX_START,"Very protective of its sprawling\n"
- db "territory, this Pok`mon will\n"
- db "fiercely peck at any intruder.",TX_END
+ text "Very protective of its sprawling"
+ line "territory, this Pok`mon will"
+ line "fiercely peck at any intruder."
+ done
PidgeotName: ; 615a4 (18:55a4)
- db TX_START,"Pidgeot",TX_END
+ text "Pidgeot"
+ done
SlicingWindName: ; 615ad (18:55ad)
- db TX_START,"Slicing Wind",TX_END
+ text "Slicing Wind"
+ done
SlicingWildDescription: ; 615bb (18:55bb)
- db TX_START,"Does 30 damage to 1 of your\n"
- db "opponent's Pok`mon chosen at random.\n"
- db "Don't apply Weakness and Resistance\n"
- db "for this attack. (Any other effects\n"
- db "that would happen after applying\n"
- db "Weakness and Resistance still\n"
- db "happen.)",TX_END
+ text "Does 30 damage to 1 of your"
+ line "opponent's Pok`mon chosen at random."
+ line "Don't apply Weakness and Resistance"
+ line "for this attack. (Any other effects"
+ line "that would happen after applying"
+ line "Weakness and Resistance still"
+ line "happen.)"
+ done
GaleName: ; 6168d (18:568d)
- db TX_START,"Gale",TX_END
+ text "Gale"
+ done
GaleDescription: ; 61693 (18:5693)
- db TX_START,"Switch Pidgeot with 1 of your\n"
- db "Benched Pok`mon chosen at random.\n"
- db "If your opponent has any Benched\n"
- db "Pok`mon, switch the Defending\n"
- db "Pok`mon with 1 of them chosen at\n"
- db "random. (Do the damage before\n"
- db "switching the Pok`mon.)",TX_END
+ text "Switch Pidgeot with 1 of your"
+ line "Benched Pok`mon chosen at random."
+ line "If your opponent has any Benched"
+ line "Pok`mon, switch the Defending"
+ line "Pok`mon with 1 of them chosen at"
+ line "random. (Do the damage before"
+ line "switching the Pok`mon.)"
+ done
Pidgeot1Description: ; 6176a (18:576a)
- db TX_START,"This Pok`mon flies at Mach 2 speed,\n"
- db "seeking prey. Its large talons are\n"
- db "feared as wicked weapons.",TX_END
+ text "This Pok`mon flies at Mach 2 speed,"
+ line "seeking prey. Its large talons are"
+ line "feared as wicked weapons."
+ done
HurricaneName: ; 617cc (18:57cc)
- db TX_START,"Hurricane",TX_END
+ text "Hurricane"
+ done
HurricaneDescription: ; 617d7 (18:57d7)
- db TX_START,"Unless this attack Knocks Out the\n"
- db "Defending Pok`mon, return the\n"
- db "Defending Pok`mon and all cards\n"
- db "attached to it to your opponent's\n"
- db "hand.",TX_END
+ text "Unless this attack Knocks Out the"
+ line "Defending Pok`mon, return the"
+ line "Defending Pok`mon and all cards"
+ line "attached to it to your opponent's"
+ line "hand."
+ done
Pidgeot2Description: ; 61860 (18:5860)
- db TX_START,"When hunting, it skims the surface\n"
- db "of water at high speed to pick off\n"
- db "unwary prey such as Magikarp.",TX_END
+ text "When hunting, it skims the surface"
+ line "of water at high speed to pick off"
+ line "unwary prey such as Magikarp."
+ done
RattataName: ; 618c5 (18:58c5)
- db TX_START,"Rattata",TX_END
+ text "Rattata"
+ done
RattataKind: ; 618ce (18:58ce)
- db TX_START,"Rat",TX_END
+ text "Rat"
+ done
RattataDescription: ; 618d3 (18:58d3)
- db TX_START,"Bites anything when it attacks.\n"
- db "Small and very quick, it is a common\n"
- db "sight in many places.",TX_END
+ text "Bites anything when it attacks."
+ line "Small and very quick, it is a common"
+ line "sight in many places."
+ done
RaticateName: ; 6192f (18:592f)
- db TX_START,"Raticate",TX_END
+ text "Raticate"
+ done
SuperFangName: ; 61939 (18:5939)
- db TX_START,"Super Fang",TX_END
+ text "Super Fang"
+ done
SuperFangDescription: ; 61945 (18:5945)
- db TX_START,"Does damage to the Defending Pok`mon\n"
- db "equal to half the Defending\n"
- db "Pok`mon's remaining HP (rounded up\n"
- db "to the nearest 10).",TX_END
+ text "Does damage to the Defending Pok`mon"
+ line "equal to half the Defending"
+ line "Pok`mon's remaining HP (rounded up"
+ line "to the nearest 10)."
+ done
RaticateDescription: ; 619be (18:59be)
- db TX_START,"It uses its whiskers to maintain its\n"
- db "balance. It seems to slow down if\n"
- db "they are cut off.",TX_END
+ text "It uses its whiskers to maintain its"
+ line "balance. It seems to slow down if"
+ line "they are cut off."
+ done
SpearowName: ; 61a18 (18:5a18)
- db TX_START,"Spearow",TX_END
+ text "Spearow"
+ done
PeckName: ; 61a21 (18:5a21)
- db TX_START,"Peck",TX_END
+ text "Peck"
+ done
SpearowsMirrorMoveDescription: ; 61a27 (18:5a27)
- db TX_START,"If Spearow was attacked last turn,\n"
- db "do the final result of that attack\n"
- db "on Spearow to the Defending Pok`mon.",TX_END
+ text "If Spearow was attacked last turn,"
+ line "do the final result of that attack"
+ line "on Spearow to the Defending Pok`mon."
+ done
SpearowDescription: ; 61a93 (18:5a93)
- db TX_START,"Eats bugs in grassy areas. It has to\n"
- db "flap its short wings at high speed\n"
- db "to stay airborne.",TX_END
+ text "Eats bugs in grassy areas. It has to"
+ line "flap its short wings at high speed"
+ line "to stay airborne."
+ done
FearowName: ; 61aee (18:5aee)
- db TX_START,"Fearow",TX_END
+ text "Fearow"
+ done
FearowsAgilityDescription: ; 61af6 (18:5af6)
- db TX_START,"Flip a coin. If heads, during your\n"
- db "opponent's next turn, prevent all\n"
- db "effects of attacks, including\n"
- db "damage, done to Fearow.",TX_END
+ text "Flip a coin. If heads, during your"
+ line "opponent's next turn, prevent all"
+ line "effects of attacks, including"
+ line "damage, done to Fearow."
+ done
DrillPeckName: ; 61b72 (18:5b72)
- db TX_START,"Drill Peck",TX_END
+ text "Drill Peck"
+ done
FearowKind: ; 61b7e (18:5b7e)
- db TX_START,"Beak",TX_END
+ text "Beak"
+ done
FearowDescription: ; 61b84 (18:5b84)
- db TX_START,"With its huge and magnificent wings,\n"
- db "it can keep aloft without ever\n"
- db "having to land for rest.",TX_END
+ text "With its huge and magnificent wings,"
+ line "it can keep aloft without ever"
+ line "having to land for rest."
+ done
ClefairyName: ; 61be2 (18:5be2)
- db TX_START,"Clefairy",TX_END
+ text "Clefairy"
+ done
SingName: ; 61bec (18:5bec)
- db TX_START,"Sing",TX_END
+ text "Sing"
+ done
MetronomeName: ; 61bf2 (18:5bf2)
- db TX_START,"Metronome",TX_END
+ text "Metronome"
+ done
ClefairysMetronomeDescription: ; 61bfd (18:5bfd)
- db TX_START,"Choose 1 of the Defending Pok`mon's\n"
- db "attacks. Metronome copies that\n"
- db "attack except for its Energy costs.\n"
- db "(No matter what type the Defending\n"
- db "Pokemon is, Clefairy's type is\n"
- db "still Colorless.)",TX_END
+ text "Choose 1 of the Defending Pok`mon's"
+ line "attacks. Metronome copies that"
+ line "attack except for its Energy costs."
+ line "(No matter what type the Defending"
+ line "Pokemon is, Clefairy's type is"
+ line "still Colorless.)"
+ done
ClefairyKind: ; 61cb9 (18:5cb9)
- db TX_START,"Fairy",TX_END
+ text "Fairy"
+ done
ClefairyDescription: ; 61cc0 (18:5cc0)
- db TX_START,"Its magical and cute appeal has many\n"
- db "admirers. It is rare and found only\n"
- db "in certain areas.",TX_END
+ text "Its magical and cute appeal has many"
+ line "admirers. It is rare and found only"
+ line "in certain areas."
+ done
ClefableName: ; 61d1c (18:5d1c)
- db TX_START,"Clefable",TX_END
+ text "Clefable"
+ done
ClefablesMetronomeDescription: ; 61d26 (18:5d26)
- db TX_START,"Choose 1 of the Defending Pok`mon's\n"
- db "attacks. Metronome copies that\n"
- db "attack except for its Energy costs.\n"
- db "(No matter what type the Defending\n"
- db "Pok`mon is, Clefable's type is\n"
- db "still Colorless.)",TX_END
+ text "Choose 1 of the Defending Pok`mon's"
+ line "attacks. Metronome copies that"
+ line "attack except for its Energy costs."
+ line "(No matter what type the Defending"
+ line "Pok`mon is, Clefable's type is"
+ line "still Colorless.)"
+ done
ClefablesMinimizeDescription: ; 61de2 (18:5de2)
- db TX_START,"All damage done by attacks to\n"
- db "Clefable during your opponent's next\n"
- db "turn is reduced by 20 (after\n"
- db "applying Weakness and Resistance).",TX_END
+ text "All damage done by attacks to"
+ line "Clefable during your opponent's next"
+ line "turn is reduced by 20 (after"
+ line "applying Weakness and Resistance)."
+ done
ClefableDescription: ; 61e66 (18:5e66)
- db TX_START,"A timid Fairy Pok`mon that is rarely\n"
- db "seen. It will run and hide the\n"
- db "moment it senses people.",TX_END
+ text "A timid Fairy Pok`mon that is rarely"
+ line "seen. It will run and hide the"
+ line "moment it senses people."
+ done
JigglypuffName: ; 61ec4 (18:5ec4)
- db TX_START,"Jigglypuff",TX_END
+ text "Jigglypuff"
+ done
FirstAidName: ; 61ed0 (18:5ed0)
- db TX_START,"First Aid",TX_END
+ text "First Aid"
+ done
FirstAidDescription: ; 61edb (18:5edb)
- db TX_START,"Remove 1 damage counter from\n"
- db "Jigglypuff.",TX_END
+ text "Remove 1 damage counter from"
+ line "Jigglypuff."
+ done
DoubleEdgeName: ; 61f05 (18:5f05)
- db TX_START,"Double-edge",TX_END
+ text "Double-edge"
+ done
JigglypuffsDoubleEdgeDescription: ; 61f12 (18:5f12)
- db TX_START,"Jigglypuff does 20 damage to itself.",TX_END
+ text "Jigglypuff does 20 damage to itself."
+ done
JigglypuffKind: ; 61f38 (18:5f38)
- db TX_START,"Balloon",TX_END
+ text "Balloon"
+ done
Jigglypuff1Description: ; 61f41 (18:5f41)
- db TX_START,"When its huge eyes light up, it\n"
- db "sings a mysteriously soothing\n"
- db "melody that lulls its enemies to\n"
- db "sleep.",TX_END
+ text "When its huge eyes light up, it"
+ line "sings a mysteriously soothing"
+ line "melody that lulls its enemies to"
+ line "sleep."
+ done
FriendshipSongName: ; 61fa8 (18:5fa8)
- db TX_START,"Friendship Song",TX_END
+ text "Friendship Song"
+ done
FriendshipSongDescription: ; 61fb9 (18:5fb9)
- db TX_START,"Flip a coin. If heads, put a Basic\n"
- db "Pok`mon card chosen at random from\n"
- db "your deck onto your Bench. (You\n"
- db "can't use this attack if your Bench\n"
- db "is full.)",TX_END
+ text "Flip a coin. If heads, put a Basic"
+ line "Pok`mon card chosen at random from"
+ line "your deck onto your Bench. (You"
+ line "can't use this attack if your Bench"
+ line "is full.)"
+ done
ExpandName: ; 6204e (18:604e)
- db TX_START,"Expand",TX_END
+ text "Expand"
+ done
ExpandDescription: ; 62056 (18:6056)
- db TX_START,"All damage done to Jigglypuff during\n"
- db "your opponent's next turn is reduced\n"
- db "by 10 (after applying Weakness and\n"
- db "Resistance).",TX_END
+ text "All damage done to Jigglypuff during"
+ line "your opponent's next turn is reduced"
+ line "by 10 (after applying Weakness and"
+ line "Resistance)."
+ done
Jigglypuff2Description: ; 620d1 (18:60d1)
- db TX_START,"Uses its alluring eyes to enrapture\n"
- db "its foe. It then sings a pleasing\n"
- db "melody that lulls the foe to sleep.",TX_END
+ text "Uses its alluring eyes to enrapture"
+ line "its foe. It then sings a pleasing"
+ line "melody that lulls the foe to sleep."
+ done
LullabyName: ; 6213c (18:613c)
- db TX_START,"Lullaby",TX_END
+ text "Lullaby"
+ done
Jigglypuff3Description: ; 62145 (18:6145)
- db TX_START,"When its huge eyes light up, it\n"
- db "sings a mysteriously soothing melody\n"
- db "that lulls its enemies to sleep.",TX_END
+ text "When its huge eyes light up, it"
+ line "sings a mysteriously soothing melody"
+ line "that lulls its enemies to sleep."
+ done
WigglytuffName: ; 621ac (18:61ac)
- db TX_START,"Wigglytuff",TX_END
+ text "Wigglytuff"
+ done
DotheWaveName: ; 621b8 (18:61b8)
- db TX_START,"Do the Wave",TX_END
+ text "Do the Wave"
+ done
DotheWaveDescription: ; 621c5 (18:61c5)
- db TX_START,"Does 10 damage plus 10 more damage\n"
- db "for each of your Benched Pok`mon.",TX_END
+ text "Does 10 damage plus 10 more damage"
+ line "for each of your Benched Pok`mon."
+ done
WigglytuffDescription: ; 6220b (18:620b)
- db TX_START,"The body is soft and rubbery. When\n"
- db "angered, it will suck in air and\n"
- db "inflate itself to an enormous size.",TX_END
+ text "The body is soft and rubbery. When"
+ line "angered, it will suck in air and"
+ line "inflate itself to an enormous size."
+ done
MeowthName: ; 62274 (18:6274)
- db TX_START,"Meowth",TX_END
+ text "Meowth"
+ done
CatPunchName: ; 6227c (18:627c)
- db TX_START,"Cat Punch",TX_END
+ text "Cat Punch"
+ done
CatPunchDescription: ; 62287 (18:6287)
- db TX_START,"Does 20 damage to 1 of your\n"
- db "opponent's Pok`mon chosen at random.\n"
- db "Don't apply Weakness and Resistance\n"
- db "for this attack. (Any other effects\n"
- db "that would happen after applying\n"
- db "Weakness and Resistance still\n"
- db "happen.)",TX_END
+ text "Does 20 damage to 1 of your"
+ line "opponent's Pok`mon chosen at random."
+ line "Don't apply Weakness and Resistance"
+ line "for this attack. (Any other effects"
+ line "that would happen after applying"
+ line "Weakness and Resistance still"
+ line "happen.)"
+ done
MeowthKind: ; 62359 (18:6359)
- db TX_START,"Scratch Cat",TX_END
+ text "Scratch Cat"
+ done
Meowth1Description: ; 62366 (18:6366)
- db TX_START,"Appears to be more active at night.\n"
- db "It loves round and shiny things, so\n"
- db "it can't stop from picking them up.",TX_END
+ text "Appears to be more active at night."
+ line "It loves round and shiny things, so"
+ line "it can't stop from picking them up."
+ done
PayDayName: ; 623d3 (18:63d3)
- db TX_START,"Pay Day",TX_END
+ text "Pay Day"
+ done
PayDayDescription: ; 623dc (18:63dc)
- db TX_START,"Flip a coin. If heads, draw a card.",TX_END
+ text "Flip a coin. If heads, draw a card."
+ done
Meowth2Description: ; 62401 (18:6401)
- db TX_START,"Adores circular objects. Wanders\n"
- db "the streets on a nightly basis to\n"
- db "look for dropped loose change.",TX_END
+ text "Adores circular objects. Wanders"
+ line "the streets on a nightly basis to"
+ line "look for dropped loose change."
+ done
PersianName: ; 62464 (18:6464)
- db TX_START,"Persian",TX_END
+ text "Persian"
+ done
PounceName: ; 6246d (18:646d)
- db TX_START,"Pounce",TX_END
+ text "Pounce"
+ done
PounceDescription: ; 62475 (18:6475)
- db TX_START,"If the Defending Pok`mon attacks\n"
- db "Persian during your opponent's next\n"
- db "turn, any damage done by the attack\n"
- db "is reduced by 10 (after applying\n"
- db "Weakness and Resistance). (Benching\n"
- db "or evolving either Pok`mon ends this\n"
- db "effect.)",TX_END
+ text "If the Defending Pok`mon attacks"
+ line "Persian during your opponent's next"
+ line "turn, any damage done by the attack"
+ line "is reduced by 10 (after applying"
+ line "Weakness and Resistance). (Benching"
+ line "or evolving either Pok`mon ends this"
+ line "effect.)"
+ done
PersianKind: ; 62552 (18:6552)
- db TX_START,"Classy Cat",TX_END
+ text "Classy Cat"
+ done
PersianDescription: ; 6255e (18:655e)
- db TX_START,"Although its fur has many admirers,\n"
- db "it is tough to raise as a pet\n"
- db "because of its fickle meanness.",TX_END
+ text "Although its fur has many admirers,"
+ line "it is tough to raise as a pet"
+ line "because of its fickle meanness."
+ done
FarfetchdName: ; 625c1 (18:65c1)
- db TX_START,"Farfetch'd",TX_END
+ text "Farfetch'd"
+ done
LeekSlapName: ; 625cd (18:65cd)
- db TX_START,"Leek Slap",TX_END
+ text "Leek Slap"
+ done
LeekSlapDescription: ; 625d8 (18:65d8)
- db TX_START,"Flip a coin. If tails, this attack\n"
- db "does nothing. Either way, you can't\n"
- db "use this attack again as long as\n"
- db "Farfetch'd stays in play (even\n"
- db "putting Farfetch'd on the Bench\n"
- db "won't let you use it again).",TX_END
+ text "Flip a coin. If tails, this attack"
+ line "does nothing. Either way, you can't"
+ line "use this attack again as long as"
+ line "Farfetch'd stays in play (even"
+ line "putting Farfetch'd on the Bench"
+ line "won't let you use it again)."
+ done
PotSmashName: ; 6269d (18:669d)
- db TX_START,"Pot Smash",TX_END
+ text "Pot Smash"
+ done
FarfetchdKind: ; 626a8 (18:66a8)
- db TX_START,"Wild Duck",TX_END
+ text "Wild Duck"
+ done
FarfetchdDescription: ; 626b3 (18:66b3)
- db TX_START,"The sprig of green onions it holds\n"
- db "is its weapon. This sprig is used\n"
- db "much like a metal sword.",TX_END
+ text "The sprig of green onions it holds"
+ line "is its weapon. This sprig is used"
+ line "much like a metal sword."
+ done
DoduoName: ; 62712 (18:6712)
- db TX_START,"Doduo",TX_END
+ text "Doduo"
+ done
FuryAttackName: ; 62719 (18:6719)
- db TX_START,"Fury Attack",TX_END
+ text "Fury Attack"
+ done
DoduoKind: ; 62726 (18:6726)
- db TX_START,"Twin Bird",TX_END
+ text "Twin Bird"
+ done
DoduoDescription: ; 62731 (18:6731)
- db TX_START,"A bird that makes up for its poor\n"
- db "flying with its fast foot speed.\n"
- db "Leaves giant footprints.",TX_END
+ text "A bird that makes up for its poor"
+ line "flying with its fast foot speed."
+ line "Leaves giant footprints."
+ done
DodrioName: ; 6278e (18:678e)
- db TX_START,"Dodrio",TX_END
+ text "Dodrio"
+ done
RetreatAidName: ; 62796 (18:6796)
- db TX_START,"Retreat Aid",TX_END
+ text "Retreat Aid"
+ done
RetreatAidDescription: ; 627a3 (18:67a3)
- db TX_START,"As long as Dodrio is Benched, pay\n"
- db TX_COLORLESS," less to retreat your Active\n"
- db "Pok`mon.",TX_END
+ text "As long as Dodrio is Benched, pay"
+ line TX_COLORLESS," less to retreat your Active"
+ line "Pok`mon."
+ done
DodriosRageDescription: ; 627ee (18:67ee)
- db TX_START,"Does 10 damage plus 10 more damage\n"
- db "for each damage counter on Dodrio.",TX_END
+ text "Does 10 damage plus 10 more damage"
+ line "for each damage counter on Dodrio."
+ done
DodrioKind: ; 62835 (18:6835)
- db TX_START,"Triplebird",TX_END
+ text "Triplebird"
+ done
DodrioDescription: ; 62841 (18:6841)
- db TX_START,"Uses its three brains to execute\n"
- db "complex plans. While two heads\n"
- db "sleep, one head stays awake.",TX_END
+ text "Uses its three brains to execute"
+ line "complex plans. While two heads"
+ line "sleep, one head stays awake."
+ done
LickitungName: ; 6289f (18:689f)
- db TX_START,"Lickitung",TX_END
+ text "Lickitung"
+ done
TongueWrapName: ; 628aa (18:68aa)
- db TX_START,"Tongue Wrap",TX_END
+ text "Tongue Wrap"
+ done
LickitungKind: ; 628b7 (18:68b7)
- db TX_START,"Licking",TX_END
+ text "Licking"
+ done
LickitungDescription: ; 628c0 (18:68c0)
- db TX_START,"Its tongue can be extended like a\n"
- db "chameleon's. It leaves a stinging\n"
- db "sensation when it licks enemies.",TX_END
+ text "Its tongue can be extended like a"
+ line "chameleon's. It leaves a stinging"
+ line "sensation when it licks enemies."
+ done
ChanseyName: ; 62926 (18:6926)
- db TX_START,"Chansey",TX_END
+ text "Chansey"
+ done
ScrunchName: ; 6292f (18:692f)
- db TX_START,"Scrunch",TX_END
+ text "Scrunch"
+ done
ScrunchDescription: ; 62938 (18:6938)
- db TX_START,"Flip a coin. If heads, prevent all\n"
- db "damage done to Chansey during your\n"
- db "opponent's next turn. (Any other\n"
- db "effects of attacks still happen.)",TX_END
+ text "Flip a coin. If heads, prevent all"
+ line "damage done to Chansey during your"
+ line "opponent's next turn. (Any other"
+ line "effects of attacks still happen.)"
+ done
ChanseysDoubleEdgeDescription: ; 629c2 (18:69c2)
- db TX_START,"Chansey does 80 damage to itself.",TX_END
+ text "Chansey does 80 damage to itself."
+ done
ChanseyDescription: ; 629e5 (18:69e5)
- db TX_START,"A rare and elusive Pok`mon that is\n"
- db "said to bring happiness to those\n"
- db "who manage to catch it.",TX_END
+ text "A rare and elusive Pok`mon that is"
+ line "said to bring happiness to those"
+ line "who manage to catch it."
+ done
KangaskhanName: ; 62a42 (18:6a42)
- db TX_START,"Kangaskhan",TX_END
+ text "Kangaskhan"
+ done
FetchName: ; 62a4e (18:6a4e)
- db TX_START,"Fetch",TX_END
+ text "Fetch"
+ done
FetchDescription: ; 62a55 (18:6a55)
- db TX_START,"Draw a card.",TX_END
+ text "Draw a card."
+ done
CometPunchName: ; 62a63 (18:6a63)
- db TX_START,"Comet Punch",TX_END
+ text "Comet Punch"
+ done
KangaskhanKind: ; 62a70 (18:6a70)
- db TX_START,"Parent",TX_END
+ text "Parent"
+ done
KangaskhanDescription: ; 62a78 (18:6a78)
- db TX_START,"The infant rarely ventures out of\n"
- db "its mother's protective pouch until\n"
- db "it is three years old.",TX_END
+ text "The infant rarely ventures out of"
+ line "its mother's protective pouch until"
+ line "it is three years old."
+ done
TaurosName: ; 62ad6 (18:6ad6)
- db TX_START,"Tauros",TX_END
+ text "Tauros"
+ done
RampageName: ; 62ade (18:6ade)
- db TX_START,"Rampage",TX_END
+ text "Rampage"
+ done
RampageDescription: ; 62ae7 (18:6ae7)
- db TX_START,"Does 20 damage plus 10 more damage\n"
- db "for each damage counter on Tauros.\n"
- db "Flip a coin. If tails, Tauros is\n"
- db "now Confused (after doing damage).",TX_END
+ text "Does 20 damage plus 10 more damage"
+ line "for each damage counter on Tauros."
+ line "Flip a coin. If tails, Tauros is"
+ line "now Confused (after doing damage)."
+ done
TaurosKind: ; 62b72 (18:6b72)
- db TX_START,"Wild Bull",TX_END
+ text "Wild Bull"
+ done
TaurosDescription: ; 62b7d (18:6b7d)
- db TX_START,"When it targets an enemy, it charges\n"
- db "furiously while whipping its body\n"
- db "with its long tails.",TX_END
+ text "When it targets an enemy, it charges"
+ line "furiously while whipping its body"
+ line "with its long tails."
+ done
DittoName: ; 62bda (18:6bda)
- db TX_START,"Ditto",TX_END
+ text "Ditto"
+ done
MorphName: ; 62be1 (18:6be1)
- db TX_START,"Morph",TX_END
+ text "Morph"
+ done
MorphDescription: ; 62be8 (18:6be8)
- db TX_START,"Remove all damage counters from\n"
- db "Ditto. For the rest of the game,\n"
- db "replace Ditto with a copy of a Basic\n"
- db "Pok`mon card (other than Ditto)\n"
- db "chosen at random from your deck.",TX_END
+ text "Remove all damage counters from"
+ line "Ditto. For the rest of the game,"
+ line "replace Ditto with a copy of a Basic"
+ line "Pok`mon card (other than Ditto)"
+ line "chosen at random from your deck."
+ done
MorphDescriptionCont: ; 62c90 (18:6c90)
- db TX_START,"Ditto is no longer Asleep, Confused,\n"
- db "Paralyzed, Poisoned, or anything\n"
- db "else that might be the result of an\n"
- db "attack (just as if you had evolved\n"
- db "it).",TX_END
+ text "Ditto is no longer Asleep, Confused,"
+ line "Paralyzed, Poisoned, or anything"
+ line "else that might be the result of an"
+ line "attack (just as if you had evolved"
+ line "it)."
+ done
DittoKind: ; 62d23 (18:6d23)
- db TX_START,"Transform",TX_END
+ text "Transform"
+ done
DittoDescription: ; 62d2e (18:6d2e)
- db TX_START,"When it spots an enemy, its body\n"
- db "transfigures into an almost perfect\n"
- db "copy of its opponent.",TX_END
+ text "When it spots an enemy, its body"
+ line "transfigures into an almost perfect"
+ line "copy of its opponent."
+ done
TailWagName: ; 62d8a (18:6d8a)
- db TX_START,"Tail Wag",TX_END
+ text "Tail Wag"
+ done
TailWagDescription: ; 62d94 (18:6d94)
- db TX_START,"Flip a coin. If heads, the Defending\n"
- db "Pok`mon can't attack Eevee during\n"
- db "your opponent's next turn. (Benching\n"
- db "or evolving either Pok`mon ends this\n"
- db "effect.)",TX_END
+ text "Flip a coin. If heads, the Defending"
+ line "Pok`mon can't attack Eevee during"
+ line "your opponent's next turn. (Benching"
+ line "or evolving either Pok`mon ends this"
+ line "effect.)"
+ done
EeveeKind: ; 62e2f (18:6e2f)
- db TX_START,"Evolution",TX_END
+ text "Evolution"
+ done
EeveeDescription: ; 62e3a (18:6e3a)
- db TX_START,"Its genetic code is irregular.\n"
- db "It may mutate if it is exposed to\n"
- db "radiation from elemental stones.",TX_END
+ text "Its genetic code is irregular."
+ line "It may mutate if it is exposed to"
+ line "radiation from elemental stones."
+ done
PorygonName: ; 62e9d (18:6e9d)
- db TX_START,"Porygon",TX_END
+ text "Porygon"
+ done
Conversion1Name: ; 62ea6 (18:6ea6)
- db TX_START,"Conversion 1",TX_END
+ text "Conversion 1"
+ done
Conversion1Description: ; 62eb4 (18:6eb4)
- db TX_START,"If the Defending Pok`mon has a\n"
- db "Weakness, you may change it to a\n"
- db "type of your choice other than\n"
- db "Colorless.",TX_END
+ text "If the Defending Pok`mon has a"
+ line "Weakness, you may change it to a"
+ line "type of your choice other than"
+ line "Colorless."
+ done
Conversion2Name: ; 62f1f (18:6f1f)
- db TX_START,"Conversion 2",TX_END
+ text "Conversion 2"
+ done
Conversion2Description: ; 62f2d (18:6f2d)
- db TX_START,"Change Porygon's Resistance to a\n"
- db "type of your choice other than\n"
- db "Colorless.",TX_END
+ text "Change Porygon's Resistance to a"
+ line "type of your choice other than"
+ line "Colorless."
+ done
PorygonKind: ; 62f79 (18:6f79)
- db TX_START,"Virtual",TX_END
+ text "Virtual"
+ done
PorygonDescription: ; 62f82 (18:6f82)
- db TX_START,"A Pok`mon that consists entirely of\n"
- db "programming code. Capable of moving\n"
- db "freely in cyberspace.",TX_END
+ text "A Pok`mon that consists entirely of"
+ line "programming code. Capable of moving"
+ line "freely in cyberspace."
+ done
SnorlaxName: ; 62fe1 (18:6fe1)
- db TX_START,"Snorlax",TX_END
+ text "Snorlax"
+ done
ThickSkinnedName: ; 62fea (18:6fea)
- db TX_START,"Thick Skinned",TX_END
+ text "Thick Skinned"
+ done
ThickSkinnedDescription: ; 62ff9 (18:6ff9)
- db TX_START,"Snorlax can't become Asleep,\n"
- db "Confused, Paralyzed, or Poisoned.\n"
- db "This power can't be used if Snorlax\n"
- db "is already Asleep, Confused, or\n"
- db "Paralyzed.",TX_END
+ text "Snorlax can't become Asleep,"
+ line "Confused, Paralyzed, or Poisoned."
+ line "This power can't be used if Snorlax"
+ line "is already Asleep, Confused, or"
+ line "Paralyzed."
+ done
BodySlamName: ; 63088 (18:7088)
- db TX_START,"Body Slam",TX_END
+ text "Body Slam"
+ done
SnorlaxKind: ; 63093 (18:7093)
- db TX_START,"Sleeping",TX_END
+ text "Sleeping"
+ done
SnorlaxDescription: ; 6309d (18:709d)
- db TX_START,"Very lazy. Just eats and sleeps.\n"
- db "As its rotund bulk builds,\n"
- db "it becomes steadily more slothful.",TX_END
+ text "Very lazy. Just eats and sleeps."
+ line "As its rotund bulk builds,"
+ line "it becomes steadily more slothful."
+ done
DratiniName: ; 630fd (18:70fd)
- db TX_START,"Dratini",TX_END
+ text "Dratini"
+ done
DratiniDescription: ; 63106 (18:7106)
- db TX_START,"Long considered a mythical Pok`mon\n"
- db "until recently, when a small colony\n"
- db "was found living underwater.",TX_END
+ text "Long considered a mythical Pok`mon"
+ line "until recently, when a small colony"
+ line "was found living underwater."
+ done
DragonairName: ; 6316b (18:716b)
- db TX_START,"Dragonair",TX_END
+ text "Dragonair"
+ done
SlamName: ; 63176 (18:7176)
- db TX_START,"Slam",TX_END
+ text "Slam"
+ done
DragonairDescription: ; 6317c (18:717c)
- db TX_START,"A mystical Pok`mon that exudes a\n"
- db "gentle aura. Has the ability to\n"
- db "change climate conditions.",TX_END
+ text "A mystical Pok`mon that exudes a"
+ line "gentle aura. Has the ability to"
+ line "change climate conditions."
+ done
DragoniteName: ; 631d9 (18:71d9)
- db TX_START,"Dragonite",TX_END
+ text "Dragonite"
+ done
HealingWindName: ; 631e4 (18:71e4)
- db TX_START,"Healing Wind",TX_END
+ text "Healing Wind"
+ done
HealingWindDescription: ; 631f2 (18:71f2)
- db TX_START,"When you put Dragonite into play,\n"
- db "remove 2 damage counters from each\n"
- db "of your Pok`mon. If a Pok`mon has \n"
- db "fewer damage counters than that,\n"
- db "remove all of them from that\n"
- db "Pok`mon.",TX_END
+ text "When you put Dragonite into play,"
+ line "remove 2 damage counters from each"
+ line "of your Pok`mon. If a Pok`mon has "
+ line "fewer damage counters than that,"
+ line "remove all of them from that"
+ line "Pok`mon."
+ done
Dragonite1Description: ; 632a2 (18:72a2)
- db TX_START,"It is said that this Pok`mon lives\n"
- db "somewhere in the sea and that it\n"
- db "flies. However, it is only a rumor.",TX_END
+ text "It is said that this Pok`mon lives"
+ line "somewhere in the sea and that it"
+ line "flies. However, it is only a rumor."
+ done
StepInName: ; 6330b (18:730b)
- db TX_START,"Step In",TX_END
+ text "Step In"
+ done
StepInDescription: ; 63314 (18:7314)
- db TX_START,"Once during your turn (before your\n"
- db "attack), if Dragonite is on your\n"
- db "Bench, you may switch it with your\n"
- db "Active Pok`mon.",TX_END
+ text "Once during your turn (before your"
+ line "attack), if Dragonite is on your"
+ line "Bench, you may switch it with your"
+ line "Active Pok`mon."
+ done
DoubleAttackX40Description: ; 6338c (18:738c)
- db TX_START,"Flip 2 coins. This attack does 40\n"
- db "damage times the number of heads.",TX_END
+ text "Flip 2 coins. This attack does 40"
+ line "damage times the number of heads."
+ done
DragoniteDescription: ; 633d1 (18:73d1)
- db TX_START,"An extremely rarely seen marine\n"
- db "Pok`mon. Its intelligence is said\n"
- db "to match that of humans.",TX_END
+ text "An extremely rarely seen marine"
+ line "Pok`mon. Its intelligence is said"
+ line "to match that of humans."
+ done
ProfessorOakName: ; 6342d (18:742d)
- db TX_START,"Professor Oak",TX_END
+ text "Professor Oak"
+ done
ProfessorOakDescription: ; 6343c (18:743c)
- db TX_START,"Discard your hand, then draw 7\n"
- db "cards.",TX_END
+ text "Discard your hand, then draw 7"
+ line "cards."
+ done
ImposterProfessorOakName: ; 63463 (18:7463)
- db TX_START,"Imposter Professor Oak",TX_END
+ text "Imposter Professor Oak"
+ done
ImposterProfessorOakDescription: ; 6347b (18:747b)
- db TX_START,"Your opponent shuffles his or her\n"
- db "hand into his or her deck, then\n"
- db "draws 7 cards.",TX_END
+ text "Your opponent shuffles his or her"
+ line "hand into his or her deck, then"
+ line "draws 7 cards."
+ done
BillName: ; 634cd (18:74cd)
- db TX_START,"Bill",TX_END
+ text "Bill"
+ done
BillDescription: ; 634d3 (18:74d3)
- db TX_START,"Draw 2 cards.",TX_END
+ text "Draw 2 cards."
+ done
MrFujiName: ; 634e2 (18:74e2)
- db TX_START,"Mr.Fuji",TX_END
+ text "Mr.Fuji"
+ done
MrFujiDescription: ; 634eb (18:74eb)
- db TX_START,"Choose a Pok`mon on your Bench.\n"
- db "Shuffle it and any cards attached\n"
- db "to it into your deck.",TX_END
+ text "Choose a Pok`mon on your Bench."
+ line "Shuffle it and any cards attached"
+ line "to it into your deck."
+ done
LassName: ; 63544 (18:7544)
- db TX_START,"Lass",TX_END
+ text "Lass"
+ done
LassDescription: ; 6354a (18:754a)
- db TX_START,"You and your opponent show each\n"
- db "other your hands, then shuffle all\n"
- db "the Trainer cards from your hands\n"
- db "into your decks.",TX_END
+ text "You and your opponent show each"
+ line "other your hands, then shuffle all"
+ line "the Trainer cards from your hands"
+ line "into your decks."
+ done
ImakuniName: ; 635c1 (18:75c1)
- db TX_START,"Imakuni?",TX_END
+ text "Imakuni?"
+ done
ImakuniDescription: ; 635cb (18:75cb)
- db TX_START,"Your Active Pok`mon is now Confused.\n"
- db "Imakuni wants you to play him as a\n"
- db "Basic Pok`mon, but you can't.\n"
- db "A mysterious creature not listed in\n"
- db "the Pok`dex. He asks kids around the\n"
- db "world,\"Who is cuter-Pikachu or me?\"",TX_END
+ text "Your Active Pok`mon is now Confused."
+ line "Imakuni wants you to play him as a"
+ line "Basic Pok`mon, but you can't."
+ line "A mysterious creature not listed in"
+ line "the Pok`dex. He asks kids around the"
+ line "world,\"Who is cuter-Pikachu or me?\""
+ done
PokemonTraderName: ; 6369f (18:769f)
- db TX_START,"Pok`mon Trader",TX_END
+ text "Pok`mon Trader"
+ done
PokemonTraderDescription: ; 636af (18:76af)
- db TX_START,"Trade 1 of the Basic Pok`mon or\n"
- db "Evolution cards in your hand for 1\n"
- db "of the Basic Pok`mon or Evolution\n"
- db "cards from your deck. Show both\n"
- db "cards to your opponent.\n"
- db "Shuffle your deck afterward.",TX_END
+ text "Trade 1 of the Basic Pok`mon or"
+ line "Evolution cards in your hand for 1"
+ line "of the Basic Pok`mon or Evolution"
+ line "cards from your deck. Show both"
+ line "cards to your opponent."
+ line "Shuffle your deck afterward."
+ done
PokemonBreederName: ; 6376a (18:776a)
- db TX_START,"Pok`mon Breeder",TX_END
+ text "Pok`mon Breeder"
+ done
PokemonBreederDescription: ; 6377b (18:777b)
- db TX_START,"Put a Stage 2 Evolution card from\n"
- db "your hand on the matching Basic\n"
- db "Pok`mon. You can only play this card\n"
- db "when you would be allowed to evolve\n"
- db "that Pok`mon anyway.",TX_END
+ text "Put a Stage 2 Evolution card from"
+ line "your hand on the matching Basic"
+ line "Pok`mon. You can only play this card"
+ line "when you would be allowed to evolve"
+ line "that Pok`mon anyway."
+ done
ClefairyDollName: ; 6381c (18:781c)
- db TX_START,"Clefairy Doll",TX_END
+ text "Clefairy Doll"
+ done
ClefairyDollDescription: ; 6382b (18:782b)
- db TX_START,"Play Clefairy Doll as if it were a\n"
- db "Basic Pok`mon. While in play,\n"
- db "Clefairy Doll counts as a Pok`mon\n"
- db "(instead of a Trainer card).\n"
- db "Clefairy Doll has no attacks, can't\n"
- db "retreat, and can't be Asleep,\n"
- db "Confused, Paralyzed, or Poisoned.",TX_END
+ text "Play Clefairy Doll as if it were a"
+ line "Basic Pok`mon. While in play,"
+ line "Clefairy Doll counts as a Pok`mon"
+ line "(instead of a Trainer card)."
+ line "Clefairy Doll has no attacks, can't"
+ line "retreat, and can't be Asleep,"
+ line "Confused, Paralyzed, or Poisoned."
+ done
ClefairyDollDescriptionCont: ; 63910 (18:7910)
- db TX_START,"If Clefairy Doll is Knocked Out, it\n"
- db "doesn't count as a Knocked Out\n"
- db "Pok`mon. At any time during your\n"
- db "turn before your attack, you may\n"
- db "discard Clefairy Doll.\n"
- db "(Use GameBoy Pok`mon Power menu\n"
- db "option to do this.)",TX_END
+ text "If Clefairy Doll is Knocked Out, it"
+ line "doesn't count as a Knocked Out"
+ line "Pok`mon. At any time during your"
+ line "turn before your attack, you may"
+ line "discard Clefairy Doll."
+ line "(Use GameBoy Pok`mon Power menu"
+ line "option to do this.)"
+ done
MysteriousFossilDescription: ; 639e1 (18:79e1)
- db TX_START,"Play Mysterious Fossil as if it were\n"
- db "a Basic Pok`mon. While in play,\n"
- db "Mysterious Fossil counts as a\n"
- db "Pok`mon (instead of a Trainer card).\n"
- db "Mysterious Fossil has no attacks,\n"
- db "can't retreat, and can't be Asleep,\n"
- db "Confused, Paralyzed, or Poisoned.",TX_END
+ text "Play Mysterious Fossil as if it were"
+ line "a Basic Pok`mon. While in play,"
+ line "Mysterious Fossil counts as a"
+ line "Pok`mon (instead of a Trainer card)."
+ line "Mysterious Fossil has no attacks,"
+ line "can't retreat, and can't be Asleep,"
+ line "Confused, Paralyzed, or Poisoned."
+ done
MysteriousFossilDescriptionCont: ; 63ad2 (18:7ad2)
- db TX_START,"If Mysterious Fossil is Knocked Out,\n"
- db "it doesn't count as a Knocked Out\n"
- db "Pok`mon. (Discard it anyway.) At any\n"
- db "time during your turn before your\n"
- db "attack, you may discard Mysterious\n"
- db "Fossil from play. (Use GameBoy Pok`-\n"
- db "mon Power menu option to do this.)",TX_END
+ text "If Mysterious Fossil is Knocked Out,"
+ line "it doesn't count as a Knocked Out"
+ line "Pok`mon. (Discard it anyway.) At any"
+ line "time during your turn before your"
+ line "attack, you may discard Mysterious"
+ line "Fossil from play. (Use GameBoy Pok`-"
+ line "mon Power menu option to do this.)"
+ done
EnergyRetrievalName: ; 63bcc (18:7bcc)
- db TX_START,"Energy Retrieval",TX_END
+ text "Energy Retrieval"
+ done
EnergyRetrievalDescription: ; 63bde (18:7bde)
- db TX_START,"Trade 1 of the other cards in your\n"
- db "hand for up to 2 basic Energy cards\n"
- db "from your discard pile.",TX_END
+ text "Trade 1 of the other cards in your"
+ line "hand for up to 2 basic Energy cards"
+ line "from your discard pile."
+ done
SuperEnergyRetrievalName: ; 63c3e (18:7c3e)
- db TX_START,"Super Energy Retrieval",TX_END
+ text "Super Energy Retrieval"
+ done
SuperEnergyRetrievalDescription: ; 63c56 (18:7c56)
- db TX_START,"Trade 2 of the other cards in your\n"
- db "hand for up to 4 basic Energy cards\n"
- db "from your discard pile.",TX_END
+ text "Trade 2 of the other cards in your"
+ line "hand for up to 4 basic Energy cards"
+ line "from your discard pile."
+ done
EnergySearchName: ; 63cb6 (18:7cb6)
- db TX_START,"Energy Search",TX_END
+ text "Energy Search"
+ done
EnergySearchDescription: ; 63cc5 (18:7cc5)
- db TX_START,"Search your deck for a basic Energy\n"
- db "card and put it into your hand.\n"
- db "Shuffle your deck afterward.",TX_END
+ text "Search your deck for a basic Energy"
+ line "card and put it into your hand."
+ line "Shuffle your deck afterward."
+ done
EnergyRemovalName: ; 63d27 (18:7d27)
- db TX_START,"Energy Removal",TX_END
+ text "Energy Removal"
+ done
EnergyRemovalDescription: ; 63d37 (18:7d37)
- db TX_START,"Choose 1 Energy card attached to 1\n"
- db "of your opponent's Pok`mon and\n"
- db "discard it.",TX_END
+ text "Choose 1 Energy card attached to 1"
+ line "of your opponent's Pok`mon and"
+ line "discard it."
+ done
SuperEnergyRemovalName: ; 63d86 (18:7d86)
- db TX_START,"Super Energy Removal",TX_END
+ text "Super Energy Removal"
+ done
SuperEnergyRemovalDescription: ; 63d9c (18:7d9c)
- db TX_START,"Discard 1 Energy card attached to 1\n"
- db "of your own Pok`mon in order to\n"
- db "choose 1 of your opponent's Pok`mon\n"
- db "and up to 2 Energy cards attached\n"
- db "to it. Discard those Energy cards.",TX_END
+ text "Discard 1 Energy card attached to 1"
+ line "of your own Pok`mon in order to"
+ line "choose 1 of your opponent's Pok`mon"
+ line "and up to 2 Energy cards attached"
+ line "to it. Discard those Energy cards."
+ done
SwitchName: ; 63e4a (18:7e4a)
- db TX_START,"Switch",TX_END
+ text "Switch"
+ done
SwitchDescription: ; 63e52 (18:7e52)
- db TX_START,"Switch 1 of your Benched Pok`mon\n"
- db "with your Active Pok`mon.",TX_END
+ text "Switch 1 of your Benched Pok`mon"
+ line "with your Active Pok`mon."
+ done
PokemonCenterName: ; 63e8e (18:7e8e)
- db TX_START,"Pok`mon Center",TX_END
+ text "Pok`mon Center"
+ done
PokemonCenterDescription: ; 63e9e (18:7e9e)
- db TX_START,"Remove all damage counters from all\n"
- db "of your own Pok`mon with damage\n"
- db "counters on them, then discard all\n"
- db "Energy cards attached to those\n"
- db "Pok`mon.",TX_END
+ text "Remove all damage counters from all"
+ line "of your own Pok`mon with damage"
+ line "counters on them, then discard all"
+ line "Energy cards attached to those"
+ line "Pok`mon."
+ done
PokeBallName: ; 63f2e (18:7f2e)
- db TX_START,"Pok` Ball",TX_END
+ text "Pok` Ball"
+ done
PokeBallDescription: ; 63f39 (18:7f39)
- db TX_START,"Flip a coin. If heads, you may\n"
- db "search your deck for any Basic\n"
- db "Pok`mon or Evolution card. Show that\n"
- db "card to your opponent, then put it\n"
- db "into your hand. Shuffle your deck\n"
- db "afterward.",TX_END
+ text "Flip a coin. If heads, you may"
+ line "search your deck for any Basic"
+ line "Pok`mon or Evolution card. Show that"
+ line "card to your opponent, then put it"
+ line "into your hand. Shuffle your deck"
+ line "afterward."
+ done
ScoopUpName: ; 63fed (18:7fed)
- db TX_START,"Scoop Up",TX_END
+ text "Scoop Up"
+ done
diff --git a/src/text/textd.asm b/src/text/textd.asm
index d300663..dea889e 100644
--- a/src/text/textd.asm
+++ b/src/text/textd.asm
@@ -1,156 +1,188 @@
ScoopUpDescription: ; 64000 (19:4000)
- db TX_START,"Choose 1 of your Pok`mon in play\n"
- db "and return its Basic Pok`mon card to\n"
- db "your hand. (Discard all cards\n"
- db "attached to that card.)",TX_END
+ text "Choose 1 of your Pok`mon in play"
+ line "and return its Basic Pok`mon card to"
+ line "your hand. (Discard all cards"
+ line "attached to that card.)"
+ done
ComputerSearchName: ; 6407d (19:407d)
- db TX_START,"Computer Search",TX_END
+ text "Computer Search"
+ done
ComputerSearchDescription: ; 6408e (19:408e)
- db TX_START,"Discard 2 of the other cards from\n"
- db "your hand in order to search your\n"
- db "deck for any card and put it into\n"
- db "your hand. Shuffle your deck\n"
- db "afterward.",TX_END
+ text "Discard 2 of the other cards from"
+ line "your hand in order to search your"
+ line "deck for any card and put it into"
+ line "your hand. Shuffle your deck"
+ line "afterward."
+ done
PokedexName: ; 6411d (19:411d)
- db TX_START,"Pok`dex",TX_END
+ text "Pok`dex"
+ done
PokedexDescription: ; 64126 (19:4126)
- db TX_START,"Look at up to 5 cards from the top\n"
- db "of your deck and rearrange them as\n"
- db "you like.",TX_END
+ text "Look at up to 5 cards from the top"
+ line "of your deck and rearrange them as"
+ line "you like."
+ done
PlusPowerName: ; 64177 (19:4177)
- db TX_START,"PlusPower",TX_END
+ text "PlusPower"
+ done
PlusPowerDescription: ; 64182 (19:4182)
- db TX_START,"Attach PlusPower to your Active\n"
- db "Pok`mon. At the end of your turn,\n"
- db "discard PlusPower. If this Pok`mon's\n"
- db "attack does damage to any Active\n"
- db "Pok`mon (after applying Weakness and\n"
- db "Resistance), the attack does 10 more\n"
- db "damage to that Active Pok`mon.",TX_END
+ text "Attach PlusPower to your Active"
+ line "Pok`mon. At the end of your turn,"
+ line "discard PlusPower. If this Pok`mon's"
+ line "attack does damage to any Active"
+ line "Pok`mon (after applying Weakness and"
+ line "Resistance), the attack does 10 more"
+ line "damage to that Active Pok`mon."
+ done
DefenderName: ; 64274 (19:4274)
- db TX_START,"Defender",TX_END
+ text "Defender"
+ done
DefenderDescription: ; 6427e (19:427e)
- db TX_START,"Attach Defender to 1 of your\n"
- db "Pok`mon. At the end of your\n"
- db "opponent's next turn, discard\n"
- db "Defender. Damage done to that\n"
- db "Pok`mon by attacks is reduced by 20\n"
- db "(after applying Weakness and\n"
- db "Resistance).",TX_END
+ text "Attach Defender to 1 of your"
+ line "Pok`mon. At the end of your"
+ line "opponent's next turn, discard"
+ line "Defender. Damage done to that"
+ line "Pok`mon by attacks is reduced by 20"
+ line "(after applying Weakness and"
+ line "Resistance)."
+ done
ItemFinderName: ; 64342 (19:4342)
- db TX_START,"Item Finder",TX_END
+ text "Item Finder"
+ done
ItemFinderDescription: ; 6434f (19:434f)
- db TX_START,"Discard 2 of the other cards from\n"
- db "your hand in order to put a Trainer\n"
- db "card from your discard pile into\n"
- db "your hand.",TX_END
+ text "Discard 2 of the other cards from"
+ line "your hand in order to put a Trainer"
+ line "card from your discard pile into"
+ line "your hand."
+ done
GustofWindName: ; 643c2 (19:43c2)
- db TX_START,"Gust of Wind",TX_END
+ text "Gust of Wind"
+ done
GustofWindDescription: ; 643d0 (19:43d0)
- db TX_START,"Choose 1 of your opponent's Benched\n"
- db "Pok`mon and switch it with his or\n"
- db "her Active Pok`mon.",TX_END
+ text "Choose 1 of your opponent's Benched"
+ line "Pok`mon and switch it with his or"
+ line "her Active Pok`mon."
+ done
DevolutionSprayName: ; 6442b (19:442b)
- db TX_START,"Devolution Spray",TX_END
+ text "Devolution Spray"
+ done
DevolutionSprayDescription: ; 6443d (19:443d)
- db TX_START,"Choose 1 of your own Pok`mon in play\n"
- db "and a Stage of Evolution. Discard\n"
- db "all Evolution cards of that Stage or\n"
- db "higher attached to that Pok`mon.",TX_END
+ text "Choose 1 of your own Pok`mon in play"
+ line "and a Stage of Evolution. Discard"
+ line "all Evolution cards of that Stage or"
+ line "higher attached to that Pok`mon."
+ done
DevolutionSprayDescriptionCont: ; 644cb (19:44cb)
- db TX_START,"That Pok`mon is no longer Asleep,\n"
- db "Confused, Paralyzed, Poisoned, or\n"
- db "anything else that might be the\n"
- db "result of an attack (just as if you\n"
- db "had evolved it).",TX_END
+ text "That Pok`mon is no longer Asleep,"
+ line "Confused, Paralyzed, Poisoned, or"
+ line "anything else that might be the"
+ line "result of an attack (just as if you"
+ line "had evolved it)."
+ done
PotionName: ; 64565 (19:4565)
- db TX_START,"Potion",TX_END
+ text "Potion"
+ done
PotionDescription: ; 6456d (19:456d)
- db TX_START,"Remove 2 damage counters from 1 of\n"
- db "your Pok`mon. If that Pok`mon has\n"
- db "fewer damage counters than that,\n"
- db "remove all of them.",TX_END
+ text "Remove 2 damage counters from 1 of"
+ line "your Pok`mon. If that Pok`mon has"
+ line "fewer damage counters than that,"
+ line "remove all of them."
+ done
SuperPotionName: ; 645e8 (19:45e8)
- db TX_START,"Super Potion",TX_END
+ text "Super Potion"
+ done
SuperPotionDescription: ; 645f6 (19:45f6)
- db TX_START,"Discard 1 Energy card attached to 1\n"
- db "of your own Pok`mon in order to\n"
- db "remove 4 damage counters from that\n"
- db "Pok`mon. If the Pok`mon has fewer\n"
- db "damage counters than that, remove\n"
- db "all of them.",TX_END
+ text "Discard 1 Energy card attached to 1"
+ line "of your own Pok`mon in order to"
+ line "remove 4 damage counters from that"
+ line "Pok`mon. If the Pok`mon has fewer"
+ line "damage counters than that, remove"
+ line "all of them."
+ done
FullHealName: ; 646af (19:46af)
- db TX_START,"Full Heal",TX_END
+ text "Full Heal"
+ done
FullHealDescription: ; 646ba (19:46ba)
- db TX_START,"Your Active Pok`mon is no longer\n"
- db "Asleep, Confused, Paralyzed, or\n"
- db "Poisoned.",TX_END
+ text "Your Active Pok`mon is no longer"
+ line "Asleep, Confused, Paralyzed, or"
+ line "Poisoned."
+ done
ReviveName: ; 64706 (19:4706)
- db TX_START,"Revive",TX_END
+ text "Revive"
+ done
ReviveDescription: ; 6470e (19:470e)
- db TX_START,"Put 1 Basic Pok`mon card from your\n"
- db "discard pile onto your Bench.\n"
- db "Put damage counters on that Pok`mon\n"
- db "equal to half its HP (rounded down\n"
- db "to the nearest 10). (You can't play\n"
- db "Revive if your Bench is full.)",TX_END
+ text "Put 1 Basic Pok`mon card from your"
+ line "discard pile onto your Bench."
+ line "Put damage counters on that Pok`mon"
+ line "equal to half its HP (rounded down"
+ line "to the nearest 10). (You can't play"
+ line "Revive if your Bench is full.)"
+ done
MaintenanceName: ; 647da (19:47da)
- db TX_START,"Maintenance",TX_END
+ text "Maintenance"
+ done
MaintenanceDescription: ; 647e7 (19:47e7)
- db TX_START,"Shuffle 2 of the other cards from\n"
- db "your hand into your deck in order\n"
- db "to draw a card.",TX_END
+ text "Shuffle 2 of the other cards from"
+ line "your hand into your deck in order"
+ line "to draw a card."
+ done
PokemonFluteName: ; 6483c (19:483c)
- db TX_START,"Pok`mon Flute",TX_END
+ text "Pok`mon Flute"
+ done
PokemonFluteDescription: ; 6484b (19:484b)
- db TX_START,"Choose 1 Basic Pok`mon card from\n"
- db "your opponent's discard pile and put\n"
- db "it onto his or her Bench. (You can't\n"
- db "play Pok`mon Flute if your\n"
- db "opponent's Bench is full.)",TX_END
+ text "Choose 1 Basic Pok`mon card from"
+ line "your opponent's discard pile and put"
+ line "it onto his or her Bench. (You can't"
+ line "play Pok`mon Flute if your"
+ line "opponent's Bench is full.)"
+ done
GamblerName: ; 648ed (19:48ed)
- db TX_START,"Gambler",TX_END
+ text "Gambler"
+ done
GamblerDescription: ; 648f6 (19:48f6)
- db TX_START,"Shuffle your hand into your deck.\n"
- db "Flip a coin. If heads, draw 8 cards.\n"
- db "If tails, draw 1 card.",TX_END
+ text "Shuffle your hand into your deck."
+ line "Flip a coin. If heads, draw 8 cards."
+ line "If tails, draw 1 card."
+ done
RecycleName: ; 64955 (19:4955)
- db TX_START,"Recycle",TX_END
+ text "Recycle"
+ done
RecycleDescription: ; 6495e (19:495e)
- db TX_START,"Flip a coin. If heads, put a card\n"
- db "in your discard pile on top of your\n"
- db "deck.",TX_END
+ text "Flip a coin. If heads, put a card"
+ line "in your discard pile on top of your"
+ line "deck."
+ done
rept $3655
db $ff
diff --git a/src/wram.asm b/src/wram.asm
index 3dde46c..0fbb3f0 100755
--- a/src/wram.asm
+++ b/src/wram.asm
@@ -454,7 +454,7 @@ wcc09:: ; cc09
wcc0a:: ; cc0a
ds $1
-wDuelHasPlayedEnergy:: ; cc0b
+wAlreadyPlayedEnergy:: ; cc0b
ds $1
wcc0c:: ; cc0c