Fixed price mixed up.

This commit is contained in:
Eduardo Quezada 2020-10-25 01:28:14 -03:00
parent 9eeb574ad1
commit 4aa6442cd4
2 changed files with 3 additions and 2 deletions

View file

@ -16,7 +16,7 @@
// Item config // Item config
#define I_SHINY_CHARM_REROLLS 3 // Amount of re-rolls if the player has the Shiny Charm. Set to 0 to disable Shiny Charm's effects. #define I_SHINY_CHARM_REROLLS 3 // Amount of re-rolls if the player has the Shiny Charm. Set to 0 to disable Shiny Charm's effects.
#define I_KEY_FOSSILS GEN_7 // In Gen4+, all Gen 3 fossils became regular items. #define I_KEY_FOSSILS GEN_7 // In Gen4+, all Gen 3 fossils became regular items.
#define I_KEY_ESCAPE_ROPE GEN_7 // In Gen8, Escape Rope became a Key Item. #define I_KEY_ESCAPE_ROPE GEN_7 // In Gen8, Escape Rope became a Key Item. Keep in mind, this will make it free to buy in marts.
// Ball config // Ball config
#define I_LURE_BALL_MODIFIER GEN_7 // In Gen7+, Lure Ball's catch multiplier is x5 instead of x3. #define I_LURE_BALL_MODIFIER GEN_7 // In Gen7+, Lure Ball's catch multiplier is x5 instead of x3.

View file

@ -1281,12 +1281,13 @@ const struct Item gItems[] =
{ {
.name = _("Escape Rope"), .name = _("Escape Rope"),
.itemId = ITEM_ESCAPE_ROPE, .itemId = ITEM_ESCAPE_ROPE,
.price = 550,
.description = sEscapeRopeDesc, .description = sEscapeRopeDesc,
#if I_KEY_ESCAPE_ROPE >= GEN_8 #if I_KEY_ESCAPE_ROPE >= GEN_8
.price = 0,
.importance = 1, .importance = 1,
.pocket = POCKET_KEY_ITEMS, .pocket = POCKET_KEY_ITEMS,
#else #else
.price = 550,
.importance = 0, .importance = 0,
.pocket = POCKET_ITEMS, .pocket = POCKET_ITEMS,
#endif #endif