mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Added Enraging Licid.
This commit is contained in:
parent
4a0d118b7f
commit
4755655dc9
2 changed files with 304 additions and 0 deletions
72
Mage.Sets/src/mage/sets/tempest/EnragingLicid.java
Normal file
72
Mage.Sets/src/mage/sets/tempest/EnragingLicid.java
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without modification, are
|
||||||
|
* permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||||
|
* conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||||
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
||||||
|
* provided with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||||
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
|
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||||
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*
|
||||||
|
* The views and conclusions contained in the software and documentation are those of the
|
||||||
|
* authors and should not be interpreted as representing official policies, either expressed
|
||||||
|
* or implied, of BetaSteward_at_googlemail.com.
|
||||||
|
*/
|
||||||
|
package mage.sets.tempest;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.common.LicidAbility;
|
||||||
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
|
import mage.abilities.costs.mana.ColoredManaCost;
|
||||||
|
import mage.abilities.effects.common.continuous.GainAbilityAttachedEffect;
|
||||||
|
import mage.abilities.keyword.HasteAbility;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.constants.AttachmentType;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.ColoredManaSymbol;
|
||||||
|
import mage.constants.Rarity;
|
||||||
|
import mage.constants.Zone;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author emerald000
|
||||||
|
*/
|
||||||
|
public class EnragingLicid extends CardImpl {
|
||||||
|
|
||||||
|
public EnragingLicid(UUID ownerId) {
|
||||||
|
super(ownerId, 171, "Enraging Licid", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{1}{R}");
|
||||||
|
this.expansionSetCode = "TMP";
|
||||||
|
this.subtype.add("Licid");
|
||||||
|
this.power = new MageInt(1);
|
||||||
|
this.toughness = new MageInt(1);
|
||||||
|
|
||||||
|
// {R}, {tap}: Enraging Licid loses this ability and becomes an Aura enchantment with enchant creature. Attach it to target creature. You may pay {R} to end this effect.
|
||||||
|
this.addAbility(new LicidAbility(new ColoredManaCost(ColoredManaSymbol.R), new ColoredManaCost(ColoredManaSymbol.R)));
|
||||||
|
|
||||||
|
// Enchanted creature has haste.
|
||||||
|
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new GainAbilityAttachedEffect(HasteAbility.getInstance(), AttachmentType.AURA)));
|
||||||
|
}
|
||||||
|
|
||||||
|
public EnragingLicid(final EnragingLicid card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public EnragingLicid copy() {
|
||||||
|
return new EnragingLicid(this);
|
||||||
|
}
|
||||||
|
}
|
232
Mage/src/mage/abilities/common/LicidAbility.java
Normal file
232
Mage/src/mage/abilities/common/LicidAbility.java
Normal file
|
@ -0,0 +1,232 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without modification, are
|
||||||
|
* permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||||
|
* conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||||
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
||||||
|
* provided with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||||
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
|
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||||
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||||
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*
|
||||||
|
* The views and conclusions contained in the software and documentation are those of the
|
||||||
|
* authors and should not be interpreted as representing official policies, either expressed
|
||||||
|
* or implied, of BetaSteward_at_googlemail.com.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package mage.abilities.common;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.ActivatedAbilityImpl;
|
||||||
|
import mage.abilities.SpecialAction;
|
||||||
|
import mage.abilities.costs.common.TapSourceCost;
|
||||||
|
import mage.abilities.costs.mana.ManaCost;
|
||||||
|
import mage.abilities.effects.ContinuousEffectImpl;
|
||||||
|
import mage.abilities.effects.Effect;
|
||||||
|
import mage.abilities.effects.OneShotEffect;
|
||||||
|
import mage.abilities.effects.common.AttachEffect;
|
||||||
|
import mage.abilities.effects.common.CreateSpecialActionEffect;
|
||||||
|
import mage.abilities.effects.common.RemoveSpecialActionEffect;
|
||||||
|
import mage.abilities.keyword.EnchantAbility;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.Duration;
|
||||||
|
import mage.constants.Layer;
|
||||||
|
import mage.constants.Outcome;
|
||||||
|
import mage.constants.SubLayer;
|
||||||
|
import mage.constants.Zone;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.game.permanent.Permanent;
|
||||||
|
import mage.target.Target;
|
||||||
|
import mage.target.common.TargetCreaturePermanent;
|
||||||
|
import mage.target.targetpointer.FixedTarget;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author emerald000
|
||||||
|
*/
|
||||||
|
public class LicidAbility extends ActivatedAbilityImpl {
|
||||||
|
|
||||||
|
public LicidAbility(ManaCost activationCost, ManaCost specialActionCost) {
|
||||||
|
super(Zone.BATTLEFIELD, new LicidEffect(specialActionCost), activationCost);
|
||||||
|
this.addCost(new TapSourceCost());
|
||||||
|
this.addTarget(new TargetCreaturePermanent());
|
||||||
|
}
|
||||||
|
|
||||||
|
public LicidAbility(LicidAbility ability) {
|
||||||
|
super(ability);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public LicidAbility copy() {
|
||||||
|
return new LicidAbility(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class LicidEffect extends OneShotEffect {
|
||||||
|
|
||||||
|
private final ManaCost specialActionCost;
|
||||||
|
|
||||||
|
LicidEffect(ManaCost specialActionCost) {
|
||||||
|
super(Outcome.Neutral);
|
||||||
|
this.specialActionCost = specialActionCost;
|
||||||
|
this.staticText = "{this} loses this ability and becomes an Aura enchantment with enchant creature. Attach it to target creature. You may pay " + specialActionCost.getText() + " to end this effect";
|
||||||
|
}
|
||||||
|
|
||||||
|
LicidEffect(final LicidEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
this.specialActionCost = effect.specialActionCost;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public LicidEffect copy() {
|
||||||
|
return new LicidEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Game game, Ability source) {
|
||||||
|
Permanent licid = (Permanent) source.getSourceObjectIfItStillExists(game);
|
||||||
|
if (licid != null) {
|
||||||
|
UUID messageId = UUID.randomUUID();
|
||||||
|
LicidContinuousEffect effect = new LicidContinuousEffect(messageId);
|
||||||
|
effect.setTargetPointer(new FixedTarget(licid.getId()));
|
||||||
|
game.addEffect(effect, source);
|
||||||
|
new AttachEffect(Outcome.Neutral).apply(game, source);
|
||||||
|
SpecialAction specialAction = new LicidSpecialAction(this.specialActionCost, messageId, licid.getIdName());
|
||||||
|
new CreateSpecialActionEffect(specialAction).apply(game, source);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class LicidContinuousEffect extends ContinuousEffectImpl {
|
||||||
|
|
||||||
|
private final UUID messageId;
|
||||||
|
|
||||||
|
LicidContinuousEffect(UUID messageId) {
|
||||||
|
super(Duration.Custom, Outcome.Neutral);
|
||||||
|
this.messageId = messageId;
|
||||||
|
}
|
||||||
|
|
||||||
|
LicidContinuousEffect(LicidContinuousEffect ability) {
|
||||||
|
super(ability);
|
||||||
|
this.messageId = ability.messageId;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Game game, Ability source) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Layer layer, SubLayer sublayer, Ability source, Game game) {
|
||||||
|
Permanent licid = (Permanent) source.getSourceObjectIfItStillExists(game);
|
||||||
|
if (licid != null) {
|
||||||
|
switch (layer) {
|
||||||
|
case TypeChangingEffects_4:
|
||||||
|
licid.getCardType().clear();
|
||||||
|
licid.getCardType().add(CardType.ENCHANTMENT);
|
||||||
|
licid.getSubtype().clear();
|
||||||
|
licid.getSubtype().add("Aura");
|
||||||
|
break;
|
||||||
|
case AbilityAddingRemovingEffects_6:
|
||||||
|
for (Ability ability : licid.getAbilities(game)) {
|
||||||
|
for (Effect effect : ability.getEffects()) {
|
||||||
|
if (effect instanceof LicidEffect) {
|
||||||
|
licid.getAbilities(game).remove(ability);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Ability ability = new EnchantAbility("creature");
|
||||||
|
ability.setRuleAtTheTop(true);
|
||||||
|
licid.addAbility(ability, source.getSourceId(), game);
|
||||||
|
licid.getSpellAbility().getTargets().clear();
|
||||||
|
Target target = new TargetCreaturePermanent();
|
||||||
|
target.addTarget(this.getTargetPointer().getFirst(game, source), source, game);
|
||||||
|
licid.getSpellAbility().getTargets().add(target);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
discard();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean hasLayer(Layer layer) {
|
||||||
|
return layer == Layer.TypeChangingEffects_4 || layer == Layer.AbilityAddingRemovingEffects_6;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isInactive(Ability source, Game game) {
|
||||||
|
Object object = game.getState().getValue(this.messageId.toString());
|
||||||
|
return object != null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public LicidContinuousEffect copy() {
|
||||||
|
return new LicidContinuousEffect(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class LicidSpecialAction extends SpecialAction {
|
||||||
|
|
||||||
|
LicidSpecialAction(ManaCost cost, UUID messageId, String licidName) {
|
||||||
|
super();
|
||||||
|
this.addCost(cost);
|
||||||
|
this.addEffect(new LicidSpecialActionEffect(messageId, this.getId(), licidName));
|
||||||
|
}
|
||||||
|
|
||||||
|
LicidSpecialAction(final LicidSpecialAction ability) {
|
||||||
|
super(ability);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public LicidSpecialAction copy() {
|
||||||
|
return new LicidSpecialAction(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class LicidSpecialActionEffect extends OneShotEffect {
|
||||||
|
|
||||||
|
private final UUID messageId;
|
||||||
|
private final UUID generatingSpecialActionId;
|
||||||
|
|
||||||
|
LicidSpecialActionEffect(UUID messageId, UUID generatingSpecialActionId, String licidName) {
|
||||||
|
super(Outcome.Neutral);
|
||||||
|
this.messageId = messageId;
|
||||||
|
this.generatingSpecialActionId = generatingSpecialActionId;
|
||||||
|
this.staticText = "End " + licidName + " Effect";
|
||||||
|
}
|
||||||
|
|
||||||
|
LicidSpecialActionEffect(final LicidSpecialActionEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
this.messageId = effect.messageId;
|
||||||
|
this.generatingSpecialActionId = effect.generatingSpecialActionId;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public LicidSpecialActionEffect copy() {
|
||||||
|
return new LicidSpecialActionEffect(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean apply(Game game, Ability source) {
|
||||||
|
new RemoveSpecialActionEffect(this.generatingSpecialActionId).apply(game, source);
|
||||||
|
game.getState().setValue(this.messageId.toString(), true);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue