mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Implemented Song of the Worldsoul
This commit is contained in:
parent
1d39b28563
commit
5a22df63ad
2 changed files with 32 additions and 0 deletions
31
Mage.Sets/src/mage/cards/s/SongOfTheWorldsoul.java
Normal file
31
Mage.Sets/src/mage/cards/s/SongOfTheWorldsoul.java
Normal file
|
@ -0,0 +1,31 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.abilities.common.SpellCastControllerTriggeredAbility;
|
||||
import mage.abilities.effects.common.PopulateEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class SongOfTheWorldsoul extends CardImpl {
|
||||
|
||||
public SongOfTheWorldsoul(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{4}{W}{W}");
|
||||
|
||||
// Whenever you cast a spell, populate.
|
||||
this.addAbility(new SpellCastControllerTriggeredAbility(new PopulateEffect(), false));
|
||||
}
|
||||
|
||||
private SongOfTheWorldsoul(final SongOfTheWorldsoul card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SongOfTheWorldsoul copy() {
|
||||
return new SongOfTheWorldsoul(this);
|
||||
}
|
||||
}
|
|
@ -122,6 +122,7 @@ public final class Commander2019Edition extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Simic Guildgate", 275, Rarity.COMMON, mage.cards.s.SimicGuildgate.class));
|
||||
cards.add(new SetCardInfo("Skinthinner", 129, Rarity.COMMON, mage.cards.s.Skinthinner.class));
|
||||
cards.add(new SetCardInfo("Sol Ring", 221, Rarity.UNCOMMON, mage.cards.s.SolRing.class));
|
||||
cards.add(new SetCardInfo("Song of the Worldsoul", 6, Rarity.RARE, mage.cards.s.SongOfTheWorldsoul.class));
|
||||
cards.add(new SetCardInfo("Storm Herd", 75, Rarity.RARE, mage.cards.s.StormHerd.class));
|
||||
cards.add(new SetCardInfo("Stratus Dancer", 96, Rarity.RARE, mage.cards.s.StratusDancer.class));
|
||||
cards.add(new SetCardInfo("Strionic Resonator", 224, Rarity.RARE, mage.cards.s.StrionicResonator.class));
|
||||
|
|
Loading…
Reference in a new issue