mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 12:22:10 -08:00
Implemented Splicer's Skill
This commit is contained in:
parent
b889953504
commit
bf528dfc59
3 changed files with 218 additions and 0 deletions
35
Mage.Sets/src/mage/cards/s/SplicersSkill.java
Normal file
35
Mage.Sets/src/mage/cards/s/SplicersSkill.java
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.abilities.keyword.SpliceOntoInstantOrSorceryAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.game.permanent.token.GolemToken;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class SplicersSkill extends CardImpl {
|
||||
|
||||
public SplicersSkill(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{W}");
|
||||
|
||||
// Create a 3/3 colorless Golem artifact creature token.
|
||||
this.getSpellAbility().addEffect(new CreateTokenEffect(new GolemToken()));
|
||||
|
||||
// Splice onto instant or sorcery {3}{W}
|
||||
this.addAbility(new SpliceOntoInstantOrSorceryAbility("{3}{W}"));
|
||||
}
|
||||
|
||||
private SplicersSkill(final SplicersSkill card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SplicersSkill copy() {
|
||||
return new SplicersSkill(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -117,6 +117,7 @@ public final class ModernHorizons extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Snow-Covered Mountain", 253, Rarity.LAND, mage.cards.s.SnowCoveredMountain.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Snow-Covered Plains", 250, Rarity.LAND, mage.cards.s.SnowCoveredPlains.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Snow-Covered Swamp", 252, Rarity.LAND, mage.cards.s.SnowCoveredSwamp.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Splicer's Skill", 31, Rarity.UNCOMMON, mage.cards.s.SplicersSkill.class));
|
||||
cards.add(new SetCardInfo("Spore Frog", 180, Rarity.COMMON, mage.cards.s.SporeFrog.class));
|
||||
cards.add(new SetCardInfo("Springbloom Druid", 181, Rarity.COMMON, mage.cards.s.SpringbloomDruid.class));
|
||||
cards.add(new SetCardInfo("Squirrel Nest", 182, Rarity.UNCOMMON, mage.cards.s.SquirrelNest.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue