forked from External/mage
[RIX] Added some cards. Added some spoiler texts to mtg-cards-data.txt
This commit is contained in:
parent
01764998d9
commit
b2e3201ea4
12 changed files with 436 additions and 200 deletions
|
|
@ -34,7 +34,7 @@ import mage.abilities.effects.common.DynamicManaEffect;
|
|||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.StaticFilters;
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
@ -43,11 +43,10 @@ import mage.filter.common.FilterControlledCreaturePermanent;
|
|||
public class BattleHymn extends CardImpl {
|
||||
|
||||
public BattleHymn(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{1}{R}");
|
||||
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{R}");
|
||||
|
||||
// Add {R} to your mana pool for each creature you control.
|
||||
this.getSpellAbility().addEffect(new DynamicManaEffect(Mana.RedMana(1), new PermanentsOnBattlefieldCount(new FilterControlledCreaturePermanent())));
|
||||
this.getSpellAbility().addEffect(new DynamicManaEffect(Mana.RedMana(1), new PermanentsOnBattlefieldCount(StaticFilters.FILTER_CONTROLLED_CREATURE)));
|
||||
}
|
||||
|
||||
public BattleHymn(final BattleHymn card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue