From 797717e115567c75960398a3f26e2450bfed1334 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 26 May 2023 13:47:50 +0200 Subject: Add skeleton. --- .gitignore | 1 + README | 6 ++++++ about.html | 19 +++++++++++++++++++ cover.1x.jpg | Bin 0 -> 19874 bytes cover.2x.jpg | Bin 0 -> 64273 bytes cover.png | Bin 0 -> 927237 bytes create.html | 3 +++ rules.js | 31 +++++++++++++++++++++++++++++++ thumbnail.jpg | Bin 0 -> 11559 bytes title.sql | 2 ++ 10 files changed, 62 insertions(+) create mode 100644 .gitignore create mode 100644 README create mode 100644 about.html create mode 100644 cover.1x.jpg create mode 100644 cover.2x.jpg create mode 100644 cover.png create mode 100644 create.html create mode 100644 rules.js create mode 100644 thumbnail.jpg create mode 100644 title.sql diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8702f8f --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +HIRES diff --git a/README b/README new file mode 100644 index 0000000..ac01f3b --- /dev/null +++ b/README @@ -0,0 +1,6 @@ +This game is implemented with the generous permission of GMT Games. + +Rules and art copyright 2023 GMT Games, LLC. + +Copyright 2022 by Tor Andersson. +Copyright 2023 by Christophe Correia. diff --git a/about.html b/about.html new file mode 100644 index 0000000..74f945a --- /dev/null +++ b/about.html @@ -0,0 +1,19 @@ +

+Lorem ipsum dolor etc. + +
+ +

+Game Design: Francisco Gradaille.
+ +

+Copyright © 2019 +GMT Games, LLC. + +

diff --git a/cover.1x.jpg b/cover.1x.jpg new file mode 100644 index 0000000..178586b Binary files /dev/null and b/cover.1x.jpg differ diff --git a/cover.2x.jpg b/cover.2x.jpg new file mode 100644 index 0000000..77d560a Binary files /dev/null and b/cover.2x.jpg differ diff --git a/cover.png b/cover.png new file mode 100644 index 0000000..588688a Binary files /dev/null and b/cover.png differ diff --git a/create.html b/create.html new file mode 100644 index 0000000..106d6f2 --- /dev/null +++ b/create.html @@ -0,0 +1,3 @@ +

+ +

diff --git a/rules.js b/rules.js new file mode 100644 index 0000000..d336037 --- /dev/null +++ b/rules.js @@ -0,0 +1,31 @@ +"use strict" + +const BOTH = "Both" +const LANCASTER = "Lancaster" +const YORK = "York" + +const P1 = LANCASTER +const P2 = YORK + +const HIT = [ "0", '\u2776', '\u2777', '\u2778', '\u2779', '\u277A', '\u277B' ] +const MISS = [ "0", '\u2460', '\u2461', '\u2462', '\u2463', '\u2464', '\u2465' ] + +let game = null +let view = null +let states = {} + +exports.roles = [ LANCASTER, YORK ] + +exports.scenarios = [ + "Ia. Henry VI", + "Ib. Towton", + "Ic. Somerset's Return", + "II. Warwicks' Rebellion", + "III. My Kingdom for a Horse", + "I-III. Wars of the Roses", + "I. Plantagenets Go to War", + "IIY. The Kingmaker", + "IIL. Lancastrian Legitimacy Fades", + "IIIY. New Rivals", + "IIIL. Yorkists' Last Stand", +] diff --git a/thumbnail.jpg b/thumbnail.jpg new file mode 100644 index 0000000..bbd0d47 Binary files /dev/null and b/thumbnail.jpg differ diff --git a/title.sql b/title.sql new file mode 100644 index 0000000..d11f02d --- /dev/null +++ b/title.sql @@ -0,0 +1,2 @@ +insert or replace into titles ( title_id, title_name, bgg ) values ( 'plantagenet', 'Plantagenet', 352135 ); + -- cgit v1.2.3