Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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");
23 changes: 23 additions & 0 deletions Contents/mods/DefsLTS/media/scripts/LTSItemsResources.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,14 @@ module DLTS {
cantBeConsolided=TRUE,
ReplaceOnDeplete=EmptyJar,
}




/** ------------------------------------------------------------------------- **/
/** Sulphur **/


/** ------------------------------------------------------------------------- **/
/** Processing Materials **/

Expand Down Expand Up @@ -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) **/

Expand Down
22 changes: 21 additions & 1 deletion Contents/mods/DefsLTS/media/scripts/LTSRecipesChemistry.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 **/

Expand Down Expand Up @@ -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,
}
}