From fa4f4791070577cfa5043a4c0f9bf036daa2f6c4 Mon Sep 17 00:00:00 2001 From: Nick Winter Date: Thu, 4 Dec 2014 13:37:17 -0800 Subject: [PATCH] Restricted Arcane Ally and Munchkin Harvest to warriors, since otherwise players will tend to suicidally pick their under-armored new ranger or wizard. --- app/lib/LevelOptions.coffee | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/lib/LevelOptions.coffee b/app/lib/LevelOptions.coffee index cd8247719..9b05a7346 100644 --- a/app/lib/LevelOptions.coffee +++ b/app/lib/LevelOptions.coffee @@ -249,6 +249,7 @@ module.exports = LevelOptions = 'munchkin-harvest': requiredGear: {waist: 'leather-belt', 'programming-book': 'programmaticon-ii', eyes: 'wooden-glasses', 'right-hand': 'long-sword', 'left-hand': 'bronze-shield', wrists: 'sundial-wristwatch'} restrictedGear: {'programming-book': 'programmaticon-i'} + allowedHeroes: ['captain', 'knight', 'samurai'] 'swift-dagger': requiredGear: {waist: 'leather-belt', 'programming-book': 'programmaticon-ii', eyes: 'wooden-glasses', 'right-hand': 'crude-crossbow', 'left-hand': 'crude-dagger', wrists: 'sundial-wristwatch'} restrictedGear: {eyes: 'crude-glasses', 'programming-book': 'programmaticon-i'} @@ -262,6 +263,7 @@ module.exports = LevelOptions = 'arcane-ally': requiredGear: {waist: 'leather-belt', 'programming-book': 'programmaticon-ii', eyes: 'wooden-glasses', 'right-hand': 'long-sword', 'left-hand': 'bronze-shield', wrists: 'sundial-wristwatch'} restrictedGear: {eyes: 'crude-glasses', 'programming-book': 'programmaticon-i'} + allowedHeroes: ['captain', 'knight', 'samurai'] 'touch-of-death': requiredGear: {waist: 'leather-belt', 'programming-book': 'programmaticon-ii', eyes: 'wooden-glasses', 'right-hand': 'enchanted-stick', 'left-hand': 'unholy-tome-i', wrists: 'sundial-wristwatch'} restrictedGear: {'programming-book': 'programmaticon-i'}