forked from External/mage
[RFR] Correction of the text of some cards (#6602)
* Fix some cards * Fix Clot Sliver * Fix WarrenScourgeElf * Fix Olivia Voldaren * Fix Domri Rade Emblem * Fix Broken Ambitions Missing text Co-authored-by: Thomas ARBLAY <thomas.arblay@smile.fr>
This commit is contained in:
parent
055458e9a8
commit
2f68db7086
11 changed files with 53 additions and 28 deletions
|
|
@ -2,10 +2,10 @@
|
|||
|
||||
package mage.abilities.effects.common;
|
||||
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Outcome;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.effects.ReplacementEffectImpl;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Outcome;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.permanent.Permanent;
|
||||
|
|
@ -21,6 +21,11 @@ public class RegenerateSourceEffect extends ReplacementEffectImpl {
|
|||
staticText = "Regenerate {this}";
|
||||
}
|
||||
|
||||
public RegenerateSourceEffect(String targetName) {
|
||||
super(Duration.EndOfTurn, Outcome.Regenerate);
|
||||
staticText = "Regenerate " + targetName;
|
||||
}
|
||||
|
||||
public RegenerateSourceEffect(final RegenerateSourceEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue