X-Git-Url: https://git.yukkurigames.com/?p=heroik.git;a=blobdiff_plain;f=scenarios.js;h=ce36acc94525936a0557ccbdd07f368e585ed94c;hp=25baf66889cd6ff431c2fe18050b10e54bf5f6ed;hb=80a48586311bba6aaa1dc6d133f7c5769b17567d;hpb=12e70756fab6e3745aa153e7e2a9230e08df278f diff --git a/scenarios.js b/scenarios.js index 25baf66..ce36acc 100644 --- a/scenarios.js +++ b/scenarios.js @@ -55,7 +55,9 @@ var EVENTS = [ { name: "Epic combat.", effect: "The Final Monster gains a bonus of +3 Strength.", unique: true }, - + { name: "Red herring.", + action: "Shuffle the remaining corridors together and redistribute the cards as if you were setting up the game." }, + // Events from Sean Allen's random scenario generator. // http://boardgamegeek.com/filepage/57107/random-scenario-generator { name: "Fire from above.", @@ -70,19 +72,15 @@ var EVENTS = [ effect: "Any monster with a Tenacity token is also Fierce.", requires: ["noncanonical"], unique: true }, - { name: "Dead end.", - action: "Shuffle the remaining corridors together and redistribute the cards as if you were setting up the game.", - requires: ["noncanonical"] }, { name: "Surrounded.", effect: "All monsters have Supremacy.", requires: ["noncanonical"], unique: true }, + { name: "The torch has gone out.", + action: "The next dungeon card is placed face-down.", }, // Events from Stephane Renard's scenario. // http://docfox.free.fr/spip.php?article129 - { name: "What was that?", - action: "The next dungeon card is placed face-down.", - requires: ["noncanonical"] }, { name: "Malediction.", action: "Discard all quests.", requires: ["noncanonical"], @@ -103,7 +101,7 @@ var EVENTS = [ effect: "Greenskins have 1d8 Strength.", requires: ["noncanonical"], unique: true }, - { name: "Dropped the torch.", + { name: "Lost in the fog.", effect: "After defeating a card, roll a die. On an odd number its replacement is placed face-down.", requires: ["noncanonical"], unique: true }, @@ -126,6 +124,27 @@ var EVENTS = [ effect: "Greenskins have Undead +1, Demons -1. Demons have Greenskins +1, Undead -1. Undead have Demons +1, Greenskins -1.", requires: ["noncanonical"], unique: true }, + { name: "New moon.", + effect: "Demons have Veil of Shadow.", + requires: ["noncanonical", "demons"], + unique: true }, + { name: "Camouflage.", + effect: "Greenskins have Veil of Shadow.", + requires: ["noncanonical"], + unique: true }, + { name: "Cryptic shades.", + effect: "Undead have Veil of Shadow.", + requires: ["noncanonical", "undead"], + unique: true }, + { name: "Lingering smoke.", + effect: "Dragons have Veil of Shadow.", + requires: ["noncanonical", "dragons"], + unique: true }, + { name: "Hypnotizing gaze.", + effect: "Bubbleyes have Veil of Shadow.", + requires: ["noncanonical", "bubbleyes"], + unique: true }, + ]; var NOTHING = { name: "Nothing happens." };