settingtypes.txt 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #The shortest rope will extend for this many meters. Longer ropes come in
  2. #multiples of this length.
  3. #Changing this value will not affect ropes that already exist in-world.
  4. ropes_rope_length (Rope length) int 50 1 30000
  5. #Rope ladders will extend this far at maximum.
  6. #Changing this value will not affect rope ladders that already exist in-world.
  7. #Setting this to 0 disables rope ladders.
  8. ropes_rope_ladder_length (Rope ladder length) int 50 0 30000
  9. #Sets the maximum length multiple wooden rope box permitted to be crafted.
  10. #So for example if the rope length is set to 50 and this is set to 2,
  11. #the longest possible wooden rope box a player can craft has 100 meters of rope.
  12. #Allowed values run from 0 to 9. 0 disables wood rope boxes.
  13. ropes_wood_rope_box_max_multiple (Maximum wood_rope box multiple) int 2 0 9
  14. #Sets the maximum length multiple copper rope box permitted to be crafted.
  15. #So for example if the rope length is set to 50 and this is set to 5,
  16. #the longest possible copper rope box a player can craft has 250 meters of rope.
  17. #Allowed values run from 0 to 9. 0 disables copper rope boxes.
  18. ropes_copper_rope_box_max_multiple (Maximum copper rope box multiple) int 5 0 9
  19. #Sets the maximum length multiple steel rope box permitted to be crafted.
  20. #So for example if the rope length is set to 50 and this is set to 9,
  21. #the longest possible steel rope box a player can craft has 450 meters of rope.
  22. #Allowed values run from 0 to 9. 0 disables steel rope boxes.
  23. ropes_steel_rope_box_max_multiple (Maximum steel rope box multiple) int 9 0 9
  24. #If this is set to true, then the mod will generate definitions for the rope boxes
  25. #that are otherwise not permitted by the settings above. These rope boxes
  26. #will not be craftable and will not be available in the creative inventory,
  27. #but they will continue to exist if they were placed "in world" and a player
  28. #can deconstruct them to retrieve their rope components. This setting is
  29. #intended for the situation where you have an established world and you want
  30. #to reduce the number of rope boxes available to players without turning
  31. #existing rope boxes into "unknown node"s.
  32. ropes_create_all_definitions (Create all rope box definitions) bool false
  33. #Extending ladders are capable of standing on their own, to a defined limit.
  34. #A ladder can extend to its unsupported limit before needing another node
  35. #behind it to provide a new point of support. Right-clicking on an existing
  36. #ladder with a stack of ladders will add new ladder segments to its top.
  37. ropes_extending_ladder_enabled (Enable extendable ladders) bool true
  38. #If extending ladders are enabled, this setting will cause them to replace
  39. #the default ladders entirely.
  40. ropes_replace_default_ladders (Replace default ladders with extendable ladders) bool false
  41. ropes_extending_wood_ladder_limit (Unsupported limit of wooden ladders) int 4
  42. ropes_extending_steel_ladder_limit (Unsupported limit of steel ladders) int 15
  43. #These nodes make it easier to build bridges by extending out away
  44. #from the player as they're placed
  45. ropes_bridges_enabled (Enable bridges) bool true
  46. #Allows ropes and rope ladders to extend into all "airlike" nodes.
  47. #Note that ropes will leave "air" nodes behind when destroyed.
  48. ropes_can_extend_into_airlike (Ropes can extend into all nodes with drawtype airlike) bool false