settings.txt 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. -- LemonLake's Factories: Config
  2. -- Logging
  3. factory.logTaker = true
  4. -- NB: miners require fans in the crafting recipe. recommended to enable fans if miners are enabled.
  5. -- alternatively change the crafting recipe manually in crafting.lua
  6. factory.enableMiner = true
  7. factory.enableFan = true
  8. factory.enableVacuum = true
  9. factory.fertilizerGeneration = true
  10. factory.minerDigLimit = 256
  11. -- Defines the furnace types for movers and takers.
  12. -- Requires fuel, src and dst inventory types.
  13. -- Don't change unless you know what you're doing.
  14. armDevicesFurnacelike = {"default:furnace", "default:furnace_active",
  15. "factory:ind_furnace", "factory:ind_furnace_active",
  16. "factory:compressor", "factory:compressor_active",
  17. "factory:stp", "pipeworks:autocrafter"}
  18. takerDevicesFurnacelike = {"default:furnace", "default:furnace_active",
  19. "factory:ind_furnace", "factory:ind_furnace_active",
  20. "factory:compressor", "factory:compressor_active",
  21. "factory:stp", "pipeworks:autocrafter"}
  22. -- Fuel types for the generator
  23. generatorFuel = {{name = "factory:tree_sap", value = 20}}
  24. -- TODO: Add items for other Technic blocks
  25. -- Sapling IO for the Sapling Treatment Plant
  26. factory.stpIO = { {input = "default:sapling", output = "default:tree", min = 4, max = 7},
  27. {input = "default:junglesapling", output="default:jungletree", min = 8, max = 12},
  28. {input = "moretrees:beech_sapling", output="moretrees:beech_trunk", min = 4, max = 8},-- these moretrees values are incorrect, please change them to your liking
  29. {input = "moretrees:apple_tree_sapling", output="moretrees:apple_tree_trunk", min = 4, max = 8},
  30. {input = "moretrees:oak_sapling", output="moretrees:oak_trunk", min = 4, max = 8},
  31. {input = "moretrees:sequoia_sapling", output="moretrees:sequoia_trunk", min = 4, max = 8},
  32. {input = "moretrees:birch_sapling", output="moretrees:birch_trunk", min = 4, max = 8},
  33. {input = "moretrees:palm_sapling", output="moretrees:palm_trunk", min = 4, max = 8},
  34. {input = "moretrees:spruce_sapling", output="moretrees:spruce_trunk", min = 4, max = 8},
  35. {input = "moretrees:pine_sapling", output="moretrees:pine_trunk", min = 4, max = 8},
  36. {input = "moretrees:willow_sapling", output="moretrees:willow_trunk", min = 4, max = 8},
  37. {input = "moretrees:acacia_sapling", output="moretrees:acacia_trunk", min = 4, max = 8},
  38. {input = "moretrees:rubber_tree_sapling", output="moretrees:rubber_tree_trunk", min = 4, max = 8},
  39. {input = "moretrees:fir_sapling", output="moretrees:fir_trunk", min = 4, max = 8},
  40. -- your trees here
  41. }