Add Treasure Factor to Nugget and Tiny Mushroom (#3836)
This commit is contained in:
parent
88b0bd6394
commit
4f61d44dfe
1 changed files with 2 additions and 2 deletions
|
@ -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."),
|
||||
|
@ -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."),
|
||||
|
|
Loading…
Reference in a new issue