forked from External/mage
42 lines
1.2 KiB
Java
42 lines
1.2 KiB
Java
package mage.cards.g;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.common.SimpleStaticAbility;
|
|
import mage.abilities.effects.common.combat.CanBlockAdditionalCreatureEffect;
|
|
import mage.constants.SubType;
|
|
import mage.abilities.keyword.TrampleAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.Zone;
|
|
|
|
/**
|
|
*
|
|
* @author TheElk801
|
|
*/
|
|
public final class GhastbarkTwins extends CardImpl {
|
|
|
|
public GhastbarkTwins(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{5}{G}{G}");
|
|
|
|
this.subtype.add(SubType.TREEFOLK);
|
|
this.power = new MageInt(7);
|
|
this.toughness = new MageInt(7);
|
|
|
|
// Trample
|
|
this.addAbility(TrampleAbility.getInstance());
|
|
|
|
// Ghastbark Twins can block an additional creature each combat.
|
|
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CanBlockAdditionalCreatureEffect()));
|
|
}
|
|
|
|
private GhastbarkTwins(final GhastbarkTwins card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public GhastbarkTwins copy() {
|
|
return new GhastbarkTwins(this);
|
|
}
|
|
}
|