diff --git a/Contents/mods/DefsLTS/media/lua/server/Items/LootHandlerItems.lua b/Contents/mods/DefsLTS/media/lua/server/Items/LootHandlerItems.lua index bb7ae01..d1a486a 100644 --- a/Contents/mods/DefsLTS/media/lua/server/Items/LootHandlerItems.lua +++ b/Contents/mods/DefsLTS/media/lua/server/Items/LootHandlerItems.lua @@ -94,3 +94,10 @@ registerAsLoot(iReg, 0.3, "garage", "metal_shelves"); registerAsLoot(iReg, 0.3, "all", "shelves"); registerAsLoot(iReg, 0.2, "zippeestore", "shelvesmag"); registerAsLoot(iReg, 0.2, "cornerstore", "shelvesmag"); + +-- Sulphur - Chemistry +iReg = "DLTS.LTSSulphur"; +registerAsLoot(iReg, 4, "toolstore", "all"); +registerAsLoot(iReg, 1, "garage", "all"); +registerAsLoot(iReg, 1, "shed", "all"); +registerAsLoot(iReg, 0.3, "mechanic", "metal_shelves"); diff --git a/Contents/mods/DefsLTS/media/scripts/LTSItemsResources.txt b/Contents/mods/DefsLTS/media/scripts/LTSItemsResources.txt index 970e4cb..2d54284 100644 --- a/Contents/mods/DefsLTS/media/scripts/LTSItemsResources.txt +++ b/Contents/mods/DefsLTS/media/scripts/LTSItemsResources.txt @@ -101,7 +101,14 @@ module DLTS { cantBeConsolided=TRUE, ReplaceOnDeplete=EmptyJar, } + + + + + /** ------------------------------------------------------------------------- **/ + /** Sulphur **/ + /** ------------------------------------------------------------------------- **/ /** Processing Materials **/ @@ -190,6 +197,22 @@ module DLTS { Icon=ScrapPlastic, } + item LTSSulphur { + Type=Normal, + Weight=3, + DisplayName=Sulphur, + Icon=Plaster_Powder, + + } + + item LTSSaltpeter { + Type=Normal, + Weight=0.5, + DisplayName=Saltpeter, + Icon=Salt, + + } + /** ------------------------------------------------------------------------- **/ /** Corpse Disposal: Butcher Corpses to Meat (Poison) **/ diff --git a/Contents/mods/DefsLTS/media/scripts/LTSRecipesChemistry.txt b/Contents/mods/DefsLTS/media/scripts/LTSRecipesChemistry.txt index 88a2ea8..21139be 100644 --- a/Contents/mods/DefsLTS/media/scripts/LTSRecipesChemistry.txt +++ b/Contents/mods/DefsLTS/media/scripts/LTSRecipesChemistry.txt @@ -142,6 +142,19 @@ module DLTS { Category:LTS-Chem, } + /** ------------------------------------------------------------------------- **/ + /** GunPowder **/ + + recipe LTS Prepare Gunpowder { + keep MortarPestle, + LTSWoodAsh=3, + LTSSaltpeter=2, + LTSSulfur=1, + Result:LTSGunpowder, + Time:360.0, + Category:LTS-Chem, + } + /** ------------------------------------------------------------------------- **/ /** Base Materials **/ @@ -186,5 +199,12 @@ module DLTS { Time:360.0, Category:LTS-Chem, } - + + recipe LTS Prepare Saltpeter { + keep MortarPestle, + Coldpack=3, + Result:LTSSaltpeter, + Time:360.0, + Category:LTS-Chem, + } }