Add canon Veil of Shadow ability and noncanon events with it.
[heroik.git] / scenarios.js
index 25baf66..67e4b5c 100644 (file)
@@ -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,9 +72,6 @@ var EVENTS = [
       effect: "Any monster with a Tenacity token is also <strong>Fierce</strong>.",
       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 <strong>Supremacy</strong>.",
       requires: ["noncanonical"],
@@ -126,6 +125,27 @@ var EVENTS = [
       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>.",
       requires: ["noncanonical"],
       unique: true },
+    { name: "New moon.",
+      effect: "Demons have <strong>Veil of Shadow</strong>.",
+      requires: ["noncanonical", "demons"],
+      unique: true },
+    { name: "Camouflage.",
+      effect: "Greenskins have <strong>Veil of Shadow</strong>.",
+      requires: ["noncanonical"],
+      unique: true },
+    { name: "Cryptic shades.",
+      effect: "Undead have <strong>Veil of Shadow</strong>.",
+      requires: ["noncanonical", "undead"],
+      unique: true },
+    { name: "Lingering smoke.",
+      effect: "Dragons have <strong>Veil of Shadow</strong>.",
+      requires: ["noncanonical", "dragons"],
+      unique: true },
+    { name: "Hypnotizing gaze.",
+      effect: "Bubbleyes have <strong>Veil of Shadow</strong>.",
+      requires: ["noncanonical", "bubbleyes"],
+      unique: true },
+
 ];
 
 var NOTHING = { name: "Nothing happens." };