summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2018-06-13 21:34:16 -0400
committerluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2018-06-13 21:34:16 -0400
commit944b9f04b48b760ee83fbc00f6be162be2c6172c (patch)
tree72fa4e6c1700f72bf76771caeb62e4b6e811fdb3
parent31a66165cdf84ea84790219e5ffab64676d4c80e (diff)
Spelling and Grammar improvements.
-rw-r--r--Add-a-new-radio-channel.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/Add-a-new-radio-channel.md b/Add-a-new-radio-channel.md
index 848604c..59dbdc6 100644
--- a/Add-a-new-radio-channel.md
+++ b/Add-a-new-radio-channel.md
@@ -1,6 +1,6 @@
-This tutorial teaches you how to add a new radio channel in pokecrytsal.(radio channels with text coming soon!)
+This tutorial teaches you how to add a new radio channel in pokecrystal. (radio channels with text coming soon!)
-for this tutorial were going to add national park as a channel that plays its music.
+For this tutorial we're going to add National Park as a channel that plays its own music.
## Contents
@@ -35,7 +35,7 @@ Edit [constants/radio_constants.asm](../blob/master/constants/radio_constants.as
const POKE_FLUTE_RADIO ; 08
const UNOWN_RADIO ; 09
const EVOLUTION_RADIO ; 0a
-+ const NATIONAL_PARK_RADIO
++ const NATIONAL_PARK_RADIO ; 0b
```
@@ -58,7 +58,7 @@ RadioJumptable:
dw PokeFluteRadio ; $08
dw UnownRadio ; $09
dw EvolutionRadio ; $0a
-+ dw NationalParkRadio
++ dw NationalParkRadio ; $0b
```
```diff
@@ -133,7 +133,7 @@ NotBuenasPasswordName: db "@"
Edit [engine/pokegear/pokegear.asm](../blob/master/engine/pokegear/pokegear.asm):
-i set mine to 15
+In this example, I set the frequency to 15.
```diff
RadioChannels:
@@ -153,7 +153,7 @@ RadioChannels:
db -1
```
-johto exclusive channel
+Johto exclusive channel:
```diff
+.NationalPark:
@@ -162,7 +162,7 @@ johto exclusive channel
+ jp LoadStation_NationalPark
```
-kanto exclusive channel
+Kanto exclusive channel:
```diff
+.NationalPark:
@@ -173,4 +173,4 @@ kanto exclusive channel
+ jr z, .NoSignal
+ jp LoadStation_NationalPark
```
-and were done! \ No newline at end of file
+and we're done! \ No newline at end of file