Remove Composite Cost

This commit is contained in:
jmlundeen 2025-03-16 15:08:27 -05:00
parent 9a0cfaa5e7
commit 4a0a8559f9

View file

@ -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);
}