93 lines
2.5 KiB
Lua
93 lines
2.5 KiB
Lua
|
|
--[[
|
|
Original textures from GeMinecraft
|
|
http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/wip-mods/1440575-1-2-5-generation-minecraft-beta-1-2-farming-and
|
|
]]
|
|
|
|
local S = farming.intllib
|
|
|
|
-- corn
|
|
minetest.register_craftitem("farming:seed_coal", {
|
|
description = S("Coal Seeds"),
|
|
inventory_image = "ef_coal_seeds.png",
|
|
groups = {food_corn = 1, flammable = 2},
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
return farming.place_seed(itemstack, placer, pointed_thing, "farming:coal_1")
|
|
end,
|
|
on_use = minetest.item_eat(3),
|
|
})
|
|
|
|
minetest.register_craftitem("farming:coal_essence", {
|
|
description = S("coal Essence"),
|
|
inventory_image = "ef_coal_essence.png",
|
|
groups = {food_corn = 1, flammable = 2},
|
|
})
|
|
|
|
-- corn on the cob (texture by TenPlus1)
|
|
minetest.register_craftitem("farming:corn_cob", {
|
|
description = S("Corn on the Cob"),
|
|
inventory_image = "farming_corn_cob.png",
|
|
groups = {food_corn_cooked = 1, flammable = 2},
|
|
on_use = minetest.item_eat(5),
|
|
})
|
|
|
|
-- corn definition
|
|
local crop_def = {
|
|
drawtype = "plantlike",
|
|
tiles = {"ef_coal_1.png"},
|
|
paramtype = "light",
|
|
sunlight_propagates = true,
|
|
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
|
|
crop_def.tiles = {"ef_coal.png"}
|
|
minetest.register_node("farming:coal_1", table.copy(crop_def))
|
|
|
|
crop_def.tiles = {"ef_coal_1.png"}
|
|
minetest.register_node("farming:coal_2", table.copy(crop_def))
|
|
|
|
-- stage 2
|
|
crop_def.tiles = {"ef_coal_3.png"}
|
|
crop_def.drop = {
|
|
items = {
|
|
{items = {'farming:coal'}, rarity = 1},
|
|
{items = {'farming:coal'}, rarity = 2},
|
|
{items = {'farming:coal'}, rarity = 3},
|
|
{items = {'farming:seed_coal'}, rarity = 1},
|
|
{items = {'farming:seed_coal'}, rarity = 3},
|
|
}
|
|
}
|
|
minetest.register_node("farming:coal_3", table.copy(crop_def))
|
|
|
|
-- stage 3
|
|
crop_def.tiles = {"ef_coal_3.png"}
|
|
crop_def.groups.growing = 0
|
|
crop_def.drop = {
|
|
items = {
|
|
{items = {'farming:coal 2'}, rarity = 1},
|
|
{items = {'farming:coal 2'}, rarity = 2},
|
|
{items = {'farming:coal 2'}, rarity = 2},
|
|
{items = {'farming:seed_coal'}, rarity = 1},
|
|
{items = {'farming:seed_coal'}, rarity = 3},
|
|
}
|
|
}
|
|
minetest.register_node("farming:coal_4", table.copy(crop_def))
|
|
|
|
-- add to registered_plants
|
|
farming.registered_plants["farming:coal"] = {
|
|
crop = "farming:coal",
|
|
seed = "farming:coal_seeds",
|
|
minlight = 13,
|
|
maxlight = 15,
|
|
steps = 8
|
|
}
|