Alternate rule for the Lich that preserves its ability in solitaire.
[heroik.git] / scenarios.js
1 /* The person who associated a work with this deed has dedicated the
2 work to the public domain by waiving all of his or her rights to
3 the work worldwide under copyright law, including all related and
4 neighboring rights, to the extent allowed by law.
5
6 You can copy, modify, distribute and perform the work, even for
7 commercial purposes, all without asking permission.
8
9 See https://creativecommons.org/publicdomain/zero/1.0/ for details.
10 */
11
12 "use strict";
13
14 var EVENTS = [
15 { name: "The Greenskins are mobilized.",
16 effect: "Greenskins gain a bonus of +1 Strength." },
17 { name: "Big eye is watching you.",
18 effect: "Bubbleyes gain a bonus of +1 Strength.",
19 requires: ["bubbleyes"] },
20 { name: "General invocation.",
21 effect: "Demons gain a bonus of +1 Strength.",
22 requires: ["demons"] },
23 { name: "Stronger than ever.",
24 effect: "Undead gain a bonus of +1 Strength.",
25 requires: ["undead"] },
26 { name: "Encounter with Abunakkashi.",
27 effect: "Abunakkashii and his offspring gain a bonus of +2 Strength.",
28 requires: ["abunakkashii"],
29 unique: true },
30 { name: "The start of a legend.",
31 effect: "Abunakkashii and his offspring gain a bonus of +1 Strength.",
32 requires: ["abunakkashii"],
33 unique: true },
34 { name: "Technological prowess.",
35 effect: "Traps gain a bonus of +1 Strength.",
36 requires: ["traps"] },
37
38 { name: "Mental combat.",
39 effect: "Psi monsters gain a bonus of +1 Strength.", },
40 { name: "A cry in the night.",
41 action: "An adventurer of your choice loses 1 Mana." },
42 { name: "Psi wave.",
43 action: "Lose all your Mana tokens." },
44 { name: "It's an ambush!",
45 action: "Place a Tenacity token on each monster that does not have one." },
46 { name: "The alarm is sounded.",
47 action: "Place a Tenacity token on the weakest monster or monsters that do not already have one." },
48 { name: "Flank attack.",
49 effect: "Cards on either side corridor gain a bonus of +1 Strength.",
50 unique: true },
51 { name: "Battle formation.",
52 effect: "Cards in the central corridor(s) gain a bonus of +1 Strength.",
53 unique: true },
54 { name: "Last bastion.",
55 effect: "All cards gain a bonus of +1 Strength.",
56 unique: true },
57
58 { name: "Destruction.",
59 action: "All of your weapons and armor are destroyed.",
60 unique: true },
61 { name: "Epic combat.",
62 effect: "The Final Monster gains a bonus of +3 Strength.",
63 unique: true },
64 { name: "Red herring.",
65 action: "Shuffle the remaining corridors together and redistribute the cards as if you were setting up the game." },
66 { name: "The torch has gone out.",
67 action: "The next dungeon card is placed face-down.", },
68
69 { name: "Anti-psi zone.",
70 effect: "You do not gain Mana tokens for the next three creatures you defeat, even if they have a Mana icon.",
71 unique: true },
72
73 { name: "Necromancy.",
74 action: "Return a random defeated dungeon card to the lowest corridor and shuffle it." },
75 { name: "Reanimation.",
76 action: "Return a random defeated dungeon card to the highest corridor and shuffle it." },
77
78 { name: "Malediction.",
79 action: "Discard a quest or a magic object." },
80
81 { name: "False brethren.",
82 effect: "All Demons gain Immunity 5 and Immunity 7.",
83 requires: ["demons"],
84 unique: true },
85
86 { name: "Psi assault.",
87 effect: "You cannot use ultimate powers.",
88 lock: ["ultimates"],
89 unique: true },
90 { name: "Entering an anti-magic zone.",
91 effect: "You cannot use ultimate powers.",
92 lock: ["ultimates"],
93 duration: 3,
94 later: { name: "Leaving the anti-magic zone.",
95 effect: "You may use ultimate powers again.",
96 clear: ["ultimates"] }
97 },
98
99 // Events from Sean Allen's random scenario generator.
100 // http://boardgamegeek.com/filepage/57107/random-scenario-generator
101 { name: "Fire from above.",
102 effect: "Dragons gain a bonus of +1 Strength.",
103 requires: ["dragons", "noncanonical"],
104 unique: true },
105 { name: "Backs against the wall.",
106 effect: "Any monster with a Tenacity token is also <strong>Fierce</strong>.",
107 requires: ["noncanonical"],
108 unique: true },
109 { name: "The tide has turned.",
110 effect: "All monsters have <strong>Supremacy</strong>.",
111 requires: ["noncanonical"],
112 unique: true },
113 { name: "Into the darkness.",
114 effect: "Choose one corridor. Its cards are now always placed face-down.",
115 requires: ["noncanonical"] },
116
117 // Events of my own devising.
118 { name: "Unwanted attention.",
119 effect: "Unique monsters gain a bonus of +1 Strength.",
120 requires: ["noncanonical"],
121 unique: true },
122 { name: "Spiked the punch.",
123 effect: "Greenskins have 1d8 Strength.",
124 requires: ["noncanonical"],
125 unique: true },
126 { name: "Twisty passages.",
127 effect: "After defeating a card, roll a die. On an odd number its replacement is placed face-down.",
128 requires: ["noncanonical"],
129 unique: true },
130 { name: "Closer than you think.",
131 action: "The dungeon gains another Fear token, and a new event occurs.",
132 requires: ["noncanonical"],
133 another: true, unique: true },
134 { name: "I thought you had it.",
135 action: "Randomly discard four of your defeated dungeon cards.",
136 requires: ["noncanonical"] },
137 { name: "Adamantine armor.",
138 effect: "All monsters gain <strong>Immunity&nbsp;1</strong>.",
139 requires: ["noncanonical"],
140 unique: true },
141 { name: "Normative assumptions.",
142 effect: "Effects concerning ♂ instead concern ♀, and vice versa.",
143 requires: ["noncanonical"],
144 unique: true },
145 { name: "Infighting.",
146 effect: "Greenskins have <strong>Undead&nbsp;+1</strong>, <strong>Demons&nbsp;-1</strong>. Demons have <strong>Greenskins&nbsp;+1</strong>, <strong>Undead&nbsp;-1</strong>. Undead have <strong>Demons&nbsp;+1</strong>, <strong>Greenskins&nbsp;-1</strong>.",
147 requires: ["noncanonical", "demons", "undead"],
148 unique: true },
149 { name: "New moon.",
150 effect: "Demons have <strong>Shrouded</strong>.",
151 requires: ["noncanonical", "demons"],
152 unique: true },
153 { name: "Camouflage.",
154 effect: "Greenskins have <strong>Shrouded</strong>.",
155 requires: ["noncanonical"],
156 unique: true },
157 { name: "Cryptic shades.",
158 effect: "Undead have <strong>Shrouded</strong>.",
159 requires: ["noncanonical", "undead"],
160 unique: true },
161 { name: "Lingering smoke.",
162 effect: "Dragons have <strong>Shrouded</strong>.",
163 requires: ["noncanonical", "dragons"],
164 unique: true },
165 { name: "Hypnotizing gaze.",
166 effect: "Bubbleyes have <strong>Shrouded</strong>.",
167 requires: ["noncanonical", "bubbleyes"],
168 unique: true },
169 { name: "Leeched power.",
170 action: "A random adventurer loses a Mana token.",
171 requires: ["noncanonical"] },
172
173 ];
174
175 var NOP = [
176 { name: "Nothing happens." },
177 { name: "A draft blows down the hallway.",
178 unique: true, requires: ["noncanonical"] },
179 { name: "You sneeze.",
180 unique: true, requires: ["noncanonical"] },
181 { name: "There's a skittering in the distance.",
182 unique: true, requires: ["noncanonical"] },
183 { name: "The torch flickers.",
184 unique: true, requires: ["noncanonical"] },
185 { name: "Shadows dance across the walls.",
186 unique: true, requires: ["noncanonical"] },
187 ];
188
189 var HELPFUL = [
190 { name: "It cuts both ways.",
191 action: "Next time you roll a 1, put a Tenacity token on all face-up monsters and roll again.",
192 requires: ["helpful"] },
193 { name: "Breached their defense.",
194 action: "Gain 2 Courage tokens and the dungeon gains 1 Fear token and the Fate Chart advances; <em>or</em> gain 1 Mana token.",
195 requires: ["helpful"], unique: true },
196 { name: "Mana ritual.",
197 action: "Discard up to 2 Mana tokens. For each one discarded, gain 1 Courage token.",
198 requires: ["helpful"] }
199 ];
200
201 var LOSE = { name: "Your adventuring party is defeated!" };
202
203 function randrange (a, b) {
204 return a + (Math.random() * (b - a)) | 0;
205 }
206
207 function generate (flags, events, nop) {
208 var chosen = [];
209 var i;
210
211 var pending = [];
212 var locks = [];
213 var event;
214
215 function pend (event, i) {
216 while (pending[i]) ++i
217 pending[i] = event;
218 }
219
220 function canStillHappen (event) {
221 return issubset(event.requires || [], flags)
222 && !(event.unique && contains.call(chosen, event))
223 && !(event.lock && intersects(event.lock || [], locks));
224 }
225
226 for (i = 0; i < events; ++i) {
227 event = pending.shift()
228 || choice(EVENTS.filter(canStillHappen));
229 chosen.push(event);
230 if (event.later)
231 pend(event.later, (Math.random() * chosen[i].duration) | 0);
232 locks = locks.concat(event.lock || [])
233 .filter(not(contains), event.clear || []);
234 }
235
236 for (i = 0; i < pending.length; ++i)
237 if (pending[i])
238 chosen.push(pending[i]);
239
240
241 for (i = 0; i < nop / 2; ++i) {
242 var helpful = HELPFUL.filter(canStillHappen);
243 var neutral = NOP.filter(canStillHappen);
244 chosen.splice(
245 randrange(0, chosen.length), 0,
246 choice(helpful.length ? helpful : neutral));
247
248 }
249 for (;i < nop; ++i) {
250 var neutral = NOP.filter(canStillHappen);
251 chosen.splice(randrange(0, chosen.length), 0, choice(neutral));
252
253 }
254
255 chosen.push(LOSE);
256 return chosen;
257 }
258
259 function toHTML (event) {
260 return ["<span class=fate-name>" + event.name + "</span>",
261 event.action
262 ? "<span class=fate-action>" + event.action + "</span>"
263 : "",
264 event.effect
265 ? "<span class=fate-effect>" + event.effect + "</span>"
266 : "",
267 ].join(" ");
268 }
269
270 var THEME = ("h1 { color: hsl(XXX, 25%, 75%); }\n\
271 h2, .button, select { border-color: hsl(XXX, 30%, 85%); }\n\
272 \n\
273 a:link, a:visited, a:active {\n\
274 color: hsl(XXX, 25%, 50%);\n\
275 }\n\
276 \n\
277 select, .button, tbody tr:nth-last-child(odd) {\n\
278 background-color: hsl(XXX, 30%, 85%);\n\
279 }\n\
280 \n\
281 h1,\n\
282 select:hover, select:focus,\n\
283 .button:hover, .button:focus {\n\
284 border-color: hsl(XXX, 25%, 50%);\n\
285 }");
286
287 function randomizeName () {
288 var name = generateName();
289 document.getElementById("name").textContent = name;
290 document.title = document.title.replace(/[^-]*-/, name + " -");
291 document.head.lastChild.textContent = THEME.replace(
292 /XXX/g, (Math.random() * 256) | 0);
293 }
294
295 var events = [];
296 var style;
297
298 function generateScenario () {
299 var parts = location.hash.slice(1).split(',');
300 events = generate(parts, parts.shift() | 0, parts.shift() | 0);
301 style = document.createElement("style");
302 document.head.appendChild(style);
303 randomizeName();
304 }
305
306 function getEvents (matcher) {
307 return EVENTS.filter(matcher);
308 }
309
310 function wrapRow (row) {
311 return "<tr><td>" + row + "</td></tr>";
312 }
313
314 function iscanonical (event) {
315 return !isnoncanonical(event);
316 }
317 function isnoncanonical (event) {
318 return ~(event.requires || []).indexOf('noncanonical');
319 }
320
321 function canonicalToHTML (sender) {
322 sender.innerHTML = EVENTS.filter(iscanonical)
323 .map(toHTML).sort().map(wrapRow).join('');
324 }
325
326 function noncanonicalToHTML (sender) {
327 sender.innerHTML = EVENTS.filter(isnoncanonical)
328 .map(toHTML).sort().map(wrapRow).join('');
329 }
330
331 function nextEvent (sender) {
332 if (!events.length) {
333 location.reload();
334 return;
335 }
336
337 var event = events.shift();
338 var body = document.querySelector("#fate tbody");
339 var fate = body.children.length + 1;
340 var tr = document.createElement('tr');
341 tr.innerHTML = "<td><div>" + fate + "</div></td>"
342 + "<td><div>" + toHTML(event) + "</div></td>";
343 body.insertBefore(tr, body.firstChild);
344
345 if (events.length === 0) {
346 sender.textContent = "Try Again ▲";
347 }
348
349 if (event.another)
350 setTimeout(function () { nextEvent(sender); }, 333);
351 }