fixed Rapacious Dragon creating a single treaure token

This commit is contained in:
Evan Kranzler 2019-06-27 20:15:40 -04:00
parent ca9ecc6035
commit b0181539f3

View file

@ -29,7 +29,7 @@ public final class RapaciousDragon extends CardImpl {
// When Rapacious Dragon enters the battlefield, create two Treasure tokens.
this.addAbility(new EntersBattlefieldTriggeredAbility(
new CreateTokenEffect(new TreasureToken())
new CreateTokenEffect(new TreasureToken(), 2)
.setText("create two Treasure tokens. <i>(Theyre artifacts with " +
"\"{T}, Sacrifice this artifact: Add one mana of any color.\")</i>")
));