diff options
-rw-r--r-- | Add-a-new-Pack-pocket.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Add-a-new-Pack-pocket.md b/Add-a-new-Pack-pocket.md index c74a1b1..97efc9b 100644 --- a/Add-a-new-Pack-pocket.md +++ b/Add-a-new-Pack-pocket.md @@ -47,7 +47,7 @@ Edit [constants/item_data_constants.asm](../blob/master/constants/item_data_cons +MAX_BERRIES EQU 17 ``` -Notice that the "item types" constants are in a different order than the "pack pockets" constants. So don't mix them up. +Notice that the "item types" constants are in a different order than the "pack pockets" constants. So don't mix them up. Also we name the item type "`BERRIES`" because "`BERRY`" is an item, so don't mix those up either. The `MAX_*` constants are the storage capacities of their respective pockets. We defined `MAX_BERRIES` as 17 because there are 17 items that will go in the Berry pocket, as we'll see later; that way you can conveniently carry one stack of each Berry. (Likewise, `MAX_BALLS` is 12, and 12 items belong in the Ball pocket.) |