summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Infinitely-reusable-TMs.md26
1 files changed, 24 insertions, 2 deletions
diff --git a/Infinitely-reusable-TMs.md b/Infinitely-reusable-TMs.md
index f66907c..79150f5 100644
--- a/Infinitely-reusable-TMs.md
+++ b/Infinitely-reusable-TMs.md
@@ -298,18 +298,38 @@ Pretty self-explanatory.
If TMs are untossable and infinite-use, it's wasteful to have multiple ways of getting the same TM.
-Eight TMs can be acquired more than once in Pokémon Crystal:
+Ten TMs can be acquired more than once in Pokémon Crystal:
- TM02 Headbutt: Ilex Forest (gift); Goldenrod Dept. Store (¥2000 after receiving the gift)
- TM08 Rock Smash: Route 36 (gift); Goldenrod Dept. Store (¥2000 after receiving the gift)
- TM10 Hidden Power: Lake of Rage (gift); Celadon Dept. Store (¥3000)
- TM11 Sunny Day: Radio Tower (gift); Celadon Dept. Store (¥2000)
+- TM13 Snore: Route 39 (gift); Dark Cave (item ball)
- TM18 Rain Dance: Slowpoke Well (item ball); Celadon Dept. Store (¥2000)
- TM21 Frustration: Goldenrod Dept. Store (weekly gift)
- TM27 Return: Goldenrod Dept. Store (weekly gift)
- TM37 Sandstorm: Route 27 (gift); Celadon Dept. Store (¥2000)
+- TM47 Steel Wing: Route 28 (gift); Rock Tunnel (item ball)
-First, edit [maps/GoldenrodDeptStore5F.asm](../blob/master/maps/GoldenrodDeptStore5F.asm):
+First, edit [maps/DarkCaveBlackthornEntrance.asm](../blob/master/maps/DarkCaveBlackthornEntrance.asm):
+
+```diff
+ DarkCaveBlackthornEntranceTMSnore:
+- itemball TM_SNORE
++ itemball AWAKENING
+```
+
+And edit [maps/RockTunnel1F.asm](../blob/master/maps/RockTunnel1F.asm):
+
+```diff
+ RockTunnel1FTMSteelWing:
+- itemball TM_STEEL_WING
++ itemball METAL_COAT
+```
+
+(I'm not bothering to update all the label and constant names from "Snore" and "Steel Wing" to their new items.)
+
+Now edit [maps/GoldenrodDeptStore5F.asm](../blob/master/maps/GoldenrodDeptStore5F.asm):
```diff
GoldenrodDeptStore5FClerkScript:
@@ -486,6 +506,8 @@ Finally, edit [data/items/marts.asm](../blob/master/data/items/marts.asm):
We simplified the Goldenrod Mart data, and revised the Celadon Mart's inventory: they still sell TM17 Protect, but also the same three Punch TMs as Goldenrod, as well as TM09 Psych Up (which was only available held by Abra or Kadabra traded from Gen 1).
+Speaking of trading from Gen 1…
+
## 7. Don't let Time Capsule traded Pokémon hold TMs