mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
[40K] Implemented Sister Hospitaller
This commit is contained in:
parent
50acdbb823
commit
dfbc4dbcdf
2 changed files with 80 additions and 0 deletions
79
Mage.Sets/src/mage/cards/s/SisterHospitaller.java
Normal file
79
Mage.Sets/src/mage/cards/s/SisterHospitaller.java
Normal file
|
@ -0,0 +1,79 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.game.Game;
|
||||
import mage.players.Player;
|
||||
import mage.target.common.TargetCardInYourGraveyard;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class SisterHospitaller extends CardImpl {
|
||||
|
||||
public SisterHospitaller(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{W}{B}");
|
||||
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.CLERIC);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Medicus Ministorum -- When Sister Hospitaller enters the battlefield, return target creature card from your graveyard to the battlefield. You gain life equal to its mana value.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new SisterHospitallerEffect());
|
||||
ability.addTarget(new TargetCardInYourGraveyard(StaticFilters.FILTER_CARD_CREATURE_YOUR_GRAVEYARD));
|
||||
this.addAbility(ability.withFlavorWord("Medicus Ministorum"));
|
||||
}
|
||||
|
||||
private SisterHospitaller(final SisterHospitaller card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SisterHospitaller copy() {
|
||||
return new SisterHospitaller(this);
|
||||
}
|
||||
}
|
||||
|
||||
class SisterHospitallerEffect extends OneShotEffect {
|
||||
|
||||
SisterHospitallerEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "return target creature card from your graveyard to the battlefield. " +
|
||||
"You gain life equal to its mana value";
|
||||
}
|
||||
|
||||
private SisterHospitallerEffect(final SisterHospitallerEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SisterHospitallerEffect copy() {
|
||||
return new SisterHospitallerEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
Card card = game.getCard(getTargetPointer().getFirst(game, source));
|
||||
if (player == null || card == null) {
|
||||
return false;
|
||||
}
|
||||
int mv = card.getManaValue();
|
||||
player.moveCards(card, Zone.BATTLEFIELD, source, game);
|
||||
player.gainLife(mv, game, source);
|
||||
return true;
|
||||
}
|
||||
}
|
|
@ -196,6 +196,7 @@ public final class Warhammer40000 extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Screamer-Killer", 84, Rarity.RARE, mage.cards.s.ScreamerKiller.class));
|
||||
cards.add(new SetCardInfo("Sculpting Steel", 247, Rarity.RARE, mage.cards.s.SculptingSteel.class));
|
||||
cards.add(new SetCardInfo("Sicarian Infiltrator", 25, Rarity.UNCOMMON, mage.cards.s.SicarianInfiltrator.class));
|
||||
cards.add(new SetCardInfo("Sister Hospitaller", 141, Rarity.RARE, mage.cards.s.SisterHospitaller.class));
|
||||
cards.add(new SetCardInfo("Sister Repentia", 142, Rarity.RARE, mage.cards.s.SisterRepentia.class));
|
||||
cards.add(new SetCardInfo("Sister of Silence", 26, Rarity.RARE, mage.cards.s.SisterOfSilence.class));
|
||||
cards.add(new SetCardInfo("Skorpekh Destroyer", 57, Rarity.UNCOMMON, mage.cards.s.SkorpekhDestroyer.class));
|
||||
|
|
Loading…
Reference in a new issue