Fix cost of disguising amalgamy

"Disguise the amalgamy of this piece" consumes 25 Jade Fragments, not 1.
This commit is contained in:
Jeremy Saklad 2021-06-15 08:30:21 -05:00
parent 4184468f1d
commit e08b9b07cb
Signed by: Jeremy Saklad
GPG Key ID: 9CA2149583EDBF84
1 changed files with 1 additions and 1 deletions

View File

@ -930,7 +930,7 @@ class Adjustment(enum.Enum):
DISGUISE_AMALGAMY = Action(
"Disguise the amalgamy of this piece",
cost = Cost.ACTION.value + Cost.JADE_FRAGMENT.value,
cost = Cost.ACTION.value + 25*Cost.JADE_FRAGMENT.value,
amalgamy = -2
)