fixed Sling-Gang Lieutenant not having p/t

This commit is contained in:
Evan Kranzler 2019-05-26 12:23:33 -04:00
parent b6392f9ae7
commit 924b0725d2

View file

@ -1,5 +1,6 @@
package mage.cards.s; package mage.cards.s;
import mage.MageInt;
import mage.abilities.Ability; import mage.abilities.Ability;
import mage.abilities.common.EntersBattlefieldTriggeredAbility; import mage.abilities.common.EntersBattlefieldTriggeredAbility;
import mage.abilities.common.SimpleActivatedAbility; import mage.abilities.common.SimpleActivatedAbility;
@ -33,6 +34,8 @@ public final class SlingGangLieutenant extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}"); super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}");
this.subtype.add(SubType.GOBLIN); this.subtype.add(SubType.GOBLIN);
this.power = new MageInt(1);
this.toughness = new MageInt(1);
// When Sling-Gang Lieutenant enters the battlefield, create two 1/1 red Goblin creature tokens. // When Sling-Gang Lieutenant enters the battlefield, create two 1/1 red Goblin creature tokens.
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new GoblinToken(), 2))); this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new GoblinToken(), 2)));