summaryrefslogtreecommitdiff
path: root/raspberry.lua
diff options
context:
space:
mode:
authortenplus1 <kinsellaja@yahoo.com>2014-11-09 19:06:28 +0000
committertenplus1 <kinsellaja@yahoo.com>2014-11-09 19:06:28 +0000
commitd95be676d7efa30fd02ae6b35efb6d84121d9f9a (patch)
tree712b214bb1b1443ce0c2f6bc779466faa46ea608 /raspberry.lua
Signed-off-by: tenplus1
Diffstat (limited to 'raspberry.lua')
-rw-r--r--raspberry.lua95
1 files changed, 95 insertions, 0 deletions
diff --git a/raspberry.lua b/raspberry.lua
new file mode 100644
index 0000000..48eea25
--- /dev/null
+++ b/raspberry.lua
@@ -0,0 +1,95 @@
+
+--= Raspberries
+
+minetest.register_craftitem("farming:raspberries", {
+ description = "Raspberries",
+ inventory_image = "farming_raspberries.png",
+ on_place = function(itemstack, placer, pointed_thing)
+ return farming.place_seed(itemstack, placer, pointed_thing, "farming:raspberry_1")
+ end,
+ on_use = minetest.item_eat(1),
+})
+
+-- Raspberry Smoothie
+
+minetest.register_craftitem("farming:smoothie_raspberry", {
+ description = "Raspberry Smoothie",
+ inventory_image = "farming_raspberry_smoothie.png",
+ on_use = minetest.item_eat(2, "vessels:drinking_glass"),
+})
+
+minetest.register_craft({
+ output = "farming:smoothie_raspberry",
+ recipe = {
+ {"default:snow"},
+ {"farming:raspberries"},
+ {"vessels:drinking_glass"},
+ }
+})
+
+-- Define Raspberry growth stages
+
+minetest.register_node("farming:raspberry_1", {
+ drawtype = "plantlike",
+ tiles = {"farming_raspberry_1.png"},
+ paramtype = "light",
+ sunlight_propagates = true,
+ waving = 1,
+ walkable = false,
+ buildable_to = true,
+ drop = "",
+ 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:raspberry_2", {
+ drawtype = "plantlike",
+ tiles = {"farming_raspberry_2.png"},
+ paramtype = "light",
+ sunlight_propagates = true,
+ waving = 1,
+ walkable = false,
+ buildable_to = true,
+ drop = "",
+ 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:raspberry_3", {
+ drawtype = "plantlike",
+ tiles = {"farming_raspberry_3.png"},
+ paramtype = "light",
+ sunlight_propagates = true,
+ waving = 1,
+ walkable = false,
+ buildable_to = true,
+ drop = "",
+ 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 Raspberry growth does not have growing=1 so abm never has to check these
+
+minetest.register_node("farming:raspberry_4", {
+ drawtype = "plantlike",
+ tiles = {"farming_raspberry_4.png"},
+ paramtype = "light",
+ sunlight_propagates = true,
+ waving = 1,
+ walkable = false,
+ buildable_to = true,
+ is_ground_content = true,
+ drop = {
+ items = {
+ {items = {'farming:raspberries 2'},rarity=1},
+ {items = {'farming:raspberries'},rarity=2},
+ {items = {'farming:raspberries'},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(),
+})