From ce3c0c5a53065dce83d0b29a6a10962c489c4e40 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Tue, 19 Mar 2024 13:42:57 +0100 Subject: SKELETON --- .eslintrc.js | 17 +++++++++ .exrc | 2 ++ .gitignore | 1 + about.html | 20 +++++++++++ cover.1x.jpg | Bin 0 -> 19271 bytes cover.2x.jpg | Bin 0 -> 62838 bytes cover.png | Bin 0 -> 99811 bytes create.html | 10 ++++++ play.html | 111 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ thumbnail.jpg | Bin 0 -> 11271 bytes 10 files changed, 161 insertions(+) create mode 100644 .eslintrc.js create mode 100644 .exrc create mode 100644 cover.1x.jpg create mode 100644 cover.2x.jpg create mode 100644 cover.png create mode 100644 play.html create mode 100644 thumbnail.jpg diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..b591bdc --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,17 @@ +module.exports = { + env: { + browser: true, + commonjs: true, + es2021: true, + }, + extends: "eslint:recommended", + parserOptions: { + ecmaVersion: "latest", + }, + rules: { + "no-constant-binary-expression": "error", + indent: [ "warn", "tab", { SwitchCase: 1 } ], + semi: [ "error", "never" ], + "no-unused-vars": [ "error", { "vars": "all", "args": "all", "argsIgnorePattern": "^_" } ], + }, +} diff --git a/.exrc b/.exrc new file mode 100644 index 0000000..0a54e5b --- /dev/null +++ b/.exrc @@ -0,0 +1,2 @@ +set foldmethod=expr +set foldexpr=getline(v:lnum)=~'^/\\*\ .*\\*\\/$'?'>1':'=' diff --git a/.gitignore b/.gitignore index 8702f8f..8bc35d0 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ HIRES +node_modules diff --git a/about.html b/about.html index e69de29..754c644 100644 --- a/about.html +++ b/about.html @@ -0,0 +1,20 @@ +

+It is the summer of 1756. Frederick the Great faces the grim fact that half of +Europe has formed an alliance. He is in deep sorrow: It seems to him that their +aim is the annihilation of Prussia. + +

+All against one. But only one will reign supreme. On a map of Old Europe, +players manoeuvre their generals from city to city. Frederick must retain a +part of each Prussian province, while the attacking powers savagely seek out +their objectives. + +

+Designer: Richard Sivél. +
Copyright © 2004, 2011 histogame. +
Programming © 2024 Tor Andersson. + +

diff --git a/cover.1x.jpg b/cover.1x.jpg new file mode 100644 index 0000000..b8bc066 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..c3142d1 Binary files /dev/null and b/cover.2x.jpg differ diff --git a/cover.png b/cover.png new file mode 100644 index 0000000..8e2db37 Binary files /dev/null and b/cover.png differ diff --git a/create.html b/create.html index e69de29..38e0b2c 100644 --- a/create.html +++ b/create.html @@ -0,0 +1,10 @@ +

+Player count: +
+ + +

+ diff --git a/play.html b/play.html new file mode 100644 index 0000000..7516ef9 --- /dev/null +++ b/play.html @@ -0,0 +1,111 @@ + + + + + + + +FRIEDRICH + + + + + + + + + + +

+
+
+ + +
  • Rules +
  • Cards +
  • +
    + +
    +
    + + + +
    + +
    +
    +
    +
    +
    +
    +
    + +
    +
    Defend
    +
    +
    +
    + +
    +
    Attack
    +
    +
    +
    + +
    +
    Prussia
    +
    +
    +
    + +
    +
    Hanover
    +
    +
    +
    + +
    +
    Russia
    +
    +
    +
    + +
    +
    Sweden
    +
    +
    +
    + +
    +
    Austria
    +
    +
    +
    + +
    +
    Imperial Army
    +
    +
    +
    + +
    +
    France
    +
    +
    +
    + +
    +
    Clock of Fate
    +
    +
    +
    + +
    + + + + diff --git a/thumbnail.jpg b/thumbnail.jpg new file mode 100644 index 0000000..8b2ac85 Binary files /dev/null and b/thumbnail.jpg differ -- cgit v1.2.3