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_10.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_10.asm')
| -rw-r--r-- | text/maps/route_10.asm | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/text/maps/route_10.asm b/text/maps/route_10.asm index 677e6827..f6e4e394 100644 --- a/text/maps/route_10.asm +++ b/text/maps/route_10.asm @@ -1,97 +1,97 @@ -_Route10BattleText1: ; 8e642 (23:6642) +_Route10BattleText1:: ; 8e642 (23:6642) text "Wow, are you a" line "#MANIAC too?" cont "Want to see my" cont "collection?" done -_Route10EndBattleText1: ; 8e67a (23:667a) +_Route10EndBattleText1:: ; 8e67a (23:667a) text "Humph." line "I'm not angry!" prompt -_Route10AfterBattleText1: ; 8e690 (23:6690) +_Route10AfterBattleText1:: ; 8e690 (23:6690) text "I have more rare" line "#MON at home!" done -_Route10BattleText2: ; 8e6b0 (23:66b0) +_Route10BattleText2:: ; 8e6b0 (23:66b0) text "Ha-hahah-ah-ha!" done -_Route10EndBattleText2: ; 8e6c1 (23:66c1) +_Route10EndBattleText2:: ; 8e6c1 (23:66c1) text "Ha-haha!" line "Not laughing!" cont "Ha-hay fever!" cont "Haha-ha-choo!" prompt -_Route10AfterBattleText2: ; 8e6f5 (23:66f5) +_Route10AfterBattleText2:: ; 8e6f5 (23:66f5) text "Haha-ha-choo!" line "Ha-choo!" cont "Snort! Snivel!" done -_Route10BattleText3: ; 8e71c (23:671c) +_Route10BattleText3:: ; 8e71c (23:671c) text "Hi kid, want to" line "see my #MON?" done -_Route10EndBattleText3: ; 8e73a (23:673a) +_Route10EndBattleText3:: ; 8e73a (23:673a) text "Oh no!" line "My #MON!" prompt -_Route10AfterBattleText3: ; 8e74b (23:674b) +_Route10AfterBattleText3:: ; 8e74b (23:674b) text "I don't like you" line "for beating me!" done -_Route10BattleText4: ; 8e76c (23:676c) +_Route10BattleText4:: ; 8e76c (23:676c) text "I've been to a" line "#MON GYM a few" cont "times. But, I" cont "lost each time." done -_Route10EndBattleText4: ; 8e7a8 (23:67a8) +_Route10EndBattleText4:: ; 8e7a8 (23:67a8) text "Ohh!" line "Blew it again!" prompt -_Route10AfterBattleText4: ; 8e7bd (23:67bd) +_Route10AfterBattleText4:: ; 8e7bd (23:67bd) text "I noticed some" line "#MANIACs" cont "prowling around." done -_Route10BattleText5: ; 8e7e7 (23:67e7) +_Route10BattleText5:: ; 8e7e7 (23:67e7) text "Ah! This mountain" line "air is delicious!" done -_Route10EndBattleText5: ; 8e80c (23:680c) +_Route10EndBattleText5:: ; 8e80c (23:680c) text "That" line "cleared my head!" prompt -_Route10AfterBattleText5: ; 8e823 (23:6823) +_Route10AfterBattleText5:: ; 8e823 (23:6823) text "I feel bloated on" line "mountain air!" done -_Route10BattleText6: ; 8e844 (23:6844) +_Route10BattleText6:: ; 8e844 (23:6844) text "I'm feeling a bit" line "faint from this" cont "tough hike." done -_Route10EndBattleText6: ; 8e872 (23:6872) +_Route10EndBattleText6:: ; 8e872 (23:6872) text "I'm" line "not up to it!" prompt -_Route10AfterBattleText6: ; 8e884 (23:6884) +_Route10AfterBattleText6:: ; 8e884 (23:6884) text "The #MON here" line "are so chunky!" cont "There should be a" @@ -99,12 +99,12 @@ _Route10AfterBattleText6: ; 8e884 (23:6884) cont "floral pattern!" done -_Route10Text9: ; 8e8d4 (23:68d4) -_Route10Text7: ; 8e8d4 (23:68d4) +_Route10Text9:: ; 8e8d4 (23:68d4) +_Route10Text7:: ; 8e8d4 (23:68d4) text "ROCK TUNNEL" done -_Route10Text10: ; 8e8e1 (23:68e1) +_Route10Text10:: ; 8e8e1 (23:68e1) text "POWER PLANT" done |
