mirror of
https://github.com/correl/mage.git
synced 2024-11-16 03:00:12 +00:00
* The Chain Veil - Fixed that the activated ability did not only last until end of turn.
This commit is contained in:
parent
f6cb904288
commit
5975074cc0
1 changed files with 2 additions and 1 deletions
|
@ -67,6 +67,7 @@ public class TheChainVeil extends CardImpl {
|
||||||
|
|
||||||
// At the beginning of your end step, if you didn't activate a loyalty ability of a planeswalker this turn, you lose 2 life.
|
// At the beginning of your end step, if you didn't activate a loyalty ability of a planeswalker this turn, you lose 2 life.
|
||||||
this.addAbility(new BeginningOfEndStepTriggeredAbility(new TheChainVeilTriggeredEffect(), TargetController.YOU, false), new ActivatedLoyaltyAbilityWatcher());
|
this.addAbility(new BeginningOfEndStepTriggeredAbility(new TheChainVeilTriggeredEffect(), TargetController.YOU, false), new ActivatedLoyaltyAbilityWatcher());
|
||||||
|
|
||||||
// {4}, {T}: For each planeswalker you control, you may activate one of its loyalty abilities once this turn as though none of its loyalty abilities had been activated this turn.
|
// {4}, {T}: For each planeswalker you control, you may activate one of its loyalty abilities once this turn as though none of its loyalty abilities had been activated this turn.
|
||||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD,
|
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD,
|
||||||
new TheChainVeilIncreaseLoyaltyUseEffect(),
|
new TheChainVeilIncreaseLoyaltyUseEffect(),
|
||||||
|
@ -161,7 +162,7 @@ class ActivatedLoyaltyAbilityWatcher extends Watcher {
|
||||||
class TheChainVeilIncreaseLoyaltyUseEffect extends ContinuousEffectImpl {
|
class TheChainVeilIncreaseLoyaltyUseEffect extends ContinuousEffectImpl {
|
||||||
|
|
||||||
public TheChainVeilIncreaseLoyaltyUseEffect() {
|
public TheChainVeilIncreaseLoyaltyUseEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Layer.RulesEffects, SubLayer.NA, Outcome.Benefit);
|
super(Duration.EndOfTurn, Layer.RulesEffects, SubLayer.NA, Outcome.Benefit);
|
||||||
staticText = "For each planeswalker you control, you may activate one of its loyalty abilities once this turn as though none of its loyalty abilities had been activated this turn";
|
staticText = "For each planeswalker you control, you may activate one of its loyalty abilities once this turn as though none of its loyalty abilities had been activated this turn";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue