diff options
-rw-r--r-- | rules.js | 5 | ||||
-rw-r--r-- | title.sql | 2 |
2 files changed, 5 insertions, 2 deletions
@@ -6,6 +6,11 @@ exports.scenarios = [ "Campaign", ]; +exports.roles = [ + "England", + "Scotland", +]; + const { CARDS, BLOCKS, AREAS, BORDERS } = require('./data'); const ENEMY = { Scotland: "England", England: "Scotland" } @@ -1,3 +1 @@ insert or replace into titles ( title_id, title_name, bgg ) values ( 'hammer-of-the-scots', 'Hammer of the Scots', 3685 ); -insert or replace into roles values ( 'hammer-of-the-scots', 'England' ); -insert or replace into roles values ( 'hammer-of-the-scots', 'Scotland' ); |