mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
* Old Man of the Sea - Removed the wrong activation cost of {2}.
This commit is contained in:
parent
1241f6582b
commit
cb4c62663f
1 changed files with 1 additions and 2 deletions
|
@ -80,8 +80,7 @@ public class OldManOfTheSea extends CardImpl {
|
|||
ConditionalContinousEffect effect = new ConditionalContinousEffect(
|
||||
new OldManOfTheSeaGainControlTargetEffect(Duration.Custom, true), new CompoundCondition(SourceTappedCondition.getInstance(), new SourcePowerGreaterEqualTargetCondition()),
|
||||
"Gain control of target creature with power less than or equal to {this}'s power for as long as {this} remains tapped and that creature's power remains less than or equal to {this}'s power");
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new GenericManaCost(2));
|
||||
ability.addCost(new TapSourceCost());
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new TapSourceCost());
|
||||
ability.addTarget(new TargetCreaturePermanent(controllableCreatures));
|
||||
this.addAbility(ability);
|
||||
// internal ability to check condition
|
||||
|
|
Loading…
Reference in a new issue