Rename farming mod to mcl_farming
|
@ -453,14 +453,14 @@ minetest.register_craft({
|
|||
minetest.register_craft({
|
||||
output = 'default:haybale',
|
||||
recipe = {
|
||||
{'farming:wheat_harvested', 'farming:wheat_harvested', 'farming:wheat_harvested'},
|
||||
{'farming:wheat_harvested', 'farming:wheat_harvested', 'farming:wheat_harvested'},
|
||||
{'farming:wheat_harvested', 'farming:wheat_harvested', 'farming:wheat_harvested'},
|
||||
{'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested'},
|
||||
{'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested'},
|
||||
{'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'farming:wheat_harvested 9',
|
||||
output = 'mcl_farming:wheat_harvested 9',
|
||||
recipe = {
|
||||
{'default:haybale'},
|
||||
}
|
||||
|
|
|
@ -463,46 +463,46 @@ function default.duengen(pointed_thing)
|
|||
minetest.add_node(pos, {name="air"})
|
||||
generate_tree(pos, "default:tree", "default:leaves", 1)
|
||||
return true
|
||||
elseif string.find(n.name, "farming:wheat_") ~= nil then
|
||||
elseif string.find(n.name, "mcl_farming:wheat_") ~= nil then
|
||||
stage = string.sub(n.name, 15)
|
||||
if stage == "3" then
|
||||
minetest.add_node(pos, {name="farming:wheat"})
|
||||
minetest.add_node(pos, {name="mcl_farming:wheat"})
|
||||
elseif math.random(1,5) < 3 then
|
||||
minetest.add_node(pos, {name="farming:wheat"})
|
||||
minetest.add_node(pos, {name="mcl_farming:wheat"})
|
||||
else
|
||||
minetest.add_node(pos, {name="farming:wheat_"..math.random(2,3)})
|
||||
minetest.add_node(pos, {name="mcl_farming:wheat_"..math.random(2,3)})
|
||||
end
|
||||
return true
|
||||
elseif string.find(n.name, "farming:potato_") ~= nil then
|
||||
elseif string.find(n.name, "mcl_farming:potato_") ~= nil then
|
||||
stage = tonumber(string.sub(n.name, 16))
|
||||
if stage == 1 then
|
||||
minetest.add_node(pos, {name="farming:potato_"..math.random(stage,2)})
|
||||
minetest.add_node(pos, {name="mcl_farming:potato_"..math.random(stage,2)})
|
||||
else
|
||||
minetest.add_node(pos, {name="farming:potato"})
|
||||
minetest.add_node(pos, {name="mcl_farming:potato"})
|
||||
end
|
||||
return true
|
||||
elseif string.find(n.name, "farming:carrot_") ~= nil then
|
||||
elseif string.find(n.name, "mcl_farming:carrot_") ~= nil then
|
||||
stage = tonumber(string.sub(n.name, 16))
|
||||
if stage == 1 then
|
||||
minetest.add_node(pos, {name="farming:carrot_"..math.random(stage,2)})
|
||||
minetest.add_node(pos, {name="mcl_farming:carrot_"..math.random(stage,2)})
|
||||
else
|
||||
minetest.add_node(pos, {name="farming:carrot"})
|
||||
minetest.add_node(pos, {name="mcl_farming:carrot"})
|
||||
end
|
||||
return true
|
||||
elseif string.find(n.name, "farming:pumpkin_") ~= nil then
|
||||
elseif string.find(n.name, "mcl_farming:pumpkin_") ~= nil then
|
||||
stage = tonumber(string.sub(n.name, 17))
|
||||
if stage == 1 then
|
||||
minetest.add_node(pos, {name="farming:pumpkin_"..math.random(stage,2)})
|
||||
minetest.add_node(pos, {name="mcl_farming:pumpkin_"..math.random(stage,2)})
|
||||
else
|
||||
minetest.add_node(pos, {name="farming:pumpkintige_unconnect"})
|
||||
minetest.add_node(pos, {name="mcl_farming:pumpkintige_unconnect"})
|
||||
end
|
||||
return true
|
||||
elseif string.find(n.name, "farming:melontige_") ~= nil then
|
||||
elseif string.find(n.name, "mcl_farming:melontige_") ~= nil then
|
||||
stage = tonumber(string.sub(n.name, 18))
|
||||
if stage == 1 then
|
||||
minetest.add_node(pos, {name="farming:melontige_"..math.random(stage,2)})
|
||||
minetest.add_node(pos, {name="mcl_farming:melontige_"..math.random(stage,2)})
|
||||
else
|
||||
minetest.add_node(pos, {name="farming:melontige_unconnect"})
|
||||
minetest.add_node(pos, {name="mcl_farming:melontige_unconnect"})
|
||||
end
|
||||
return true
|
||||
elseif n.name ~= "" and n.name == "default:junglesapling" then
|
||||
|
|
|
@ -867,7 +867,7 @@ minetest.register_node("default:junglegrass", {
|
|||
max_items = 1,
|
||||
items = {
|
||||
{
|
||||
items = {'farming:wheat_seed'},
|
||||
items = {'mcl_farming:wheat_seed'},
|
||||
rarity = 24,
|
||||
},
|
||||
}
|
||||
|
@ -1412,7 +1412,7 @@ minetest.register_node("default:grass", {
|
|||
max_items = 1,
|
||||
items = {
|
||||
{
|
||||
items = {'farming:wheat_seed'},
|
||||
items = {'mcl_farming:wheat_seed'},
|
||||
rarity = 24,
|
||||
},
|
||||
}
|
||||
|
|
|
@ -1 +1,4 @@
|
|||
default
|
||||
bucket
|
||||
mcl_farming
|
||||
mcl_mobitems
|
||||
|
|
|
@ -16,7 +16,7 @@ minetest.register_craft({
|
|||
recipe = {
|
||||
{'mcl_mobitems:milk_bucket', 'mcl_mobitems:milk_bucket', 'mcl_mobitems:milk_bucket'},
|
||||
{'default:sugar', 'mcl_throwing:egg', 'default:sugar'},
|
||||
{'farming:wheat_harvested', 'farming:wheat_harvested', 'farming:wheat_harvested'},
|
||||
{'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested'},
|
||||
},
|
||||
replacements = {
|
||||
{"mcl_mobitems:milk_bucket", "bucket:bucket_empty"},
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
minetest.register_node("farming:carrot_1", {
|
||||
minetest.register_node("mcl_farming:carrot_1", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
drop = "farming:carrot_item",
|
||||
drop = "mcl_farming:carrot_item",
|
||||
tiles = {"farming_carrot_1.png"},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
|
@ -14,11 +14,11 @@ minetest.register_node("farming:carrot_1", {
|
|||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("farming:carrot_2", {
|
||||
minetest.register_node("mcl_farming:carrot_2", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
drop = "farming:carrot_item",
|
||||
drop = "mcl_farming:carrot_item",
|
||||
tiles = {"farming_carrot_2.png"},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
|
@ -30,11 +30,11 @@ minetest.register_node("farming:carrot_2", {
|
|||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("farming:carrot_3", {
|
||||
minetest.register_node("mcl_farming:carrot_3", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
drop = "farming:carrot_item",
|
||||
drop = "mcl_farming:carrot_item",
|
||||
tiles = {"farming_carrot_3.png"},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
|
@ -46,7 +46,7 @@ minetest.register_node("farming:carrot_3", {
|
|||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("farming:carrot", {
|
||||
minetest.register_node("mcl_farming:carrot", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -54,27 +54,27 @@ minetest.register_node("farming:carrot", {
|
|||
drop = {
|
||||
max_items = 1,
|
||||
items = {
|
||||
{ items = {'farming:carrot_item 4'}, rarity = 5 },
|
||||
{ items = {'farming:carrot_item 3'}, rarity = 2 },
|
||||
{ items = {'farming:carrot_item 2'}, rarity = 2 },
|
||||
{ items = {'farming:carrot_item 1'} },
|
||||
{ items = {'mcl_farming:carrot_item 4'}, rarity = 5 },
|
||||
{ items = {'mcl_farming:carrot_item 3'}, rarity = 2 },
|
||||
{ items = {'mcl_farming:carrot_item 2'}, rarity = 2 },
|
||||
{ items = {'mcl_farming:carrot_item 1'} },
|
||||
}
|
||||
},
|
||||
groups = {snappy=3, flammable=2, not_in_creative_inventory=1,dig_by_water=1},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_craftitem("farming:carrot_item", {
|
||||
minetest.register_craftitem("mcl_farming:carrot_item", {
|
||||
description = "Carrot",
|
||||
inventory_image = "farming_carrot.png",
|
||||
on_use = minetest.item_eat(3),
|
||||
groups = { food = 2, eatable = 3 },
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
return farming:place_seed(itemstack, placer, pointed_thing, "farming:carrot_1")
|
||||
return mcl_farming:place_seed(itemstack, placer, pointed_thing, "mcl_farming:carrot_1")
|
||||
end
|
||||
})
|
||||
|
||||
minetest.register_craftitem("farming:carrot_item_gold", {
|
||||
minetest.register_craftitem("mcl_farming:carrot_item_gold", {
|
||||
description = "Golden Carrot",
|
||||
inventory_image = "farming_carrot_gold.png",
|
||||
on_use = minetest.item_eat(3),
|
||||
|
@ -82,12 +82,12 @@ minetest.register_craftitem("farming:carrot_item_gold", {
|
|||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:carrot_item_gold",
|
||||
output = "mcl_farming:carrot_item_gold",
|
||||
recipe = {
|
||||
{'default:gold_nugget', 'default:gold_nugget', 'default:gold_nugget'},
|
||||
{'default:gold_nugget', 'farming:carrot_item', 'default:gold_nugget'},
|
||||
{'default:gold_nugget', 'mcl_farming:carrot_item', 'default:gold_nugget'},
|
||||
{'default:gold_nugget', 'default:gold_nugget', 'default:gold_nugget'},
|
||||
}
|
||||
})
|
||||
|
||||
farming:add_plant("farming:carrot", {"farming:carrot_1", "farming:carrot_2", "farming:carrot_3"}, 50, 20)
|
||||
mcl_farming:add_plant("mcl_farming:carrot", {"mcl_farming:carrot_1", "mcl_farming:carrot_2", "mcl_farming:carrot_3"}, 50, 20)
|
|
@ -7,7 +7,7 @@ local function create_soil(pos, inv)
|
|||
local above = minetest.get_node({x=pos.x, y=pos.y+1, z=pos.z})
|
||||
if minetest.get_item_group(name, "cultivatable") == 2 then
|
||||
if above.name == "air" then
|
||||
node.name = "farming:soil"
|
||||
node.name = "mcl_farming:soil"
|
||||
minetest.set_node(pos, node)
|
||||
return true
|
||||
end
|
||||
|
@ -21,7 +21,7 @@ local function create_soil(pos, inv)
|
|||
return false
|
||||
end
|
||||
|
||||
minetest.register_tool("farming:hoe_wood", {
|
||||
minetest.register_tool("mcl_farming:hoe_wood", {
|
||||
description = "Wood Hoe",
|
||||
inventory_image = "farming_tool_woodhoe.png",
|
||||
on_place = function(itemstack, user, pointed_thing)
|
||||
|
@ -40,7 +40,7 @@ minetest.register_tool("farming:hoe_wood", {
|
|||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:hoe_wood",
|
||||
output = "mcl_farming:hoe_wood",
|
||||
recipe = {
|
||||
{"group:wood", "group:wood"},
|
||||
{"", "default:stick"},
|
||||
|
@ -48,7 +48,7 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "farming:hoe_wood",
|
||||
output = "mcl_farming:hoe_wood",
|
||||
recipe = {
|
||||
{"group:wood", "group:wood"},
|
||||
{"default:stick", ""},
|
||||
|
@ -57,11 +57,11 @@ minetest.register_craft({
|
|||
})
|
||||
minetest.register_craft({
|
||||
type = "fuel",
|
||||
recipe = "farming:hoe_wood",
|
||||
recipe = "mcl_farming:hoe_wood",
|
||||
burntime = 10,
|
||||
})
|
||||
|
||||
minetest.register_tool("farming:hoe_stone", {
|
||||
minetest.register_tool("mcl_farming:hoe_stone", {
|
||||
description = "Stone Hoe",
|
||||
inventory_image = "farming_tool_stonehoe.png",
|
||||
on_place = function(itemstack, user, pointed_thing)
|
||||
|
@ -80,7 +80,7 @@ minetest.register_tool("farming:hoe_stone", {
|
|||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:hoe_stone",
|
||||
output = "mcl_farming:hoe_stone",
|
||||
recipe = {
|
||||
{"default:cobble", "default:cobble"},
|
||||
{"", "default:stick"},
|
||||
|
@ -88,7 +88,7 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "farming:hoe_stone",
|
||||
output = "mcl_farming:hoe_stone",
|
||||
recipe = {
|
||||
{"default:cobble", "default:cobble"},
|
||||
{"default:stick", ""},
|
||||
|
@ -96,7 +96,7 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_tool("farming:hoe_steel", {
|
||||
minetest.register_tool("mcl_farming:hoe_steel", {
|
||||
description = "Iron Hoe",
|
||||
inventory_image = "farming_tool_steelhoe.png",
|
||||
on_place = function(itemstack, user, pointed_thing)
|
||||
|
@ -116,7 +116,7 @@ minetest.register_tool("farming:hoe_steel", {
|
|||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:hoe_steel",
|
||||
output = "mcl_farming:hoe_steel",
|
||||
recipe = {
|
||||
{"default:steel_ingot", "default:steel_ingot"},
|
||||
{"", "default:stick"},
|
||||
|
@ -124,7 +124,7 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "farming:hoe_steel",
|
||||
output = "mcl_farming:hoe_steel",
|
||||
recipe = {
|
||||
{"default:steel_ingot", "default:steel_ingot"},
|
||||
{"default:stick", ""},
|
||||
|
@ -135,11 +135,11 @@ minetest.register_craft({
|
|||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:iron_nugget",
|
||||
recipe = "farming:hoe_steel",
|
||||
recipe = "mcl_farming:hoe_steel",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_tool("farming:hoe_gold", {
|
||||
minetest.register_tool("mcl_farming:hoe_gold", {
|
||||
description = "Golden Hoe",
|
||||
inventory_image = "farming_tool_goldhoe.png",
|
||||
on_place = function(itemstack, user, pointed_thing)
|
||||
|
@ -158,7 +158,7 @@ minetest.register_tool("farming:hoe_gold", {
|
|||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:hoe_gold",
|
||||
output = "mcl_farming:hoe_gold",
|
||||
recipe = {
|
||||
{"default:gold_ingot", "default:gold_ingot"},
|
||||
{"", "default:stick"},
|
||||
|
@ -166,7 +166,7 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "farming:hoe_gold",
|
||||
output = "mcl_farming:hoe_gold",
|
||||
recipe = {
|
||||
{"default:gold_ingot", "default:gold_ingot"},
|
||||
{"default:stick", ""},
|
||||
|
@ -179,11 +179,11 @@ minetest.register_craft({
|
|||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:gold_nugget",
|
||||
recipe = "farming:hoe_gold",
|
||||
recipe = "mcl_farming:hoe_gold",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_tool("farming:hoe_diamond", {
|
||||
minetest.register_tool("mcl_farming:hoe_diamond", {
|
||||
description = "Diamond Hoe",
|
||||
inventory_image = "farming_tool_diamondhoe.png",
|
||||
on_place = function(itemstack, user, pointed_thing)
|
||||
|
@ -202,7 +202,7 @@ minetest.register_tool("farming:hoe_diamond", {
|
|||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:hoe_diamond",
|
||||
output = "mcl_farming:hoe_diamond",
|
||||
recipe = {
|
||||
{"default:diamond", "default:diamond"},
|
||||
{"", "default:stick"},
|
||||
|
@ -210,7 +210,7 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = "farming:hoe_diamond",
|
||||
output = "mcl_farming:hoe_diamond",
|
||||
recipe = {
|
||||
{"default:diamond", "default:diamond"},
|
||||
{"default:stick", ""},
|
|
@ -1,14 +1,14 @@
|
|||
local init = os.clock()
|
||||
farming = {}
|
||||
mcl_farming = {}
|
||||
|
||||
function farming:add_plant(full_grown, names, interval, chance)
|
||||
function mcl_farming:add_plant(full_grown, names, interval, chance)
|
||||
minetest.register_abm({
|
||||
nodenames = names,
|
||||
interval = interval,
|
||||
chance = chance,
|
||||
action = function(pos, node)
|
||||
pos.y = pos.y-1
|
||||
if minetest.get_node(pos).name ~= "farming:soil_wet" and math.random(0, 9) > 0 then
|
||||
if minetest.get_node(pos).name ~= "mcl_farming:soil_wet" and math.random(0, 9) > 0 then
|
||||
return
|
||||
end
|
||||
pos.y = pos.y+1
|
||||
|
@ -38,7 +38,7 @@ function farming:add_plant(full_grown, names, interval, chance)
|
|||
end
|
||||
|
||||
|
||||
function farming:place_seed(itemstack, placer, pointed_thing, plantname)
|
||||
function mcl_farming:place_seed(itemstack, placer, pointed_thing, plantname)
|
||||
local pt = pointed_thing
|
||||
if not pt then
|
||||
return
|
||||
|
@ -53,7 +53,7 @@ function farming:place_seed(itemstack, placer, pointed_thing, plantname)
|
|||
local place_s = minetest.get_node(pos)
|
||||
|
||||
|
||||
if string.find(farmland.name, "farming:soil") and string.find(place_s.name, "air") then
|
||||
if string.find(farmland.name, "mcl_farming:soil") and string.find(place_s.name, "air") then
|
||||
minetest.add_node(pos, {name=plantname})
|
||||
else
|
||||
return
|
||||
|
@ -68,28 +68,28 @@ end
|
|||
|
||||
|
||||
-- ========= SOIL =========
|
||||
dofile(minetest.get_modpath("farming").."/soil.lua")
|
||||
dofile(minetest.get_modpath("mcl_farming").."/soil.lua")
|
||||
|
||||
-- ========= HOES =========
|
||||
dofile(minetest.get_modpath("farming").."/hoes.lua")
|
||||
dofile(minetest.get_modpath("mcl_farming").."/hoes.lua")
|
||||
|
||||
-- ========= WHEAT =========
|
||||
dofile(minetest.get_modpath("farming").."/wheat.lua")
|
||||
dofile(minetest.get_modpath("mcl_farming").."/wheat.lua")
|
||||
|
||||
-- ========= PUMPKIN =========
|
||||
dofile(minetest.get_modpath("farming").."/pumpkin.lua")
|
||||
dofile(minetest.get_modpath("mcl_farming").."/pumpkin.lua")
|
||||
|
||||
-- ========= MELON =========
|
||||
dofile(minetest.get_modpath("farming").."/melon.lua")
|
||||
dofile(minetest.get_modpath("mcl_farming").."/melon.lua")
|
||||
|
||||
-- ========= CARROT =========
|
||||
dofile(minetest.get_modpath("farming").."/carrots.lua")
|
||||
dofile(minetest.get_modpath("mcl_farming").."/carrots.lua")
|
||||
|
||||
-- ========= POTATOES =========
|
||||
dofile(minetest.get_modpath("farming").."/potatoes.lua")
|
||||
dofile(minetest.get_modpath("mcl_farming").."/potatoes.lua")
|
||||
|
||||
-- ========= MUSHROOMS =========
|
||||
dofile(minetest.get_modpath("farming").."/mushrooms.lua")
|
||||
dofile(minetest.get_modpath("mcl_farming").."/mushrooms.lua")
|
||||
|
||||
local time_to_load= os.clock() - init
|
||||
print(string.format("[MOD] "..minetest.get_current_modname().." loaded in %.4f s", time_to_load))
|
|
@ -1,4 +1,4 @@
|
|||
minetest.register_node("farming:melon", {
|
||||
minetest.register_node("mcl_farming:melon", {
|
||||
description = "Melon",
|
||||
paramtype2 = "facedir",
|
||||
stack_max = 64,
|
||||
|
@ -7,11 +7,11 @@ minetest.register_node("farming:melon", {
|
|||
drop = {
|
||||
max_items = 1,
|
||||
items = {
|
||||
{ items = {'farming:melon_item 7'}, rarity = 14 },
|
||||
{ items = {'farming:melon_item 6'}, rarity = 10 },
|
||||
{ items = {'farming:melon_item 5'}, rarity = 5 },
|
||||
{ items = {'farming:melon_item 4'}, rarity = 2 },
|
||||
{ items = {'farming:melon_item 3'} },
|
||||
{ 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'} },
|
||||
}
|
||||
},
|
||||
after_dig_node = function(pos, oldnode, oldmetadata, user)
|
||||
|
@ -21,7 +21,7 @@ minetest.register_node("farming:melon", {
|
|||
local n = minetest.get_node(p)
|
||||
if string.find(n.name, "melontige_linked_") and have_change == 0 then
|
||||
have_change = 1
|
||||
minetest.add_node(p, {name="farming:melontige_unconnect"})
|
||||
minetest.add_node(p, {name="mcl_farming:melontige_unconnect"})
|
||||
end
|
||||
end
|
||||
if have_change == 0 then
|
||||
|
@ -30,14 +30,14 @@ minetest.register_node("farming:melon", {
|
|||
local n = minetest.get_node(p)
|
||||
if string.find(n.name, "melontige_linked_") and have_change == 0 then
|
||||
have_change = 1
|
||||
minetest.add_node(p, {name="farming:melontige_unconnect"})
|
||||
minetest.add_node(p, {name="mcl_farming:melontige_unconnect"})
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
})
|
||||
|
||||
minetest.register_node("farming:melontige_1", {
|
||||
minetest.register_node("mcl_farming:melontige_1", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -54,7 +54,7 @@ minetest.register_node("farming:melontige_1", {
|
|||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("farming:melontige_2", {
|
||||
minetest.register_node("mcl_farming:melontige_2", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -71,7 +71,7 @@ minetest.register_node("farming:melontige_2", {
|
|||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("farming:melontige_unconnect", {
|
||||
minetest.register_node("mcl_farming:melontige_unconnect", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
|
@ -82,7 +82,7 @@ minetest.register_node("farming:melontige_unconnect", {
|
|||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("farming:melontige_linked_r", {
|
||||
minetest.register_node("mcl_farming:melontige_linked_r", {
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
|
@ -112,7 +112,7 @@ minetest.register_node("farming:melontige_linked_r", {
|
|||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("farming:melontige_linked_l", {
|
||||
minetest.register_node("mcl_farming:melontige_linked_l", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
|
@ -142,7 +142,7 @@ minetest.register_node("farming:melontige_linked_l", {
|
|||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("farming:melontige_linked_t", {
|
||||
minetest.register_node("mcl_farming:melontige_linked_t", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
|
@ -172,7 +172,7 @@ minetest.register_node("farming:melontige_linked_t", {
|
|||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("farming:melontige_linked_b", {
|
||||
minetest.register_node("mcl_farming:melontige_linked_b", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
|
@ -202,17 +202,17 @@ minetest.register_node("farming:melontige_linked_b", {
|
|||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_craftitem("farming:melon_seed", {
|
||||
minetest.register_craftitem("mcl_farming:melon_seed", {
|
||||
description = "Melon Seeds",
|
||||
stack_max = 64,
|
||||
groups = { craftitem=1 },
|
||||
inventory_image = "farming_melon_seed.png",
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
return farming:place_seed(itemstack, placer, pointed_thing, "farming:melontige_1")
|
||||
return mcl_farming:place_seed(itemstack, placer, pointed_thing, "mcl_farming:melontige_1")
|
||||
end,
|
||||
})
|
||||
|
||||
minetest.register_craftitem("farming:melon_item", {
|
||||
minetest.register_craftitem("mcl_farming:melon_item", {
|
||||
description = "Melon",
|
||||
stack_max = 64,
|
||||
inventory_image = "farming_melon.png",
|
||||
|
@ -221,7 +221,7 @@ minetest.register_craftitem("farming:melon_item", {
|
|||
})
|
||||
|
||||
minetest.register_abm({
|
||||
nodenames = {"farming:melontige_unconnect"},
|
||||
nodenames = {"mcl_farming:melontige_unconnect"},
|
||||
neighbors = {"air"},
|
||||
interval = 25,
|
||||
chance = 15,
|
||||
|
@ -237,13 +237,13 @@ minetest.register_abm({
|
|||
local nod = minetest.get_node(newpos)
|
||||
if n.name=="default:dirt_with_grass" and nod.name=="air" and have_change == 0
|
||||
or n.name=="default:dirt" and nod.name=="air" and have_change == 0
|
||||
or string.find(n.name, "farming:soil") and nod.name=="air" and have_change == 0 then
|
||||
or string.find(n.name, "mcl_farming:soil") and nod.name=="air" and have_change == 0 then
|
||||
have_change = 1
|
||||
minetest.add_node(newpos, {name="farming:melon"})
|
||||
minetest.add_node(newpos, {name="mcl_farming:melon"})
|
||||
if x == 1 then
|
||||
minetest.add_node(pos, {name="farming:melontige_linked_r" })
|
||||
minetest.add_node(pos, {name="mcl_farming:melontige_linked_r" })
|
||||
else
|
||||
minetest.add_node(pos, {name="farming:melontige_linked_l"})
|
||||
minetest.add_node(pos, {name="mcl_farming:melontige_linked_l"})
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -255,13 +255,13 @@ minetest.register_abm({
|
|||
local nod2 = minetest.get_node(newpos)
|
||||
if n.name=="default:dirt_with_grass" and nod2.name=="air" and have_change == 0
|
||||
or n.name=="default:dirt" and nod2.name=="air" and have_change == 0
|
||||
or string.find(n.name, "farming:soil") and nod2.name=="air" and have_change == 0 then
|
||||
or string.find(n.name, "mcl_farming:soil") and nod2.name=="air" and have_change == 0 then
|
||||
have_change = 1
|
||||
minetest.add_node(newpos, {name="farming:melon"})
|
||||
minetest.add_node(newpos, {name="mcl_farming:melon"})
|
||||
if z == 1 then
|
||||
minetest.add_node(pos, {name="farming:melontige_linked_t" })
|
||||
minetest.add_node(pos, {name="mcl_farming:melontige_linked_t" })
|
||||
else
|
||||
minetest.add_node(pos, {name="farming:melontige_linked_b" })
|
||||
minetest.add_node(pos, {name="mcl_farming:melontige_linked_b" })
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -270,20 +270,20 @@ minetest.register_abm({
|
|||
end,
|
||||
})
|
||||
|
||||
farming:add_plant("farming:melontige_unconnect", {"farming:melontige_1", "farming:melontige_2"}, 50, 20)
|
||||
mcl_farming:add_plant("mcl_farming:melontige_unconnect", {"mcl_farming:melontige_1", "mcl_farming:melontige_2"}, 50, 20)
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "farming:melon_seed",
|
||||
recipe = {"farming:melon_item"}
|
||||
output = "mcl_farming:melon_seed",
|
||||
recipe = {"mcl_farming:melon_item"}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'farming:melon',
|
||||
output = 'mcl_farming:melon',
|
||||
recipe = {
|
||||
{'farming:melon_item', 'farming:melon_item', 'farming:melon_item'},
|
||||
{'farming:melon_item', 'farming:melon_item', 'farming:melon_item'},
|
||||
{'farming:melon_item', 'farming:melon_item', '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', 'mcl_farming:melon_item'},
|
||||
}
|
||||
})
|
||||
|
|
@ -0,0 +1 @@
|
|||
name = mcl_farming
|
|
@ -1,4 +1,4 @@
|
|||
minetest.register_node("farming:mushroom_brown", {
|
||||
minetest.register_node("mcl_farming:mushroom_brown", {
|
||||
description = "Brown Mushroom",
|
||||
drawtype = "plantlike",
|
||||
tiles = { "farming_mushroom_brown.png" },
|
||||
|
@ -16,7 +16,7 @@ minetest.register_node("farming:mushroom_brown", {
|
|||
},
|
||||
})
|
||||
|
||||
minetest.register_node("farming:mushroom_red", {
|
||||
minetest.register_node("mcl_farming:mushroom_red", {
|
||||
description = "Red Mushroom",
|
||||
drawtype = "plantlike",
|
||||
tiles = { "farming_mushroom_red.png" },
|
||||
|
@ -33,7 +33,7 @@ minetest.register_node("farming:mushroom_red", {
|
|||
},
|
||||
})
|
||||
|
||||
minetest.register_craftitem("farming:mushroom_stew", {
|
||||
minetest.register_craftitem("mcl_farming:mushroom_stew", {
|
||||
description = "Mushroom Stew",
|
||||
inventory_image = "farming_mushroom_stew.png",
|
||||
on_use = minetest.item_eat(6, "default:bowl"),
|
||||
|
@ -43,6 +43,6 @@ minetest.register_craftitem("farming:mushroom_stew", {
|
|||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "farming:mushroom_stew",
|
||||
recipe = {'default:bowl', 'farming:mushroom_brown', 'farming:mushroom_red'}
|
||||
output = "mcl_farming:mushroom_stew",
|
||||
recipe = {'default:bowl', 'mcl_farming:mushroom_brown', 'mcl_farming:mushroom_red'}
|
||||
})
|
|
@ -1,8 +1,8 @@
|
|||
minetest.register_node("farming:potato_1", {
|
||||
minetest.register_node("mcl_farming:potato_1", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
drop = "farming:potato_item",
|
||||
drop = "mcl_farming:potato_item",
|
||||
tiles = {"farming_potato_1.png"},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
|
@ -14,11 +14,11 @@ minetest.register_node("farming:potato_1", {
|
|||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("farming:potato_2", {
|
||||
minetest.register_node("mcl_farming:potato_2", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
drop = "farming:potato_item",
|
||||
drop = "mcl_farming:potato_item",
|
||||
tiles = {"farming_potato_2.png"},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
|
@ -30,7 +30,7 @@ minetest.register_node("farming:potato_2", {
|
|||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("farming:potato", {
|
||||
minetest.register_node("mcl_farming:potato", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -38,27 +38,27 @@ minetest.register_node("farming:potato", {
|
|||
drop = {
|
||||
max_items = 1,
|
||||
items = {
|
||||
{ items = {'farming:potato_item 2'} },
|
||||
{ items = {'farming:potato_item 3'}, rarity = 2 },
|
||||
{ items = {'farming:potato_item 4'}, rarity = 5 }
|
||||
{ items = {'mcl_farming:potato_item 2'} },
|
||||
{ items = {'mcl_farming:potato_item 3'}, rarity = 2 },
|
||||
{ items = {'mcl_farming:potato_item 4'}, rarity = 5 }
|
||||
}
|
||||
},
|
||||
groups = {snappy=3, flammable=2, not_in_creative_inventory=1,dig_by_water=1},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_craftitem("farming:potato_item", {
|
||||
minetest.register_craftitem("mcl_farming:potato_item", {
|
||||
description = "Potato",
|
||||
inventory_image = "farming_potato.png",
|
||||
on_use = minetest.item_eat(1),
|
||||
groups = { food = 2, eatable = 1 },
|
||||
stack_max = 64,
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
return farming:place_seed(itemstack, placer, pointed_thing, "farming:potato_1")
|
||||
return mcl_farming:place_seed(itemstack, placer, pointed_thing, "mcl_farming:potato_1")
|
||||
end,
|
||||
})
|
||||
|
||||
minetest.register_craftitem("farming:potato_item_baked", {
|
||||
minetest.register_craftitem("mcl_farming:potato_item_baked", {
|
||||
description = "Baked Potato",
|
||||
stack_max = 64,
|
||||
inventory_image = "farming_potato_baked.png",
|
||||
|
@ -66,7 +66,7 @@ minetest.register_craftitem("farming:potato_item_baked", {
|
|||
groups = { food = 2, eatable = 6 },
|
||||
})
|
||||
|
||||
minetest.register_craftitem("farming:potato_item_poison", {
|
||||
minetest.register_craftitem("mcl_farming:potato_item_poison", {
|
||||
description = "Poisonous Potato",
|
||||
stack_max = 64,
|
||||
inventory_image = "farming_potato_poison.png",
|
||||
|
@ -76,8 +76,8 @@ minetest.register_craftitem("farming:potato_item_poison", {
|
|||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "farming:potato_item_baked",
|
||||
recipe = "farming:potato_item",
|
||||
output = "mcl_farming:potato_item_baked",
|
||||
recipe = "mcl_farming:potato_item",
|
||||
})
|
||||
|
||||
farming:add_plant("farming:potato", {"farming:potato_1", "farming:potato_2"}, 50, 20)
|
||||
mcl_farming:add_plant("mcl_farming:potato", {"mcl_farming:potato_1", "mcl_farming:potato_2"}, 50, 20)
|
|
@ -1,4 +1,4 @@
|
|||
minetest.register_craftitem("farming:pumpkin_seed", {
|
||||
minetest.register_craftitem("mcl_farming:pumpkin_seed", {
|
||||
description = "Pumpkin Seed",
|
||||
stack_max = 64,
|
||||
inventory_image = "farming_pumpkin_seed.png",
|
||||
|
@ -6,7 +6,7 @@ minetest.register_craftitem("farming:pumpkin_seed", {
|
|||
on_place = function(itemstack, placer, pointed_thing)
|
||||
local above = minetest.get_node(pointed_thing.above)
|
||||
if above.name == "air" then
|
||||
above.name = "farming:pumpkin_1"
|
||||
above.name = "mcl_farming:pumpkin_1"
|
||||
minetest.set_node(pointed_thing.above, above)
|
||||
itemstack:take_item(1)
|
||||
return itemstack
|
||||
|
@ -14,7 +14,7 @@ minetest.register_craftitem("farming:pumpkin_seed", {
|
|||
end
|
||||
})
|
||||
|
||||
minetest.register_node("farming:pumpkin_1", {
|
||||
minetest.register_node("mcl_farming:pumpkin_1", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -31,7 +31,7 @@ minetest.register_node("farming:pumpkin_1", {
|
|||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("farming:pumpkin_2", {
|
||||
minetest.register_node("mcl_farming:pumpkin_2", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -49,7 +49,7 @@ minetest.register_node("farming:pumpkin_2", {
|
|||
})
|
||||
|
||||
|
||||
minetest.register_node("farming:pumpkin_face", {
|
||||
minetest.register_node("mcl_farming:pumpkin_face", {
|
||||
description = "Pumpkin",
|
||||
stack_max = 64,
|
||||
paramtype2 = "facedir",
|
||||
|
@ -62,7 +62,7 @@ minetest.register_node("farming:pumpkin_face", {
|
|||
local n = minetest.get_node(p)
|
||||
if string.find(n.name, "pumpkintige_linked_") and have_change == 0 then
|
||||
have_change = 1
|
||||
minetest.add_node(p, {name="farming:pumpkintige_unconnect"})
|
||||
minetest.add_node(p, {name="mcl_farming:pumpkintige_unconnect"})
|
||||
end
|
||||
end
|
||||
if have_change == 0 then
|
||||
|
@ -71,7 +71,7 @@ minetest.register_node("farming:pumpkin_face", {
|
|||
local n = minetest.get_node(p)
|
||||
if string.find(n.name, "pumpkintige_linked_") and have_change == 0 then
|
||||
have_change = 1
|
||||
minetest.add_node(p, {name="farming:pumpkintige_unconnect"})
|
||||
minetest.add_node(p, {name="mcl_farming:pumpkintige_unconnect"})
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -79,7 +79,7 @@ minetest.register_node("farming:pumpkin_face", {
|
|||
sounds = default.node_sound_wood_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("farming:pumpkintige_unconnect", {
|
||||
minetest.register_node("mcl_farming:pumpkintige_unconnect", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
|
@ -91,7 +91,7 @@ minetest.register_node("farming:pumpkintige_unconnect", {
|
|||
})
|
||||
|
||||
|
||||
minetest.register_node("farming:pumpkintige_linked_r", {
|
||||
minetest.register_node("mcl_farming:pumpkintige_linked_r", {
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
|
@ -121,7 +121,7 @@ minetest.register_node("farming:pumpkintige_linked_r", {
|
|||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("farming:pumpkintige_linked_l", {
|
||||
minetest.register_node("mcl_farming:pumpkintige_linked_l", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
|
@ -151,7 +151,7 @@ minetest.register_node("farming:pumpkintige_linked_l", {
|
|||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("farming:pumpkintige_linked_t", {
|
||||
minetest.register_node("mcl_farming:pumpkintige_linked_t", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
|
@ -181,7 +181,7 @@ minetest.register_node("farming:pumpkintige_linked_t", {
|
|||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("farming:pumpkintige_linked_b", {
|
||||
minetest.register_node("mcl_farming:pumpkintige_linked_b", {
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
|
@ -211,11 +211,11 @@ minetest.register_node("farming:pumpkintige_linked_b", {
|
|||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
farming:add_plant("farming:pumpkintige_unconnect", {"farming:pumpkin_1", "farming:pumpkin_2"}, 80, 20)
|
||||
mcl_farming:add_plant("mcl_farming:pumpkintige_unconnect", {"mcl_farming:pumpkin_1", "mcl_farming:pumpkin_2"}, 80, 20)
|
||||
|
||||
|
||||
minetest.register_abm({
|
||||
nodenames = {"farming:pumpkintige_unconnect"},
|
||||
nodenames = {"mcl_farming:pumpkintige_unconnect"},
|
||||
neighbors = {"air"},
|
||||
interval = 30,
|
||||
chance = 15,
|
||||
|
@ -231,13 +231,13 @@ minetest.register_abm({
|
|||
local nod = minetest.get_node(newpos)
|
||||
if n.name=="default:dirt_with_grass" and nod.name=="air" and have_change == 0
|
||||
or n.name=="default:dirt" and nod.name=="air" and have_change == 0
|
||||
or string.find(n.name, "farming:soil") and nod.name=="air" and have_change == 0 then
|
||||
or string.find(n.name, "mcl_farming:soil") and nod.name=="air" and have_change == 0 then
|
||||
have_change = 1
|
||||
minetest.add_node(newpos, {name="farming:pumpkin_face"})
|
||||
minetest.add_node(newpos, {name="mcl_farming:pumpkin_face"})
|
||||
if x == 1 then
|
||||
minetest.add_node(pos, {name="farming:pumpkintige_linked_r" })
|
||||
minetest.add_node(pos, {name="mcl_farming:pumpkintige_linked_r" })
|
||||
else
|
||||
minetest.add_node(pos, {name="farming:pumpkintige_linked_l"})
|
||||
minetest.add_node(pos, {name="mcl_farming:pumpkintige_linked_l"})
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -249,13 +249,13 @@ minetest.register_abm({
|
|||
local nod2 = minetest.get_node(newpos)
|
||||
if n.name=="default:dirt_with_grass" and nod2.name=="air" and have_change == 0
|
||||
or n.name=="default:dirt" and nod2.name=="air" and have_change == 0
|
||||
or string.find(n.name, "farming:soil") and nod2.name=="air" and have_change == 0 then
|
||||
or string.find(n.name, "mcl_farming:soil") and nod2.name=="air" and have_change == 0 then
|
||||
have_change = 1
|
||||
minetest.add_node(newpos, {name="farming:pumpkin_face"})
|
||||
minetest.add_node(newpos, {name="mcl_farming:pumpkin_face"})
|
||||
if z == 1 then
|
||||
minetest.add_node(pos, {name="farming:pumpkintige_linked_t" })
|
||||
minetest.add_node(pos, {name="mcl_farming:pumpkintige_linked_t" })
|
||||
else
|
||||
minetest.add_node(pos, {name="farming:pumpkintige_linked_b" })
|
||||
minetest.add_node(pos, {name="mcl_farming:pumpkintige_linked_b" })
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -266,7 +266,7 @@ minetest.register_abm({
|
|||
|
||||
|
||||
|
||||
minetest.register_node("farming:pumpkin_face_light", {
|
||||
minetest.register_node("mcl_farming:pumpkin_face_light", {
|
||||
description = "Jack o'Lantern",
|
||||
stack_max = 64,
|
||||
paramtype2 = "facedir",
|
||||
|
@ -277,14 +277,14 @@ minetest.register_node("farming:pumpkin_face_light", {
|
|||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:pumpkin_face_light",
|
||||
recipe = {{"farming:pumpkin_face"},
|
||||
output = "mcl_farming:pumpkin_face_light",
|
||||
recipe = {{"mcl_farming:pumpkin_face"},
|
||||
{"default:torch"}}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "farming:pumpkin_seed 4",
|
||||
recipe = {"farming:pumpkin_face"}
|
||||
output = "mcl_farming:pumpkin_seed 4",
|
||||
recipe = {"mcl_farming:pumpkin_face"}
|
||||
})
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
minetest.register_node("farming:soil", {
|
||||
minetest.register_node("mcl_farming:soil", {
|
||||
tiles = {"farming_soil.png", "default_dirt.png", "default_dirt.png", "default_dirt.png", "default_dirt.png", "default_dirt.png"},
|
||||
description = "Farmland",
|
||||
drop = "default:dirt",
|
||||
|
@ -15,7 +15,7 @@ minetest.register_node("farming:soil", {
|
|||
sounds = default.node_sound_dirt_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("farming:soil_wet", {
|
||||
minetest.register_node("mcl_farming:soil_wet", {
|
||||
tiles = {"farming_soil_wet.png", "default_dirt.png", "default_dirt.png", "default_dirt.png", "default_dirt.png", "default_dirt.png"},
|
||||
description = "Hydrated Farmland",
|
||||
drop = "default:dirt",
|
||||
|
@ -32,12 +32,12 @@ minetest.register_node("farming:soil_wet", {
|
|||
})
|
||||
|
||||
minetest.register_abm({
|
||||
nodenames = {"farming:soil"},
|
||||
nodenames = {"mcl_farming:soil"},
|
||||
interval = 15,
|
||||
chance = 3,
|
||||
action = function(pos, node)
|
||||
if minetest.find_node_near(pos, 3, {"default:water_source", "default:water_flowing"}) then
|
||||
node.name = "farming:soil_wet"
|
||||
node.name = "mcl_farming:soil_wet"
|
||||
minetest.set_node(pos, node)
|
||||
end
|
||||
end,
|
Before Width: | Height: | Size: 289 B After Width: | Height: | Size: 289 B |
Before Width: | Height: | Size: 307 B After Width: | Height: | Size: 307 B |
Before Width: | Height: | Size: 153 B After Width: | Height: | Size: 153 B |
Before Width: | Height: | Size: 200 B After Width: | Height: | Size: 200 B |
Before Width: | Height: | Size: 270 B After Width: | Height: | Size: 270 B |
Before Width: | Height: | Size: 462 B After Width: | Height: | Size: 462 B |
Before Width: | Height: | Size: 266 B After Width: | Height: | Size: 266 B |
Before Width: | Height: | Size: 314 B After Width: | Height: | Size: 314 B |
Before Width: | Height: | Size: 360 B After Width: | Height: | Size: 360 B |
Before Width: | Height: | Size: 190 B After Width: | Height: | Size: 190 B |
Before Width: | Height: | Size: 622 B After Width: | Height: | Size: 622 B |
Before Width: | Height: | Size: 490 B After Width: | Height: | Size: 490 B |
Before Width: | Height: | Size: 169 B After Width: | Height: | Size: 169 B |
Before Width: | Height: | Size: 205 B After Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 273 B After Width: | Height: | Size: 273 B |
Before Width: | Height: | Size: 338 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 200 B After Width: | Height: | Size: 200 B |
Before Width: | Height: | Size: 270 B After Width: | Height: | Size: 270 B |
Before Width: | Height: | Size: 374 B After Width: | Height: | Size: 374 B |
Before Width: | Height: | Size: 330 B After Width: | Height: | Size: 330 B |
Before Width: | Height: | Size: 422 B After Width: | Height: | Size: 422 B |
Before Width: | Height: | Size: 337 B After Width: | Height: | Size: 337 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 195 B After Width: | Height: | Size: 195 B |
Before Width: | Height: | Size: 267 B After Width: | Height: | Size: 267 B |
Before Width: | Height: | Size: 395 B After Width: | Height: | Size: 395 B |
Before Width: | Height: | Size: 374 B After Width: | Height: | Size: 374 B |
Before Width: | Height: | Size: 374 B After Width: | Height: | Size: 374 B |
Before Width: | Height: | Size: 156 B After Width: | Height: | Size: 156 B |
Before Width: | Height: | Size: 307 B After Width: | Height: | Size: 307 B |
Before Width: | Height: | Size: 294 B After Width: | Height: | Size: 294 B |
Before Width: | Height: | Size: 363 B After Width: | Height: | Size: 363 B |
Before Width: | Height: | Size: 234 B After Width: | Height: | Size: 234 B |
Before Width: | Height: | Size: 234 B After Width: | Height: | Size: 234 B |
Before Width: | Height: | Size: 234 B After Width: | Height: | Size: 234 B |
Before Width: | Height: | Size: 234 B After Width: | Height: | Size: 234 B |
Before Width: | Height: | Size: 234 B After Width: | Height: | Size: 234 B |
Before Width: | Height: | Size: 842 B After Width: | Height: | Size: 842 B |
Before Width: | Height: | Size: 229 B After Width: | Height: | Size: 229 B |
Before Width: | Height: | Size: 625 B After Width: | Height: | Size: 625 B |
Before Width: | Height: | Size: 748 B After Width: | Height: | Size: 748 B |
Before Width: | Height: | Size: 390 B After Width: | Height: | Size: 390 B |
Before Width: | Height: | Size: 209 B After Width: | Height: | Size: 209 B |
|
@ -1,19 +1,19 @@
|
|||
minetest.register_craftitem("farming:wheat_seed", {
|
||||
minetest.register_craftitem("mcl_farming:wheat_seed", {
|
||||
description = "Wheat Seeds",
|
||||
groups = { craftitem=1 },
|
||||
inventory_image = "farming_wheat_seed.png",
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
return farming:place_seed(itemstack, placer, pointed_thing, "farming:wheat_1")
|
||||
return mcl_farming:place_seed(itemstack, placer, pointed_thing, "mcl_farming:wheat_1")
|
||||
end
|
||||
})
|
||||
|
||||
minetest.register_node("farming:wheat_1", {
|
||||
minetest.register_node("mcl_farming:wheat_1", {
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
drawtype = "nodebox",
|
||||
paramtype = "light",
|
||||
drop = "farming:wheat_seed",
|
||||
drop = "mcl_farming:wheat_seed",
|
||||
tiles = {"farming_wheat_1.png"},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
|
@ -34,13 +34,13 @@ minetest.register_node("farming:wheat_1", {
|
|||
},
|
||||
})
|
||||
|
||||
minetest.register_node("farming:wheat_2", {
|
||||
minetest.register_node("mcl_farming:wheat_2", {
|
||||
sunlight_propagates = true,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "nodebox",
|
||||
paramtype = "light",
|
||||
drop = "farming:wheat_seed",
|
||||
drop = "mcl_farming:wheat_seed",
|
||||
tiles = {"farming_wheat_2.png"},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
|
@ -61,13 +61,13 @@ minetest.register_node("farming:wheat_2", {
|
|||
},
|
||||
})
|
||||
|
||||
minetest.register_node("farming:wheat_3", {
|
||||
minetest.register_node("mcl_farming:wheat_3", {
|
||||
sunlight_propagates = true,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "nodebox",
|
||||
paramtype = "light",
|
||||
drop = "farming:wheat_seed",
|
||||
drop = "mcl_farming:wheat_seed",
|
||||
tiles = {"farming_wheat_3.png"},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
|
@ -88,7 +88,7 @@ minetest.register_node("farming:wheat_3", {
|
|||
},
|
||||
})
|
||||
|
||||
minetest.register_node("farming:wheat", {
|
||||
minetest.register_node("mcl_farming:wheat", {
|
||||
sunlight_propagates = true,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
|
@ -98,10 +98,10 @@ minetest.register_node("farming:wheat", {
|
|||
drop = {
|
||||
max_items = 4,
|
||||
items = {
|
||||
{ items = {'farming:wheat_seed'} },
|
||||
{ items = {'farming:wheat_seed'}, rarity = 2},
|
||||
{ items = {'farming:wheat_seed'}, rarity = 5},
|
||||
{ items = {'farming:wheat_harvested'} }
|
||||
{ items = {'mcl_farming:wheat_seed'} },
|
||||
{ items = {'mcl_farming:wheat_seed'}, rarity = 2},
|
||||
{ items = {'mcl_farming:wheat_seed'}, rarity = 5},
|
||||
{ items = {'mcl_farming:wheat_harvested'} }
|
||||
}
|
||||
},
|
||||
selection_box = {
|
||||
|
@ -123,29 +123,29 @@ minetest.register_node("farming:wheat", {
|
|||
},
|
||||
})
|
||||
|
||||
farming:add_plant("farming:wheat", {"farming:wheat_1", "farming:wheat_2", "farming:wheat_3"}, 50, 20)
|
||||
mcl_farming:add_plant("mcl_farming:wheat", {"mcl_farming:wheat_1", "mcl_farming:wheat_2", "mcl_farming:wheat_3"}, 50, 20)
|
||||
|
||||
minetest.register_craftitem("farming:wheat_harvested", {
|
||||
minetest.register_craftitem("mcl_farming:wheat_harvested", {
|
||||
description = "Wheat",
|
||||
inventory_image = "farming_wheat_harvested.png",
|
||||
groups = { craftitem = 1 },
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:bread",
|
||||
output = "mcl_farming:bread",
|
||||
recipe = {
|
||||
{'farming:wheat_harvested', 'farming:wheat_harvested', 'farming:wheat_harvested'},
|
||||
{'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "farming:cookie 8",
|
||||
output = "mcl_farming:cookie 8",
|
||||
recipe = {
|
||||
{'farming:wheat_harvested', 'mcl_dye:brown', 'farming:wheat_harvested'},
|
||||
{'mcl_farming:wheat_harvested', 'mcl_dye:brown', 'mcl_farming:wheat_harvested'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craftitem("farming:cookie", {
|
||||
minetest.register_craftitem("mcl_farming:cookie", {
|
||||
description = "Cookie",
|
||||
inventory_image = "farming_cookie.png",
|
||||
groups = {food=2, eatable=2},
|
||||
|
@ -153,7 +153,7 @@ minetest.register_craftitem("farming:cookie", {
|
|||
})
|
||||
|
||||
|
||||
minetest.register_craftitem("farming:bread", {
|
||||
minetest.register_craftitem("mcl_farming:bread", {
|
||||
description = "Bread",
|
||||
inventory_image = "farming_bread.png",
|
||||
groups = {food=2, eatable=5},
|
|
@ -208,7 +208,7 @@ minetest.register_node("mcl_flowers:fern", {
|
|||
max_items = 1,
|
||||
items = {
|
||||
{
|
||||
items = {'farming:wheat_seed'},
|
||||
items = {'mcl_farming:wheat_seed'},
|
||||
rarity = 24,
|
||||
},
|
||||
}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
default
|
||||
farming
|
||||
mcl_farming
|
||||
mcl_mobitems
|
||||
|
|
|
@ -9,7 +9,7 @@ minetest.register_craftitem("mcl_potions:fermented_spider_eye", {
|
|||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "mcl_potions:fermented_spider_eye",
|
||||
recipe = { "farming:mushroom_brown", "default:sugar", "mcl_mobitems:spider_eye" },
|
||||
recipe = { "mcl_farming:mushroom_brown", "default:sugar", "mcl_mobitems:spider_eye" },
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mcl_potions:glass_bottle", {
|
||||
|
@ -38,7 +38,7 @@ minetest.register_craft({
|
|||
output = "mcl_potions:speckled_melon",
|
||||
recipe = {
|
||||
{'default:gold_nugget', 'default:gold_nugget', 'default:gold_nugget'},
|
||||
{'default:gold_nugget', 'farming:melon_item', 'default:gold_nugget'},
|
||||
{'default:gold_nugget', 'mcl_farming:melon_item', 'default:gold_nugget'},
|
||||
{'default:gold_nugget', 'default:gold_nugget', 'default:gold_nugget'},
|
||||
}
|
||||
})
|
||||
|
|
|
@ -14,17 +14,19 @@ For further information or help see:
|
|||
http://wiki.minetest.com/wiki/Installing_Mods
|
||||
|
||||
How to use the mod:
|
||||
Craft a bow with the strings from the farming mod:
|
||||
wood string
|
||||
wood string
|
||||
wood string
|
||||
Craft a bow with strings:
|
||||
stick string
|
||||
stick string
|
||||
stick string
|
||||
|
||||
Craft arrows with:
|
||||
flint
|
||||
stick
|
||||
paper
|
||||
|
||||
Select the bow and shoot with left mouse click. Every shoot will take 1
|
||||
arrow from your inventory and wears out the bow (you have around 385
|
||||
shoots).
|
||||
shots).
|
||||
|
||||
License:
|
||||
This mod was originally published by Jeija.
|
||||
|
|