summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Add-a-new-Mart.md78
1 files changed, 39 insertions, 39 deletions
diff --git a/Add-a-new-Mart.md b/Add-a-new-Mart.md
index 14c6956..cd6e22d 100644
--- a/Add-a-new-Mart.md
+++ b/Add-a-new-Mart.md
@@ -261,45 +261,45 @@ Edit [engine/items/mart.asm](../blob/master/engine/items/mart.asm):
And edit [data/text/common_3.asm](../blob/master/data/text/common_3.asm):
```diff
-ShadyShop_IntroText::
- text "Hello, kiddo!"
-
- para "Wanna buy any of"
- line "my goods?"
-
- para "They fell off the"
- line "back of a truck!"
- cont "Hehehe…"
- done
-
-ShadyShop_ComeAgainText::
- text "See ya, kid!"
- done
-
-ShadyShop_HowManyText::
- text "How many you"
- line "need?"
- done
-
-ShadyShop_CostsThisMuchText::
- text "That'll cost ya"
- line "¥@"
- deciram hMoneyTemp, 3, 6
- text ". 'Kay?"
- done
-
-ShadyShop_InsufficientFundsText::
- text "That ain't enough!"
- done
-
-ShadyShop_BagFullText::
- text "Hehe, you can't"
- line "carry it!"
- done
-
-ShadyShop_HereYouGoText::
- text "Cha-ching!"
- done
++ShadyShop_IntroText::
++ text "Hello, kiddo!"
++
++ para "Wanna buy any of"
++ line "my goods?"
++
++ para "They fell off the"
++ line "back of a truck!"
++ cont "Hehehe…"
++ done
++
++ShadyShop_ComeAgainText::
++ text "See ya, kid!"
++ done
++
++ShadyShop_HowManyText::
++ text "How many you"
++ line "need?"
++ done
++
++ShadyShop_CostsThisMuchText::
++ text "That'll cost ya"
++ line "¥@"
++ deciram hMoneyTemp, 3, 6
++ text ". 'Kay?"
++ done
++
++ShadyShop_InsufficientFundsText::
++ text "That ain't enough!"
++ done
++
++ShadyShop_BagFullText::
++ text "Hehe, you can't"
++ line "carry it!"
++ done
++
++ShadyShop_HereYouGoText::
++ text "Cha-ching!"
++ done
```
This new Mart type is appropriate for the Team Rocket merchant in Mahogany Town. So edit [maps/MahoganyMart1F.asm](../blob/master/maps/MahoganyMart1F.asm):