summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-09-21 21:09:36 +0200
committerTor Andersson <tor@ccxvii.net>2023-09-21 21:09:36 +0200
commit122b901651cc370ff2db5cd2dec6c59fa3feb8cf (patch)
treee5a7e89ac297c7aec769b4448c0e5899c9af4c6d
parent92e63913222cc4d84adf080ee0c452549b78f4ce (diff)
downloadpax-pamir-122b901651cc370ff2db5cd2dec6c59fa3feb8cf.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 ac97a40..33f6dd4 100644
--- a/title.sql
+++ b/title.sql
@@ -1 +1,7 @@
-insert or replace into titles ( title_id, title_name, bgg ) values ( 'pax-pamir', 'Pax Pamir', 256960 );
+insert or replace into titles ( title_id, title_name, bgg, is_symmetric ) values ( 'pax-pamir', 'Pax Pamir', 256960, 1 );
+insert or ignore into setups ( title_id, player_count, scenario, options ) values
+ ( 'pax-pamir', 2, '2P', '{"open_hands":true}' ),
+ ( 'pax-pamir', 3, '3P', '{"open_hands":true}' ),
+ ( 'pax-pamir', 4, '4P', '{"open_hands":true}' ),
+ ( 'pax-pamir', 5, '5P', '{"open_hands":true}' )
+;