diff options
author | FaceDeer <derksenmobile@gmail.com> | 2017-10-24 21:37:02 -0600 |
---|---|---|
committer | FaceDeer <derksenmobile@gmail.com> | 2017-10-24 21:37:02 -0600 |
commit | 317877cda51f67cdae75314ac167d5dd69276d64 (patch) | |
tree | 8fb2fd3196e8e4d74441b603948c02de68d5beaa /doc.lua | |
parent | c5a9d9fff984359a01dc474723fc1f940e2b5d04 (diff) |
documentation and locale update
Diffstat (limited to 'doc.lua')
-rw-r--r-- | doc.lua | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -121,6 +121,8 @@ end --------------------------------------------------------------------- +local locked_suffix = "\n\n" .. S("This is the \"locked\" version of the Digtron crate. It can only be used by the player who placed it.") + digtron.doc.empty_crate_longdesc = S("An empty crate that a Digtron can be stored in") digtron.doc.empty_crate_usagehelp = S("Digtrons can be pushed around and rotated, and that may be enough for getting them perfectly positioned for the start of a run. But once your digger is a kilometer down under a shaft filled with stairs, how to get it back to the surface to run another pass?" .."\n\n".. @@ -129,6 +131,12 @@ digtron.doc.empty_crate_usagehelp = S("Digtrons can be pushed around and rotated digtron.doc.loaded_crate_longdesc = S("A crate containing a Digtron array") digtron.doc.loaded_crate_usagehelp = S("This crate contains a Digtron assembly that was stored in it earlier. Place it somewhere and right-click on it to access the label text that was applied to it. There's also a button that causes it to display the shape the deployed Digtron would take if you unpacked the crate, marking unbuildable blocks with a warning marker. And finally there's a button to actually deploy the Digtron, replacing this loaded crate with an empty that can be reused later.") +digtron.doc.empty_locked_crate_longdesc = digtron.doc.empty_crate_longdesc +digtron.doc.empty_locked_crate_usagehelp = digtron.doc.empty_crate_usagehelp .. locked_suffix + +digtron.doc.loaded_locked_crate_longdesc = digtron.doc.loaded_crate_longdesc +digtron.doc.loaded_locked_crate_usagehelp = digtron.doc.loaded_crate_usagehelp .. locked_suffix + ---------------------------------------------------------------------- digtron.doc.controller_longdesc = S("A basic controller to make a Digtron array move and operate.") |