plants.lua 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. -- Lichen biome
  2. -- glowing fungi
  3. minetest.register_node("caverealms:fungus", {
  4. description = "Glowing Fungus",
  5. tiles = {"caverealms_fungi.png"},
  6. inventory_image = "caverealms_fungi.png",
  7. wield_image = "caverealms_fungi.png",
  8. is_ground_content = true,
  9. groups = {oddly_breakable_by_hand = 3, attached_node = 1},
  10. light_source = 5,
  11. paramtype = "light",
  12. drawtype = "plantlike",
  13. walkable = false,
  14. buildable_to = true,
  15. visual_scale = 1.0,
  16. selection_box = {
  17. type = "fixed",
  18. fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},
  19. },
  20. })
  21. -- mycena mushroom
  22. minetest.register_node("caverealms:mycena", {
  23. description = "Mycena Mushroom",
  24. tiles = {"caverealms_mycena.png"},
  25. inventory_image = "caverealms_mycena.png",
  26. wield_image = "caverealms_mycena.png",
  27. is_ground_content = true,
  28. groups = {oddly_breakable_by_hand = 3, attached_node = 1},
  29. light_source = 6,
  30. paramtype = "light",
  31. drawtype = "plantlike",
  32. walkable = false,
  33. buildable_to = true,
  34. visual_scale = 1.0,
  35. selection_box = {
  36. type = "fixed",
  37. fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},
  38. },
  39. })
  40. -- giant mushroom
  41. if minetest.get_modpath("ethereal") then
  42. minetest.register_alias("caverealms:mushroom_cap", "ethereal:mushroom")
  43. minetest.register_alias("caverealms:mushroom_stem", "ethereal:mushroom_trunk")
  44. else
  45. -- stem
  46. minetest.register_node("caverealms:mushroom_stem", {
  47. description = "Giant Mushroom Stem",
  48. tiles = {"caverealms_mushroom_stem.png"},
  49. is_ground_content = true,
  50. groups = {choppy=2, oddly_breakable_by_hand=1},
  51. })
  52. -- cap
  53. minetest.register_node("caverealms:mushroom_cap", {
  54. description = "Giant Mushroom Cap",
  55. tiles = {"caverealms_mushroom_cap.png"},
  56. is_ground_content = true,
  57. groups = {choppy=2, oddly_breakable_by_hand=1,},
  58. light_source = 3,
  59. drop = {
  60. max_items = 1,
  61. items = {
  62. {items = {"caverealms:mushroom_sapling"}, rarity = 20},
  63. {items = {"caverealms:mushroom_cap"}}
  64. }
  65. },
  66. })
  67. -- sapling
  68. minetest.register_node("caverealms:mushroom_sapling", {
  69. description = "Mushroom Tree Sapling",
  70. drawtype = "plantlike",
  71. tiles = {"caverealms_mushroom_sapling.png"},
  72. paramtype = "light",
  73. sunlight_propagates = true,
  74. is_ground_content = false,
  75. walkable = false,
  76. selection_box = {
  77. type = "fixed",
  78. fixed = {-4 / 16, -0.5, -4 / 16, 4 / 16, 7 / 16, 4 / 16}
  79. },
  80. groups = {snappy = 2, dig_immediate = 3, flammable = 2},
  81. sounds = default.node_sound_leaves_defaults(),
  82. })
  83. end
  84. -- green mushroom
  85. -- cap
  86. minetest.register_node("caverealms:mushroom_cap_green", {
  87. description = "Giant Mushroom Cap, Green",
  88. tiles = {"caverealms_mushroom_cap_green.png"},
  89. is_ground_content = true,
  90. groups = {choppy=2, oddly_breakable_by_hand=1,},
  91. light_source = 3,
  92. drop = {
  93. max_items = 1,
  94. items = {
  95. {items = {"caverealms:mushroom_sapling_green"}, rarity = 20},
  96. {items = {"caverealms:mushroom_cap_green"}}
  97. }
  98. },
  99. })
  100. minetest.register_node("caverealms:mushroom_cap_green_spots", {
  101. description = "Giant Mushroom Cap, Green",
  102. tiles = {"caverealms_mushroom_cap_green.png^caverealms_mushroom_cap_spots.png"},
  103. is_ground_content = true,
  104. groups = {choppy=2, oddly_breakable_by_hand=1,},
  105. light_source = 3,
  106. drop = {
  107. max_items = 1,
  108. items = {
  109. {items = {"caverealms:mushroom_sapling_green_spots"}, rarity = 20},
  110. {items = {"caverealms:mushroom_cap_green"}}
  111. }
  112. },
  113. })
  114. -- sapling
  115. minetest.register_node("caverealms:mushroom_sapling_green", {
  116. description = "Mushroom Tree Sapling, Green",
  117. drawtype = "plantlike",
  118. tiles = {"caverealms_mushroom_sapling_green.png"},
  119. paramtype = "light",
  120. sunlight_propagates = true,
  121. is_ground_content = false,
  122. walkable = false,
  123. selection_box = {
  124. type = "fixed",
  125. fixed = {-4 / 16, -0.5, -4 / 16, 4 / 16, 7 / 16, 4 / 16}
  126. },
  127. groups = {snappy = 2, dig_immediate = 3, flammable = 2},
  128. sounds = default.node_sound_leaves_defaults(),
  129. })
  130. -- gills
  131. minetest.register_node("caverealms:mushroom_gills", {
  132. description = "Giant Mushroom Gills",
  133. tiles = {"caverealms_mushroom_gills.png"},
  134. is_ground_content = true,
  135. light_source = 10,
  136. groups = {choppy=2, oddly_breakable_by_hand=1},
  137. drawtype = "plantlike",
  138. paramtype = "light",
  139. })
  140. -- Saplings
  141. -- grow trees
  142. local add_tree = function (pos, ofx, ofy, ofz, schem)
  143. if not schem then
  144. print ("Schematic not found")
  145. return
  146. end
  147. minetest.swap_node(pos, {name = "air"})
  148. minetest.place_schematic(
  149. {x = pos.x - ofx, y = pos.y - ofy, z = pos.z - ofz},
  150. schem, 0, nil, false)
  151. end
  152. local path = minetest.get_modpath("caverealms").."/schematics/"
  153. -- giant mushrooms
  154. function grow_caverealms_mushroom(pos)
  155. add_tree(pos, 5, 0, 5, path .. "shroom.mts")
  156. end
  157. -- height check
  158. local function enough_height(pos, height)
  159. local nod = minetest.line_of_sight(
  160. {x = pos.x, y = pos.y + 1, z = pos.z},
  161. {x = pos.x, y = pos.y + height, z = pos.z})
  162. if not nod then
  163. return false
  164. else
  165. return true
  166. end
  167. end
  168. minetest.register_abm({
  169. label = "Caverealms grow sapling",
  170. nodenames = {"ethereal:mushroom_sapling", "caverealms:mushroom_sapling"},
  171. interval = 10,
  172. chance = 50,
  173. catch_up = false,
  174. action = function(pos, node)
  175. local light_level = minetest.get_node_light(pos)
  176. -- check light level
  177. if not light_level or light_level > 10 then
  178. return
  179. end
  180. -- get node under sapling
  181. local under = minetest.get_node({x = pos.x, y = pos.y - 1, z = pos.z}).name
  182. -- check if registered
  183. if not minetest.registered_nodes[node.name] then
  184. return
  185. end
  186. -- ethereal sapling on lichen stone
  187. if node.name == "ethereal:mushroom_sapling"
  188. and under == "caverealms:stone_with_lichen"
  189. and enough_height(pos, 10) then
  190. grow_caverealms_mushroom(pos)
  191. -- caverealms sapling on lichen stone
  192. elseif node.name == "caverealms:mushroom_sapling"
  193. and under == "caverealms:stone_with_lichen"
  194. and enough_height(pos, 10) then
  195. grow_caverealms_mushroom(pos)
  196. end
  197. end,
  198. })
  199. -- green mushroom growth
  200. function caverealms:grow_green_mushroom(x,y,z, area, data)
  201. local c_stem = minetest.get_content_id("caverealms:mushroom_stem")
  202. local c_gills = minetest.get_content_id("caverealms:mushroom_gills")
  203. local c_cap = minetest.get_content_id("caverealms:mushroom_cap_green")
  204. local c_caps = minetest.get_content_id("caverealms:mushroom_cap_green_spots")
  205. -- stem
  206. local stop = {x=x,y=y+3,z=z}--{x = x+math.random(-1,1), y = y+3, z = z+math.random(-1,1)}
  207. for i = 1,3 do
  208. -- local vi = area:index(x+((stop.x-x) / i), y+i, z+((stop.z-z) / i))
  209. local vi = area:index(x, y+i, z)
  210. data[vi] = c_stem
  211. end
  212. data[area:index(stop.x+1, y+3, stop.z)] = c_gills
  213. data[area:index(stop.x-1, y+3, stop.z)] = c_gills
  214. data[area:index(stop.x, y+3, stop.z+1)] = c_gills
  215. data[area:index(stop.x, y+3, stop.z-1)] = c_gills
  216. data[area:index(stop.x+1, y+3, stop.z+1)] = c_cap
  217. data[area:index(stop.x-1, y+3, stop.z+1)] = c_cap
  218. data[area:index(stop.x+1, y+3, stop.z-1)] = c_cap
  219. data[area:index(stop.x-1, y+3, stop.z-1)] = c_caps
  220. data[area:index(stop.x+2, y+3, stop.z)] = c_cap
  221. data[area:index(stop.x-2, y+3, stop.z)] = c_cap
  222. data[area:index(stop.x, y+3, stop.z+2)] = c_caps
  223. data[area:index(stop.x, y+3, stop.z-2)] = c_cap
  224. data[area:index(stop.x+1, y+4, stop.z)] = c_caps
  225. data[area:index(stop.x-1, y+4, stop.z)] = c_cap
  226. data[area:index(stop.x, y+4, stop.z+1)] = c_caps
  227. data[area:index(stop.x, y+4, stop.z-1)] = c_cap
  228. data[area:index(stop.x, y+4, stop.z)] = c_cap
  229. end
  230. -- spread moss/lichen/algae to nearby cobblestone
  231. minetest.register_abm({
  232. label = "Caverealms stone spread",
  233. nodenames = {
  234. "caverealms:stone_with_moss",
  235. "caverealms:stone_with_lichen",
  236. "caverealms:stone_with_algae",
  237. },
  238. neighbors = {"air"},
  239. interval = 16,
  240. chance = 50,
  241. catch_up = false,
  242. action = function(pos, node)
  243. local num = minetest.find_nodes_in_area_under_air(
  244. {x = pos.x - 1, y = pos.y - 2, z = pos.z - 1},
  245. {x = pos.x + 1, y = pos.y + 1, z = pos.z + 1},
  246. "default:cobble")
  247. if #num > 0 then
  248. minetest.set_node(num[math.random(#num)], {name = node.name})
  249. end
  250. end,
  251. })