Some minor rework of Tuvasa the Sunlit.

This commit is contained in:
LevelX2 2018-08-15 10:06:54 +02:00
parent 1322bd3c23
commit 35c77a1e5f

View file

@ -4,20 +4,19 @@ import java.util.HashMap;
import java.util.Map; import java.util.Map;
import java.util.UUID; import java.util.UUID;
import mage.MageInt; import mage.MageInt;
import mage.MageObjectReference;
import mage.abilities.Ability; import mage.abilities.Ability;
import mage.abilities.TriggeredAbilityImpl;
import mage.abilities.common.SimpleStaticAbility; import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.common.SpellCastControllerTriggeredAbility;
import mage.abilities.dynamicvalue.DynamicValue; import mage.abilities.dynamicvalue.DynamicValue;
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount; import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
import mage.abilities.effects.common.DrawCardSourceControllerEffect; import mage.abilities.effects.common.DrawCardSourceControllerEffect;
import mage.abilities.effects.common.continuous.BoostSourceEffect; import mage.abilities.effects.common.continuous.BoostSourceEffect;
import mage.constants.SubType;
import mage.constants.SuperType;
import mage.cards.CardImpl; import mage.cards.CardImpl;
import mage.cards.CardSetInfo; import mage.cards.CardSetInfo;
import mage.constants.CardType; import mage.constants.CardType;
import mage.constants.Duration; import mage.constants.Duration;
import mage.constants.SubType;
import mage.constants.SuperType;
import mage.constants.TargetController; import mage.constants.TargetController;
import mage.constants.WatcherScope; import mage.constants.WatcherScope;
import mage.constants.Zone; import mage.constants.Zone;
@ -37,13 +36,6 @@ import mage.watchers.Watcher;
*/ */
public final class TuvasaTheSunlit extends CardImpl { public final class TuvasaTheSunlit extends CardImpl {
private static final FilterEnchantmentPermanent filter
= new FilterEnchantmentPermanent("enchantment you control");
static {
filter.add(new ControllerPredicate(TargetController.YOU));
}
public TuvasaTheSunlit(UUID ownerId, CardSetInfo setInfo) { public TuvasaTheSunlit(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{G}{W}{U}"); super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{G}{W}{U}");
@ -54,6 +46,9 @@ public final class TuvasaTheSunlit extends CardImpl {
this.toughness = new MageInt(1); this.toughness = new MageInt(1);
// Tuvasa the Sunlit gets +1/+1 for each enchantment you control. // Tuvasa the Sunlit gets +1/+1 for each enchantment you control.
FilterEnchantmentPermanent filter
= new FilterEnchantmentPermanent("enchantment you control");
filter.add(new ControllerPredicate(TargetController.YOU));
DynamicValue value DynamicValue value
= new PermanentsOnBattlefieldCount(new FilterPermanent(filter)); = new PermanentsOnBattlefieldCount(new FilterPermanent(filter));
Ability ability = new SimpleStaticAbility( Ability ability = new SimpleStaticAbility(
@ -81,23 +76,15 @@ public final class TuvasaTheSunlit extends CardImpl {
} }
} }
class TuvasaTheSunlitTriggeredAbility extends TriggeredAbilityImpl { class TuvasaTheSunlitTriggeredAbility extends SpellCastControllerTriggeredAbility {
private static FilterSpell filter = new FilterSpell("an enchantment spell");
protected String rule;
static {
filter.add(new CardTypePredicate(CardType.ENCHANTMENT));
}
public TuvasaTheSunlitTriggeredAbility() { public TuvasaTheSunlitTriggeredAbility() {
super(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1)); super(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1),
this.rule = "Whenever you cast your first enchantment spell each turn, draw a card."; (FilterSpell) new FilterSpell("an enchantment spell").add(new CardTypePredicate(CardType.ENCHANTMENT)), false, true);
} }
public TuvasaTheSunlitTriggeredAbility(final TuvasaTheSunlitTriggeredAbility ability) { public TuvasaTheSunlitTriggeredAbility(final TuvasaTheSunlitTriggeredAbility ability) {
super(ability); super(ability);
this.rule = ability.rule;
} }
@Override @Override
@ -107,25 +94,18 @@ class TuvasaTheSunlitTriggeredAbility extends TriggeredAbilityImpl {
@Override @Override
public boolean checkTrigger(GameEvent event, Game game) { public boolean checkTrigger(GameEvent event, Game game) {
if (event.getPlayerId().equals(this.getControllerId())) { if (super.checkTrigger(event, game)) {
Spell spell = game.getStack().getSpell(event.getTargetId());
if (spell != null && filter.match(spell, getSourceId(), getControllerId(), game)) {
TuvasaTheSunlitWatcher watcher = (TuvasaTheSunlitWatcher) game.getState().getWatchers().get( TuvasaTheSunlitWatcher watcher = (TuvasaTheSunlitWatcher) game.getState().getWatchers().get(
TuvasaTheSunlitWatcher.class.getSimpleName() TuvasaTheSunlitWatcher.class.getSimpleName()
); );
MageObjectReference mor = watcher.getFirstEnchantmentThisTurn(this.getControllerId()); return event.getTargetId().equals(watcher.getFirstEnchantmentThisTurn(this.getControllerId()));
return mor.getSourceId().equals(event.getTargetId());
}
} }
return false; return false;
} }
@Override @Override
public String getRule() { public String getRule() {
if (rule != null && !rule.isEmpty()) { return "Whenever you cast your first enchantment spell each turn, draw a card.";
return rule;
}
return "Whenever you cast " + filter.getMessage() + ", " + super.getRule();
} }
@Override @Override
@ -136,7 +116,7 @@ class TuvasaTheSunlitTriggeredAbility extends TriggeredAbilityImpl {
class TuvasaTheSunlitWatcher extends Watcher { class TuvasaTheSunlitWatcher extends Watcher {
private final Map<UUID, MageObjectReference> firstEnchantmentThisTurn = new HashMap(); private final Map<UUID, UUID> firstEnchantmentThisTurn = new HashMap();
public TuvasaTheSunlitWatcher() { public TuvasaTheSunlitWatcher() {
super(TuvasaTheSunlitWatcher.class.getSimpleName(), WatcherScope.GAME); super(TuvasaTheSunlitWatcher.class.getSimpleName(), WatcherScope.GAME);
@ -154,7 +134,7 @@ class TuvasaTheSunlitWatcher extends Watcher {
if (spell != null && spell.isEnchantment()) { if (spell != null && spell.isEnchantment()) {
firstEnchantmentThisTurn.putIfAbsent( firstEnchantmentThisTurn.putIfAbsent(
event.getPlayerId(), event.getPlayerId(),
new MageObjectReference(spell, game) spell.getId()
); );
} }
} }
@ -165,7 +145,7 @@ class TuvasaTheSunlitWatcher extends Watcher {
firstEnchantmentThisTurn.clear(); firstEnchantmentThisTurn.clear();
} }
public MageObjectReference getFirstEnchantmentThisTurn(UUID playerId) { public UUID getFirstEnchantmentThisTurn(UUID playerId) {
return firstEnchantmentThisTurn.get(playerId); return firstEnchantmentThisTurn.get(playerId);
} }