summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-05-24 15:21:12 +0200
committerTor Andersson <tor@ccxvii.net>2024-05-30 21:59:25 +0200
commit7fd7c675bd5639113c4cda3d9ee6c5574153afc8 (patch)
tree0ca00e84269ebbaecc9f5e9de6842101acd9d23b
parenta47dfee81ff884316c39b8349be2eae65427c2c1 (diff)
downloadfriedrich-7fd7c675bd5639113c4cda3d9ee6c5574153afc8.tar.gz
turn flavor
-rw-r--r--play.js17
-rw-r--r--rules.js3
2 files changed, 18 insertions, 2 deletions
diff --git a/play.js b/play.js
index 7425f20..4628de9 100644
--- a/play.js
+++ b/play.js
@@ -154,6 +154,12 @@ const fate_flavor_text = [
"Adolf Frederick, King of Sweden, initiates peace negotiations with Frederick the Great, who is in a mood for ridicule: “Peace? Am I then at war with Sweden? I am not, am I?” The Swedish envoys assure him that indeed he is, and so a peace treaty is signed.",
"Robert Clive’s fantastic victory at Plassey means the complete loss of India for France. Moreover the state is on the verge of bankruptcy. Louis XV overrules Madame Pompadour and reduces spending on the war and subsidies.",
"In the war for the colonies France loses a wide range of possessions along the Ohio and Mississippi rivers, and in Quebec. Tax income decreases drastically. The Duc de Choiseul advises that military expenditure and subsidies be reduced.",
+
+ "1756, August 29. Frederick is convinced that war cannot be avoided. So he strikes first and invades Saxony with his armies under his personal command.",
+ "Escaping the Prussians, Minister Brühl has to leave behind 802 bathrobes, 28 coaches, 67 vinaigrettes and 1500 wigs.",
+ "Saxony has surrendered, and now Frederick demands an alliance! – “That never happened in world’s history before!” – Frederick: “I attach importance to being inventive.”",
+ "William Pitt convinces the British House of Commons that the battle for America will be won in Europe. After a standing ovation, Prussia is voted generous subsidies.",
+ "In the spring of 1757, Frederick starts an offensive into Bohemia before the attackers are able to complete the encirclement of Prussia. Siege is laid to Prague...",
]
const fate_effect_text = [
@@ -219,6 +225,12 @@ const fate_effect_text = [
"Sweden quits the game! If Russia has already quit the game as well, the Imperial Army switches players and eased victory conditions come into effect for Austria and the Imperial Army.",
"From now on Austria receives only 4 TC; France only 3 (which she may all keep). If this has already happened, then: France quits the game! Hanover receives only 1 TC from now on. The Imperial Army switches players and eased victory conditions come into effect for Austria and the Imperial Army.",
"From now on Austria receives only 4 TC; France only 3 (which she may all keep). If this has already happened, then: France quits the game! Hanover receives only 1 TC from now on. The Imperial Army switches players and eased victory conditions come into effect for Austria and the Imperial Army.",
+
+ null,
+ null,
+ null,
+ null,
+ null,
]
/* BUILD UI */
@@ -968,7 +980,10 @@ function on_log(text) {
if (text.match(/^\$(\d+)/)) {
let fx = parseInt(text.substring(1))
- text = `<p class="q">${fate_flavor_text[fx]}<p>${fate_effect_text[fx]}`
+ if (fx < 48 + 6)
+ text = `<p class="q">${fate_flavor_text[fx]}<p>${fate_effect_text[fx]}`
+ else
+ text = `<p class="q">${fate_flavor_text[fx]}`
}
else if (text.match(/^# /)) {
p.className = "h fate"
diff --git a/rules.js b/rules.js
index 4c986f2..2839c5f 100644
--- a/rules.js
+++ b/rules.js
@@ -689,7 +689,8 @@ function goto_start_turn() {
return
if (++game.turn <= 5) {
- log("# Turn " + game.turn)
+ log("# \u2014 " + game.turn + " \u2014")
+ log("$" + (game.turn - 1 + 48 + 6))
} else {
// remove non-stroke of fate card from last turn
for (let i = 1; i <= 12; ++i)