forked from External/mage
Implemented Raging Kronch
This commit is contained in:
parent
0a490d1e36
commit
b1ea436825
2 changed files with 37 additions and 0 deletions
36
Mage.Sets/src/mage/cards/r/RagingKronch.java
Normal file
36
Mage.Sets/src/mage/cards/r/RagingKronch.java
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
package mage.cards.r;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.CantAttackAloneAbility;
|
||||
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 RagingKronch extends CardImpl {
|
||||
|
||||
public RagingKronch(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{R}");
|
||||
|
||||
this.subtype.add(SubType.BEAST);
|
||||
this.power = new MageInt(4);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// Raging Kronch can't attack alone.
|
||||
this.addAbility(new CantAttackAloneAbility());
|
||||
}
|
||||
|
||||
private RagingKronch(final RagingKronch card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public RagingKronch copy() {
|
||||
return new RagingKronch(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -132,6 +132,7 @@ public final class WarOfTheSpark extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Pollenbright Druid", 173, Rarity.COMMON, mage.cards.p.PollenbrightDruid.class));
|
||||
cards.add(new SetCardInfo("Pouncing Lynx", 25, Rarity.COMMON, mage.cards.p.PouncingLynx.class));
|
||||
cards.add(new SetCardInfo("Primordial Wurm", 174, Rarity.COMMON, mage.cards.p.PrimordialWurm.class));
|
||||
cards.add(new SetCardInfo("Raging Kronch", 141, Rarity.COMMON, mage.cards.r.RagingKronch.class));
|
||||
cards.add(new SetCardInfo("Ral's Outburst", 212, Rarity.UNCOMMON, mage.cards.r.RalsOutburst.class));
|
||||
cards.add(new SetCardInfo("Ral, Storm Conduit", 211, Rarity.RARE, mage.cards.r.RalStormConduit.class));
|
||||
cards.add(new SetCardInfo("Rally of Wings", 27, Rarity.UNCOMMON, mage.cards.r.RallyOfWings.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue