* Code clean up.

This commit is contained in:
LevelX2 2020-06-08 08:53:47 +02:00
parent 5185d71638
commit 623b23d140

View file

@ -52,8 +52,7 @@ public final class MarrowGnawer extends CardImpl {
// {T}, Sacrifice a Rat: create X 1/1 black Rat creature tokens, where X is the number of Rats you control.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD,
new CreateTokenEffect(new RatToken(), new PermanentsOnBattlefieldCount(filter3, null))
/*.setText("create X 1/1 black Rat creature tokens, where X is the number of Rats you control")*/,
new CreateTokenEffect(new RatToken(), new PermanentsOnBattlefieldCount(filter3, null)),
new TapSourceCost());
ability.addCost( new SacrificeTargetCost(new TargetControlledPermanent(filterSacrifice)));
this.addAbility(ability);