123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- minetest.register_craftitem("lottfarming:blue_mushroom_spore", {
- description = "Blue Mushroom Spores",
- inventory_image = "lottfarming_blue_mushroom_spore.png",
- on_place = function(itemstack, placer, pointed_thing)
- return place_spore(itemstack, placer, pointed_thing, "lottfarming:blue_mushroom_1", 9)
- end,
- })
- minetest.register_node("lottfarming:blue_mushroom", {
- description = "Blue Mushroom",
- paramtype = "light",
- paramtype2 = "meshoptions",
- place_parm2 = 9,
- light_source = 2,
- walkable = false,
- drawtype = "plantlike",
- drop = "",
- light_source = 2,
- tiles = {"lottfarming_blue_mushroom_4.png"},
- selection_box = {
- type = "fixed",
- fixed = {
- {-0.5, -0.5, -0.5, 0.5, -0.5+3/16, 0.5}
- },
- },
- groups = {snappy=3, flammable=2, mushroom=1, flower=1, color_blue=1},
- sounds = default.node_sound_leaves_defaults(),
- inventory_image = "lottfarming_blue_mushroom.png",
- on_use = minetest.item_eat(2),
- })
- minetest.register_node("lottfarming:blue_mushroom_1", {
- paramtype = "light",
- paramtype2 = "meshoptions",
- light_source = 2,
- walkable = false,
- drawtype = "plantlike",
- drop = "",
- tiles = {"lottfarming_blue_mushroom_1.png"},
- selection_box = {
- type = "fixed",
- fixed = {
- {-0.5, -0.5, -0.5, 0.5, -0.5+3/16, 0.5}
- },
- },
- groups = {snappy=3, flammable=2, not_in_creative_inventory=1},
- sounds = default.node_sound_leaves_defaults(),
- })
- minetest.register_node("lottfarming:blue_mushroom_2", {
- paramtype = "light",
- paramtype2 = "meshoptions",
- light_source = 2,
- walkable = false,
- drawtype = "plantlike",
- drop = "",
- tiles = {"lottfarming_blue_mushroom_2.png"},
- selection_box = {
- type = "fixed",
- fixed = {
- {-0.5, -0.5, -0.5, 0.5, -0.5+3/16, 0.5}
- },
- },
- groups = {snappy=3, flammable=2, not_in_creative_inventory=1},
- sounds = default.node_sound_leaves_defaults(),
- })
- minetest.register_node("lottfarming:blue_mushroom_3", {
- paramtype = "light",
- paramtype2 = "meshoptions",
- light_source = 2,
- walkable = false,
- drawtype = "plantlike",
- drop = "",
- tiles = {"lottfarming_blue_mushroom_3.png"},
- selection_box = {
- type = "fixed",
- fixed = {
- {-0.5, -0.5, -0.5, 0.5, -0.5+3/16, 0.5}
- },
- },
- groups = {snappy=3, flammable=2, not_in_creative_inventory=1},
- sounds = default.node_sound_leaves_defaults(),
- })
- minetest.register_node("lottfarming:blue_mushroom_4", {
- paramtype = "light",
- paramtype2 = "meshoptions",
- light_source = 2,
- walkable = false,
- drawtype = "plantlike",
- drop = "",
- tiles = {"lottfarming_blue_mushroom_4.png"},
- after_dig_node = function(pos)
- end,
- drop = {
- max_items = 6,
- items = {
- { items = {'lottfarming:blue_mushroom'} },
- { items = {'lottfarming:blue_mushroom'}, rarity = 2},
- { items = {'lottfarming:blue_mushroom'}, rarity = 5},
- { items = {'lottfarming:blue_mushroom_spore'} },
- { items = {'lottfarming:blue_mushroom_spore'}, rarity = 2},
- { items = {'lottfarming:blue_mushroom_spore'}, rarity = 5},
- }
- },
- groups = {snappy=3, flammable=2, not_in_creative_inventory=1},
- sounds = default.node_sound_leaves_defaults(),
- })
- chance = 10
- interval = 30
- whereon = "lottfarming:decay_tree"
- wherein = "air"
- minetest.register_abm({
- nodenames = "lottfarming:blue_mushroom_1",
- interval = interval,
- chance = chance,
- action = function(pos, node)
- pos.y = pos.y-1
- if minetest.get_node(pos).name ~= "lottfarming:decay_tree" then
- return
- end
- pos.y = pos.y+1
- if not minetest.get_node_light(pos) then
- return
- end
- if minetest.get_node_light(pos) > 8 then
- return
- end
- minetest.set_node(pos, {name='lottfarming:blue_mushroom_2', param2 = 9})
- end
- })
- minetest.register_abm({
- nodenames = "lottfarming:blue_mushroom_2",
- interval = 30,
- chance = 10,
- action = function(pos, node)
- pos.y = pos.y-1
- if minetest.get_node(pos).name ~= "lottfarming:decay_tree" then
- return
- end
- pos.y = pos.y+1
- if not minetest.get_node_light(pos) then
- return
- end
- if minetest.get_node_light(pos) > 8 then
- return
- end
- minetest.set_node(pos, {name='lottfarming:blue_mushroom_3', param2 = 9})
- end
- })
- minetest.register_abm({
- nodenames = "lottfarming:blue_mushroom_3",
- interval = interval,
- chance = chance,
- action = function(pos, node)
- pos.y = pos.y-1
- if minetest.get_node(pos).name ~= "lottfarming:decay_tree"
- and minetest.get_node(pos).name ~= "default:tree" then
- return
- end
- pos.y = pos.y+1
- if not minetest.get_node_light(pos) then
- return
- end
- if minetest.get_node_light(pos) > 8 then
- return
- end
- minetest.set_node(pos, {name='lottfarming:blue_mushroom_4', param2 = 9})
- end
- })
- num = PseudoRandom(111)
- minetest.register_abm({
- nodenames = "lottfarming:blue_mushroom_3",
- interval = 30,
- chance = 10,
- action = function(pos, node)
- pos.x = pos.x + num:next(-1, 1)
- pos.z = pos.z + num:next(-1, 1)
- if minetest.get_node(pos).name=="air" then
- pos.y = pos.y-1
- name = minetest.get_node(pos).name
- if name=="default:tree" then
- pos.y=pos.y+1
- minetest.set_node(pos, {name='lottfarming:blue_mushroom_3', param2 = 9})
- end
- if name=="air" then
- pos.y=pos.y-1
- name = minetest.get_node(pos).name
- if name=="default:tree" then
- pos.y=pos.y+1
- minetest.set_node(pos, {name='lottfarming:blue_mushroom_3', param2 = 9})
- end
- end
- end
- pos.y=pos.y+1
- if minetest.get_node(pos).name=="air" then
- pos.y = pos.y-1
- name = minetest.get_node(pos).name
- if name=="default:tree" then
- pos.y=pos.y+1
- minetest.set_node(pos, {name='lottfarming:blue_mushroom_3', param2 = 9})
- end
- end
- end
- })
- minetest.register_craftitem("lottfarming:mushroom_soup", {
- description = "Cream of Mushroom Soup",
- inventory_image = "lottfarming_mushroom_soup.png",
- on_use = minetest.item_eat(6),
- })
- minetest.register_craft({
- output = 'lottfarming:mushroom_soup',
- recipe = {
- {'group:mushroom', 'group:mushroom', 'group:mushroom'},
- {'', 'lottfarming:bowl', ''},
- }
- })
|