mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
[FDN] Implement Anthem of Champions
This commit is contained in:
parent
3c3af396ef
commit
f678320823
2 changed files with 36 additions and 0 deletions
35
Mage.Sets/src/mage/cards/a/AnthemOfChampions.java
Normal file
35
Mage.Sets/src/mage/cards/a/AnthemOfChampions.java
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
package mage.cards.a;
|
||||||
|
|
||||||
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
|
import mage.abilities.effects.common.continuous.BoostControlledEffect;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.Duration;
|
||||||
|
import mage.filter.StaticFilters;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author TheElk801
|
||||||
|
*/
|
||||||
|
public final class AnthemOfChampions extends CardImpl {
|
||||||
|
|
||||||
|
public AnthemOfChampions(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{G}{W}");
|
||||||
|
|
||||||
|
// Creatures you control get +1/+1.
|
||||||
|
this.addAbility(new SimpleStaticAbility(new BoostControlledEffect(
|
||||||
|
1, 1, Duration.WhileOnBattlefield, StaticFilters.FILTER_PERMANENT_CREATURES
|
||||||
|
)));
|
||||||
|
}
|
||||||
|
|
||||||
|
private AnthemOfChampions(final AnthemOfChampions card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AnthemOfChampions copy() {
|
||||||
|
return new AnthemOfChampions(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -21,6 +21,7 @@ public final class Foundations extends ExpansionSet {
|
||||||
this.hasBasicLands = false;
|
this.hasBasicLands = false;
|
||||||
this.hasBoosters = false; // temporary
|
this.hasBoosters = false; // temporary
|
||||||
|
|
||||||
|
cards.add(new SetCardInfo("Anthem of Champions", 116, Rarity.RARE, mage.cards.a.AnthemOfChampions.class));
|
||||||
cards.add(new SetCardInfo("Day of Judgment", 140, Rarity.RARE, mage.cards.d.DayOfJudgment.class));
|
cards.add(new SetCardInfo("Day of Judgment", 140, Rarity.RARE, mage.cards.d.DayOfJudgment.class));
|
||||||
cards.add(new SetCardInfo("Llanowar Elves", 227, Rarity.COMMON, mage.cards.l.LlanowarElves.class));
|
cards.add(new SetCardInfo("Llanowar Elves", 227, Rarity.COMMON, mage.cards.l.LlanowarElves.class));
|
||||||
cards.add(new SetCardInfo("Omniscience", 161, Rarity.MYTHIC, mage.cards.o.Omniscience.class));
|
cards.add(new SetCardInfo("Omniscience", 161, Rarity.MYTHIC, mage.cards.o.Omniscience.class));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue