forked from External/mage
[MH2] Implemented Lazotep Chancellor
This commit is contained in:
parent
e7adae42ef
commit
1fb3f91d84
2 changed files with 43 additions and 0 deletions
42
Mage.Sets/src/mage/cards/l/LazotepChancellor.java
Normal file
42
Mage.Sets/src/mage/cards/l/LazotepChancellor.java
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
package mage.cards.l;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
import mage.abilities.effects.common.DiscardCardControllerTriggeredAbility;
|
||||
import mage.abilities.effects.common.DoIfCostPaid;
|
||||
import mage.abilities.effects.keyword.AmassEffect;
|
||||
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 LazotepChancellor extends CardImpl {
|
||||
|
||||
public LazotepChancellor(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{U}{B}");
|
||||
|
||||
this.subtype.add(SubType.ZOMBIE);
|
||||
this.subtype.add(SubType.WIZARD);
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// Whenever you discard a card, you may pay {1}. If you do, amass 2.
|
||||
this.addAbility(new DiscardCardControllerTriggeredAbility(
|
||||
new DoIfCostPaid(new AmassEffect(2), new GenericManaCost(1)), false
|
||||
));
|
||||
}
|
||||
|
||||
private LazotepChancellor(final LazotepChancellor card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public LazotepChancellor copy() {
|
||||
return new LazotepChancellor(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -126,6 +126,7 @@ public final class ModernHorizons2 extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Kitchen Imp", 89, Rarity.COMMON, mage.cards.k.KitchenImp.class));
|
||||
cards.add(new SetCardInfo("Landscaper Colos", 18, Rarity.COMMON, mage.cards.l.LandscaperColos.class));
|
||||
cards.add(new SetCardInfo("Late to Dinner", 19, Rarity.COMMON, mage.cards.l.LateToDinner.class));
|
||||
cards.add(new SetCardInfo("Lazotep Chancellor", 203, Rarity.UNCOMMON, mage.cards.l.LazotepChancellor.class));
|
||||
cards.add(new SetCardInfo("Legion Vanguard", 90, Rarity.UNCOMMON, mage.cards.l.LegionVanguard.class));
|
||||
cards.add(new SetCardInfo("Liquimetal Torque", 228, Rarity.UNCOMMON, mage.cards.l.LiquimetalTorque.class));
|
||||
cards.add(new SetCardInfo("Lose Focus", 49, Rarity.COMMON, mage.cards.l.LoseFocus.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue