mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Update Krark's Thumb
This commit is contained in:
parent
b21f60bc0f
commit
4736a608b1
1 changed files with 68 additions and 37 deletions
|
@ -3,16 +3,12 @@ package mage.cards.k;
|
||||||
|
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.common.SimpleStaticAbility;
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
import mage.abilities.effects.ReplacementEffectImpl;
|
import mage.abilities.effects.ContinuousEffectImpl;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.constants.*;
|
import mage.constants.*;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.game.events.FlipCoinEvent;
|
|
||||||
import mage.game.events.GameEvent;
|
|
||||||
import mage.players.Player;
|
import mage.players.Player;
|
||||||
import mage.util.CardUtil;
|
|
||||||
import mage.util.RandomUtil;
|
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
|
@ -26,7 +22,7 @@ public final class KrarksThumb extends CardImpl {
|
||||||
addSuperType(SuperType.LEGENDARY);
|
addSuperType(SuperType.LEGENDARY);
|
||||||
|
|
||||||
// If you would flip a coin, instead flip two coins and ignore one.
|
// If you would flip a coin, instead flip two coins and ignore one.
|
||||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new KrarksThumbEffect()));
|
this.addAbility(new SimpleStaticAbility(new KrarksThumbEffect()));
|
||||||
}
|
}
|
||||||
|
|
||||||
private KrarksThumb(final KrarksThumb card) {
|
private KrarksThumb(final KrarksThumb card) {
|
||||||
|
@ -39,11 +35,11 @@ public final class KrarksThumb extends CardImpl {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class KrarksThumbEffect extends ReplacementEffectImpl {
|
class KrarksThumbEffect extends ContinuousEffectImpl {
|
||||||
|
|
||||||
KrarksThumbEffect() {
|
KrarksThumbEffect() {
|
||||||
super(Duration.WhileOnBattlefield, Outcome.Benefit);
|
super(Duration.WhileOnBattlefield, Outcome.Benefit);
|
||||||
staticText = "If you would flip a coin, instead flip two coins and ignore one";
|
staticText = "If you would flip a coin, instead flip two coins and ignore one.";
|
||||||
}
|
}
|
||||||
|
|
||||||
private KrarksThumbEffect(final KrarksThumbEffect effect) {
|
private KrarksThumbEffect(final KrarksThumbEffect effect) {
|
||||||
|
@ -51,36 +47,17 @@ class KrarksThumbEffect extends ReplacementEffectImpl {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
|
public KrarksThumbEffect copy() {
|
||||||
Player player = game.getPlayer(event.getPlayerId());
|
return new KrarksThumbEffect(this);
|
||||||
if (player == null || !player.getId().equals(source.getControllerId())) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
FlipCoinEvent flipEvent = (FlipCoinEvent) event;
|
|
||||||
boolean secondFlip = RandomUtil.nextBoolean();
|
|
||||||
game.informPlayers(player.getLogName() + " flipped a " + flipEvent.getResultName()
|
|
||||||
+ " and a " + CardUtil.booleanToFlipName(secondFlip)
|
|
||||||
);
|
|
||||||
boolean chosenFlip = player.chooseUse(
|
|
||||||
Outcome.Benefit, "Choose which coin you want",
|
|
||||||
(flipEvent.isWinnable() ? "(You chose " + flipEvent.getChosenName() + ")" : null),
|
|
||||||
flipEvent.getResultName(), CardUtil.booleanToFlipName(secondFlip), source, game
|
|
||||||
);
|
|
||||||
if (!chosenFlip) {
|
|
||||||
flipEvent.setResult(secondFlip);
|
|
||||||
}
|
|
||||||
game.informPlayers(player.getLogName() + " chooses to keep " + flipEvent.getResultName());
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean checksEventType(GameEvent event, Game game) {
|
public boolean apply(Layer layer, SubLayer sublayer, Ability source, Game game) {
|
||||||
return event.getType() == GameEvent.EventType.FLIP_COIN;
|
Player controller = game.getPlayer(source.getControllerId());
|
||||||
|
if (controller != null) {
|
||||||
|
controller.setExtraCoinFlips(controller.getExtraCoinFlips() + 1);
|
||||||
}
|
}
|
||||||
|
return true;
|
||||||
@Override
|
|
||||||
public boolean applies(GameEvent event, Ability source, Game game) {
|
|
||||||
return source.isControlledBy(event.getPlayerId());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -89,7 +66,61 @@ class KrarksThumbEffect extends ReplacementEffectImpl {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public KrarksThumbEffect copy() {
|
public boolean hasLayer(Layer layer) {
|
||||||
return new KrarksThumbEffect(this);
|
return layer == Layer.RulesEffects;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//class KrarksThumbEffect extends ReplacementEffectImpl {
|
||||||
|
//
|
||||||
|
// KrarksThumbEffect() {
|
||||||
|
// super(Duration.WhileOnBattlefield, Outcome.Benefit);
|
||||||
|
// staticText = "If you would flip a coin, instead flip two coins and ignore one";
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// private KrarksThumbEffect(final KrarksThumbEffect effect) {
|
||||||
|
// super(effect);
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// @Override
|
||||||
|
// public boolean replaceEvent(GameEvent event, Ability source, Game game) {
|
||||||
|
// Player player = game.getPlayer(event.getPlayerId());
|
||||||
|
// if (player == null || !player.getId().equals(source.getControllerId())) {
|
||||||
|
// return false;
|
||||||
|
// }
|
||||||
|
// FlipCoinEvent flipEvent = (FlipCoinEvent) event;
|
||||||
|
// boolean secondFlip = RandomUtil.nextBoolean();
|
||||||
|
// game.informPlayers(player.getLogName() + " flipped a " + flipEvent.getResultName()
|
||||||
|
// + " and a " + CardUtil.booleanToFlipName(secondFlip)
|
||||||
|
// );
|
||||||
|
// boolean chosenFlip = player.chooseUse(
|
||||||
|
// Outcome.Benefit, "Choose which coin you want",
|
||||||
|
// (flipEvent.isWinnable() ? "(You chose " + flipEvent.getChosenName() + ")" : null),
|
||||||
|
// flipEvent.getResultName(), CardUtil.booleanToFlipName(secondFlip), source, game
|
||||||
|
// );
|
||||||
|
// if (!chosenFlip) {
|
||||||
|
// flipEvent.setResult(secondFlip);
|
||||||
|
// }
|
||||||
|
// game.informPlayers(player.getLogName() + " chooses to keep " + flipEvent.getResultName());
|
||||||
|
// return false;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// @Override
|
||||||
|
// public boolean checksEventType(GameEvent event, Game game) {
|
||||||
|
// return event.getType() == GameEvent.EventType.FLIP_COIN;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// @Override
|
||||||
|
// public boolean applies(GameEvent event, Ability source, Game game) {
|
||||||
|
// return source.isControlledBy(event.getPlayerId());
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// @Override
|
||||||
|
// public boolean apply(Game game, Ability source) {
|
||||||
|
// return false;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// @Override
|
||||||
|
// public KrarksThumbEffect copy() {
|
||||||
|
// return new KrarksThumbEffect(this);
|
||||||
|
// }
|
||||||
|
//}
|
||||||
|
|
Loading…
Reference in a new issue