Examples of PutIntoGraveFromBattlefieldTriggeredAbility


Examples of mage.abilities.common.PutIntoGraveFromBattlefieldTriggeredAbility

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

    this.addAbility(FlyingAbility.getInstance());
    this.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new DamageEverythingEffect(3), false));
    this.addAbility(new SimpleActivatedAbility(Zone.GRAVEYARD, new ReturnSourceFromGraveyardToHandEffect(), new ManaCostsImpl("{3}{R}{R}")));
  }
View Full Code Here

Examples of mage.abilities.common.PutIntoGraveFromBattlefieldTriggeredAbility

    this.color.setWhite(true);
    this.power = new MageInt(0);
    this.toughness = new MageInt(3);

    this.addAbility(DefenderAbility.getInstance());
    this.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new CreateTokenEffect(rocEggToken, 1), false));
  }
View Full Code Here

Examples of mage.abilities.common.PutIntoGraveFromBattlefieldTriggeredAbility

    this.color.setGreen(true);
    this.subtype.add("Lizard");
    this.power = new MageInt(3);
    this.toughness = new MageInt(3);

    this.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new CreateTokenEffect(saprolingToken, 3), false));
  }
View Full Code Here

Examples of mage.abilities.common.PutIntoGraveFromBattlefieldTriggeredAbility

    this.subtype.add("Ooze");
    this.color.setGreen(true);
    this.power = new MageInt(4);
    this.toughness = new MageInt(4);

    this.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new CreateTokenEffect(new Ooze2Token(), 2), false));
  }
View Full Code Here

Examples of mage.abilities.common.PutIntoGraveFromBattlefieldTriggeredAbility

    cardType.add(CardType.CREATURE);
    subtype.add("Ooze");
    color.setGreen(true);
    power = new MageInt(2);
    toughness = new MageInt(2);
    this.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new CreateTokenEffect(new Ooze1Token(), 2), false));
  }
View Full Code Here

Examples of mage.abilities.common.PutIntoGraveFromBattlefieldTriggeredAbility

        this.color.setGreen(true);
        this.subtype.add("Fungus");
        this.power = new MageInt(1);
  this.toughness = new MageInt(1);

        this.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new CreateTokenEffect(new SaprolingToken()), false));
    }
View Full Code Here

Examples of mage.abilities.common.PutIntoGraveFromBattlefieldTriggeredAbility

    this.power = new MageInt(4);
    this.toughness = new MageInt(4);

    this.addAbility(FlyingAbility.getInstance());
    this.addAbility(new EntersBattlefieldTriggeredAbility(new HoardingDragonEffect(this.getId()), true));
    this.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new ReturnFromExileEffect(this.getId(), Zone.BATTLEFIELD), false));
  }
View Full Code Here

Examples of mage.abilities.common.PutIntoGraveFromBattlefieldTriggeredAbility

      if (creature != null) {
        switch (layer) {
          case AbilityAddingRemovingEffects_6:
            if (sublayer == SubLayer.NA) {
              creature.addAbility(new OnEventTriggeredAbility(EventType.UPKEEP_STEP_PRE, "beginning of your upkeep", new SacrificeSourceEffect()));
              creature.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new NecroticPlagueEffect2(source.getSourceId()), false));
            }
            break;
        }
        return true;
      }
View Full Code Here

Examples of mage.abilities.common.PutIntoGraveFromBattlefieldTriggeredAbility

        this.expansionSetCode = "BOK";
        this.supertype.add("Legendary");
        // {tap}: Add {1} to your mana pool.
        this.addAbility(new ColorlessManaAbility());
        // When Gods' Eye, Gate to the Reikai is put into a graveyard from the battlefield, put a 1/1 colorless Spirit creature token onto the battlefield.
        this.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new CreateTokenEffect(new SpiritToken(), 1), false));
    }
View Full Code Here

Examples of mage.abilities.common.PutIntoGraveFromBattlefieldTriggeredAbility

        this.addAbility(new ConditionalTriggeredAbility(
                new DiesAttachedTriggeredAbility(new ReturnToBattlefieldUnderYourControlAttachedEffect(),"equipped creature", false),
                new OathkeeperEquippedMatchesFilterCondition(filter),
                ""));
        // When Oathkeeper, Takeno's Daisho is put into a graveyard from the battlefield, exile equipped creature.
        this.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new ExileEquippedEffect()));
        // Equip {2}
        this.addAbility(new EquipAbility( Outcome.BoostCreature, new ManaCostsImpl("{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.