diff options
author | futuresushi <mattsparkzz@gmail.com> | 2020-04-14 19:49:50 -0400 |
---|---|---|
committer | futuresushi <mattsparkzz@gmail.com> | 2020-04-14 19:49:50 -0400 |
commit | acfab4cffff8e224c46386eba992f359d1ee6f7c (patch) | |
tree | 7043fb0adbcc8b06c2ba19dfd852f6102f95dba5 | |
parent | b26eb8f944ed3c3c1c6b300f5e4a7e43130da8b4 (diff) |
Adding instruction for removing text reference to single-use TMs
-rw-r--r-- | Infinitely-reusable-TMs.md | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Infinitely-reusable-TMs.md b/Infinitely-reusable-TMs.md index 89c881e..c004a7f 100644 --- a/Infinitely-reusable-TMs.md +++ b/Infinitely-reusable-TMs.md @@ -556,6 +556,37 @@ Edit [data/items/catch_rate_items.asm](../blob/master/data/items/catch_rate_item db 0 ; end ``` +## 8. Remove text references to TMs being single-use + +Edit [/maps/VioletGym.asm](../blob/master/maps/VioletGym.asm): + +```diff +FalknerTMMudSlapText: + text "By using a TM, a" + line "#MON will" + + para "instantly learn a" + line "new move." + +- para "Think before you" +- line "act--a TM can be" +- cont "used only once." + + para "TM31 contains" + line "MUD-SLAP." + + para "It reduces the" + line "enemy's accuracy" + + para "while it causes" + line "damage." + + para "In other words, it" + line "is both defensive" + cont "and offensive." + done +``` + That's everything!  |