mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-08 19:40:21 +01:00
aa2f62afb3
- Chmod-ed all files - Removed whitespaces - Added automated arbalest in spreadsheet, throwing, and hunters' reserved items - Solves #206
31 lines
962 B
Lua
Executable File
31 lines
962 B
Lua
Executable File
------------------
|
|
-- Hunter class --
|
|
------------------
|
|
|
|
--
|
|
-- See https://github.com/Ombridride/minetest-minetestforfun-server/issues/114
|
|
--
|
|
|
|
pclasses.api.register_class("hunter", {
|
|
on_assigned = function(pname)
|
|
minetest.chat_send_player(pname, "You are now a hunter")
|
|
minetest.sound_play("pclasses_full_hunter")
|
|
local reinforced = pclasses.api.util.does_wear_full_armor(pname, "reinforcedleather", true)
|
|
if reinforced then
|
|
sprint.increase_maxstamina(pname, 20)
|
|
else
|
|
sprint.increase_maxstamina(pname, 10)
|
|
end
|
|
minetest.log("action", "[PClasses] Player " .. pname .. " become a hunter")
|
|
end,
|
|
on_unassigned = function(pname)
|
|
sprint.set_default_maxstamina(pname)
|
|
end,
|
|
})
|
|
|
|
|
|
pclasses.api.reserve_item("hunter", "throwing:bow_minotaur_horn")
|
|
pclasses.api.reserve_item("hunter", "throwing:bow_minotaur_horn_improved")
|
|
pclasses.api.reserve_item("hunter", "throwing:arrow_mithril")
|
|
pclasses.api.reserve_item("hunter", "throwing:arbalest_auto")
|