mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
[MID] Implemented Stuffed Bear
This commit is contained in:
parent
454a450cce
commit
b41e988609
2 changed files with 42 additions and 0 deletions
41
Mage.Sets/src/mage/cards/s/StuffedBear.java
Normal file
41
Mage.Sets/src/mage/cards/s/StuffedBear.java
Normal file
|
@ -0,0 +1,41 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
import mage.abilities.effects.common.continuous.BecomesCreatureSourceEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.SubType;
|
||||
import mage.game.permanent.token.custom.CreatureToken;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class StuffedBear extends CardImpl {
|
||||
|
||||
public StuffedBear(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{2}");
|
||||
|
||||
// {2}: Stuffed Bear becomes a 4/4 green Bear artifact creature until end of turn.
|
||||
this.addAbility(new SimpleActivatedAbility(new BecomesCreatureSourceEffect(
|
||||
new CreatureToken(4, 4, "4/4 green Bear artifact creature until end of turn")
|
||||
.withColor("G")
|
||||
.withSubType(SubType.BEAR)
|
||||
.withType(CardType.ARTIFACT),
|
||||
"", Duration.EndOfTurn
|
||||
), new GenericManaCost(2)));
|
||||
}
|
||||
|
||||
private StuffedBear(final StuffedBear card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public StuffedBear copy() {
|
||||
return new StuffedBear(this);
|
||||
}
|
||||
}
|
|
@ -118,6 +118,7 @@ public final class InnistradMidnightHunt extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Startle", 78, Rarity.COMMON, mage.cards.s.Startle.class));
|
||||
cards.add(new SetCardInfo("Storm-Charged Slasher", 294, Rarity.RARE, mage.cards.s.StormChargedSlasher.class));
|
||||
cards.add(new SetCardInfo("Stormrider Spirit", 79, Rarity.COMMON, mage.cards.s.StormriderSpirit.class));
|
||||
cards.add(new SetCardInfo("Stuffed Bear", 259, Rarity.COMMON, mage.cards.s.StuffedBear.class));
|
||||
cards.add(new SetCardInfo("Sungold Barrage", 36, Rarity.COMMON, mage.cards.s.SungoldBarrage.class));
|
||||
cards.add(new SetCardInfo("Swamp", 272, Rarity.LAND, mage.cards.basiclands.Swamp.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tainted Adversary", 124, Rarity.MYTHIC, mage.cards.t.TaintedAdversary.class));
|
||||
|
|
Loading…
Reference in a new issue