summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/gendata.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/gendata.js b/tools/gendata.js
index 0a8ab7c..370c9e0 100644
--- a/tools/gendata.js
+++ b/tools/gendata.js
@@ -362,7 +362,9 @@ function process_card(c, ix) {
a.target_list = a.target_list.filter(x => x !== ix) // never absorb for self
}
- if (/, /.test(a.target) || !a.target_list || a.target_list.length < 2)
+ if (a.type === "Screen")
+ a.choice = 1
+ else if (/, /.test(a.target) || !a.target_list || a.target_list.length < 2)
a.choice = 0
else
a.choice = 1