Cleaning, bandages handling

This commit is contained in:
ZioPao
2023-11-15 11:07:15 +01:00
parent 46bc6030fe
commit c9b41838be
8 changed files with 84 additions and 28 deletions

View File

@@ -1,10 +1,35 @@
local ModDataHandler = require("TOC/Handlers/ModDataHandler")
---@class SurgeryHandler
---@field type string
local SurgeryHandler = {}
function SurgeryHandler.InstallProsthesis()
-- TODO Set stuff in mod data
function SurgeryHandler:new(type)
local o = {}
setmetatable(o, self)
self.__index = self
-- TODO use getjob for this
o.type = type
return o
end
function SurgeryHandler:execute()
if self.type == "needle" then
-- TODO
end
end
-- Cauterize
-- Needle and stitching (scrap surgery kits and crap like that)
return SurgeryHandler