mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
- Elixir of Immortality should not shuffle the library twice
- New CounterType Gem
This commit is contained in:
@@ -500,6 +500,9 @@ public class ChangeZoneEffect extends SpellAbilityEffect {
|
||||
if (sa.hasParam("Unearth")) {
|
||||
movedCard.setUnearthed(true);
|
||||
}
|
||||
if (sa.hasParam("FaceDown")) {
|
||||
movedCard.setState(CardCharacteristicName.FaceDown);
|
||||
}
|
||||
if (sa.hasParam("Ninjutsu") || sa.hasParam("Attacking")) {
|
||||
// What should they attack?
|
||||
// TODO Ninjutsu needs to actually select the Defender, instead of auto selecting player
|
||||
@@ -896,6 +899,9 @@ public class ChangeZoneEffect extends SpellAbilityEffect {
|
||||
if (sa.hasParam("Tapped")) {
|
||||
movedCard.setTapped(true);
|
||||
}
|
||||
if (sa.hasParam("FaceDown")) {
|
||||
movedCard.setState(CardCharacteristicName.FaceDown);
|
||||
}
|
||||
movedCard.setTimestamp(ts);
|
||||
} else if (destination.equals(ZoneType.Exile)) {
|
||||
movedCard = game.getAction().exile(c);
|
||||
|
||||
@@ -102,6 +102,8 @@ public enum CounterType {
|
||||
|
||||
FUSE(),
|
||||
|
||||
GEM(),
|
||||
|
||||
GLYPH(),
|
||||
|
||||
GOLD(),
|
||||
|
||||
Reference in New Issue
Block a user