mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
Implemented Vedalken Humiliator
This commit is contained in:
parent
ded41fd1e0
commit
b757f15313
2 changed files with 62 additions and 0 deletions
61
Mage.Sets/src/mage/cards/v/VedalkenHumiliator.java
Normal file
61
Mage.Sets/src/mage/cards/v/VedalkenHumiliator.java
Normal file
|
@ -0,0 +1,61 @@
|
|||
package mage.cards.v;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.TriggeredAbility;
|
||||
import mage.abilities.common.AttacksTriggeredAbility;
|
||||
import mage.abilities.condition.common.MetalcraftCondition;
|
||||
import mage.abilities.decorator.ConditionalTriggeredAbility;
|
||||
import mage.abilities.effects.common.continuous.LoseAllAbilitiesAllEffect;
|
||||
import mage.abilities.effects.common.continuous.SetPowerToughnessAllEffect;
|
||||
import mage.constants.SubType;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.filter.StaticFilters;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class VedalkenHumiliator extends CardImpl {
|
||||
|
||||
public VedalkenHumiliator(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{U}");
|
||||
|
||||
this.subtype.add(SubType.VEDALKEN);
|
||||
this.subtype.add(SubType.WIZARD);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Metalcraft — Whenever Vedalken Humiliator attacks, if you control three or more artifacts, creatures your opponents control lose all abilities and have base power and toughness 1/1 until end of turn.
|
||||
TriggeredAbility ability = new AttacksTriggeredAbility(
|
||||
new SetPowerToughnessAllEffect(
|
||||
1, 1, Duration.EndOfTurn,
|
||||
StaticFilters.FILTER_OPPONENTS_PERMANENT_CREATURE,
|
||||
true
|
||||
), false
|
||||
);
|
||||
ability.addEffect(new LoseAllAbilitiesAllEffect(
|
||||
StaticFilters.FILTER_OPPONENTS_PERMANENT_CREATURE,
|
||||
Duration.EndOfTurn
|
||||
));
|
||||
this.addAbility(new ConditionalTriggeredAbility(
|
||||
ability, MetalcraftCondition.instance,
|
||||
"<i>Metalcraft</i> — Whenever {this} attacks, "
|
||||
+ "if you control three or more artifacts, "
|
||||
+ "creatures your opponents control lose all abilities "
|
||||
+ "and have base power and toughness 1/1 until end of turn."
|
||||
));
|
||||
}
|
||||
|
||||
public VedalkenHumiliator(final VedalkenHumiliator card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public VedalkenHumiliator copy() {
|
||||
return new VedalkenHumiliator(this);
|
||||
}
|
||||
}
|
|
@ -295,6 +295,7 @@ public final class Commander2018 extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Utter End", 193, Rarity.RARE, mage.cards.u.UtterEnd.class));
|
||||
cards.add(new SetCardInfo("Varchild, Betrayer of Kjeldor", 28, Rarity.RARE, mage.cards.v.VarchildBetrayerOfKjeldor.class));
|
||||
cards.add(new SetCardInfo("Varina, Lich Queen", 48, Rarity.MYTHIC, mage.cards.v.VarinaLichQueen.class));
|
||||
cards.add(new SetCardInfo("Vedalken Humiliator", 13, Rarity.RARE, mage.cards.v.VedalkenHumiliator.class));
|
||||
cards.add(new SetCardInfo("Vessel of Endless Rest", 229, Rarity.UNCOMMON, mage.cards.v.VesselOfEndlessRest.class));
|
||||
cards.add(new SetCardInfo("Vow of Flight", 110, Rarity.UNCOMMON, mage.cards.v.VowOfFlight.class));
|
||||
cards.add(new SetCardInfo("Vow of Wildness", 164, Rarity.UNCOMMON, mage.cards.v.VowOfWildness.class));
|
||||
|
|
Loading…
Reference in a new issue