summaryrefslogtreecommitdiff
path: root/rhubarb.lua
diff options
context:
space:
mode:
Diffstat (limited to 'rhubarb.lua')
-rw-r--r--rhubarb.lua74
1 files changed, 25 insertions, 49 deletions
diff --git a/rhubarb.lua b/rhubarb.lua
index 1f1f404..c93b058 100644
--- a/rhubarb.lua
+++ b/rhubarb.lua
@@ -1,6 +1,5 @@
---= Rhubarb
-
+-- rhubarb
minetest.register_craftitem("farming:rhubarb", {
description = "Rhubarb",
inventory_image = "farming_rhubarb.png",
@@ -10,6 +9,7 @@ minetest.register_craftitem("farming:rhubarb", {
on_use = minetest.item_eat(1),
})
+-- rhubarb pie
minetest.register_craftitem("farming:rhubarb_pie", {
description = "Rhubarb Pie",
inventory_image = "farming_rhubarb_pie.png",
@@ -25,9 +25,8 @@ minetest.register_craft({
}
})
--- Define Rhubarb growth stages
-
-minetest.register_node("farming:rhubarb_1", {
+-- rhubarb definition
+local crop_def = {
drawtype = "plantlike",
tiles = {"farming_rhubarb_1.png"},
paramtype = "light",
@@ -40,47 +39,24 @@ minetest.register_node("farming:rhubarb_1", {
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
not_in_creative_inventory = 1, growing = 1
},
- sounds = default.node_sound_leaves_defaults(),
-})
-
-minetest.register_node("farming:rhubarb_2", {
- drawtype = "plantlike",
- tiles = {"farming_rhubarb_2.png"},
- paramtype = "light",
- sunlight_propagates = true,
- waving = 1,
- walkable = false,
- buildable_to = true,
- drop = "",
- selection_box = farming.select,
- groups = {
- snappy = 3, flammable = 2, plant = 1, attached_node = 1,
- not_in_creative_inventory = 1, growing = 1
- },
- sounds = default.node_sound_leaves_defaults(),
-})
-
--- Last stage of growth does not have growing group so abm never checks these
-
-minetest.register_node("farming:rhubarb_3", {
- drawtype = "plantlike",
- tiles = {"farming_rhubarb_3.png"},
- paramtype = "light",
- sunlight_propagates = true,
- waving = 1,
- walkable = false,
- buildable_to = true,
- drop = {
- items = {
- {items = {'farming:rhubarb 2'}, rarity = 1},
- {items = {'farming:rhubarb'}, rarity = 2},
- {items = {'farming:rhubarb'}, rarity = 3},
- }
- },
- selection_box = farming.select,
- groups = {
- snappy = 3, flammable = 2, plant = 1, attached_node = 1,
- not_in_creative_inventory = 1
- },
- sounds = default.node_sound_leaves_defaults(),
-}) \ No newline at end of file
+ sounds = default.node_sound_leaves_defaults()
+}
+
+-- stage 1
+minetest.register_node("farming:rhubarb_1", table.copy(crop_def))
+
+-- stage2
+crop_def.tiles = {"farming_rhubarb_2.png"}
+minetest.register_node("farming:rhubarb_2", table.copy(crop_def))
+
+-- stage 3 (final)
+crop_def.tiles = {"farming_rhubarb_3.png"}
+crop_def.groups.growing = 0
+crop_def.drop = {
+ items = {
+ {items = {'farming:rhubarb 2'}, rarity = 1},
+ {items = {'farming:rhubarb'}, rarity = 2},
+ {items = {'farming:rhubarb'}, rarity = 3},
+ }
+}
+minetest.register_node("farming:rhubarb_3", table.copy(crop_def))