CardFactoryUtil: fix Epic trigger MayChooseTarget

This commit is contained in:
Hans Mackowiak
2020-11-21 22:31:11 +01:00
parent 0077b39c53
commit f0ed87eb18

View File

@@ -4051,7 +4051,7 @@ public class CardFactoryUtil {
newSA.setSVar("EpicCantBeCast", "Mode$ CantBeCast | ValidCard$ Card | Caster$ You | EffectZone$ Command | Description$ For the rest of the game, you can't cast spells."); newSA.setSVar("EpicCantBeCast", "Mode$ CantBeCast | ValidCard$ Card | Caster$ You | EffectZone$ Command | Description$ For the rest of the game, you can't cast spells.");
newSA.setSVar("EpicTrigger", "Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | Execute$ EpicCopy | TriggerDescription$ " newSA.setSVar("EpicTrigger", "Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | Execute$ EpicCopy | TriggerDescription$ "
+ "At the beginning of each of your upkeeps, copy " + card.toString() + " except for its epic ability."); + "At the beginning of each of your upkeeps, copy " + card.toString() + " except for its epic ability.");
newSA.setSVar("EpicCopy", "DB$ CopySpellAbility | Defined$ EffectSource | Epic$ True"); newSA.setSVar("EpicCopy", "DB$ CopySpellAbility | Defined$ EffectSource | Epic$ True | MayChooseTarget$ True");
final SpellAbility origSA = card.getFirstSpellAbility(); final SpellAbility origSA = card.getFirstSpellAbility();