1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-06-28 22:26:08 +02:00

[mff & runes] More work on wizard class : spontafire and info wand

- Add wands and scrolls to reserved items list for wizards
 - Add spontaneous inflaming (spontafire) glyph and scroll
 - Add information wand
This commit is contained in:
LeMagnesium
2016-06-28 19:20:06 +02:00
parent 326ceb6afb
commit 93139c8db7
5 changed files with 99 additions and 1 deletions

View File

@ -24,3 +24,10 @@ pclasses.api.register_class("wizard", {
})
-- Reserved items here
pclasses.api.reserve_item("wizard", "runes:info_wand")
pclasses.api.reserve_item("wizard", "runes:recharge_wand")
pclasses.api.reserve_item("wizard", "runes:stylus")
for scroll, _ in pairs(runes.scrolls) do
pclasses.api.reserve_item("wizard", "runes:scroll_" .. scroll)
end