* Added UT for #3244. Not able to reproduce the problem.

This commit is contained in:
LevelX2 2017-05-17 12:53:00 +02:00
parent 85c394c29b
commit 020c66c6a1
5 changed files with 398 additions and 49 deletions

View file

@ -55,10 +55,10 @@ import mage.watchers.common.PlayerLostLifeWatcher;
*/
public class LuminarchAscension extends CardImpl {
private String rule = "At the beginning of each opponent's end step, if you didn't lose life this turn, you may put a quest counter on Luminarch Ascension. (Damage causes loss of life.)";
private String rule = "At the beginning of each opponent's end step, if you didn't lose life this turn, you may put a quest counter on {this}. (Damage causes loss of life.)";
public LuminarchAscension(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{1}{W}");
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{1}{W}");
// At the beginning of each opponent's end step, if you didn't lose life this turn, you may put a quest counter on Luminarch Ascension.
this.addAbility(new ConditionalTriggeredAbility(new LuminarchAscensionTriggeredAbility(), YouLostNoLifeThisTurnCondition.instance, rule));
@ -141,7 +141,6 @@ class SourceHasCountersCost extends CostImpl {
enum YouLostNoLifeThisTurnCondition implements Condition {
instance;
@Override