[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:
Thomas ARBLAY 2020-06-17 16:58:35 +02:00 committed by GitHub
parent 055458e9a8
commit 2f68db7086
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 53 additions and 28 deletions

View file

@ -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);
}