diff --git a/README.md b/README.md index ec020ab..daad494 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ -# Dev Version + +# Dev Version + Temp readme, gonna be reworked for the next release. diff --git a/The-Only-Cure.code-workspace b/The-Only-Cure.code-workspace index a086303..876a149 100644 --- a/The-Only-Cure.code-workspace +++ b/The-Only-Cure.code-workspace @@ -2,12 +2,6 @@ "folders": [ { "path": "." - }, - { - "path": "../PerformanceTestFramework" - }, - { - "path": "../TestFramework" } ], "settings": {} diff --git a/media/lua/server/TOC/Distributions.lua b/media/lua/server/TOC/Distributions.lua new file mode 100644 index 0000000..769d87c --- /dev/null +++ b/media/lua/server/TOC/Distributions.lua @@ -0,0 +1,34 @@ +require('Items/Distributions') +require('Items/SuburbsDistributions') + + +--SuburbsDistributions = SuburbsDistributions or {} + +-- Insert Prosts and various items in the Medical Clinic loot table + +local prosthesisLoot = { + [1] = { + name = "TOC.Prost_HookArm_L", + chance = 10 + }, + + [2] = { + name = "TOC.Prost_NormalArm_L", + chance = 10 + }, + + [3] = { + name = "TOC.Surg_Arm_Tourniquet_L", + chance = 25 + } +} + + +for i=1, #prosthesisLoot do + local tab = prosthesisLoot[i] + table.insert(ProceduralDistributions.list.MedicalClinicTools.items, tab.name) + table.insert(ProceduralDistributions.list.MedicalClinicTools.items, tab.chance) +end + + +