mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 07:22:03 -08:00
[DSK] Implement Appendage Amalgam
This commit is contained in:
parent
9a25e55e1d
commit
10dd31f313
2 changed files with 42 additions and 0 deletions
41
Mage.Sets/src/mage/cards/a/AppendageAmalgam.java
Normal file
41
Mage.Sets/src/mage/cards/a/AppendageAmalgam.java
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
package mage.cards.a;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.AttacksTriggeredAbility;
|
||||
import mage.abilities.effects.keyword.SurveilEffect;
|
||||
import mage.abilities.keyword.FlashAbility;
|
||||
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 AppendageAmalgam extends CardImpl {
|
||||
|
||||
public AppendageAmalgam(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT, CardType.CREATURE}, "{2}{B}");
|
||||
|
||||
this.subtype.add(SubType.HORROR);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Flash
|
||||
this.addAbility(FlashAbility.getInstance());
|
||||
|
||||
// Whenever Appendage Amalgam attacks, surveil 1.
|
||||
this.addAbility(new AttacksTriggeredAbility(new SurveilEffect(1)));
|
||||
}
|
||||
|
||||
private AppendageAmalgam(final AppendageAmalgam card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AppendageAmalgam copy() {
|
||||
return new AppendageAmalgam(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -24,6 +24,7 @@ public final class DuskmournHouseOfHorror extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Abandoned Campground", 255, Rarity.COMMON, mage.cards.a.AbandonedCampground.class));
|
||||
cards.add(new SetCardInfo("Altanak, the Thrice-Called", 166, Rarity.UNCOMMON, mage.cards.a.AltanakTheThriceCalled.class));
|
||||
cards.add(new SetCardInfo("Anthropede", 167, Rarity.COMMON, mage.cards.a.Anthropede.class));
|
||||
cards.add(new SetCardInfo("Appendage Amalgam", 83, Rarity.COMMON, mage.cards.a.AppendageAmalgam.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("Baseball Bat", 209, Rarity.UNCOMMON, mage.cards.b.BaseballBat.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue