Fix cost of disguising amalgamy
"Disguise the amalgamy of this piece" consumes 25 Jade Fragments, not 1.
This commit is contained in:
parent
4184468f1d
commit
e08b9b07cb
|
@ -930,7 +930,7 @@ class Adjustment(enum.Enum):
|
||||||
|
|
||||||
DISGUISE_AMALGAMY = Action(
|
DISGUISE_AMALGAMY = Action(
|
||||||
"Disguise the amalgamy of this piece",
|
"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
|
amalgamy = -2
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue