Skip to content

Commit

Permalink
buff SelfDestruct: deals less damage to self
Browse files Browse the repository at this point in the history
  • Loading branch information
twanvl committed Jun 13, 2018
1 parent d37e23b commit ba46d95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Changed Lightbulb: now gains 2(3) energy for 1 Fuel
* Changed Tune: upgraded card no longer exhuasts but still only tunes for 2
* Changed Fragmentation Grenade: now common instead of uncommon
* Changed Self Destruct: deals less damage to self
* Added card: Weaponize
* Fixed: Acid Spray with wide nozzle deals 10(13) damage instead of 7(10).

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/madsciencemod/cards/SelfDestruct.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class SelfDestruct extends AbstractMadScienceCard {
public static final String NAME = cardStrings.NAME;
public static final String DESCRIPTION = cardStrings.DESCRIPTION;
private static final int COST = 1;
private static final int SELF_DMG = 10;
private static final int SELF_DMG = 6;
private static final int ATTACK_DMG = 20;
private static final int UPGRADE_ATTACK_DMG = 5;
private static final CardType TYPE = CardType.SKILL;
Expand Down

0 comments on commit ba46d95

Please sign in to comment.