forked from thunderdog1138/star_wars
Update 'mods/farming/crops/groundapple.lua'
This commit is contained in:
parent
6a2b1acfd5
commit
0ffd0a4ac6
|
@ -1,69 +0,0 @@
|
|||
|
||||
local S = farming.intllib
|
||||
|
||||
-- cabbage
|
||||
minetest.register_craftitem("farming:cabbage", {
|
||||
description = S("Cabbage"),
|
||||
inventory_image = "farming_cabbage.png",
|
||||
groups = {seed = 2, food_cabbage = 1, flammable = 2},
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
return farming.place_seed(itemstack, placer, pointed_thing, "farming:cabbage_1")
|
||||
end,
|
||||
on_use = minetest.item_eat(1)
|
||||
})
|
||||
|
||||
local def = {
|
||||
drawtype = "plantlike",
|
||||
tiles = {"farming_cabbage_1.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()
|
||||
}
|
||||
|
||||
-- stage 1
|
||||
minetest.register_node("farming:cabbage_1", table.copy(def))
|
||||
|
||||
-- stage 2
|
||||
def.tiles = {"farming_cabbage_2.png"}
|
||||
minetest.register_node("farming:cabbage_2", table.copy(def))
|
||||
|
||||
-- stage 3
|
||||
def.tiles = {"farming_cabbage_3.png"}
|
||||
minetest.register_node("farming:cabbage_3", table.copy(def))
|
||||
|
||||
-- stage 4
|
||||
def.tiles = {"farming_cabbage_4.png"}
|
||||
minetest.register_node("farming:cabbage_4", table.copy(def))
|
||||
|
||||
-- stage 5
|
||||
def.tiles = {"farming_cabbage_5.png"}
|
||||
minetest.register_node("farming:cabbage_5", table.copy(def))
|
||||
|
||||
-- stage 6
|
||||
def.tiles = {"farming_cabbage_6.png"}
|
||||
def.groups.growing = nil
|
||||
def.drop = {
|
||||
max_items = 2, items = {
|
||||
{items = {"farming:cabbage"}, rarity = 1},
|
||||
{items = {"farming:cabbage"}, rarity = 5}
|
||||
}
|
||||
}
|
||||
minetest.register_node("farming:cabbage_6", table.copy(def))
|
||||
|
||||
-- add to registered_plants
|
||||
farming.registered_plants["farming:cabbage"] = {
|
||||
crop = "farming:cabbage",
|
||||
seed = "farming:cabbage",
|
||||
minlight = 13,
|
||||
maxlight = 15,
|
||||
steps = 6
|
||||
}
|
|
@ -0,0 +1,69 @@
|
|||
|
||||
local S = farming.intllib
|
||||
|
||||
-- groundapple
|
||||
minetest.register_craftitem("farming:groundapple", {
|
||||
description = S("Groundapple"),
|
||||
inventory_image = "farming_groundapple.png",
|
||||
groups = {seed = 2, food_groundapple = 1, flammable = 2},
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
return farming.place_seed(itemstack, placer, pointed_thing, "farming:groundapple_1")
|
||||
end,
|
||||
on_use = minetest.item_eat(1)
|
||||
})
|
||||
|
||||
local def = {
|
||||
drawtype = "plantlike",
|
||||
tiles = {"farming_groundapple_1.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()
|
||||
}
|
||||
|
||||
-- stage 1
|
||||
minetest.register_node("farming:groundapple_1", table.copy(def))
|
||||
|
||||
-- stage 2
|
||||
def.tiles = {"farming_groundapple_2.png"}
|
||||
minetest.register_node("farming:groundapple_2", table.copy(def))
|
||||
|
||||
-- stage 3
|
||||
def.tiles = {"farming_groundapple_3.png"}
|
||||
minetest.register_node("farming:groundapple_3", table.copy(def))
|
||||
|
||||
-- stage 4
|
||||
def.tiles = {"farming_groundapple_4.png"}
|
||||
minetest.register_node("farming:groundapple_4", table.copy(def))
|
||||
|
||||
-- stage 5
|
||||
def.tiles = {"farming_groundapple_5.png"}
|
||||
minetest.register_node("farming:groundapple_5", table.copy(def))
|
||||
|
||||
-- stage 6
|
||||
def.tiles = {"farming_groundapple_6.png"}
|
||||
def.groups.growing = nil
|
||||
def.drop = {
|
||||
max_items = 2, items = {
|
||||
{items = {"farming:groundapple"}, rarity = 1},
|
||||
{items = {"farming:groundapple"}, rarity = 5}
|
||||
}
|
||||
}
|
||||
minetest.register_node("farming:groundapple_6", table.copy(def))
|
||||
|
||||
-- add to registered_plants
|
||||
farming.registered_plants["farming:groundapple"] = {
|
||||
crop = "farming:groundapple",
|
||||
seed = "farming:groundapple",
|
||||
minlight = 13,
|
||||
maxlight = 15,
|
||||
steps = 6
|
||||
}
|
Loading…
Reference in New Issue