From f55843621918f9b28ed03111b535d934508f9a38 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sat, 1 Jan 2022 01:38:11 +0100 Subject: Split into separate module. --- README | 5 +++++ play.html | 4 ++-- play.js | 8 ++++---- title.sql | 3 +++ 4 files changed, 14 insertions(+), 6 deletions(-) create mode 100644 README create mode 100644 title.sql diff --git a/README b/README new file mode 100644 index 0000000..eea9360 --- /dev/null +++ b/README @@ -0,0 +1,5 @@ +This game is implemented with the generous permission of Columbia Games. + +Rules and art assets are Copyright 2009 Columbia Games and Jerry Taylor. + +Source code to this digital implementation is Copyright 2021-2022 Tor Andersson. diff --git a/play.html b/play.html index cc14c49..ad1a364 100644 --- a/play.html +++ b/play.html @@ -68,7 +68,7 @@
-
-
+
@@ -76,7 +76,7 @@
-
-
+
-
diff --git a/play.js b/play.js index b12f235..3280e0f 100644 --- a/play.js +++ b/play.js @@ -634,13 +634,13 @@ function update_cards() { } if (!game.l_card) - document.getElementById("lancaster_card").className = "small_card card_back"; + document.getElementById("lancaster_card").className = "show card card_back"; else - document.getElementById("lancaster_card").className = "small_card " + CARDS[game.l_card].image; + document.getElementById("lancaster_card").className = "show card " + CARDS[game.l_card].image; if (!game.y_card) - document.getElementById("york_card").className = "small_card card_back"; + document.getElementById("york_card").className = "show card card_back"; else - document.getElementById("york_card").className = "small_card " + CARDS[game.y_card].image; + document.getElementById("york_card").className = "show card " + CARDS[game.y_card].image; } function update_battle() { diff --git a/title.sql b/title.sql new file mode 100644 index 0000000..7232372 --- /dev/null +++ b/title.sql @@ -0,0 +1,3 @@ +insert or replace into titles ( title_id, title_name, bgg ) values ( 'richard-iii', 'Richard III', 25277 ); +insert or replace into roles values ( 'richard-iii', 'York' ); +insert or replace into roles values ( 'richard-iii', 'Lancaster' ); -- cgit v1.2.3