Added Green Beans and beanpoles to grow them with
@ -13,6 +13,7 @@ This mod works by adding your new plant to the {growing=1} group and numbering t
|
|||||||
|
|
||||||
Changelog:
|
Changelog:
|
||||||
|
|
||||||
|
1.14 - Added Green Beans from Crops mod (thanks sofar), little bushels in the wild but need to be grown using beanpoles crafted with 4 sticks (2 either side)
|
||||||
1.13 - Fixed seed double-placement glitch. Mapgen now uses 0.4.12+ for plant generation
|
1.13 - Fixed seed double-placement glitch. Mapgen now uses 0.4.12+ for plant generation
|
||||||
1.12 - Player cannot place seeds in protected area, also growing speeds changed to match defaults
|
1.12 - Player cannot place seeds in protected area, also growing speeds changed to match defaults
|
||||||
1.11 - Added Straw Bale, streamlined growing abm a little, fixed melon rotation bug with screwdriver
|
1.11 - Added Straw Bale, streamlined growing abm a little, fixed melon rotation bug with screwdriver
|
||||||
|
186
beanpole.lua
Normal file
@ -0,0 +1,186 @@
|
|||||||
|
--[[
|
||||||
|
All textures by
|
||||||
|
(C) Auke Kok <sofar@foo-projects.org>
|
||||||
|
CC-BY-SA-3.0
|
||||||
|
--]]
|
||||||
|
|
||||||
|
minetest.register_craftitem("farming:beans", {
|
||||||
|
description = "Green Beans",
|
||||||
|
inventory_image = "farming_beans.png",
|
||||||
|
on_use = minetest.item_eat(1),
|
||||||
|
on_place = function(itemstack, placer, pointed_thing)
|
||||||
|
local nod = minetest.get_node_or_nil(pointed_thing.under)
|
||||||
|
if nod and nod.name == "farming:beanpole" then
|
||||||
|
minetest.set_node(pointed_thing.under, {name="farming:beanpole_1"})
|
||||||
|
else
|
||||||
|
return
|
||||||
|
end
|
||||||
|
if not minetest.setting_getbool("creative_mode") then
|
||||||
|
itemstack:take_item()
|
||||||
|
end
|
||||||
|
return itemstack
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
|
-- Beanpole
|
||||||
|
|
||||||
|
minetest.register_node("farming:beanpole", {
|
||||||
|
drawtype = "plantlike",
|
||||||
|
tiles = {"farming_beanpole.png"},
|
||||||
|
inventory_image = "farming_beanpole.png",
|
||||||
|
visual_scale = 1.45,
|
||||||
|
paramtype = "light",
|
||||||
|
walkable = false,
|
||||||
|
buildable_to = true,
|
||||||
|
sunlight_propagates = true,
|
||||||
|
drop = {
|
||||||
|
items = {
|
||||||
|
{items = {'farming:beanpole'},rarity=1},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
selection_box = {type = "fixed",fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},},
|
||||||
|
groups = {snappy=3,flammable=2,not_in_creative_inventory=1,attached_node=1},
|
||||||
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
on_place = function(itemstack, placer, pointed_thing)
|
||||||
|
local nod = minetest.get_node_or_nil(pointed_thing.under)
|
||||||
|
if nod and minetest.get_item_group(nod.name, "soil") < 2 then return end
|
||||||
|
local top = {x=pointed_thing.above.x, y=pointed_thing.above.y+1, z=pointed_thing.above.z}
|
||||||
|
nod = minetest.get_node_or_nil(top)
|
||||||
|
if nod and nod.name ~= "air" then return end
|
||||||
|
minetest.set_node(pointed_thing.above, {name="farming:beanpole"})
|
||||||
|
if not minetest.setting_getbool("creative_mode") then
|
||||||
|
itemstack:take_item()
|
||||||
|
end
|
||||||
|
return itemstack
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "farming:beanpole",
|
||||||
|
recipe = {
|
||||||
|
{'', '', ''},
|
||||||
|
{'default:stick', '', 'default:stick'},
|
||||||
|
{'default:stick', '', 'default:stick'},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
-- Define Corn growth stages
|
||||||
|
|
||||||
|
minetest.register_node("farming:beanpole_1", {
|
||||||
|
drawtype = "plantlike",
|
||||||
|
tiles = {"farming_beanpole_1.png"},
|
||||||
|
visual_scale = 1.45,
|
||||||
|
paramtype = "light",
|
||||||
|
walkable = false,
|
||||||
|
buildable_to = true,
|
||||||
|
sunlight_propagates = true,
|
||||||
|
drop = {
|
||||||
|
items = {
|
||||||
|
{items = {'farming:beanpole'},rarity=1},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
selection_box = {type = "fixed",fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},},
|
||||||
|
groups = {snappy=3,flammable=3,not_in_creative_inventory=1,attached_node=1,growing=1},
|
||||||
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("farming:beanpole_2", {
|
||||||
|
drawtype = "plantlike",
|
||||||
|
tiles = {"farming_beanpole_2.png"},
|
||||||
|
visual_scale = 1.45,
|
||||||
|
paramtype = "light",
|
||||||
|
walkable = false,
|
||||||
|
buildable_to = true,
|
||||||
|
sunlight_propagates = true,
|
||||||
|
drop = {
|
||||||
|
items = {
|
||||||
|
{items = {'farming:beanpole'},rarity=1},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
selection_box = {type = "fixed",fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},},
|
||||||
|
groups = {snappy=3,flammable=2,plant=1,not_in_creative_inventory=1,attached_node=1,growing=1},
|
||||||
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("farming:beanpole_3", {
|
||||||
|
drawtype = "plantlike",
|
||||||
|
tiles = {"farming_beanpole_3.png"},
|
||||||
|
visual_scale = 1.45,
|
||||||
|
paramtype = "light",
|
||||||
|
walkable = false,
|
||||||
|
buildable_to = true,
|
||||||
|
sunlight_propagates = true,
|
||||||
|
drop = {
|
||||||
|
items = {
|
||||||
|
{items = {'farming:beanpole'},rarity=1},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
selection_box = {type = "fixed",fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},},
|
||||||
|
groups = {snappy=3,flammable=2,plant=1,not_in_creative_inventory=1,attached_node=1,growing=1},
|
||||||
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
minetest.register_node("farming:beanpole_4", {
|
||||||
|
drawtype = "plantlike",
|
||||||
|
tiles = {"farming_beanpole_4.png"},
|
||||||
|
visual_scale = 1.45,
|
||||||
|
paramtype = "light",
|
||||||
|
walkable = false,
|
||||||
|
buildable_to = true,
|
||||||
|
sunlight_propagates = true,
|
||||||
|
drop = {
|
||||||
|
items = {
|
||||||
|
{items = {'farming:beanpole'},rarity=1},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
selection_box = {type = "fixed",fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},},
|
||||||
|
groups = {snappy=3,flammable=2,plant=1,not_in_creative_inventory=1,attached_node=1,growing=1},
|
||||||
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
-- Last stage of Corn growth doesnnot have growing=1 so abm never has to check these
|
||||||
|
|
||||||
|
minetest.register_node("farming:beanpole_5", {
|
||||||
|
drawtype = "plantlike",
|
||||||
|
tiles = {"farming_beanpole_5.png"},
|
||||||
|
visual_scale = 1.45,
|
||||||
|
paramtype = "light",
|
||||||
|
waving = 1,
|
||||||
|
walkable = false,
|
||||||
|
buildable_to = true,
|
||||||
|
sunlight_propagates = true,
|
||||||
|
drop = {
|
||||||
|
items = {
|
||||||
|
{items = {'farming:beanpole'},rarity=1},
|
||||||
|
{items = {'farming:beans 3'},rarity=1},
|
||||||
|
{items = {'farming:beans 2'},rarity=2},
|
||||||
|
{items = {'farming:beans 2'},rarity=3},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
selection_box = {type = "fixed",fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},},
|
||||||
|
groups = {snappy=3,flammable=2,plant=1,not_in_creative_inventory=1,attached_node=1},
|
||||||
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
-- Wild Green Bean Bush (this is what you find on the map)
|
||||||
|
|
||||||
|
minetest.register_node("farming:beanbush", {
|
||||||
|
drawtype = "plantlike",
|
||||||
|
tiles = {"farming_beanbush.png"},
|
||||||
|
paramtype = "light",
|
||||||
|
waving = 1,
|
||||||
|
walkable = false,
|
||||||
|
buildable_to = true,
|
||||||
|
sunlight_propagates = true,
|
||||||
|
drop = {
|
||||||
|
items = {
|
||||||
|
{items = {'farming:beans 1'},rarity=1},
|
||||||
|
{items = {'farming:beans 1'},rarity=2},
|
||||||
|
{items = {'farming:beans 1'},rarity=3},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
selection_box = {type = "fixed",fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},},
|
||||||
|
groups = {snappy=3,flammable=2,plant=1,not_in_creative_inventory=1,attached_node=1},
|
||||||
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
})
|
5
init.lua
@ -1,5 +1,5 @@
|
|||||||
--[[
|
--[[
|
||||||
Minetest Farming Redo Mod 1.12 (9th April 2015)
|
Minetest Farming Redo Mod 1.13 (19th April 2015)
|
||||||
by TenPlus1
|
by TenPlus1
|
||||||
]]
|
]]
|
||||||
|
|
||||||
@ -25,7 +25,8 @@ dofile(minetest.get_modpath("farming").."/cocoa.lua")
|
|||||||
dofile(minetest.get_modpath("farming").."/raspberry.lua")
|
dofile(minetest.get_modpath("farming").."/raspberry.lua")
|
||||||
dofile(minetest.get_modpath("farming").."/blueberry.lua")
|
dofile(minetest.get_modpath("farming").."/blueberry.lua")
|
||||||
dofile(minetest.get_modpath("farming").."/rhubarb.lua")
|
dofile(minetest.get_modpath("farming").."/rhubarb.lua")
|
||||||
dofile(minetest.get_modpath("farming").."/donut.lua") -- sweet treat
|
dofile(minetest.get_modpath("farming").."/beanpole.lua")
|
||||||
|
dofile(minetest.get_modpath("farming").."/donut.lua")
|
||||||
dofile(minetest.get_modpath("farming").."/mapgen.lua")
|
dofile(minetest.get_modpath("farming").."/mapgen.lua")
|
||||||
dofile(minetest.get_modpath("farming").."/compatibility.lua") -- Farming Plus compatibility
|
dofile(minetest.get_modpath("farming").."/compatibility.lua") -- Farming Plus compatibility
|
||||||
|
|
||||||
|
@ -35,6 +35,7 @@ function farming.register_mgv6_decorations()
|
|||||||
register_plant("raspberry_4", 3, 10, "", -1)
|
register_plant("raspberry_4", 3, 10, "", -1)
|
||||||
register_plant("rhubarb_3", 3, 15, "group:tree", 1)
|
register_plant("rhubarb_3", 3, 15, "group:tree", 1)
|
||||||
register_plant("blueberry_4", 3, 10, "", -1)
|
register_plant("blueberry_4", 3, 10, "", -1)
|
||||||
|
register_plant("beanbush", 18, 35, "", -1)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- enable in mapgen v6 only
|
-- enable in mapgen v6 only
|
||||||
|
BIN
textures/farming_beanbush.png
Normal file
After Width: | Height: | Size: 227 B |
BIN
textures/farming_beanpole.png
Normal file
After Width: | Height: | Size: 323 B |
BIN
textures/farming_beanpole_1.png
Normal file
After Width: | Height: | Size: 242 B |
BIN
textures/farming_beanpole_2.png
Normal file
After Width: | Height: | Size: 264 B |
BIN
textures/farming_beanpole_3.png
Normal file
After Width: | Height: | Size: 297 B |
BIN
textures/farming_beanpole_4.png
Normal file
After Width: | Height: | Size: 355 B |
BIN
textures/farming_beanpole_5.png
Normal file
After Width: | Height: | Size: 353 B |
BIN
textures/farming_beans.png
Normal file
After Width: | Height: | Size: 193 B |