Skip to content

Commit

Permalink
Add Treasure Factor to Nugget and Tiny Mushroom (#3836)
Browse files Browse the repository at this point in the history
  • Loading branch information
kittenchilly authored Dec 27, 2023
1 parent 88b0bd6 commit 4f61d44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/data/items.h
Original file line number Diff line number Diff line change
Expand Up @@ -2076,7 +2076,7 @@ const struct Item gItems[] =
[ITEM_NUGGET] =
{
.name = _("Nugget"),
.price = 10000,
.price = 10000 * TREASURE_FACTOR,
.description = COMPOUND_STRING("A nugget of pure\n"
"gold. Can be sold at\n"
"a high price."),
Expand All @@ -2102,7 +2102,7 @@ const struct Item gItems[] =
[ITEM_TINY_MUSHROOM] =
{
.name = _("Tiny Mushroom"),
.price = 500,
.price = 500 * TREASURE_FACTOR,
.description = COMPOUND_STRING("A plain mushroom\n"
"that would sell\n"
"at a cheap price."),
Expand Down

0 comments on commit 4f61d44

Please sign in to comment.