mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
spjspj - Some fixes for Synod Sanctum (ARC)
This commit is contained in:
parent
e05f8e04f7
commit
dfcca1307b
1 changed files with 4 additions and 6 deletions
|
@ -69,16 +69,15 @@ public class SynodSanctum extends CardImpl {
|
||||||
|
|
||||||
// {2}, {tap}: Exile target permanent you control.
|
// {2}, {tap}: Exile target permanent you control.
|
||||||
SynodSanctumEffect effect = new SynodSanctumEffect();
|
SynodSanctumEffect effect = new SynodSanctumEffect();
|
||||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new TapSourceCost());
|
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new ManaCostsImpl("{2}"));
|
||||||
ability.addCost(new ManaCostsImpl("{3}"));
|
ability.addCost (new TapSourceCost());
|
||||||
Target target = new TargetPermanent(filter);
|
Target target = new TargetPermanent(filter);
|
||||||
ability.addTarget(target);
|
ability.addTarget(target);
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
|
|
||||||
// {2}, Sacrifice Synod Sanctum: Return all cards exiled with Synod Sanctum to the battlefield under your control.
|
// {2}, Sacrifice Synod Sanctum: Return all cards exiled with Synod Sanctum to the battlefield under your control.
|
||||||
SynodSanctumEffect2 effect2 = new SynodSanctumEffect2();
|
SynodSanctumEffect2 effect2 = new SynodSanctumEffect2();
|
||||||
Ability ability2 = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect2, new TapSourceCost());
|
Ability ability2 = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect2, new ManaCostsImpl("{2}"));
|
||||||
ability2.addCost(new ManaCostsImpl("{2}"));
|
|
||||||
ability2.addCost(new SacrificeSourceCost());
|
ability2.addCost(new SacrificeSourceCost());
|
||||||
this.addAbility(ability2);
|
this.addAbility(ability2);
|
||||||
}
|
}
|
||||||
|
@ -97,7 +96,7 @@ class SynodSanctumEffect extends OneShotEffect {
|
||||||
|
|
||||||
SynodSanctumEffect() {
|
SynodSanctumEffect() {
|
||||||
super(Outcome.Benefit);
|
super(Outcome.Benefit);
|
||||||
staticText = "Exile target permanent you own";
|
staticText = "Exile target permanent you control";
|
||||||
}
|
}
|
||||||
|
|
||||||
SynodSanctumEffect(SynodSanctumEffect effect) {
|
SynodSanctumEffect(SynodSanctumEffect effect) {
|
||||||
|
@ -117,7 +116,6 @@ class SynodSanctumEffect extends OneShotEffect {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue