Added Mana Drain and Spell Crumple. Fixed replacement effect of Hinder.

This commit is contained in:
LevelX2 2014-08-25 13:54:47 +02:00
parent 97276cbd2a
commit 48e8be4fc2
14 changed files with 599 additions and 48 deletions

View file

@ -22,10 +22,10 @@ public class AddManaToManaPoolEffect extends OneShotEffect {
protected Mana mana;
public AddManaToManaPoolEffect(Mana mana) {
public AddManaToManaPoolEffect(Mana mana, String textManaPoolOwner) {
super(Outcome.PutManaInPool);
this.mana = mana;
this.staticText = "add " + mana.toString() + " to that player's mana pool";
this.staticText = "add " + mana.toString() + " to " + textManaPoolOwner + " mana pool";
}
public AddManaToManaPoolEffect(final AddManaToManaPoolEffect effect) {