diff options
Diffstat (limited to 'Add-a-new-Fairy-type.md')
-rw-r--r-- | Add-a-new-Fairy-type.md | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/Add-a-new-Fairy-type.md b/Add-a-new-Fairy-type.md index 57fcdd2..9ae2d25 100644 --- a/Add-a-new-Fairy-type.md +++ b/Add-a-new-Fairy-type.md @@ -40,7 +40,7 @@ Edit [constants/type_constants.asm](../blob/master/constants/type_constants.asm) Edit [data/types/names.asm](../blob/master/data/types/names.asm): ```diff - TypeNames: ; 5097b + TypeNames: ; entries correspond to types (see constants/type_constants.asm) dw Normal ... @@ -59,7 +59,7 @@ Edit [data/types/names.asm](../blob/master/data/types/names.asm): Edit [data/types/type_matchups.asm](../blob/master/data/types/type_matchups.asm): ```diff - TypeMatchups: ; 34bb1 + TypeMatchups: ; attacker, defender, *= db NORMAL, ROCK, NOT_VERY_EFFECTIVE db NORMAL, STEEL, NOT_VERY_EFFECTIVE @@ -105,26 +105,24 @@ These tables are used for the Pokédex's type search feature. Edit [data/types/search_types.asm](../blob/master/data/types/search_types.asm): ```diff - PokedexTypeSearchConversionTable: ; 410f6 + PokedexTypeSearchConversionTable: ; entries correspond with PokedexTypeSearchStrings (see data/types/search_strings.asm) db NORMAL ... db STEEL + db FAIRY - ; 41107 ``` Edit [data/types/search_strings.asm](../blob/master/data/types/search_strings.asm): ```diff - PokedexTypeSearchStrings: ; 40fe4 + PokedexTypeSearchStrings: ; entries correspond with PokedexTypeSearchConversionTable (see data/types/search_types.asm) db " ---- @" db " NORMAL @" ... db " STEEL @" + db " FAIRY @" - ; 41086 ``` @@ -173,20 +171,19 @@ Edit [constants/item_data_constants.asm](../blob/master/constants/item_data_cons Edit [data/types/type_boost_items.asm](../blob/master/data/types/type_boost_items.asm): ```diff - TypeBoostItems: ; 35703 + TypeBoostItems: - db HELD_NORMAL_BOOST, NORMAL ; PINK_BOW/POLKADOT_BOW + db HELD_NORMAL_BOOST, NORMAL ; PINK_BOW ... db HELD_STEEL_BOOST, STEEL ; METAL_COAT + db HELD_FAIRY_BOOST, FAIRY ; POLKADOT_BOW db -1 - ; 35726 ``` Edit [data/items/attributes.asm](../blob/master/data/items/attributes.asm): ```diff - ItemAttributes: ; 67c1 + ItemAttributes: ; entries correspond to constants/item_constants.asm ... ; POLKADOT_BOW |