mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
[AFC] Implemented Wulfgar of Icewind Dale
This commit is contained in:
parent
e61f019cd3
commit
57e9af1a29
2 changed files with 107 additions and 0 deletions
106
Mage.Sets/src/mage/cards/w/WulfgarOfIcewindDale.java
Normal file
106
Mage.Sets/src/mage/cards/w/WulfgarOfIcewindDale.java
Normal file
|
@ -0,0 +1,106 @@
|
|||
package mage.cards.w;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.ReplacementEffectImpl;
|
||||
import mage.abilities.keyword.MeleeAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.*;
|
||||
import mage.game.Controllable;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.DefenderAttackedEvent;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.events.NumberOfTriggersEvent;
|
||||
import mage.game.permanent.Permanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class WulfgarOfIcewindDale extends CardImpl {
|
||||
|
||||
public WulfgarOfIcewindDale(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{R}{G}");
|
||||
|
||||
this.addSuperType(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.BARBARIAN);
|
||||
this.power = new MageInt(4);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Melee
|
||||
this.addAbility(new MeleeAbility());
|
||||
|
||||
// If a creature you control attacking would cause a triggered ability of a permanent you control to trigger, that ability triggers an additional time.
|
||||
this.addAbility(new SimpleStaticAbility(new WulfgarOfIcewindDaleEffect()));
|
||||
}
|
||||
|
||||
private WulfgarOfIcewindDale(final WulfgarOfIcewindDale card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public WulfgarOfIcewindDale copy() {
|
||||
return new WulfgarOfIcewindDale(this);
|
||||
}
|
||||
}
|
||||
|
||||
class WulfgarOfIcewindDaleEffect extends ReplacementEffectImpl {
|
||||
|
||||
WulfgarOfIcewindDaleEffect() {
|
||||
super(Duration.WhileOnBattlefield, Outcome.Benefit);
|
||||
staticText = "if a creature you control attacking would cause a triggered ability " +
|
||||
"of a permanent you control to trigger, that ability triggers an additional time";
|
||||
}
|
||||
|
||||
WulfgarOfIcewindDaleEffect(final WulfgarOfIcewindDaleEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public WulfgarOfIcewindDaleEffect copy() {
|
||||
return new WulfgarOfIcewindDaleEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean checksEventType(GameEvent event, Game game) {
|
||||
return event.getType() == GameEvent.EventType.NUMBER_OF_TRIGGERS;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean applies(GameEvent event, Ability source, Game game) {
|
||||
NumberOfTriggersEvent numberOfTriggersEvent = (NumberOfTriggersEvent) event;
|
||||
Permanent sourcePermanent = game.getPermanent(numberOfTriggersEvent.getSourceId());
|
||||
if (sourcePermanent == null || !sourcePermanent.isControlledBy(source.getControllerId())) {
|
||||
return false;
|
||||
}
|
||||
GameEvent sourceEvent = numberOfTriggersEvent.getSourceEvent();
|
||||
switch (sourceEvent.getType()) {
|
||||
case ATTACKER_DECLARED:
|
||||
return source.isControlledBy(sourceEvent.getPlayerId());
|
||||
case DECLARED_ATTACKERS:
|
||||
return game
|
||||
.getCombat()
|
||||
.getAttackers()
|
||||
.stream()
|
||||
.map(game::getControllerId)
|
||||
.anyMatch(source::isControlledBy);
|
||||
case DEFENDER_ATTACKED:
|
||||
return ((DefenderAttackedEvent) sourceEvent)
|
||||
.getAttackers(game)
|
||||
.stream()
|
||||
.map(Controllable::getControllerId)
|
||||
.anyMatch(source::isControlledBy);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
|
||||
event.setAmount(event.getAmount() + 1);
|
||||
return false;
|
||||
}
|
||||
}
|
|
@ -261,6 +261,7 @@ public final class ForgottenRealmsCommander extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Wild Growth", 174, Rarity.COMMON, mage.cards.w.WildGrowth.class));
|
||||
cards.add(new SetCardInfo("Winds of Rath", 78, Rarity.RARE, mage.cards.w.WindsOfRath.class));
|
||||
cards.add(new SetCardInfo("Winged Boots", 20, Rarity.RARE, mage.cards.w.WingedBoots.class));
|
||||
cards.add(new SetCardInfo("Wulfgar of Icewind Dale", 56, Rarity.RARE, mage.cards.w.WulfgarOfIcewindDale.class));
|
||||
cards.add(new SetCardInfo("Zhalfirin Void", 273, Rarity.UNCOMMON, mage.cards.z.ZhalfirinVoid.class));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue