mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-06-29 14:40:30 +02:00
Add [mff_pclasses], MFF-specific pclasses
This commit is contained in:
29
mods/mff/mff_pclasses/hunter.lua
Executable file
29
mods/mff/mff_pclasses/hunter.lua
Executable file
@ -0,0 +1,29 @@
|
||||
------------------
|
||||
-- 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")
|
Reference in New Issue
Block a user