Converting master fixes to grand card rework paradigms

This commit is contained in:
Christian 'ketura' McCarty
2024-10-16 21:32:53 -05:00
parent 5880534d91
commit 2d4b5a11d3
3 changed files with 8 additions and 9 deletions

View File

@@ -1027,15 +1027,15 @@
memorize: choice memorize: choice
} }
{ {
type: conditional type: if
requires: [ check: [
{ {
type: MemoryIs type: MemoryIs
memory: choice memory: choice
value: yes value: yes
} }
] ]
effect: { true: {
type: playCardFromDiscard type: playCardFromDiscard
select: choose(minion) select: choose(minion)
} }

View File

@@ -1189,9 +1189,8 @@
times: 3 times: 3
effect: { effect: {
type: playCardFromDiscard type: playCardFromDiscard
select: choose(tracker) select: choose(tracker)
//This should be updated to "optional" optional: true
nocheck: true
} }
} }
{ {

View File

@@ -77,15 +77,15 @@
memorize: choice memorize: choice
} }
{ {
type: conditional type: if
requires: [ check: [
{ {
type: MemoryIs type: MemoryIs
memory: choice memory: choice
value: yes value: yes
} }
] ]
effect: { true: {
type: playCardFromDiscard type: playCardFromDiscard
select: choose(unique,culture(wraith),minion) select: choose(unique,culture(wraith),minion)
} }