summaryrefslogtreecommitdiff
path: root/doc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'doc.lua')
-rw-r--r--doc.lua20
1 files changed, 20 insertions, 0 deletions
diff --git a/doc.lua b/doc.lua
index 275f5ac..1d49599 100644
--- a/doc.lua
+++ b/doc.lua
@@ -74,6 +74,26 @@ if pipeworks_enabled then
S("Fuel modules are compatible with Pipeworks blocks. When a Digtron moves one of the inventory modules adjacent to a pipe it will automatically hook up to it, and disconnect again when it moves on.")
end
+
+-- Battery holders
+digtron.doc.batteryholder_longdesc = S("Holds RE batteries to run a Digtron")
+digtron.doc.batteryholder_usagehelp = S("Digtrons have an appetite, and it can be satisfied by electricity as well. Build operations and dig operations require a certain amount of power, and that power comes from the batteries place in the holder. Note that movement does not consume charge, only digging and building."
+.."\n\n"..
+"When a control unit is triggered, it will tally up how much power is required for the next cycle and then discharge the batteries in the battery holder until a sufficient amount of heat has been generated to power the operation. Any leftover heat will be retained by the control unit for use in the next cycle; this is the \"heat remaining in controller furnace\". Thus no power is wasted (unless you dig away a control unit with some heat remaining in it, that heat does get wasted), and the discharged batteries can be taken away to be recharged."
+.."\n\n"..
+"The fuel costs for digging and building can be configured in the init.lua file. By default using one lump of coal as fuel a digtron can:\n"..
+"\tBuild 40 blocks\n"..
+"\tDig 40 stone blocks\n"..
+"\tDig 60 wood blocks\n"..
+"\tDig 80 dirt or sand blocks")
+
+if pipeworks_enabled then
+ digtron.doc.batteryholder_usagehelp = digtron.doc.batteryholder_usagehelp
+ .."\n\n"..
+ S("Fuel modules are compatible with Pipeworks blocks. When a Digtron moves one of the inventory modules adjacent to a pipe it will automatically hook up to it, and disconnect again when it moves on.")
+end
+
+
digtron.doc.combined_storage_longdesc = S("Stores fuel for a Digtron and also has an inventory for building materials")
digtron.doc.combined_storage_usagehelp = S("For smaller jobs the two dedicated modules may simply be too much of a good thing, wasting precious Digtron space to give unneeded capacity. The combined storage module is the best of both worlds, splitting its internal space between building material inventory and fuel storage. It has 3/4 building material capacity and 1/4 fuel storage capacity.")