diff options
| author | yenatch <yenatch@gmail.com> | 2014-01-27 16:22:41 -0500 |
|---|---|---|
| committer | yenatch <yenatch@gmail.com> | 2014-01-27 16:24:13 -0500 |
| commit | 1b9ee46af9f8baac0d266a54130115a719788377 (patch) | |
| tree | 8ac61c0752dc74da0677cb26fe4db6362db5b2b7 /text/maps/route_16.asm | |
| parent | added a couple of new moves constants (diff) | |
| download | pokeyellow-1b9ee46af9f8baac0d266a54130115a719788377.tar.gz pokeyellow-1b9ee46af9f8baac0d266a54130115a719788377.tar.xz pokeyellow-1b9ee46af9f8baac0d266a54130115a719788377.zip | |
Get rid of globals.asm. Use ::s to export labels between objects.
globals.asm was a hack that:
- gave rgbasm an extra 100k lines to read
- increased reliance on the python preprocessor
- made the makefile a mess
- gave object creation an extra step
- wasn't even necessary
This speeds up build time by at least a third.
Diffstat (limited to 'text/maps/route_16.asm')
| -rw-r--r-- | text/maps/route_16.asm | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/text/maps/route_16.asm b/text/maps/route_16.asm index 2ba31765..b46275f0 100644 --- a/text/maps/route_16.asm +++ b/text/maps/route_16.asm @@ -1,119 +1,119 @@ -_Route16BattleText1: ; 91081 (24:5081) +_Route16BattleText1:: ; 91081 (24:5081) text "What do you want?" done -_Route16EndBattleText1: ; 91094 (24:5094) +_Route16EndBattleText1:: ; 91094 (24:5094) text "Don't you" line "dare laugh!" prompt -_Route16AfterBattleText1: ; 910aa (24:50aa) +_Route16AfterBattleText1:: ; 910aa (24:50aa) text "We like just" line "hanging here," cont "what's it to you?" done -_Route16BattleText2: ; 910d7 (24:50d7) +_Route16BattleText2:: ; 910d7 (24:50d7) text "Nice BIKE!" line "Hand it over!" done -_Route16EndBattleText2: ; 910f1 (24:50f1) +_Route16EndBattleText2:: ; 910f1 (24:50f1) text "Knock" line "out!" prompt -_Route16AfterBattleText2: ; 910fd (24:50fd) +_Route16AfterBattleText2:: ; 910fd (24:50fd) text "Forget it, who" line "needs your BIKE!" done -_Route16BattleText3: ; 9111e (24:511e) +_Route16BattleText3:: ; 9111e (24:511e) text "Come out and play," line "little mouse!" done -_Route16EndBattleText3: ; 91140 (24:5140) +_Route16EndBattleText3:: ; 91140 (24:5140) text "You" line "little rat!" prompt -_Route16AfterBattleText3: ; 91151 (24:5151) +_Route16AfterBattleText3:: ; 91151 (24:5151) text "I hate losing!" line "Get away from me!" done -_Route16BattleText4: ; 91173 (24:5173) +_Route16BattleText4:: ; 91173 (24:5173) text "Hey, you just" line "bumped me!" done -_Route16EndBattleText4: ; 9118d (24:518d) +_Route16EndBattleText4:: ; 9118d (24:518d) text "Kaboom!" prompt -_Route16AfterBattleText4: ; 91196 (24:5196) +_Route16AfterBattleText4:: ; 91196 (24:5196) text "You can also get" line "to FUCHSIA from" cont "VERMILION using a" cont "coastal road." done -_Route16BattleText5: ; 911d8 (24:51d8) +_Route16BattleText5:: ; 911d8 (24:51d8) text "I'm feeling" line "hungry and mean!" done -_Route16EndBattleText5: ; 911f5 (24:51f5) +_Route16EndBattleText5:: ; 911f5 (24:51f5) text "Bad," line "bad, bad!" prompt -_Route16AfterBattleText5: ; 91205 (24:5205) +_Route16AfterBattleText5:: ; 91205 (24:5205) text "I like my #MON" line "ferocious! They" cont "tear up enemies!" done -_Route16BattleText6: ; 91236 (24:5236) +_Route16BattleText6:: ; 91236 (24:5236) text "Sure, I'll go!" done -_Route16EndBattleText6: ; 91245 (24:5245) +_Route16EndBattleText6:: ; 91245 (24:5245) text "Don't make" line "me mad!" prompt -_Route16AfterBattleText6: ; 91258 (24:5258) +_Route16AfterBattleText6:: ; 91258 (24:5258) text "I like harassing" line "people with my" cont "vicious #MON!" done -_Route16Text7: ; 91287 (24:5287) +_Route16Text7:: ; 91287 (24:5287) text "A sleeping #MON" line "blocks the way!" done -_UnnamedText_59ab3: ; 912a8 (24:52a8) +_UnnamedText_59ab3:: ; 912a8 (24:52a8) text "SNORLAX woke up!" para "It attacked in a" line "grumpy rage!" done -_UnnamedText_59ab8: ; 912d8 (24:52d8) +_UnnamedText_59ab8:: ; 912d8 (24:52d8) text "With a big yawn," line "SNORLAX returned" cont "to the mountains!" done -_Route16Text8: ; 9130d (24:530d) +_Route16Text8:: ; 9130d (24:530d) text "Enjoy the slope!" line "CYCLING ROAD" done -_Route16Text9: ; 9132c (24:532c) +_Route16Text9:: ; 9132c (24:532c) text "ROUTE 16" line "CELADON CITY -" cont "FUCHSIA CITY" |
