Merge pull request #2882 from Simisays/MOCPLANE

MOC 8 new planes + 4 new cards
This commit is contained in:
Anthony Calosa
2023-04-23 07:50:11 +08:00
committed by GitHub
13 changed files with 133 additions and 3 deletions

View File

@@ -815,9 +815,9 @@ public class CardFactoryUtil {
inst.addTrigger(trigger);
} else if (keyword.equals("Ascend")) {
// Ascend trigger only for Permanent
if (card.isPermanent()) {
final String trig = "Mode$ Always | TriggerZones$ Battlefield | Secondary$ True"
+ " | Static$ True | Blessing$ False | IsPresent$ Permanent.YouCtrl | PresentCompare$ GE10 "
if (card.isPermanent() || card.isPlane()) {
final String trig = "Mode$ Always | TriggerZones$ " + (card.isPlane() ? "Command" : "Battlefield")
+ " | Secondary$ True | Static$ True | Blessing$ False | IsPresent$ Permanent.YouCtrl | PresentCompare$ GE10"
+ " | TriggerDescription$ Ascend (" + inst.getReminderText() + ")";
final String effect = "DB$ Ascend | Defined$ You";