diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-09-21 21:12:02 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-09-21 21:12:02 +0200 |
commit | 9aa6465a425095a0b98899c791e8ca27574e6eb5 (patch) | |
tree | eb5abce33096f02a39dbd3f296cfb4cb284c7be2 | |
parent | cf8a0003cd82d872a72fc21ea54e6dc0b4b5e4cd (diff) | |
download | time-of-crisis-9aa6465a425095a0b98899c791e8ca27574e6eb5.tar.gz |
Add match making setups.
-rw-r--r-- | title.sql | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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}' ) +; |