mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 07:22:03 -08:00
* Added UT for #3244. Not able to reproduce the problem.
This commit is contained in:
parent
85c394c29b
commit
020c66c6a1
5 changed files with 398 additions and 49 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue