Skip to content

Commit d0d7e67

Browse files
committed
fix Coil description number
1 parent adffcc9 commit d0d7e67

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/stsjorbsmod/powers/CoilPower.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public CoilPower(final AbstractCreature owner, final AbstractCreature source, fi
4949

5050
@Override
5151
public void updateDescription() {
52-
description = DESCRIPTIONS[0] + amount + DESCRIPTIONS[1];
52+
description = DESCRIPTIONS[0] + (amount * PatienceMemoryPower.DAMAGE_PER_COIL_ON_LEAVE) + DESCRIPTIONS[1];
5353
}
5454

5555
@Override

src/main/java/stsjorbsmod/powers/PatienceMemoryPower.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
// Gain 1 Coil each time you play a card. When forgetting, deal 2 damage to all enemies for each Coil and lose all Coil.
2424
public class PatienceMemoryPower extends AbstractMemoryPower implements CloneablePowerInterface {
2525
private static final int COIL_PER_CARD = 1;
26-
private static final int DAMAGE_PER_COIL_ON_LEAVE = 2;
26+
public static final int DAMAGE_PER_COIL_ON_LEAVE = 2;
2727

2828
public static final String POWER_ID = JorbsMod.makeID(PatienceMemoryPower.class.getSimpleName());
2929
private static final PowerStrings powerStrings = CardCrawlGame.languagePack.getPowerStrings(POWER_ID);

0 commit comments

Comments
 (0)