---@param special mobj_t
---@param toucher mobj_t
addHook("TouchSpecial", function(special, toucher)
    if gamemap < 58 and gamemap > 49 
	or gamemap == 29 then
        P_GivePlayerSpheres(toucher.player, 1)
    end
end, MT_RING)

---@param special mobj_t
---@param toucher mobj_t
addHook("TouchSpecial", function(special, toucher)
	P_GivePlayerSpheres(toucher.player, -1)
end, MT_NIGHTSCHIP)

---@param special mobj_t
---@param toucher mobj_t
addHook("TouchSpecial", function(special, toucher)
    P_GivePlayerSpheres(toucher.player, 1)
end, MT_NIGHTSSTAR)