mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
Implemented Card: Heroes Remembered
This commit is contained in:
parent
1868631a96
commit
d157b38cdd
1 changed files with 33 additions and 0 deletions
33
Mage.Sets/src/mage/sets/planarchaos/HeroesRemembered.java
Normal file
33
Mage.Sets/src/mage/sets/planarchaos/HeroesRemembered.java
Normal file
|
@ -0,0 +1,33 @@
|
|||
package mage.sets.planarchaos;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.common.GainLifeEffect;
|
||||
import mage.abilities.keyword.SuspendAbility;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
|
||||
public class HeroesRemembered extends CardImpl{
|
||||
|
||||
public HeroesRemembered(UUID ownerId){
|
||||
super(ownerId, 7, "Heroes Remembered", Rarity.RARE, new CardType[] {CardType.SORCERY}, "{6}{W}{W}{W}");
|
||||
this.expansionSetCode = "PLC";
|
||||
|
||||
//You gain 20 life.
|
||||
this.getSpellAbility().addEffect(new GainLifeEffect(20));
|
||||
//Suspend 10-{W}
|
||||
this.addAbility(new SuspendAbility(10, new ManaCostsImpl("{W}"), this));
|
||||
}
|
||||
|
||||
public HeroesRemembered(final HeroesRemembered card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Card copy() {
|
||||
return new HeroesRemembered(this);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue