From a8800a9acd509456156e978b7b743f62a564e8b1 Mon Sep 17 00:00:00 2001 From: Alex Smith Date: Fri, 30 May 2025 01:45:30 +0100 Subject: [PATCH] Add a potion of gain level to the Castle chest This is partly for balance reasons (so that clearing the Castle helps towards the level 14 Quest unlock) and partly as a clue to players spoiled on previous versions that the Castle wand now works differently. --- dat/castle.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/dat/castle.lua b/dat/castle.lua index 83eaecae6..0a2b7f243 100644 --- a/dat/castle.lua +++ b/dat/castle.lua @@ -144,6 +144,7 @@ local loc = place:rndcoord(1); des.object({ id = "chest", trapped = 0, locked = 1, coord = loc , contents = function() des.object("wishing"); + des.object("potion of gain level"); end }); -- Prevent monsters from eating it. (@'s never eat objects)