Add Treasure Factor to Nugget and Tiny Mushroom (#3836)

This commit is contained in:
kittenchilly 2023-12-27 17:02:51 -06:00 committed by GitHub
parent 88b0bd6394
commit 4f61d44dfe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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."),