mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
[MH2] Implemented Power Depot
This commit is contained in:
parent
59678389df
commit
31220b17ca
2 changed files with 81 additions and 0 deletions
80
Mage.Sets/src/mage/cards/p/PowerDepot.java
Normal file
80
Mage.Sets/src/mage/cards/p/PowerDepot.java
Normal file
|
@ -0,0 +1,80 @@
|
|||
package mage.cards.p;
|
||||
|
||||
import mage.ConditionalMana;
|
||||
import mage.MageObject;
|
||||
import mage.Mana;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EntersBattlefieldTappedAbility;
|
||||
import mage.abilities.condition.Condition;
|
||||
import mage.abilities.keyword.ModularAbility;
|
||||
import mage.abilities.mana.ColorlessManaAbility;
|
||||
import mage.abilities.mana.ConditionalAnyColorManaAbility;
|
||||
import mage.abilities.mana.builder.ConditionalManaBuilder;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.game.Game;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class PowerDepot extends CardImpl {
|
||||
|
||||
public PowerDepot(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.LAND}, "");
|
||||
|
||||
// Power Depot enters the battlefield tapped.
|
||||
this.addAbility(new EntersBattlefieldTappedAbility());
|
||||
|
||||
// {T}: Add {C}.
|
||||
this.addAbility(new ColorlessManaAbility());
|
||||
|
||||
// {T}: Add one mana of any color. Spend this mana only to cast artifact spells or activate abilities of artifacts.
|
||||
this.addAbility(new ConditionalAnyColorManaAbility(1, new PowerDepotManaBuilder()));
|
||||
|
||||
// Modular 1
|
||||
this.addAbility(new ModularAbility(this, 1));
|
||||
}
|
||||
|
||||
private PowerDepot(final PowerDepot card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public PowerDepot copy() {
|
||||
return new PowerDepot(this);
|
||||
}
|
||||
}
|
||||
|
||||
class PowerDepotManaBuilder extends ConditionalManaBuilder {
|
||||
|
||||
@Override
|
||||
public ConditionalMana build(Object... options) {
|
||||
return new PowerDepotConditionalMana(this.mana);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "Spend this mana only to cast artifact spells or activate abilities of artifacts";
|
||||
}
|
||||
}
|
||||
|
||||
class PowerDepotConditionalMana extends ConditionalMana {
|
||||
|
||||
PowerDepotConditionalMana(Mana mana) {
|
||||
super(mana);
|
||||
this.addCondition(PowerDepotCondition.instance);
|
||||
}
|
||||
}
|
||||
|
||||
enum PowerDepotCondition implements Condition {
|
||||
instance;
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
MageObject object = game.getObject(source.getSourceId());
|
||||
return object != null && object.isArtifact();
|
||||
}
|
||||
}
|
|
@ -205,6 +205,7 @@ public final class ModernHorizons2 extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Piercing Rays", 24, Rarity.COMMON, mage.cards.p.PiercingRays.class));
|
||||
cards.add(new SetCardInfo("Piru, the Volatile", 207, Rarity.RARE, mage.cards.p.PiruTheVolatile.class));
|
||||
cards.add(new SetCardInfo("Plains", 481, Rarity.LAND, mage.cards.basiclands.Plains.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Power Depot", 251, Rarity.UNCOMMON, mage.cards.p.PowerDepot.class));
|
||||
cards.add(new SetCardInfo("Priest of Fell Rites", 208, Rarity.RARE, mage.cards.p.PriestOfFellRites.class));
|
||||
cards.add(new SetCardInfo("Prismatic Ending", 25, Rarity.UNCOMMON, mage.cards.p.PrismaticEnding.class));
|
||||
cards.add(new SetCardInfo("Profane Tutor", 97, Rarity.RARE, mage.cards.p.ProfaneTutor.class));
|
||||
|
|
Loading…
Reference in a new issue