Skip to content

Commit

Permalink
fix Coil description number
Browse files Browse the repository at this point in the history
  • Loading branch information
dbjorge committed Oct 13, 2019
1 parent adffcc9 commit d0d7e67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/stsjorbsmod/powers/CoilPower.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public CoilPower(final AbstractCreature owner, final AbstractCreature source, fi

@Override
public void updateDescription() {
description = DESCRIPTIONS[0] + amount + DESCRIPTIONS[1];
description = DESCRIPTIONS[0] + (amount * PatienceMemoryPower.DAMAGE_PER_COIL_ON_LEAVE) + DESCRIPTIONS[1];
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/stsjorbsmod/powers/PatienceMemoryPower.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
// Gain 1 Coil each time you play a card. When forgetting, deal 2 damage to all enemies for each Coil and lose all Coil.
public class PatienceMemoryPower extends AbstractMemoryPower implements CloneablePowerInterface {
private static final int COIL_PER_CARD = 1;
private static final int DAMAGE_PER_COIL_ON_LEAVE = 2;
public static final int DAMAGE_PER_COIL_ON_LEAVE = 2;

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

0 comments on commit d0d7e67

Please sign in to comment.