forked from External/mage
[LCI] Implement Rampaging Ceratops
This commit is contained in:
parent
41418ffa08
commit
81ea2ae0b8
3 changed files with 39 additions and 0 deletions
37
Mage.Sets/src/mage/cards/r/RampagingCeratops.java
Normal file
37
Mage.Sets/src/mage/cards/r/RampagingCeratops.java
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
package mage.cards.r;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.common.combat.CantBeBlockedByOneEffect;
|
||||
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 RampagingCeratops extends CardImpl {
|
||||
|
||||
public RampagingCeratops(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{R}");
|
||||
|
||||
this.subtype.add(SubType.DINOSAUR);
|
||||
this.power = new MageInt(5);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Rampaging Ceratops can't be blocked except by three or more creatures.
|
||||
this.addAbility(new SimpleStaticAbility(new CantBeBlockedByOneEffect(3)));
|
||||
}
|
||||
|
||||
private RampagingCeratops(final RampagingCeratops card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public RampagingCeratops copy() {
|
||||
return new RampagingCeratops(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -101,6 +101,7 @@ public final class TheLostCavernsOfIxalan extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Poison Dart Frog", 207, Rarity.COMMON, mage.cards.p.PoisonDartFrog.class));
|
||||
cards.add(new SetCardInfo("Pugnacious Hammerskull", 208, Rarity.RARE, mage.cards.p.PugnaciousHammerskull.class));
|
||||
cards.add(new SetCardInfo("Quintorius Kand", 238, Rarity.MYTHIC, mage.cards.q.QuintoriusKand.class));
|
||||
cards.add(new SetCardInfo("Rampaging Ceratops", 162, Rarity.UNCOMMON, mage.cards.r.RampagingCeratops.class));
|
||||
cards.add(new SetCardInfo("Rampaging Spiketail", 116, Rarity.COMMON, mage.cards.r.RampagingSpiketail.class));
|
||||
cards.add(new SetCardInfo("Resplendent Angel", 32, Rarity.MYTHIC, mage.cards.r.ResplendentAngel.class));
|
||||
cards.add(new SetCardInfo("Restless Anchorage", 280, Rarity.RARE, mage.cards.r.RestlessAnchorage.class));
|
||||
|
|
|
|||
|
|
@ -12177,6 +12177,7 @@ Magmatic Galleon|The Lost Caverns of Ixalan|157|R|{3}{R}{R}|Artifact - Vehicle|5
|
|||
Ojer Axonil, Deepest Might|The Lost Caverns of Ixalan|158|M|{2}{R}{R}|Legendary Creature - God|4|4|Trample$If a red source you control would deal an amount of noncombat damage less than Ojer Axonil's power to an opponent, that source deals damage equal to Ojer Axonil's power instead.$When Ojer Axonil dies, return it to the battlefield tapped and transformed under its owner's control.|
|
||||
Temple of Power|The Lost Caverns of Ixalan|158|M||Land|||(Transforms from Ojer Axonil, Deepest Might.)${T}: Add {R}.${2}{R}, {T}: Transform Temple of Power. Activate only if red sources you controlled dealt 4 or more noncombat damage this turn and only as a sorcery.|
|
||||
Poetic Ingenuity|The Lost Caverns of Ixalan|161|R|{2}{R}|Enchantment|||Whenever one or more Dinosaurs you control attack, create that many Treasure tokens.$Whenever you cast an artifact spell, create a 3/1 red Dinosaur creature token. This ability triggers only once each turn.|
|
||||
Rampaging Ceratops|The Lost Caverns of Ixalan|162|U|{4}{R}|Creature - Dinosaur|5|4|Rampaging Ceratops can't be blocked except by three or more creatures.|
|
||||
Bedrock Tortoise|The Lost Caverns of Ixalan|176|R|{3}{G}|Creature - Turtle|0|6|As long as it's your turn, creatures you control have hexproof.$Each creature you control with toughness greater than its power assigns combat damage equal to its toughness rather than its power.|
|
||||
Cenote Scout|The Lost Caverns of Ixalan|178|U|{G}|Creature - Merfolk Scout|1|1|When Cenote Scout enters the battlefield, it explores.|
|
||||
Coati Scavenger|The Lost Caverns of Ixalan|179|U|{2}{G}|Creature - Raccoon|3|2|Descend 4 -- When Coati Scavenger enters the battlefield, if there are four or more permanent cards in your graveyard, return target permanent card from your graveyard to your hand.|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue