forked from External/mage
[DSK] Implement Bashful Beastie
This commit is contained in:
parent
91d34c42aa
commit
58a6ff6e50
2 changed files with 38 additions and 0 deletions
37
Mage.Sets/src/mage/cards/b/BashfulBeastie.java
Normal file
37
Mage.Sets/src/mage/cards/b/BashfulBeastie.java
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.DiesSourceTriggeredAbility;
|
||||
import mage.abilities.effects.keyword.ManifestDreadEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class BashfulBeastie extends CardImpl {
|
||||
|
||||
public BashfulBeastie(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{G}");
|
||||
|
||||
this.subtype.add(SubType.BEAST);
|
||||
this.power = new MageInt(5);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// When Bashful Beastie dies, manifest dread.
|
||||
this.addAbility(new DiesSourceTriggeredAbility(new ManifestDreadEffect()));
|
||||
}
|
||||
|
||||
private BashfulBeastie(final BashfulBeastie card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BashfulBeastie copy() {
|
||||
return new BashfulBeastie(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -26,6 +26,7 @@ public final class DuskmournHouseOfHorror extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Anthropede", 167, Rarity.COMMON, mage.cards.a.Anthropede.class));
|
||||
cards.add(new SetCardInfo("Attack-in-the-Box", 242, Rarity.UNCOMMON, mage.cards.a.AttackInTheBox.class));
|
||||
cards.add(new SetCardInfo("Balustrade Wurm", 168, Rarity.RARE, mage.cards.b.BalustradeWurm.class));
|
||||
cards.add(new SetCardInfo("Bashful Beastie", 169, Rarity.COMMON, mage.cards.b.BashfulBeastie.class));
|
||||
cards.add(new SetCardInfo("Bear Trap", 243, Rarity.COMMON, mage.cards.b.BearTrap.class));
|
||||
cards.add(new SetCardInfo("Blazemire Verge", 256, Rarity.RARE, mage.cards.b.BlazemireVerge.class));
|
||||
cards.add(new SetCardInfo("Bleeding Woods", 257, Rarity.COMMON, mage.cards.b.BleedingWoods.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue