From 183f5b31abce44f279955b16770670ebc5fbd196 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 11 Oct 2024 18:57:41 +0200 Subject: v2: FEEDBACK - MESSAGE OF THE DAY --- info/playtest.html | 2 +- play.html | 1 + rules.js | 8 +++++++- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/info/playtest.html b/info/playtest.html index d5d7c3a..d1c4a7b 100644 --- a/info/playtest.html +++ b/info/playtest.html @@ -31,7 +31,7 @@ The "Deluxe Edition" option will enable the following changes. Please send playtest feedback to the designers: diff --git a/play.html b/play.html index e8fe18f..4e414b8 100644 --- a/play.html +++ b/play.html @@ -29,6 +29,7 @@
  • Expansion Rules
  • Player Aid
  • Card Gallery +
  • PLAYTEST Notes diff --git a/rules.js b/rules.js index b2c4a99..62a91f5 100644 --- a/rules.js +++ b/rules.js @@ -6,6 +6,8 @@ const states = {} const AUTO_PLAY_EVENTS = true +const MOTD = "Send PLAYTEST feedback to\ntempus42@yahoo.com,\nwrayferrell@gmail.com,\njasoncarr@gmtgames.com" + const DELUXE = 2 const P1 = "Red" @@ -5824,6 +5826,8 @@ function goto_game_over(result, victory) { game.victory = victory log_br() log(game.victory) + log_br() + log(MOTD) return true } @@ -5941,7 +5945,9 @@ exports.setup = function (seed, scenario, options) { log_h1("Time of Crisis") if (options.deluxe) { - log("Deluxe Edition PLAYTEST") + log("Deluxe Edition") + log_br() + log(MOTD) log_br() game.v = DELUXE } -- cgit v1.2.3