forked from External/mage
Remove Composite Cost
This commit is contained in:
parent
9a0cfaa5e7
commit
4a0a8559f9
1 changed files with 2 additions and 1 deletions
|
|
@ -49,7 +49,8 @@ public final class GuidelightMatrix extends CardImpl {
|
|||
Ability animateVehicleAbility = new SimpleActivatedAbility(
|
||||
new AddCardTypeTargetEffect(Duration.EndOfTurn, CardType.ARTIFACT, CardType.CREATURE)
|
||||
.setText("Target Vehicle you control becomes an artifact creature until end of turn."),
|
||||
new CompositeCost(new ManaCostsImpl<>("{2}"), new TapSourceCost(), "{2}, {T}"));
|
||||
new ManaCostsImpl<>("{2}"));
|
||||
animateVehicleAbility.addCost(new TapSourceCost());
|
||||
animateVehicleAbility.addTarget(new TargetPermanent(vehicleFilter));
|
||||
this.addAbility(animateVehicleAbility);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue