VoxeLibre/mods/ITEMS/mcl_farming/melon.lua

292 lines
8.4 KiB
Lua
Raw Normal View History

2017-01-31 12:35:59 +01:00
minetest.register_node("mcl_farming:melon", {
2015-06-29 19:55:56 +02:00
description = "Melon",
stack_max = 64,
tiles = {"farming_melon_top.png", "farming_melon_top.png", "farming_melon_side.png", "farming_melon_side.png", "farming_melon_side.png", "farming_melon_side.png"},
groups = {choppy=2, oddly_breakable_by_hand=2, building_block=1},
2015-06-29 19:55:56 +02:00
drop = {
max_items = 1,
items = {
2017-01-31 12:35:59 +01:00
{ items = {'mcl_farming:melon_item 7'}, rarity = 14 },
{ items = {'mcl_farming:melon_item 6'}, rarity = 10 },
{ items = {'mcl_farming:melon_item 5'}, rarity = 5 },
{ items = {'mcl_farming:melon_item 4'}, rarity = 2 },
{ items = {'mcl_farming:melon_item 3'} },
2015-06-29 19:55:56 +02:00
}
},
after_dig_node = function(pos, oldnode, oldmetadata, user)
local have_change = 0
for x=-1,1 do
local p = {x=pos.x+x, y=pos.y, z=pos.z}
local n = minetest.get_node(p)
2015-06-29 19:55:56 +02:00
if string.find(n.name, "melontige_linked_") and have_change == 0 then
have_change = 1
2017-01-31 12:35:59 +01:00
minetest.add_node(p, {name="mcl_farming:melontige_unconnect"})
2015-06-29 19:55:56 +02:00
end
end
if have_change == 0 then
for z=-1,1 do
2017-01-24 02:31:49 +01:00
local p = {x=pos.x, y=pos.y, z=pos.z+z}
local n = minetest.get_node(p)
2015-06-29 19:55:56 +02:00
if string.find(n.name, "melontige_linked_") and have_change == 0 then
have_change = 1
2017-01-31 12:35:59 +01:00
minetest.add_node(p, {name="mcl_farming:melontige_unconnect"})
2015-06-29 19:55:56 +02:00
end
end
end
end,
sounds = mcl_sounds.node_sound_wood_defaults(),
2015-06-29 19:55:56 +02:00
})
2017-01-31 12:35:59 +01:00
minetest.register_node("mcl_farming:melontige_1", {
2015-06-29 19:55:56 +02:00
paramtype = "light",
walkable = false,
drawtype = "plantlike",
sunlight_propagates = true,
drop = "",
tiles = {"farming_tige_1.png"},
selection_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.5+6/16, 0.5}
},
},
2017-02-01 13:44:36 +01:00
groups = {snappy=3, not_in_creative_inventory=1 ,dig_by_water=1},
sounds = mcl_sounds.node_sound_leaves_defaults(),
2015-06-29 19:55:56 +02:00
})
2017-01-31 12:35:59 +01:00
minetest.register_node("mcl_farming:melontige_2", {
2015-06-29 19:55:56 +02:00
paramtype = "light",
walkable = false,
drawtype = "plantlike",
sunlight_propagates = true,
drop = "",
tiles = {"farming_tige_2.png"},
selection_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.5+9/16, 0.5}
},
},
2017-02-01 13:44:36 +01:00
groups = {snappy=3, not_in_creative_inventory=1 ,dig_by_water=1},
sounds = mcl_sounds.node_sound_leaves_defaults(),
2015-06-29 19:55:56 +02:00
})
2017-01-31 12:35:59 +01:00
minetest.register_node("mcl_farming:melontige_unconnect", {
2015-06-29 19:55:56 +02:00
paramtype = "light",
walkable = false,
sunlight_propagates = true,
drop = "",
drawtype = "plantlike",
tiles = {"farming_tige_end.png"},
2017-02-01 13:44:36 +01:00
groups = {snappy=3, not_in_creative_inventory=1 ,dig_by_water=1},
sounds = mcl_sounds.node_sound_leaves_defaults(),
2015-06-29 19:55:56 +02:00
})
2017-01-31 12:35:59 +01:00
minetest.register_node("mcl_farming:melontige_linked_r", {
2015-06-29 19:55:56 +02:00
paramtype = "light",
sunlight_propagates = true,
walkable = false,
drop = "",
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "wallmounted",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0, 0.5, 0.5, 0}, -- NodeBox1
}
},
selection_box = {
type = "fixed",
fixed = {-0.2, -0.5, -0.2, 0.2, 0.2, 0.2}
},
tiles = {
"farming_tige_connnect.png", --top
"farming_tige_connnect.png", -- bottom
"farming_tige_connnect.png", -- right
"farming_tige_connnect.png", -- left
"farming_tige_connnect.png", -- back
"farming_tige_connnect.png^[transformFX90" --front
},
2017-02-01 13:44:36 +01:00
groups = {snappy=3, not_in_creative_inventory=1 ,dig_by_water=1},
sounds = mcl_sounds.node_sound_leaves_defaults(),
2015-06-29 19:55:56 +02:00
})
2017-01-31 12:35:59 +01:00
minetest.register_node("mcl_farming:melontige_linked_l", {
2015-06-29 19:55:56 +02:00
paramtype = "light",
walkable = false,
sunlight_propagates = true,
drop = "",
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "wallmounted",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0, 0.5, 0.5, 0}, -- NodeBox1
}
},
selection_box = {
type = "fixed",
fixed = {-0.2, -0.5, -0.2, 0.2, 0.2, 0.2}
},
tiles = {
"farming_tige_connnect.png", --top
"farming_tige_connnect.png", -- bottom
"farming_tige_connnect.png", -- right
"farming_tige_connnect.png", -- left
"farming_tige_connnect.png^[transformFX90", -- back
"farming_tige_connnect.png" --front
},
2017-02-01 13:44:36 +01:00
groups = {snappy=3, not_in_creative_inventory=1 ,dig_by_water=1},
sounds = mcl_sounds.node_sound_leaves_defaults(),
2015-06-29 19:55:56 +02:00
})
2017-01-31 12:35:59 +01:00
minetest.register_node("mcl_farming:melontige_linked_t", {
2015-06-29 19:55:56 +02:00
paramtype = "light",
walkable = false,
sunlight_propagates = true,
drop = "",
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "wallmounted",
node_box = {
type = "fixed",
fixed = {
{0, -0.5, -0.5, 0, 0.5, 0.5}, -- NodeBox1
}
},
selection_box = {
type = "fixed",
fixed = {-0.2, -0.5, -0.2, 0.2, 0.2, 0.2}
},
tiles = {
"farming_tige_connnect.png", --top
"farming_tige_connnect.png", -- bottom
"farming_tige_connnect.png^[transformFX90", -- right
"farming_tige_connnect.png", -- left
"farming_tige_connnect.png", -- back
"farming_tige_connnect.png" --front
},
2017-02-01 13:44:36 +01:00
groups = {snappy=3, not_in_creative_inventory=1 ,dig_by_water=1},
sounds = mcl_sounds.node_sound_leaves_defaults(),
2015-06-29 19:55:56 +02:00
})
2017-01-31 12:35:59 +01:00
minetest.register_node("mcl_farming:melontige_linked_b", {
2015-06-29 19:55:56 +02:00
paramtype = "light",
walkable = false,
sunlight_propagates = true,
drop = "",
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "wallmounted",
node_box = {
type = "fixed",
fixed = {
{0, -0.5, -0.5, 0, 0.5, 0.5}, -- NodeBox1
}
},
selection_box = {
type = "fixed",
fixed = {-0.2, -0.5, -0.2, 0.2, 0.2, 0.2}
},
tiles = {
"farming_tige_connnect.png", --top
"farming_tige_connnect.png", -- bottom
"farming_tige_connnect.png", -- right
"farming_tige_connnect.png^[transformFX90", -- left
"farming_tige_connnect.png", -- back
"farming_tige_connnect.png" --front
},
2017-02-01 13:44:36 +01:00
groups = {snappy=3, not_in_creative_inventory=1 ,dig_by_water=1},
sounds = mcl_sounds.node_sound_leaves_defaults(),
2015-06-29 19:55:56 +02:00
})
2017-02-10 17:00:29 +01:00
minetest.register_craftitem("mcl_farming:melon_seeds", {
2017-01-04 06:39:52 +01:00
description = "Melon Seeds",
2015-06-29 19:55:56 +02:00
stack_max = 64,
groups = { craftitem=1 },
2015-06-29 19:55:56 +02:00
inventory_image = "farming_melon_seed.png",
on_place = function(itemstack, placer, pointed_thing)
2017-01-31 12:35:59 +01:00
return mcl_farming:place_seed(itemstack, placer, pointed_thing, "mcl_farming:melontige_1")
2015-06-29 19:55:56 +02:00
end,
})
2017-01-31 12:35:59 +01:00
minetest.register_craftitem("mcl_farming:melon_item", {
-- Original name: “Melon”
description = "Melon Slice",
2015-06-29 19:55:56 +02:00
stack_max = 64,
inventory_image = "farming_melon.png",
2017-02-16 17:45:33 +01:00
on_place = minetest.item_eat(2),
on_secondary_use = minetest.item_eat(2),
groups = { food = 2, eatable = 2 },
2015-06-29 19:55:56 +02:00
})
minetest.register_abm({
2017-01-31 12:35:59 +01:00
nodenames = {"mcl_farming:melontige_unconnect"},
2015-06-29 19:55:56 +02:00
neighbors = {"air"},
interval = 25,
chance = 15,
action = function(pos)
local have_change = 0
local newpos = {x=pos.x, y=pos.y, z=pos.z}
local light = minetest.get_node_light(pos)
if light or light > 10 then
for x=-1,1 do
local p = {x=pos.x+x, y=pos.y-1, z=pos.z}
newpos = {x=pos.x+x, y=pos.y, z=pos.z}
local n = minetest.get_node(p)
local nod = minetest.get_node(newpos)
2017-01-31 23:32:56 +01:00
if n.name=="mcl_core:dirt_with_grass" and nod.name=="air" and have_change == 0
or n.name=="mcl_core:dirt" and nod.name=="air" and have_change == 0
2017-01-31 12:35:59 +01:00
or string.find(n.name, "mcl_farming:soil") and nod.name=="air" and have_change == 0 then
2015-06-29 19:55:56 +02:00
have_change = 1
2017-01-31 12:35:59 +01:00
minetest.add_node(newpos, {name="mcl_farming:melon"})
2015-06-29 19:55:56 +02:00
if x == 1 then
2017-01-31 12:35:59 +01:00
minetest.add_node(pos, {name="mcl_farming:melontige_linked_r" })
2015-06-29 19:55:56 +02:00
else
2017-01-31 12:35:59 +01:00
minetest.add_node(pos, {name="mcl_farming:melontige_linked_l"})
2015-06-29 19:55:56 +02:00
end
end
end
if have_change == 0 then
for z=-1,1 do
2017-01-24 02:31:49 +01:00
local p = {x=pos.x, y=pos.y-1, z=pos.z+z}
2015-06-29 19:55:56 +02:00
newpos = {x=pos.x, y=pos.y, z=pos.z+z}
2017-01-24 02:31:49 +01:00
local n = minetest.get_node(p)
local nod2 = minetest.get_node(newpos)
2017-01-31 23:32:56 +01:00
if n.name=="mcl_core:dirt_with_grass" and nod2.name=="air" and have_change == 0
or n.name=="mcl_core:dirt" and nod2.name=="air" and have_change == 0
2017-01-31 12:35:59 +01:00
or string.find(n.name, "mcl_farming:soil") and nod2.name=="air" and have_change == 0 then
2015-06-29 19:55:56 +02:00
have_change = 1
2017-01-31 12:35:59 +01:00
minetest.add_node(newpos, {name="mcl_farming:melon"})
2015-06-29 19:55:56 +02:00
if z == 1 then
2017-01-31 12:35:59 +01:00
minetest.add_node(pos, {name="mcl_farming:melontige_linked_t" })
2015-06-29 19:55:56 +02:00
else
2017-01-31 12:35:59 +01:00
minetest.add_node(pos, {name="mcl_farming:melontige_linked_b" })
2015-06-29 19:55:56 +02:00
end
end
end
end
end
end,
})
2017-01-31 12:35:59 +01:00
mcl_farming:add_plant("mcl_farming:melontige_unconnect", {"mcl_farming:melontige_1", "mcl_farming:melontige_2"}, 50, 20)
2015-06-29 19:55:56 +02:00
minetest.register_craft({
2017-02-10 17:00:29 +01:00
output = "mcl_farming:melon_seeds",
recipe = {{"mcl_farming:melon_item"}}
2015-06-29 19:55:56 +02:00
})
minetest.register_craft({
2017-01-31 12:35:59 +01:00
output = 'mcl_farming:melon',
2015-06-29 19:55:56 +02:00
recipe = {
2017-01-31 12:35:59 +01:00
{'mcl_farming:melon_item', 'mcl_farming:melon_item', 'mcl_farming:melon_item'},
{'mcl_farming:melon_item', 'mcl_farming:melon_item', 'mcl_farming:melon_item'},
{'mcl_farming:melon_item', 'mcl_farming:melon_item', 'mcl_farming:melon_item'},
2015-06-29 19:55:56 +02:00
}
2017-01-04 06:39:52 +01:00
})
2017-01-07 04:55:58 +01:00
2017-01-20 11:21:55 +01:00