mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Now it actually takes aryat's implementation.
This commit is contained in:
parent
d0de07e93b
commit
67a9108a94
1 changed files with 46 additions and 49 deletions
|
@ -25,47 +25,46 @@
|
|||
* authors and should not be interpreted as representing official policies, either expressed
|
||||
* or implied, of BetaSteward_at_googlemail.com.
|
||||
*/
|
||||
|
||||
package mage.sets.mirrodinbesieged;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.Constants;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Outcome;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.Constants.Zone;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.DestroyTargetEffect;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.filter.Filter;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.players.Player;
|
||||
import mage.target.Target;
|
||||
import mage.target.TargetPermanent;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author matt.maurer
|
||||
* @author ayratn
|
||||
*/
|
||||
public class DivineOffering extends CardImpl<DivineOffering> {
|
||||
|
||||
private static final FilterPermanent filter = new FilterPermanent();
|
||||
private static FilterPermanent filter = new FilterPermanent("artifact");
|
||||
|
||||
static {
|
||||
filter.getCardType().add(CardType.ARTIFACT);
|
||||
filter.setScopeCardType(Filter.ComparisonScope.Any);
|
||||
}
|
||||
|
||||
public DivineOffering (UUID ownerId) {
|
||||
super(ownerId, 5, "Divine Offering", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{1}{W}");
|
||||
this.expansionSetCode = "MBS";
|
||||
this.getColor().setWhite(true);
|
||||
|
||||
Target target = new TargetPermanent(filter);
|
||||
target.setTargetName("artifact");
|
||||
target.setRequired(true);
|
||||
this.getSpellAbility().addTarget(target);
|
||||
this.color.setWhite(true);
|
||||
this.getSpellAbility().addTarget(new TargetPermanent(filter));
|
||||
this.getSpellAbility().addEffect(new DestroyTargetEffect());
|
||||
this.getSpellAbility().addEffect(new DivineOfferingGainLifeEffect());
|
||||
this.getSpellAbility().addEffect(new DivineOfferingEffect());
|
||||
}
|
||||
|
||||
public DivineOffering (final DivineOffering card) {
|
||||
|
@ -76,40 +75,38 @@ public class DivineOffering extends CardImpl<DivineOffering> {
|
|||
public DivineOffering copy() {
|
||||
return new DivineOffering(this);
|
||||
}
|
||||
|
||||
private class DivineOfferingEffect extends OneShotEffect<DivineOfferingEffect> {
|
||||
|
||||
public DivineOfferingEffect() {
|
||||
super(Constants.Outcome.DestroyPermanent);
|
||||
}
|
||||
|
||||
class DivineOfferingGainLifeEffect extends OneShotEffect<DivineOfferingGainLifeEffect> {
|
||||
|
||||
DivineOfferingGainLifeEffect() {
|
||||
super(Outcome.DestroyPermanent);
|
||||
}
|
||||
|
||||
DivineOfferingGainLifeEffect ( final DivineOfferingGainLifeEffect effect ) {
|
||||
public DivineOfferingEffect(DivineOfferingEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Card card = game.getLastKnownInformation(source.getFirstTarget(), Constants.Zone.BATTLEFIELD);
|
||||
if (card != null) {
|
||||
int cost = card.getManaCost().get(0).convertedManaCost();
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
if (player != null) {
|
||||
Card card = player.getGraveyard().get(source.getFirstTarget(), game);
|
||||
if (card == null) {
|
||||
card = game.getLastKnownInformation(source.getFirstTarget(), Zone.GRAVEYARD);
|
||||
}
|
||||
if (card != null) {
|
||||
player.gainLife(card.getManaCost().convertedManaCost(), game);
|
||||
player.gainLife(cost, game);
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getText(Ability source) {
|
||||
return "You gain life equal to it's converted mana cost.";
|
||||
public DivineOfferingEffect copy() {
|
||||
return new DivineOfferingEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DivineOfferingGainLifeEffect copy() {
|
||||
return new DivineOfferingGainLifeEffect(this);
|
||||
public String getText(Ability source) {
|
||||
return "You gain life equal to its converted mana cost";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue