From 30b59acc404dd6df6e9990bd314fe530f4447e3a Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Mon, 30 Nov 2020 14:42:48 +0200 Subject: [PATCH] More wish tests --- test/testwish.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/testwish.lua b/test/testwish.lua index f4a1c1a72..d28c82e3b 100644 --- a/test/testwish.lua +++ b/test/testwish.lua @@ -43,6 +43,7 @@ local wishtest_objects = { ["enchant weapon"] = { otyp_name = "enchant weapon", oclass = "?" }, ["scroll of food detection"] = { otyp_name = "food detection", oclass = "?" }, ["scroll of detect food"] = { otyp_name = "food detection", oclass = "?" }, + ["2 scrolls of charging"] = { otyp_name = "charging", oclass = "?", quan = 2 }, ["spellbook of food detection"] = { otyp_name = "detect food", oclass = "+" }, ["spell"] = { NO_OBJ = 1 }, ["-1 ring mail"] = { otyp_name = "ring mail", oclass = "[", spe = -1 }, @@ -50,6 +51,11 @@ local wishtest_objects = { ["leather armor"] = { otyp_name = "leather armor", oclass = "[" }, ["plate armor"] = { otyp_name = "plate mail", oclass = "[" }, ["yellow dragon scale armor"] = { otyp_name = "yellow dragon scale mail", oclass = "[" }, + ["speed boots"] = { otyp_name = "speed boots", oclass = "[" }, + ["speedboots"] = { otyp_name = "speed boots", oclass = "[" }, + ["erodeproof speedboots"] = { otyp_name = "speed boots", oclass = "[", oerodeproof = 1 }, + ["fixed boots of speed"] = { otyp_name = "speed boots", oclass = "[", oerodeproof = 1 }, + ["blessed fireproof +2 pair of speed boots"] = { otyp_name = "speed boots", oclass = "[", oerodeproof = 1, blessed = 1, spe = 2 }, ["tooled horn"] = { otyp_name = "tooled horn", oclass = "(" }, ["meat ring"] = { otyp_name = "meat ring", oclass = "%" }, ["beartrap"] = { otyp_name = "beartrap", oclass = "(" },