--*********************************************************** --** ROBERT JOHNSON ** --*********************************************************** require "TimedActions/ISBaseTimedAction" ISCleanBurn = ISBaseTimedAction:derive("ISCleanBurn"); function ISCleanBurn:isValid() if ISHealthPanel.DidPatientMove(self.character, self.otherPlayer, self.bandagedPlayerX, self.bandagedPlayerY) then return false end return true end function ISCleanBurn:waitToStart() if self.character == self.otherPlayer then return false end self.character:faceThisObject(self.otherPlayer) return self.character:shouldBeTurning() end function ISCleanBurn:update() if self.character ~= self.otherPlayer then self.character:faceThisObject(self.otherPlayer) end local jobType = getText("ContextMenu_Clean_Burn") ISHealthPanel.setBodyPartActionForPlayer(self.otherPlayer, self.bodyPart, self, jobType, { cleanBurn = true }) self.character:setMetabolicTarget(Metabolics.LightDomestic); end function ISCleanBurn:start() if self.character == self.otherPlayer then self:setActionAnim(CharacterActionAnims.Bandage); self:setAnimVariable("BandageType", ISHealthPanel.getBandageType(self.bodyPart)); self.character:reportEvent("EventBandage"); else self:setActionAnim("Loot") self.character:SetVariable("LootPosition", "Mid") self.character:reportEvent("EventLootItem"); end self:setOverrideHandModels(nil, nil); end function ISCleanBurn:stop() ISHealthPanel.setBodyPartActionForPlayer(self.otherPlayer, self.bodyPart, nil, nil, nil) ISBaseTimedAction.stop(self); end function ISCleanBurn:perform() -- needed to remove from queue / start next. ISBaseTimedAction.perform(self); if self.character:HasTrait("Hemophobic") then self.character:getStats():setPanic(self.character:getStats():getPanic() + 50); end self.character:getXp():AddXP(Perks.Doctor, 10); local addPain = (60 - (self.doctorLevel * 1)) self.bodyPart:setAdditionalPain(self.bodyPart:getAdditionalPain() + addPain); self.bodyPart:setNeedBurnWash(false); self.bandage:Use(); if isClient() then sendCleanBurn(self.character, self.otherPlayer, self.bodyPart, self.bandage); end ISHealthPanel.setBodyPartActionForPlayer(self.otherPlayer, self.bodyPart, nil, nil, nil) end function ISCleanBurn:new(doctor, otherPlayer, bandage, bodyPart) local o = {} setmetatable(o, self) self.__index = self o.character = doctor; o.otherPlayer = otherPlayer; o.doctorLevel = doctor:getPerkLevel(Perks.Doctor); o.bodyPart = bodyPart; o.bandage = bandage; o.stopOnWalk = true; o.stopOnRun = true; o.bandagedPlayerX = otherPlayer:getX(); o.bandagedPlayerY = otherPlayer:getY(); o.maxTime = 250 - (o.doctorLevel * 6); if doctor:isTimedActionInstant() then o.maxTime = 1; end if doctor:getAccessLevel() ~= "None" then o.doctorLevel = 10; end return o; end