Examples of BasicManaEffect


Examples of mage.abilities.effects.common.BasicManaEffect

        this.subtype.add("Arcane");

        this.color.setRed(true);

        // Add {R}{R}{R} to your mana pool.
        this.getSpellAbility().addEffect(new BasicManaEffect(new Mana(3, 0, 0, 0, 0, 0, 0)));
        // Splice onto Arcane {1}{R}
        this.addAbility(new SpliceOntoArcaneAbility("{1}{R}"));
    }
View Full Code Here

Examples of mage.abilities.effects.common.BasicManaEffect

        this.color.setRed(true);
        this.power = new MageInt(1);
        this.toughness = new MageInt(1);

        this.addAbility(new EntersBattlefieldTriggeredAbility(new BasicManaEffect(new Mana(ColoredManaSymbol.R))));
    }
View Full Code Here

Examples of mage.abilities.effects.common.BasicManaEffect

        this.color.setGreen(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(2);

        // When Burning-Tree Emissary enters the battlefield, add {R}{G} to your mana pool.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new BasicManaEffect(new Mana(1,1,0,0,0,0,0))));
    }
View Full Code Here

Examples of mage.abilities.effects.common.BasicManaEffect

        super(ownerId, 149, "Cathodion", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{3}");
        this.expansionSetCode = "MRD";
        this.subtype.add("Construct");
        this.power = new MageInt(3);
        this.toughness = new MageInt(3);
        this.addAbility(new DiesTriggeredAbility(new BasicManaEffect(new Mana(0, 0, 0, 0, 0, 3, 0)), false));
    }
View Full Code Here

Examples of mage.abilities.effects.common.BasicManaEffect

}

class WasteNotLandTriggeredAbility extends TriggeredAbilityImpl {
   
    WasteNotLandTriggeredAbility() {
        super(Zone.BATTLEFIELD, new BasicManaEffect(new Mana(0, 0, 0, 0, 2, 0, 0)), false);
    }
View Full Code Here

Examples of mage.abilities.effects.common.BasicManaEffect

        super(ownerId, 133, "Myr Moonvessel", Rarity.COMMON, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{1}");
        this.expansionSetCode = "DST";
        this.subtype.add("Myr");
        this.power = new MageInt(1);
        this.toughness = new MageInt(1);
        this.addAbility(new DiesTriggeredAbility(new BasicManaEffect(new Mana(0, 0, 0, 0, 0, 1, 0))));
    }
View Full Code Here

Examples of mage.abilities.effects.common.BasicManaEffect

        super(ownerId, 118, "Deconstruct", Rarity.COMMON, new CardType[]{CardType.SORCERY}, "{2}{G}");
        this.expansionSetCode = "MRD";
        this.color.setGreen(true);
        this.getSpellAbility().addEffect(new DestroyTargetEffect());
        this.getSpellAbility().addTarget(new TargetPermanent(filter));
        this.getSpellAbility().addEffect(new BasicManaEffect(new Mana(0, 3, 0, 0, 0, 0, 0)));
    }
View Full Code Here

Examples of mage.abilities.effects.common.BasicManaEffect

        this.color.setBlack(true);

        // Destroy target creature. Add {B}{B}{B} to your mana pool.
        this.getSpellAbility().addEffect(new DestroyTargetEffect());
        this.getSpellAbility().addTarget(new TargetCreaturePermanent());
        this.getSpellAbility().addEffect(new BasicManaEffect(new Mana(0, 0, 0, 0, 3, 0, 0)));
    }
View Full Code Here

Examples of mage.abilities.effects.common.BasicManaEffect

    public SeethingSong(UUID ownerId) {
        super(ownerId, 104, "Seething Song", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{2}{R}");
        this.expansionSetCode = "MRD";
        this.color.setRed(true);
        this.getSpellAbility().addEffect(new BasicManaEffect(new Mana(5, 0, 0, 0, 0, 0, 0)));
    }
View Full Code Here

Examples of mage.abilities.effects.common.BasicManaEffect

}

class SolRingAbility extends BasicManaAbility {

    public SolRingAbility() {
        super(new BasicManaEffect(Mana.ColorlessMana(2)));
        this.netMana.setColorless(2);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.