mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
[VOC] Implemented Kamber, the Plunderer
This commit is contained in:
parent
7fa8540cec
commit
6b95e19630
2 changed files with 57 additions and 0 deletions
56
Mage.Sets/src/mage/cards/k/KamberThePlunderer.java
Normal file
56
Mage.Sets/src/mage/cards/k/KamberThePlunderer.java
Normal file
|
@ -0,0 +1,56 @@
|
|||
package mage.cards.k;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.DiesCreatureTriggeredAbility;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.abilities.effects.common.GainLifeEffect;
|
||||
import mage.abilities.keyword.LifelinkAbility;
|
||||
import mage.abilities.keyword.PartnerWithAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.game.permanent.token.BloodToken;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class KamberThePlunderer extends CardImpl {
|
||||
|
||||
public KamberThePlunderer(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}");
|
||||
|
||||
this.addSuperType(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.VAMPIRE);
|
||||
this.subtype.add(SubType.ROGUE);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Partner with Laurine, the Diversion
|
||||
this.addAbility(new PartnerWithAbility("Laurine, the Diversion"));
|
||||
|
||||
// Lifelink
|
||||
this.addAbility(LifelinkAbility.getInstance());
|
||||
|
||||
// Whenever a creature an opponent controls dies, you gain 1 life and create a Blood token.
|
||||
Ability ability = new DiesCreatureTriggeredAbility(
|
||||
new GainLifeEffect(1), false, StaticFilters.FILTER_OPPONENTS_PERMANENT_A_CREATURE
|
||||
);
|
||||
ability.addEffect(new CreateTokenEffect(new BloodToken()));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
private KamberThePlunderer(final KamberThePlunderer card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public KamberThePlunderer copy() {
|
||||
return new KamberThePlunderer(this);
|
||||
}
|
||||
}
|
|
@ -74,6 +74,7 @@ public final class CrimsonVowCommander extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Hollowhenge Overlord", 36, Rarity.RARE, mage.cards.h.HollowhengeOverlord.class));
|
||||
cards.add(new SetCardInfo("Imprisoned in the Moon", 106, Rarity.RARE, mage.cards.i.ImprisonedInTheMoon.class));
|
||||
cards.add(new SetCardInfo("Indulgent Aristocrat", 130, Rarity.UNCOMMON, mage.cards.i.IndulgentAristocrat.class));
|
||||
cards.add(new SetCardInfo("Kamber, the Plunderer", 19, Rarity.RARE, mage.cards.k.KamberThePlunderer.class));
|
||||
cards.add(new SetCardInfo("Kami of the Crescent Moon", 107, Rarity.RARE, mage.cards.k.KamiOfTheCrescentMoon.class));
|
||||
cards.add(new SetCardInfo("Karmic Guide", 90, Rarity.RARE, mage.cards.k.KarmicGuide.class));
|
||||
cards.add(new SetCardInfo("Kirtar's Wrath", 91, Rarity.RARE, mage.cards.k.KirtarsWrath.class));
|
||||
|
|
Loading…
Reference in a new issue