diff --git a/mods/ITEMS/mcl_minecarts/init.lua b/mods/ITEMS/mcl_minecarts/init.lua index 8df6413b0..9ab3e28fd 100644 --- a/mods/ITEMS/mcl_minecarts/init.lua +++ b/mods/ITEMS/mcl_minecarts/init.lua @@ -268,6 +268,11 @@ end minetest.register_entity("mcl_minecarts:minecart", mcl_minecarts.cart) minetest.register_craftitem("mcl_minecarts:minecart", { description = "Minecart", + _doc_items_longdesc = "Minecarts can be used for a quick transportion on rails." .. "\n" .. + "Minecarts only ride on rails and always follow the tracks. At a T-junction with no straight way ahead, they turn left. The speed is affected by the rail type.", + _doc_items_usagehelp = "You can place the minecart on rails. Right-click it to enter it. Punch it to get it moving." .. "\n" .. + "To obtain the minecart, punch it while holding down the sneak key.", + inventory_image = "mcl_minecarts_minecart_normal.png", wield_image = "mcl_minecarts_minecart_normal.png", stack_max = 1, diff --git a/mods/ITEMS/mcl_minecarts/rails.lua b/mods/ITEMS/mcl_minecarts/rails.lua index 62167891b..aa10b870f 100644 --- a/mods/ITEMS/mcl_minecarts/rails.lua +++ b/mods/ITEMS/mcl_minecarts/rails.lua @@ -1,6 +1,10 @@ +local railuse = "Place them on the ground to build your railway, the rails will automatically connect to each other and will turn into curves, T-junctions, crossings and slopes as needed." + -- Normal rail minetest.register_node("mcl_minecarts:rail", { description = "Rail", + _doc_items_longdesc = "Rails can be used to build transport tracks for minecarts. Normal rails slightly slow down minecarts due to friction.", + _doc_items_usagehelp = railuse, drawtype = "raillike", tiles = {"default_rail.png", "default_rail_curved.png", "default_rail_t_junction.png", "default_rail_crossing.png"}, is_ground_content = false, @@ -32,6 +36,8 @@ minetest.register_craft({ -- Rail to speed up minetest.register_node("mcl_minecarts:golden_rail", { description = "Powered Rail", + _doc_items_longdesc = "Rails can be used to build transport tracks for minecarts. Powered rails will accelerate moving minecarts, up to a maximum speed.", + _doc_items_usagehelp = railuse, drawtype = "raillike", tiles = {"carts_rail_pwr.png", "carts_rail_curved_pwr.png", "carts_rail_t_junction_pwr.png", "carts_rail_crossing_pwr.png"}, inventory_image = "carts_rail_pwr.png",