summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-09-21 21:12:02 +0200
committerTor Andersson <tor@ccxvii.net>2023-09-21 21:12:02 +0200
commit9aa6465a425095a0b98899c791e8ca27574e6eb5 (patch)
treeeb5abce33096f02a39dbd3f296cfb4cb284c7be2
parentcf8a0003cd82d872a72fc21ea54e6dc0b4b5e4cd (diff)
downloadtime-of-crisis-9aa6465a425095a0b98899c791e8ca27574e6eb5.tar.gz
Add match making setups.
-rw-r--r--title.sql8
1 files changed, 7 insertions, 1 deletions
diff --git a/title.sql b/title.sql
index 730a3e6..115b226 100644
--- a/title.sql
+++ b/title.sql
@@ -1 +1,7 @@
-insert or replace into titles ( title_id, title_name, bgg ) values ( 'time-of-crisis', 'Time of Crisis', 164949 );
+insert or replace into titles ( title_id, title_name, bgg, is_symmetric ) values ( 'time-of-crisis', 'Time of Crisis', 164949, 1 );
+insert or ignore into setups ( setup_name, title_id, player_count, scenario, options ) values
+ ( 'Time of Crisis',
+ 'time-of-crisis', 4, 'Standard', '{"players":4}' ),
+ ( 'Time of Crisis - Age of Iron and Rust',
+ 'time-of-crisis', 4, 'Expansion - Random', '{"players":4,"emperor":true}' )
+;