README.md.diff 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. 1,114c1,5
  2. < A chisel that allows you to shape blocks.
  3. < If technic mod is present the chisel will be rechargeable.
  4. <
  5. < To craft a chisel just put a steel ingot and a brown wool in the crafting grid. The steel goes above the wool.
  6. < (different recipe for technic device)
  7. <
  8. < Once you have your chisel you can set the style by right clicking.
  9. <
  10. < There are 5 styles to choose from(default)
  11. < - horizontal groove
  12. < - vertical groove
  13. < - cross groves (this matches up with the vertical and horizontal grooves
  14. < - square
  15. < - 4 edges
  16. <
  17. < Right click until you see the style you want in the chat then point at the node and left click.
  18. < Each node can be cut 4 times. Each time you chisel the groove will get a little deeper.
  19. <
  20. < Shift right click to change the supported mod. Here the list of supported mods:
  21. < default (mychisel mod) 5 styles
  22. < facade 10 styles
  23. <
  24. < Only certain nodes can be chiseled. Here are the supported nodes
  25. <
  26. <
  27. < Cobble
  28. < Sandstone
  29. < Clay
  30. < Coal Block
  31. < Stone
  32. < Desert Stone"
  33. < Wood
  34. < Acacia Wood
  35. < Aspen Wood
  36. < Pine Wood
  37. < Desert Cobble
  38. < Jungle Wood
  39. < Sandstone Brick
  40. < Stone Brick
  41. < Desert Stone Brick
  42. <
  43. < Forum - https://forum.minetest.net/viewtopic.php?f=11&t=13104
  44. <
  45. <
  46. <
  47. < *************************************************************************
  48. < *************************************************************************
  49. < *** added 01/2018 by Gundul ***
  50. < *** chiselapi: ***
  51. < *************************************************************************
  52. < *************************************************************************
  53. <
  54. < Fist init your mod with mychisel:
  55. <
  56. < chisel.add_mod(modname,number)
  57. <
  58. < modname = the name of your mod
  59. < number = number of different styles for each node
  60. <
  61. <
  62. < Then register your nodes with mychisel:
  63. <
  64. < chisel.register_node(modname, prefix, raw, design)
  65. <
  66. < modname = the name of your node
  67. < prefix = prefix of your new node name right behind the ":", usually the name of the raw material without "modname:"
  68. < raw = name of the raw material for example "default:stone"
  69. < design = name of your nodestyle after beeing chiseled
  70. <
  71. <
  72. < Naming your nodes:
  73. <
  74. < In your mod the nodes should be named like this: modname..":"..prefix.."_"..design
  75. <
  76. <
  77. <
  78. < depends.txt:
  79. <
  80. < In your modfolder add this line to your depends.txt: mychisel?
  81. <
  82. <
  83. <
  84. <
  85. <
  86. < Example: you made a mod named "pillar" with 3 different pillar designs
  87. <
  88. < first register your mod: chisel.add_mod(pillar,3)
  89. <
  90. <
  91. < then register each node of it:
  92. <
  93. < chisel.register_node("pillar", "stone", "default:stone", "round")
  94. < chisel.register_node("pillar", "stone", "default:stone", "square")
  95. < chisel.register_node("pillar", "stone", "default:stone", "hexagon")
  96. <
  97. <
  98. < Do this for every material your mod supports:
  99. <
  100. < chisel.register_node("pillar", "sandstone", "default:sandstone", "round")
  101. < chisel.register_node("pillar", "sandstone", "default:sandstone", "square")
  102. < chisel.register_node("pillar", "sandstone", "default:sandstone", "hexagon")
  103. < ...
  104. <
  105. <
  106. < In your mod the nodes should have names like:
  107. <
  108. < pillar:stone_round
  109. < pillar:stone_square
  110. < pillar:stone_hexagon
  111. < pillar:sandstone_round
  112. < ...
  113. <
  114. <
  115. <
  116. \ No newline at end of file
  117. ---
  118. > Mychisel
  119. > =====================================================================
  120. > Main: Donbatman
  121. > Lisc: WTFPL
  122. > Link: https://github.com/minetest-mods/mychisel/