forked from External/mage
Added Mana Drain and Spell Crumple. Fixed replacement effect of Hinder.
This commit is contained in:
parent
97276cbd2a
commit
48e8be4fc2
14 changed files with 599 additions and 48 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue