Skip to content

Commit

Permalink
Venom Tackle to 1
Browse files Browse the repository at this point in the history
Venom Tackle now costs 1 energy, deals 7 (*9) damage, 3 damage to you, and applies 4 (*6) Poison.  Tackles needed more variety than having only Combo Tackle be a 1-cost.

Fixed Vicious Tackle not having the Tackle tag, so it couldn't spawn through Goop Tackle.
  • Loading branch information
mikemayhemdev committed Dec 23, 2018
1 parent fb3d0e4 commit 16303f1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/main/java/slimebound/cards/SlimeSmash.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public class SlimeSmash extends AbstractSlimeboundCard {
public SlimeSmash() {

super(ID, NAME, SlimeboundMod.getResourcePath(IMG_PATH), COST, DESCRIPTION, TYPE, AbstractCardEnum.SLIMEBOUND, RARITY, TARGET);
tags.add(SlimeboundMod.TACKLE);


this.baseDamage = 10;
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/slimebound/cards/VenomTackle.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class VenomTackle extends AbstractSlimeboundCard {
private static final CardTarget TARGET = CardTarget.ENEMY;

private static final CardStrings cardStrings;
private static final int COST = 2;
private static final int COST = 1;
private static int baseSelfDamage;
public static int originalDamage;
public static int originalBlock;
Expand All @@ -43,11 +43,11 @@ public VenomTackle() {
super(ID, NAME, SlimeboundMod.getResourcePath(IMG_PATH), COST, DESCRIPTION, TYPE, AbstractCardEnum.SLIMEBOUND, RARITY, TARGET);
tags.add(SlimeboundMod.TACKLE);

this.baseDamage = this.originalDamage = 9;
this.selfDamage = 4;
this.baseDamage = this.originalDamage = 7;
this.selfDamage = 3;
this.upgradeDamage = 2;

this.magicNumber = this.baseMagicNumber = 6;
this.magicNumber = this.baseMagicNumber = 4;


}
Expand Down

0 comments on commit 16303f1

Please sign in to comment.