diff options
-rw-r--r-- | README.txt | 1 | ||||
-rw-r--r-- | beanpole.lua | 186 | ||||
-rw-r--r-- | init.lua | 5 | ||||
-rw-r--r-- | mapgen.lua | 1 | ||||
-rw-r--r-- | textures/farming_beanbush.png | bin | 0 -> 227 bytes | |||
-rw-r--r-- | textures/farming_beanpole.png | bin | 0 -> 323 bytes | |||
-rw-r--r-- | textures/farming_beanpole_1.png | bin | 0 -> 242 bytes | |||
-rw-r--r-- | textures/farming_beanpole_2.png | bin | 0 -> 264 bytes | |||
-rw-r--r-- | textures/farming_beanpole_3.png | bin | 0 -> 297 bytes | |||
-rw-r--r-- | textures/farming_beanpole_4.png | bin | 0 -> 355 bytes | |||
-rw-r--r-- | textures/farming_beanpole_5.png | bin | 0 -> 353 bytes | |||
-rw-r--r-- | textures/farming_beans.png | bin | 0 -> 193 bytes |
12 files changed, 191 insertions, 2 deletions
@@ -13,6 +13,7 @@ This mod works by adding your new plant to the {growing=1} group and numbering t 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.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 diff --git a/beanpole.lua b/beanpole.lua new file mode 100644 index 0000000..bd31aad --- /dev/null +++ b/beanpole.lua @@ -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(), +}) @@ -1,5 +1,5 @@ --[[ - Minetest Farming Redo Mod 1.12 (9th April 2015) + Minetest Farming Redo Mod 1.13 (19th April 2015) 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").."/blueberry.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").."/compatibility.lua") -- Farming Plus compatibility @@ -35,6 +35,7 @@ function farming.register_mgv6_decorations() register_plant("raspberry_4", 3, 10, "", -1) register_plant("rhubarb_3", 3, 15, "group:tree", 1) register_plant("blueberry_4", 3, 10, "", -1) + register_plant("beanbush", 18, 35, "", -1) end -- enable in mapgen v6 only diff --git a/textures/farming_beanbush.png b/textures/farming_beanbush.png Binary files differnew file mode 100644 index 0000000..637e716 --- /dev/null +++ b/textures/farming_beanbush.png diff --git a/textures/farming_beanpole.png b/textures/farming_beanpole.png Binary files differnew file mode 100644 index 0000000..ed07572 --- /dev/null +++ b/textures/farming_beanpole.png diff --git a/textures/farming_beanpole_1.png b/textures/farming_beanpole_1.png Binary files differnew file mode 100644 index 0000000..ef2bd5a --- /dev/null +++ b/textures/farming_beanpole_1.png diff --git a/textures/farming_beanpole_2.png b/textures/farming_beanpole_2.png Binary files differnew file mode 100644 index 0000000..34143e4 --- /dev/null +++ b/textures/farming_beanpole_2.png diff --git a/textures/farming_beanpole_3.png b/textures/farming_beanpole_3.png Binary files differnew file mode 100644 index 0000000..d693f17 --- /dev/null +++ b/textures/farming_beanpole_3.png diff --git a/textures/farming_beanpole_4.png b/textures/farming_beanpole_4.png Binary files differnew file mode 100644 index 0000000..c779b25 --- /dev/null +++ b/textures/farming_beanpole_4.png diff --git a/textures/farming_beanpole_5.png b/textures/farming_beanpole_5.png Binary files differnew file mode 100644 index 0000000..910f8a0 --- /dev/null +++ b/textures/farming_beanpole_5.png diff --git a/textures/farming_beans.png b/textures/farming_beans.png Binary files differnew file mode 100644 index 0000000..ad5cf85 --- /dev/null +++ b/textures/farming_beans.png |