summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Add-a-new-Fairy-type.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/Add-a-new-Fairy-type.md b/Add-a-new-Fairy-type.md
index 23aef99..74c2a5c 100644
--- a/Add-a-new-Fairy-type.md
+++ b/Add-a-new-Fairy-type.md
@@ -1,6 +1,6 @@
This tutorial is for how to add a new type for Pokémon or moves. As an example, we'll add the Fairy type from Gen 7.
-In short, we need to update all of these:
+In short, we need to update all of these files:
- [constants/type_constants.asm](../../blob/master/constants/type_constants.asm)
- `TypeNames` in [data/types/names.asm](../../blob/master/data/types/names.asm)
@@ -179,4 +179,8 @@ ItemAttributes: ; 67c1
+ item_attribute 100, HELD_FAIRY_BOOST, 10, CANT_SELECT, ITEM, ITEMMENU_NOUSE, ITEMMENU_NOUSE
```
-*Now* we're done! If you're just varying the original Crystal game, note that you can get three Pink Bows (one from Tuscany on Tuesdays, one from Mary after clearing Team Rocket from Radio Tower, and one from Picnicker Tiffany if you get her phone number), so one of those can be replaced with a Fairy-boosting Pink Bow. You'll also need damaging Fairy moves like Moonblast and Dazzling Gleam, so look up how to add those.
+*Now* we're done!
+
+If you're just varying the original Crystal game, note that you can get three Pink Bows (one from Tuscany on Tuesdays, one from Mary after clearing Team Rocket from Radio Tower, and one from Picnicker Tiffany if you get her phone number), so one of those can be replaced with a Fairy-boosting Pink Bow.
+
+You'll also need damaging Fairy moves like Moonblast and Dazzling Gleam, so look up how to add those in the new move tutorial.