Fixed compat a little, prosthesis still missing
This commit is contained in:
@@ -112,19 +112,19 @@ Commands["CanResetEverything"] = function(arg)
|
|||||||
arg["command"] = "ResponseCanAct"
|
arg["command"] = "ResponseCanAct"
|
||||||
arg["toSend"] = {part_name, "Cut", true}
|
arg["toSend"] = {part_name, "Cut", true}
|
||||||
sendClientCommand("TOC", "SendServer", arg)
|
sendClientCommand("TOC", "SendServer", arg)
|
||||||
--ResetEverything()
|
--TocResetEverything()
|
||||||
end
|
end
|
||||||
|
|
||||||
Commands["ResetEverything"] = function(arg)
|
Commands["ResetEverything"] = function(arg)
|
||||||
local arg = arg["toSend"]
|
local arg = arg["toSend"]
|
||||||
ResetEverything()
|
TocResetEverything()
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Cheating stuff
|
-- Cheating stuff
|
||||||
Commands["AcceptResetEverything"] = function(arg)
|
Commands["AcceptResetEverything"] = function(arg)
|
||||||
|
|
||||||
local clicked_player = getPlayerByOnlineID(arg[1]) -- TODO delete this
|
local clicked_player = getPlayerByOnlineID(arg[1]) -- TODO delete this
|
||||||
ResetEverything()
|
TocResetEverything()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
86
media/lua/client/TOC_Compatibility.lua
Normal file
86
media/lua/client/TOC_Compatibility.lua
Normal file
@@ -0,0 +1,86 @@
|
|||||||
|
function TocCheckCompatibilityWithOlderVersions(mod_data)
|
||||||
|
-- Gets the old status and turns it into the new.
|
||||||
|
|
||||||
|
if mod_data.TOC.Limbs == nil then
|
||||||
|
print("TOC: Limbs is nil, resetting mod_data")
|
||||||
|
TocMapOldDataToNew(mod_data)
|
||||||
|
else
|
||||||
|
print("TOC: Found compatible data")
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function TocMapOldDataToNew(mod_data)
|
||||||
|
|
||||||
|
local map_names = {
|
||||||
|
Right_Hand = "RightHand",
|
||||||
|
Right_LowerArm = "RightForearm",
|
||||||
|
Right_UpperArm = "RightArm",
|
||||||
|
|
||||||
|
Left_Hand = "LeftHand",
|
||||||
|
Left_LowerArm = "LeftForearm",
|
||||||
|
Left_UpperArm = "LeftArm"
|
||||||
|
}
|
||||||
|
|
||||||
|
local old_names_table = {"RightHand", "RightForearm", "RightArm", "LeftHand", "LeftForearm", "LeftArm"}
|
||||||
|
local new_names_table = {"Right_Hand", "Right_LowerArm", "Right_UpperArm", "Left_Hand", "Left_LowerArm", "Left_UpperArm"}
|
||||||
|
print("TOC: Trying to backup old data")
|
||||||
|
local backup_old_data = mod_data.TOC
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
-- for k, v in pairs(map_names) do
|
||||||
|
-- print("TOC: Looping old names...")
|
||||||
|
-- print(k)
|
||||||
|
-- print(v)
|
||||||
|
-- print(backup_old_data[v].is_cut)
|
||||||
|
-- print("__________________")
|
||||||
|
-- end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
-- for _, v in ipairs(map_names) do
|
||||||
|
-- print("TOC: Looping old names...")
|
||||||
|
-- print(k)
|
||||||
|
-- print(v)
|
||||||
|
-- print(backup_old_data[v].is_cut)
|
||||||
|
-- print("__________________")
|
||||||
|
-- end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
TocResetEverything()
|
||||||
|
-- For some reasons pairs does not work here...
|
||||||
|
-- TODO ask why
|
||||||
|
for i=1, #new_names_table do
|
||||||
|
print("TOC: Looping " .. i)
|
||||||
|
print(backup_old_data[old_names_table[i]].is_cut)
|
||||||
|
|
||||||
|
local old_name = old_names_table[i]
|
||||||
|
local new_name = new_names_table[i]
|
||||||
|
|
||||||
|
mod_data.TOC.Limbs[new_name].is_cut = backup_old_data[old_name].is_cut
|
||||||
|
|
||||||
|
if mod_data.TOC.Limbs[new_name].is_cut then
|
||||||
|
local cloth = getPlayer():getInventory():AddItem(TocFindAmputatedClothingFromPartName(new_name))
|
||||||
|
getPlayer():setWornItem(cloth:getBodyLocation(), cloth)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
mod_data.TOC.Limbs[new_name].is_infected = backup_old_data[old_name].is_infected
|
||||||
|
mod_data.TOC.Limbs[new_name].is_operated = backup_old_data[old_name].is_operated
|
||||||
|
mod_data.TOC.Limbs[new_name].is_cicatrized = backup_old_data[old_name].is_cicatrized
|
||||||
|
mod_data.TOC.Limbs[new_name].is_cauterized = backup_old_data[old_name].is_cauterized
|
||||||
|
mod_data.TOC.Limbs[new_name].is_amputation_shown = backup_old_data[old_name].is_amputation_shown
|
||||||
|
|
||||||
|
mod_data.TOC.Limbs[new_name].cicatrization_time = backup_old_data[old_name].cicatrization_time
|
||||||
|
|
||||||
|
|
||||||
|
end
|
||||||
|
getPlayer():transmitModData()
|
||||||
|
|
||||||
|
|
||||||
|
end
|
||||||
@@ -158,7 +158,7 @@ TocContextMenus.CreateCheatMenu = function(context, root_menu, local_player, cli
|
|||||||
local cheat_menu = TocContextMenus.CreateNewMenu("Cheat", context, root_menu)
|
local cheat_menu = TocContextMenus.CreateNewMenu("Cheat", context, root_menu)
|
||||||
|
|
||||||
if clicked_player == local_player then
|
if clicked_player == local_player then
|
||||||
cheat_menu:addOption("Reset TOC for me", _, ResetEverything)
|
cheat_menu:addOption("Reset TOC for me", _, TocResetEverything)
|
||||||
|
|
||||||
else
|
else
|
||||||
cheat_menu:addOption("Reset TOC for " .. clicked_player:getUsername(), _, TryToToResetEverythingOtherPlayer, clicked_player, local_player)
|
cheat_menu:addOption("Reset TOC for " .. clicked_player:getUsername(), _, TryToToResetEverythingOtherPlayer, clicked_player, local_player)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
function ResetEverything()
|
function TocResetEverything()
|
||||||
|
|
||||||
local player = getPlayer()
|
local player = getPlayer()
|
||||||
local mod_data = player:getModData()
|
local mod_data = player:getModData()
|
||||||
|
|||||||
@@ -17,13 +17,31 @@ function TheOnlyCure.InitTheOnlyCure(_, player)
|
|||||||
|
|
||||||
-- TODO
|
-- TODO
|
||||||
if mod_data.TOC == nil then
|
if mod_data.TOC == nil then
|
||||||
|
TocSetInitData(mod_data, player)
|
||||||
|
else
|
||||||
|
TocCheckCompatibilityWithOlderVersions(mod_data)
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
print("TOC: Creating mod_data.TOC")
|
function TocSetInitData(mod_data, player)
|
||||||
|
|
||||||
mod_data.TOC = {
|
print("TOC: Creating mod_data.TOC")
|
||||||
|
|
||||||
Limbs = {
|
mod_data.TOC = {
|
||||||
|
|
||||||
|
Limbs = {
|
||||||
|
Right_Hand = {},
|
||||||
|
Right_LowerArm = {},
|
||||||
|
Right_UpperArm = {},
|
||||||
|
|
||||||
|
Left_Hand = {},
|
||||||
|
Left_LowerArm = {},
|
||||||
|
Left_UpperArm = {},
|
||||||
|
is_other_bodypart_infected = false
|
||||||
|
},
|
||||||
|
Prosthesis = {
|
||||||
|
WoodenHook = {
|
||||||
Right_Hand = {},
|
Right_Hand = {},
|
||||||
Right_LowerArm = {},
|
Right_LowerArm = {},
|
||||||
Right_UpperArm = {},
|
Right_UpperArm = {},
|
||||||
@@ -31,156 +49,144 @@ function TheOnlyCure.InitTheOnlyCure(_, player)
|
|||||||
Left_Hand = {},
|
Left_Hand = {},
|
||||||
Left_LowerArm = {},
|
Left_LowerArm = {},
|
||||||
Left_UpperArm = {},
|
Left_UpperArm = {},
|
||||||
is_other_bodypart_infected = false
|
|
||||||
},
|
},
|
||||||
Prosthesis = {
|
MetalHook = {
|
||||||
WoodenHook = {
|
Right_Hand = {},
|
||||||
Right_Hand = {},
|
Right_LowerArm = {},
|
||||||
Right_LowerArm = {},
|
Right_UpperArm = {},
|
||||||
Right_UpperArm = {},
|
|
||||||
|
|
||||||
Left_Hand = {},
|
|
||||||
Left_LowerArm = {},
|
|
||||||
Left_UpperArm = {},
|
|
||||||
},
|
|
||||||
MetalHook = {
|
|
||||||
Right_Hand = {},
|
|
||||||
Right_LowerArm = {},
|
|
||||||
Right_UpperArm = {},
|
|
||||||
|
|
||||||
Left_Hand = {},
|
|
||||||
Left_LowerArm = {},
|
|
||||||
Left_UpperArm = {},
|
|
||||||
},
|
|
||||||
MetalHand = {
|
|
||||||
Right_Hand = {},
|
|
||||||
Right_LowerArm = {},
|
|
||||||
Right_UpperArm = {},
|
|
||||||
|
|
||||||
Left_Hand = {},
|
|
||||||
Left_LowerArm = {},
|
|
||||||
Left_UpperArm = {},
|
|
||||||
},
|
|
||||||
Accepted_Prosthesis = {}
|
|
||||||
|
|
||||||
|
Left_Hand = {},
|
||||||
|
Left_LowerArm = {},
|
||||||
|
Left_UpperArm = {},
|
||||||
},
|
},
|
||||||
Generic = {},
|
MetalHand = {
|
||||||
}
|
Right_Hand = {},
|
||||||
--------
|
Right_LowerArm = {},
|
||||||
-- NEW NAMING SCHEME
|
Right_UpperArm = {},
|
||||||
|
|
||||||
---- Amputations
|
|
||||||
|
|
||||||
-- Amputation_Left_Hand
|
|
||||||
-- Amputation_Right_UpperArm
|
|
||||||
|
|
||||||
|
|
||||||
---- Prosthesis to equip
|
|
||||||
-- Prost_Left_Hand_MetalHook
|
|
||||||
-- Prost_Right_Forearm_WoodenHook
|
|
||||||
|
|
||||||
--- Objects
|
|
||||||
-- Prost_Object_WoddenHook
|
|
||||||
|
|
||||||
|
|
||||||
local sides = {"Left", "Right"}
|
|
||||||
local limbs = {"Hand", "LowerArm", "UpperArm"} -- Let's follow their naming
|
|
||||||
|
|
||||||
|
|
||||||
local prosthesis_list = {"WoodenHook", "MetalHook", "MetalHand"}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
local accepted_prosthesis_hand = {"WoodenHook", "MetalHook", "MetalHand"}
|
|
||||||
local accepted_prosthesis_lowerarm = {"WoodenHook", "MetalHook", "MetalHand"}
|
|
||||||
local accepted_prosthesis_upperarm = {} -- For future stuff
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
for _, side in ipairs(sides) do
|
|
||||||
for _, limb in ipairs(limbs) do
|
|
||||||
|
|
||||||
local part_name = side .. "_" .. limb
|
|
||||||
|
|
||||||
mod_data.TOC.Limbs[part_name].is_cut = false
|
|
||||||
mod_data.TOC.Limbs[part_name].is_infected = false
|
|
||||||
mod_data.TOC.Limbs[part_name].is_operated = false
|
|
||||||
mod_data.TOC.Limbs[part_name].is_cicatrized = false
|
|
||||||
mod_data.TOC.Limbs[part_name].is_cauterized = false
|
|
||||||
mod_data.TOC.Limbs[part_name].is_amputation_shown = false
|
|
||||||
|
|
||||||
mod_data.TOC.Limbs[part_name].cicatrization_time = 0
|
|
||||||
|
|
||||||
|
|
||||||
mod_data.TOC.Limbs[part_name].is_prosthesis_equipped = false
|
|
||||||
mod_data.TOC.Limbs[part_name].equipped_prosthesis = {}
|
|
||||||
|
|
||||||
-- Even if there are some duplicates, this is just easier in the end since we're gonna get fairly easily part_name
|
Left_Hand = {},
|
||||||
|
Left_LowerArm = {},
|
||||||
|
Left_UpperArm = {},
|
||||||
if limb == "Hand" then
|
},
|
||||||
mod_data.TOC.Limbs[part_name].cicatrization_base_time = 1700
|
Accepted_Prosthesis = {}
|
||||||
mod_data.TOC.Limbs[part_name].depends_on = {}
|
|
||||||
|
},
|
||||||
|
Generic = {},
|
||||||
|
}
|
||||||
|
--------
|
||||||
|
-- NEW NAMING SCHEME
|
||||||
|
|
||||||
|
---- Amputations
|
||||||
|
|
||||||
|
-- Amputation_Left_Hand
|
||||||
|
-- Amputation_Right_UpperArm
|
||||||
|
|
||||||
|
|
||||||
mod_data.TOC.Prosthesis.Accepted_Prosthesis[part_name] = accepted_prosthesis_hand
|
---- Prosthesis to equip
|
||||||
mod_data.TOC.Prosthesis["WoodenHook"][part_name].prosthesis_factor = 1.5
|
-- Prost_Left_Hand_MetalHook
|
||||||
mod_data.TOC.Prosthesis["MetalHook"][part_name].prosthesis_factor = 1.3
|
-- Prost_Right_Forearm_WoodenHook
|
||||||
mod_data.TOC.Prosthesis["MetalHand"][part_name].prosthesis_factor = 1.1
|
|
||||||
|
--- Objects
|
||||||
|
-- Prost_Object_WoddenHook
|
||||||
|
|
||||||
|
|
||||||
|
local sides = {"Left", "Right"}
|
||||||
|
local limbs = {"Hand", "LowerArm", "UpperArm"} -- Let's follow their naming
|
||||||
|
|
||||||
|
|
||||||
|
local prosthesis_list = {"WoodenHook", "MetalHook", "MetalHand"}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
local accepted_prosthesis_hand = {"WoodenHook", "MetalHook", "MetalHand"}
|
||||||
|
local accepted_prosthesis_lowerarm = {"WoodenHook", "MetalHook", "MetalHand"}
|
||||||
|
local accepted_prosthesis_upperarm = {} -- For future stuff
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
for _, side in ipairs(sides) do
|
||||||
|
for _, limb in ipairs(limbs) do
|
||||||
|
|
||||||
|
local part_name = side .. "_" .. limb
|
||||||
|
|
||||||
|
mod_data.TOC.Limbs[part_name].is_cut = false
|
||||||
|
mod_data.TOC.Limbs[part_name].is_infected = false
|
||||||
|
mod_data.TOC.Limbs[part_name].is_operated = false
|
||||||
|
mod_data.TOC.Limbs[part_name].is_cicatrized = false
|
||||||
|
mod_data.TOC.Limbs[part_name].is_cauterized = false
|
||||||
|
mod_data.TOC.Limbs[part_name].is_amputation_shown = false
|
||||||
|
|
||||||
|
mod_data.TOC.Limbs[part_name].cicatrization_time = 0
|
||||||
elseif limb == "LowerArm" then
|
|
||||||
mod_data.TOC.Limbs[part_name].cicatrization_base_time = 1800
|
|
||||||
mod_data.TOC.Limbs[part_name].depends_on = {side .. "_Hand",}
|
mod_data.TOC.Limbs[part_name].is_prosthesis_equipped = false
|
||||||
mod_data.TOC.Prosthesis.Accepted_Prosthesis[part_name] = accepted_prosthesis_lowerarm
|
mod_data.TOC.Limbs[part_name].equipped_prosthesis = {}
|
||||||
|
|
||||||
mod_data.TOC.Prosthesis["WoodenHook"][part_name].prosthesis_factor = 1.65
|
-- Even if there are some duplicates, this is just easier in the end since we're gonna get fairly easily part_name
|
||||||
mod_data.TOC.Prosthesis["MetalHook"][part_name].prosthesis_factor = 1.45
|
|
||||||
mod_data.TOC.Prosthesis["MetalHand"][part_name].prosthesis_factor = 1.25
|
|
||||||
elseif limb == "UpperArm" then
|
if limb == "Hand" then
|
||||||
mod_data.TOC.Limbs[part_name].cicatrization_base_time = 2000
|
mod_data.TOC.Limbs[part_name].cicatrization_base_time = 1700
|
||||||
mod_data.TOC.Limbs[part_name].depends_on = {side .. "_Hand", side .. "_LowerArm",}
|
mod_data.TOC.Limbs[part_name].depends_on = {}
|
||||||
mod_data.TOC.Prosthesis.Accepted_Prosthesis[part_name] = accepted_prosthesis_upperarm
|
|
||||||
end
|
|
||||||
|
mod_data.TOC.Prosthesis.Accepted_Prosthesis[part_name] = accepted_prosthesis_hand
|
||||||
|
mod_data.TOC.Prosthesis["WoodenHook"][part_name].prosthesis_factor = 1.5
|
||||||
|
mod_data.TOC.Prosthesis["MetalHook"][part_name].prosthesis_factor = 1.3
|
||||||
|
mod_data.TOC.Prosthesis["MetalHand"][part_name].prosthesis_factor = 1.1
|
||||||
|
|
||||||
|
|
||||||
|
elseif limb == "LowerArm" then
|
||||||
|
mod_data.TOC.Limbs[part_name].cicatrization_base_time = 1800
|
||||||
|
mod_data.TOC.Limbs[part_name].depends_on = {side .. "_Hand",}
|
||||||
|
mod_data.TOC.Prosthesis.Accepted_Prosthesis[part_name] = accepted_prosthesis_lowerarm
|
||||||
|
|
||||||
|
mod_data.TOC.Prosthesis["WoodenHook"][part_name].prosthesis_factor = 1.65
|
||||||
|
mod_data.TOC.Prosthesis["MetalHook"][part_name].prosthesis_factor = 1.45
|
||||||
|
mod_data.TOC.Prosthesis["MetalHand"][part_name].prosthesis_factor = 1.25
|
||||||
|
elseif limb == "UpperArm" then
|
||||||
|
mod_data.TOC.Limbs[part_name].cicatrization_base_time = 2000
|
||||||
|
mod_data.TOC.Limbs[part_name].depends_on = {side .. "_Hand", side .. "_LowerArm",}
|
||||||
|
mod_data.TOC.Prosthesis.Accepted_Prosthesis[part_name] = accepted_prosthesis_upperarm
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Setup traits
|
|
||||||
if player:HasTrait("Amputee_Hand") then
|
|
||||||
|
|
||||||
-- TODO override AddItem so we can change the texture dynamically based on skin color
|
|
||||||
local amputation_clothing = player:getInventory():AddItem("TOC.Amputation_Left_Hand")
|
|
||||||
player:setWornItem(amputation_clothing:getBodyLocation(), amputation_clothing)
|
|
||||||
mod_data.TOC.Left_Hand.is_cut = true
|
|
||||||
mod_data.TOC.Left_Hand.is_operated = true
|
|
||||||
mod_data.TOC.Left_Hand.is_amputation_shown = true
|
|
||||||
mod_data.TOC.Left_Hand.is_cicatrized = true
|
|
||||||
elseif player:HasTrait("Amputee_LowerArm") then
|
|
||||||
local amputation_clothing = player:getInventory():AddItem("TOC.Amputation_Left_LowerArm")
|
|
||||||
player:setWornItem(amputation_clothing:getBodyLocation(), amputation_clothing)
|
|
||||||
mod_data.TOC.Left_LowerArm.is_cut = true
|
|
||||||
mod_data.TOC.Left_LowerArm.is_operated = true
|
|
||||||
mod_data.TOC.Left_LowerArm.is_amputation_shown = true
|
|
||||||
mod_data.TOC.Left_LowerArm.is_cicatrized = true
|
|
||||||
elseif player:HasTrait("Amputee_UpperArm") then
|
|
||||||
local amputation_clothing = player:getInventory():AddItem("TOC.Amputation_Left_UpperArm")
|
|
||||||
player:setWornItem(amputation_clothing:getBodyLocation(), amputation_clothing)
|
|
||||||
mod_data.TOC.Left_UpperArm.is_cut = true
|
|
||||||
mod_data.TOC.Left_UpperArm.is_operated = true
|
|
||||||
mod_data.TOC.Left_UpperArm.is_amputation_shown = true
|
|
||||||
mod_data.TOC.Left_UpperArm.is_cicatrized = true
|
|
||||||
end
|
|
||||||
|
|
||||||
else
|
|
||||||
TheOnlyCure.CheckCompatibilityWithOlderVersions(mod_data)
|
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Setup traits
|
||||||
|
if player:HasTrait("Amputee_Hand") then
|
||||||
|
|
||||||
|
-- TODO override AddItem so we can change the texture dynamically based on skin color
|
||||||
|
local amputation_clothing = player:getInventory():AddItem("TOC.Amputation_Left_Hand")
|
||||||
|
player:setWornItem(amputation_clothing:getBodyLocation(), amputation_clothing)
|
||||||
|
mod_data.TOC.Left_Hand.is_cut = true
|
||||||
|
mod_data.TOC.Left_Hand.is_operated = true
|
||||||
|
mod_data.TOC.Left_Hand.is_amputation_shown = true
|
||||||
|
mod_data.TOC.Left_Hand.is_cicatrized = true
|
||||||
|
elseif player:HasTrait("Amputee_LowerArm") then
|
||||||
|
local amputation_clothing = player:getInventory():AddItem("TOC.Amputation_Left_LowerArm")
|
||||||
|
player:setWornItem(amputation_clothing:getBodyLocation(), amputation_clothing)
|
||||||
|
mod_data.TOC.Left_LowerArm.is_cut = true
|
||||||
|
mod_data.TOC.Left_LowerArm.is_operated = true
|
||||||
|
mod_data.TOC.Left_LowerArm.is_amputation_shown = true
|
||||||
|
mod_data.TOC.Left_LowerArm.is_cicatrized = true
|
||||||
|
elseif player:HasTrait("Amputee_UpperArm") then
|
||||||
|
local amputation_clothing = player:getInventory():AddItem("TOC.Amputation_Left_UpperArm")
|
||||||
|
player:setWornItem(amputation_clothing:getBodyLocation(), amputation_clothing)
|
||||||
|
mod_data.TOC.Left_UpperArm.is_cut = true
|
||||||
|
mod_data.TOC.Left_UpperArm.is_operated = true
|
||||||
|
mod_data.TOC.Left_UpperArm.is_amputation_shown = true
|
||||||
|
mod_data.TOC.Left_UpperArm.is_cicatrized = true
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function TheOnlyCure.DeclareTraits()
|
function TheOnlyCure.DeclareTraits()
|
||||||
local amp1 = TraitFactory.addTrait("Amputee_Hand", getText("UI_trait_Amputee_Hand"), -8, getText("UI_trait_Amputee_Hand_desc"), false, false)
|
local amp1 = TraitFactory.addTrait("Amputee_Hand", getText("UI_trait_Amputee_Hand"), -8, getText("UI_trait_Amputee_Hand_desc"), false, false)
|
||||||
amp1:addXPBoost(Perks.Left_Hand, 4)
|
amp1:addXPBoost(Perks.Left_Hand, 4)
|
||||||
@@ -197,21 +203,6 @@ function TheOnlyCure.DeclareTraits()
|
|||||||
TraitFactory.setMutualExclusive("Amputee_LowerArm", "Amputee_UpperArm")
|
TraitFactory.setMutualExclusive("Amputee_LowerArm", "Amputee_UpperArm")
|
||||||
end
|
end
|
||||||
|
|
||||||
function TheOnlyCure.CheckCompatibilityWithOlderVersions(mod_data)
|
|
||||||
-- Gets the old status and turns it into the new.
|
|
||||||
|
|
||||||
if mod_data.TOC.Limbs == nil then
|
|
||||||
print("TOC: Limbs is nil, resetting mod_data")
|
|
||||||
ResetEverything()
|
|
||||||
|
|
||||||
elseif mod_data.TOC.Limbs.Right_Hand.is_cut == nil then
|
|
||||||
print("TOC: Couldn't recreate all, some stuff is still nil")
|
|
||||||
ResetEverything()
|
|
||||||
else
|
|
||||||
print("TOC: Found compatible data")
|
|
||||||
end
|
|
||||||
|
|
||||||
end
|
|
||||||
-----------------------------------------------------------------------
|
-----------------------------------------------------------------------
|
||||||
function TheOnlyCure.CutLimb(part_name, surgeon_factor, bandage_table, painkiller_table)
|
function TheOnlyCure.CutLimb(part_name, surgeon_factor, bandage_table, painkiller_table)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user