1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-11 01:01:05 -09:00

Fix Arms Race cost

This commit is contained in:
PurpleCrowbar 2023-01-11 22:39:24 +00:00
parent a2a57e0f14
commit ae47bdce15

View file

@ -20,7 +20,7 @@ public final class ArmsRace extends CardImpl {
// {3}{R}: You may put an artifact card from your hand onto the battlefield. It gains haste. Sacrifice it at the beginning of the next end step.
this.addAbility(new SimpleActivatedAbility(
new PutCardIntoPlayWithHasteAndSacrificeEffect(StaticFilters.FILTER_CARD_ARTIFACT), new ManaCostsImpl<>("{R}")
new PutCardIntoPlayWithHasteAndSacrificeEffect(StaticFilters.FILTER_CARD_ARTIFACT), new ManaCostsImpl<>("{3}{R}")
));
}