mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Havengul Lich - Fixed that cards can only be cast if regularly possible and also fixed tooltip text.
This commit is contained in:
parent
d1c494494a
commit
517d046efe
1 changed files with 19 additions and 12 deletions
|
@ -28,13 +28,6 @@
|
|||
package mage.sets.darkascension;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.AsThoughEffectType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.Zone;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.ActivatedAbility;
|
||||
|
@ -46,8 +39,14 @@ import mage.abilities.effects.ContinuousEffectImpl;
|
|||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.AsThoughEffectType;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Layer;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SubLayer;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.common.FilterCreatureCard;
|
||||
import mage.game.Game;
|
||||
|
@ -116,14 +115,16 @@ class HavengulLichPlayEffect extends AsThoughEffectImpl<HavengulLichPlayEffect>
|
|||
|
||||
@Override
|
||||
public boolean applies(UUID sourceId, Ability source, Game game) {
|
||||
Card card = game.getCard(sourceId);
|
||||
if (card != null && game.getState().getZone(card.getId()) == Zone.GRAVEYARD) {
|
||||
if (targetPointer.getFirst(game, source).equals(card.getId()))
|
||||
return true;
|
||||
if (targetPointer.getFirst(game, source).equals(sourceId)) {
|
||||
if (game.getState().getZone(sourceId) == Zone.GRAVEYARD) {
|
||||
Card card = game.getCard(sourceId);
|
||||
if (card != null && card.getSpellAbility() != null && card.getSpellAbility().spellCanBeActivatedRegularlyNow(source.getControllerId(), game)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//create delayed triggered ability to watch for card being played
|
||||
|
@ -135,6 +136,7 @@ class HavengulLichPlayedEffect extends OneShotEffect<HavengulLichPlayedEffect> {
|
|||
|
||||
public HavengulLichPlayedEffect(final HavengulLichPlayedEffect effect) {
|
||||
super(effect);
|
||||
staticText = "When you cast that card this turn, Havengul Lich gains all activated abilities of that card until end of turn";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -180,6 +182,11 @@ class HavengulLichDelayedTriggeredAbility extends DelayedTriggeredAbility<Haveng
|
|||
public HavengulLichDelayedTriggeredAbility copy() {
|
||||
return new HavengulLichDelayedTriggeredAbility(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "When you cast that card this turn, Havengul Lich gains all activated abilities of that card until end of turn.";
|
||||
}
|
||||
}
|
||||
|
||||
// copy activated abilities of card
|
||||
|
|
Loading…
Reference in a new issue