mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
[MOM] Implement Doomskar Warrior
This commit is contained in:
parent
559ae6d6b4
commit
5f2ae50df6
2 changed files with 57 additions and 0 deletions
56
Mage.Sets/src/mage/cards/d/DoomskarWarrior.java
Normal file
56
Mage.Sets/src/mage/cards/d/DoomskarWarrior.java
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
package mage.cards.d;
|
||||||
|
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.common.DealsCombatDamageToAPlayerTriggeredAbility;
|
||||||
|
import mage.abilities.dynamicvalue.common.SavedDamageValue;
|
||||||
|
import mage.abilities.effects.common.LookLibraryAndPickControllerEffect;
|
||||||
|
import mage.abilities.keyword.BackupAbility;
|
||||||
|
import mage.abilities.keyword.TrampleAbility;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.PutCards;
|
||||||
|
import mage.constants.SubType;
|
||||||
|
import mage.filter.StaticFilters;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author TheElk801
|
||||||
|
*/
|
||||||
|
public final class DoomskarWarrior extends CardImpl {
|
||||||
|
|
||||||
|
public DoomskarWarrior(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}{G}");
|
||||||
|
|
||||||
|
this.subtype.add(SubType.HUMAN);
|
||||||
|
this.subtype.add(SubType.WARRIOR);
|
||||||
|
this.power = new MageInt(4);
|
||||||
|
this.toughness = new MageInt(3);
|
||||||
|
|
||||||
|
// Backup 1
|
||||||
|
BackupAbility backupAbility = new BackupAbility(this, 1);
|
||||||
|
this.addAbility(backupAbility);
|
||||||
|
|
||||||
|
// Trample
|
||||||
|
backupAbility.addAbility(TrampleAbility.getInstance());
|
||||||
|
|
||||||
|
// Whenever this creature deals combat damage to a player or battle, look at that many cards from the top of your library. You may reveal a creature or land card from among them and put it into your hand. Put the rest on the bottom of your library in a random order.
|
||||||
|
backupAbility.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(
|
||||||
|
new LookLibraryAndPickControllerEffect(
|
||||||
|
SavedDamageValue.MANY, 1,
|
||||||
|
StaticFilters.FILTER_CARD_CREATURE_OR_LAND,
|
||||||
|
PutCards.HAND, PutCards.BOTTOM_RANDOM
|
||||||
|
), false
|
||||||
|
).setOrBattle(true).setTriggerPhrase("Whenever this creature deals combat damage to a player or battle, "));
|
||||||
|
}
|
||||||
|
|
||||||
|
private DoomskarWarrior(final DoomskarWarrior card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public DoomskarWarrior copy() {
|
||||||
|
return new DoomskarWarrior(this);
|
||||||
|
}
|
||||||
|
}
|
|
@ -73,6 +73,7 @@ public final class MarchOfTheMachine extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Deeproot Wayfinder", 184, Rarity.RARE, mage.cards.d.DeeprootWayfinder.class));
|
cards.add(new SetCardInfo("Deeproot Wayfinder", 184, Rarity.RARE, mage.cards.d.DeeprootWayfinder.class));
|
||||||
cards.add(new SetCardInfo("Dismal Backwater", 269, Rarity.COMMON, mage.cards.d.DismalBackwater.class));
|
cards.add(new SetCardInfo("Dismal Backwater", 269, Rarity.COMMON, mage.cards.d.DismalBackwater.class));
|
||||||
cards.add(new SetCardInfo("Disturbing Conversion", 54, Rarity.COMMON, mage.cards.d.DisturbingConversion.class));
|
cards.add(new SetCardInfo("Disturbing Conversion", 54, Rarity.COMMON, mage.cards.d.DisturbingConversion.class));
|
||||||
|
cards.add(new SetCardInfo("Doomskar Warrior", 185, Rarity.RARE, mage.cards.d.DoomskarWarrior.class));
|
||||||
cards.add(new SetCardInfo("Dreg Recycler", 100, Rarity.COMMON, mage.cards.d.DregRecycler.class));
|
cards.add(new SetCardInfo("Dreg Recycler", 100, Rarity.COMMON, mage.cards.d.DregRecycler.class));
|
||||||
cards.add(new SetCardInfo("Dusk Legion Duelist", 11, Rarity.RARE, mage.cards.d.DuskLegionDuelist.class));
|
cards.add(new SetCardInfo("Dusk Legion Duelist", 11, Rarity.RARE, mage.cards.d.DuskLegionDuelist.class));
|
||||||
cards.add(new SetCardInfo("Elspeth's Smite", 13, Rarity.UNCOMMON, mage.cards.e.ElspethsSmite.class));
|
cards.add(new SetCardInfo("Elspeth's Smite", 13, Rarity.UNCOMMON, mage.cards.e.ElspethsSmite.class));
|
||||||
|
|
Loading…
Reference in a new issue