upgrade beds,boats,bucket,carts,creative,doors,farming,fire,stairs,tnt,wool
* beds https://codeberg.org/minenux/minetest-mod-beds/commit/7b6fae96d5e273dad9a373e63eb958145c9bfbef
* boats https://codeberg.org/minenux/minetest-mod-boats/commit/3832de08f705d5d2e7b5a971760e5fad1653305f
* bucket https://codeberg.org/minenux/minetest-mod-bucket/commit/1d9f32295aba3ef2a86be302050f34c1766e93d5
* carts https://codeberg.org/minenux/minetest-mod-carts/commit/dcbca916cffdcec281f0129ef350db2686bda933
* creative https://codeberg.org/minenux/minetest-mod-creative/commit/ca09e773701f834fec7de18bf13598b3323778db
* doors https://codeberg.org/minenux/minetest-mod-doors/commit/a89ab0454deb4933b6e4971c57055c40b7938e5b
* farming https://codeberg.org/minenux/minetest-mod-farming/commit/10de84d12d24a87f3aa9abef73f87c6cebb2614c
* fire https://codeberg.org/minenux/minetest-mod-fire/commit/4e5f7ad55314bd9b126fb133cfc5a32fa58b20d2
* stairs https://codeberg.org/minenux/minetest-mod-stairs/commit/c3a5af6c452daca599d226df694df1b75f15c110
* tnt https://codeberg.org/minenux/minetest-mod-tnt/commit/8195861f905a90b53cd52348deb34df41a053027
* wool https://codeberg.org/minenux/minetest-mod-wool/commit/de642a08e80bfd7a4a1e5629e50458a609dbda3a
2022-03-01 23:26:11 -04:00
|
|
|
local S = farming.intllib
|
|
|
|
|
|
|
|
-- sunflower
|
|
|
|
minetest.register_craftitem("farming:sunflower", {
|
|
|
|
description = S("Sunflower"),
|
|
|
|
inventory_image = "farming_sunflower.png",
|
|
|
|
groups = {flammable = 2}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- sunflower seeds
|
2023-06-06 11:28:47 -04:00
|
|
|
minetest.register_node("farming:seed_sunflower", {
|
upgrade beds,boats,bucket,carts,creative,doors,farming,fire,stairs,tnt,wool
* beds https://codeberg.org/minenux/minetest-mod-beds/commit/7b6fae96d5e273dad9a373e63eb958145c9bfbef
* boats https://codeberg.org/minenux/minetest-mod-boats/commit/3832de08f705d5d2e7b5a971760e5fad1653305f
* bucket https://codeberg.org/minenux/minetest-mod-bucket/commit/1d9f32295aba3ef2a86be302050f34c1766e93d5
* carts https://codeberg.org/minenux/minetest-mod-carts/commit/dcbca916cffdcec281f0129ef350db2686bda933
* creative https://codeberg.org/minenux/minetest-mod-creative/commit/ca09e773701f834fec7de18bf13598b3323778db
* doors https://codeberg.org/minenux/minetest-mod-doors/commit/a89ab0454deb4933b6e4971c57055c40b7938e5b
* farming https://codeberg.org/minenux/minetest-mod-farming/commit/10de84d12d24a87f3aa9abef73f87c6cebb2614c
* fire https://codeberg.org/minenux/minetest-mod-fire/commit/4e5f7ad55314bd9b126fb133cfc5a32fa58b20d2
* stairs https://codeberg.org/minenux/minetest-mod-stairs/commit/c3a5af6c452daca599d226df694df1b75f15c110
* tnt https://codeberg.org/minenux/minetest-mod-tnt/commit/8195861f905a90b53cd52348deb34df41a053027
* wool https://codeberg.org/minenux/minetest-mod-wool/commit/de642a08e80bfd7a4a1e5629e50458a609dbda3a
2022-03-01 23:26:11 -04:00
|
|
|
description = S("Sunflower Seeds"),
|
2023-06-06 11:28:47 -04:00
|
|
|
tiles = {"farming_sunflower_seeds.png"},
|
upgrade beds,boats,bucket,carts,creative,doors,farming,fire,stairs,tnt,wool
* beds https://codeberg.org/minenux/minetest-mod-beds/commit/7b6fae96d5e273dad9a373e63eb958145c9bfbef
* boats https://codeberg.org/minenux/minetest-mod-boats/commit/3832de08f705d5d2e7b5a971760e5fad1653305f
* bucket https://codeberg.org/minenux/minetest-mod-bucket/commit/1d9f32295aba3ef2a86be302050f34c1766e93d5
* carts https://codeberg.org/minenux/minetest-mod-carts/commit/dcbca916cffdcec281f0129ef350db2686bda933
* creative https://codeberg.org/minenux/minetest-mod-creative/commit/ca09e773701f834fec7de18bf13598b3323778db
* doors https://codeberg.org/minenux/minetest-mod-doors/commit/a89ab0454deb4933b6e4971c57055c40b7938e5b
* farming https://codeberg.org/minenux/minetest-mod-farming/commit/10de84d12d24a87f3aa9abef73f87c6cebb2614c
* fire https://codeberg.org/minenux/minetest-mod-fire/commit/4e5f7ad55314bd9b126fb133cfc5a32fa58b20d2
* stairs https://codeberg.org/minenux/minetest-mod-stairs/commit/c3a5af6c452daca599d226df694df1b75f15c110
* tnt https://codeberg.org/minenux/minetest-mod-tnt/commit/8195861f905a90b53cd52348deb34df41a053027
* wool https://codeberg.org/minenux/minetest-mod-wool/commit/de642a08e80bfd7a4a1e5629e50458a609dbda3a
2022-03-01 23:26:11 -04:00
|
|
|
inventory_image = "farming_sunflower_seeds.png",
|
2023-06-06 11:28:47 -04:00
|
|
|
wield_image = "farming_sunflower_seeds.png",
|
|
|
|
drawtype = "signlike",
|
|
|
|
groups = {seed = 1, snappy = 3, attached_node = 1, growing = 1,
|
|
|
|
food_sunflower_seeds = 1, flammable = 2},
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "wallmounted",
|
|
|
|
walkable = false,
|
|
|
|
sunlight_propagates = true,
|
|
|
|
selection_box = farming.select,
|
|
|
|
next_plant = "farming:sunflower_1",
|
upgrade beds,boats,bucket,carts,creative,doors,farming,fire,stairs,tnt,wool
* beds https://codeberg.org/minenux/minetest-mod-beds/commit/7b6fae96d5e273dad9a373e63eb958145c9bfbef
* boats https://codeberg.org/minenux/minetest-mod-boats/commit/3832de08f705d5d2e7b5a971760e5fad1653305f
* bucket https://codeberg.org/minenux/minetest-mod-bucket/commit/1d9f32295aba3ef2a86be302050f34c1766e93d5
* carts https://codeberg.org/minenux/minetest-mod-carts/commit/dcbca916cffdcec281f0129ef350db2686bda933
* creative https://codeberg.org/minenux/minetest-mod-creative/commit/ca09e773701f834fec7de18bf13598b3323778db
* doors https://codeberg.org/minenux/minetest-mod-doors/commit/a89ab0454deb4933b6e4971c57055c40b7938e5b
* farming https://codeberg.org/minenux/minetest-mod-farming/commit/10de84d12d24a87f3aa9abef73f87c6cebb2614c
* fire https://codeberg.org/minenux/minetest-mod-fire/commit/4e5f7ad55314bd9b126fb133cfc5a32fa58b20d2
* stairs https://codeberg.org/minenux/minetest-mod-stairs/commit/c3a5af6c452daca599d226df694df1b75f15c110
* tnt https://codeberg.org/minenux/minetest-mod-tnt/commit/8195861f905a90b53cd52348deb34df41a053027
* wool https://codeberg.org/minenux/minetest-mod-wool/commit/de642a08e80bfd7a4a1e5629e50458a609dbda3a
2022-03-01 23:26:11 -04:00
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
2023-06-06 11:28:47 -04:00
|
|
|
return farming.place_seed(itemstack, placer, pointed_thing, "farming:seed_sunflower")
|
upgrade beds,boats,bucket,carts,creative,doors,farming,fire,stairs,tnt,wool
* beds https://codeberg.org/minenux/minetest-mod-beds/commit/7b6fae96d5e273dad9a373e63eb958145c9bfbef
* boats https://codeberg.org/minenux/minetest-mod-boats/commit/3832de08f705d5d2e7b5a971760e5fad1653305f
* bucket https://codeberg.org/minenux/minetest-mod-bucket/commit/1d9f32295aba3ef2a86be302050f34c1766e93d5
* carts https://codeberg.org/minenux/minetest-mod-carts/commit/dcbca916cffdcec281f0129ef350db2686bda933
* creative https://codeberg.org/minenux/minetest-mod-creative/commit/ca09e773701f834fec7de18bf13598b3323778db
* doors https://codeberg.org/minenux/minetest-mod-doors/commit/a89ab0454deb4933b6e4971c57055c40b7938e5b
* farming https://codeberg.org/minenux/minetest-mod-farming/commit/10de84d12d24a87f3aa9abef73f87c6cebb2614c
* fire https://codeberg.org/minenux/minetest-mod-fire/commit/4e5f7ad55314bd9b126fb133cfc5a32fa58b20d2
* stairs https://codeberg.org/minenux/minetest-mod-stairs/commit/c3a5af6c452daca599d226df694df1b75f15c110
* tnt https://codeberg.org/minenux/minetest-mod-tnt/commit/8195861f905a90b53cd52348deb34df41a053027
* wool https://codeberg.org/minenux/minetest-mod-wool/commit/de642a08e80bfd7a4a1e5629e50458a609dbda3a
2022-03-01 23:26:11 -04:00
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_alias("farming:sunflower_seeds", "farming:seed_sunflower")
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "farming:seed_sunflower 5",
|
|
|
|
recipe = {{"farming:sunflower"}}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- sunflower seeds (toasted)
|
|
|
|
minetest.register_craftitem("farming:sunflower_seeds_toasted", {
|
|
|
|
description = S("Toasted Sunflower Seeds"),
|
|
|
|
inventory_image = "farming_sunflower_seeds_toasted.png",
|
|
|
|
groups = {food_sunflower_seeds_toasted = 1, flammable = 2},
|
|
|
|
on_use = minetest.item_eat(1)
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
cooktime = 10,
|
|
|
|
output = "farming:sunflower_seeds_toasted",
|
|
|
|
recipe = "farming:seed_sunflower"
|
|
|
|
})
|
|
|
|
|
|
|
|
-- sunflower oil
|
|
|
|
minetest.register_node("farming:sunflower_oil", {
|
|
|
|
description = S("Bottle of Sunflower Oil"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"farming_sunflower_oil.png"},
|
|
|
|
inventory_image = "farming_sunflower_oil.png",
|
|
|
|
wield_image = "farming_sunflower_oil.png",
|
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = false,
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
|
|
|
|
},
|
|
|
|
groups = {
|
|
|
|
food_oil = 1, vessel = 1, dig_immediate = 3, attached_node = 1,
|
|
|
|
flammable = 2
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_glass_defaults()
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "farming:sunflower_oil",
|
|
|
|
recipe = {
|
|
|
|
{"group:food_sunflower_seeds", "group:food_sunflower_seeds", "group:food_sunflower_seeds"},
|
|
|
|
{"group:food_sunflower_seeds", "group:food_sunflower_seeds", "group:food_sunflower_seeds"},
|
|
|
|
{"group:food_sunflower_seeds", "vessels:glass_bottle", "group:food_sunflower_seeds"}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "farming:sunflower_oil",
|
|
|
|
burntime = 30,
|
|
|
|
replacements = {{"farming:sunflower_oil", "vessels:glass_bottle"}}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- sunflower seed bread
|
|
|
|
minetest.register_craftitem("farming:sunflower_bread", {
|
|
|
|
description = S("Sunflower Seed Bread"),
|
|
|
|
inventory_image = "farming_sunflower_bread.png",
|
|
|
|
on_use = minetest.item_eat(8),
|
|
|
|
groups = {food_bread = 1, flammable = 2}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "farming:sunflower_bread",
|
|
|
|
recipe = {{"group:food_sunflower_seeds_toasted", "group:food_bread", "group:food_sunflower_seeds_toasted"}}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- sunflower definition
|
|
|
|
local def = {
|
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"farming_sunflower_1.png"},
|
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
drop = "",
|
2023-06-06 11:28:47 -04:00
|
|
|
waving = 1,
|
upgrade beds,boats,bucket,carts,creative,doors,farming,fire,stairs,tnt,wool
* beds https://codeberg.org/minenux/minetest-mod-beds/commit/7b6fae96d5e273dad9a373e63eb958145c9bfbef
* boats https://codeberg.org/minenux/minetest-mod-boats/commit/3832de08f705d5d2e7b5a971760e5fad1653305f
* bucket https://codeberg.org/minenux/minetest-mod-bucket/commit/1d9f32295aba3ef2a86be302050f34c1766e93d5
* carts https://codeberg.org/minenux/minetest-mod-carts/commit/dcbca916cffdcec281f0129ef350db2686bda933
* creative https://codeberg.org/minenux/minetest-mod-creative/commit/ca09e773701f834fec7de18bf13598b3323778db
* doors https://codeberg.org/minenux/minetest-mod-doors/commit/a89ab0454deb4933b6e4971c57055c40b7938e5b
* farming https://codeberg.org/minenux/minetest-mod-farming/commit/10de84d12d24a87f3aa9abef73f87c6cebb2614c
* fire https://codeberg.org/minenux/minetest-mod-fire/commit/4e5f7ad55314bd9b126fb133cfc5a32fa58b20d2
* stairs https://codeberg.org/minenux/minetest-mod-stairs/commit/c3a5af6c452daca599d226df694df1b75f15c110
* tnt https://codeberg.org/minenux/minetest-mod-tnt/commit/8195861f905a90b53cd52348deb34df41a053027
* wool https://codeberg.org/minenux/minetest-mod-wool/commit/de642a08e80bfd7a4a1e5629e50458a609dbda3a
2022-03-01 23:26:11 -04:00
|
|
|
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:sunflower_1", table.copy(def))
|
|
|
|
|
|
|
|
-- stage 2
|
|
|
|
def.tiles = {"farming_sunflower_2.png"}
|
|
|
|
minetest.register_node("farming:sunflower_2", table.copy(def))
|
|
|
|
|
|
|
|
-- stage 3
|
|
|
|
def.tiles = {"farming_sunflower_3.png"}
|
|
|
|
minetest.register_node("farming:sunflower_3", table.copy(def))
|
|
|
|
|
|
|
|
-- stage 4
|
|
|
|
def.tiles = {"farming_sunflower_4.png"}
|
|
|
|
minetest.register_node("farming:sunflower_4", table.copy(def))
|
|
|
|
|
|
|
|
-- stage 5
|
|
|
|
def.tiles = {"farming_sunflower_5.png"}
|
|
|
|
minetest.register_node("farming:sunflower_5", table.copy(def))
|
|
|
|
|
|
|
|
-- stage 6
|
|
|
|
def.tiles = {"farming_sunflower_6.png"}
|
|
|
|
def.visual_scale = 1.9
|
|
|
|
minetest.register_node("farming:sunflower_6", table.copy(def))
|
|
|
|
|
|
|
|
-- stage 7
|
|
|
|
def.tiles = {"farming_sunflower_7.png"}
|
|
|
|
minetest.register_node("farming:sunflower_7", table.copy(def))
|
|
|
|
|
|
|
|
-- stage 8 (final)
|
|
|
|
def.tiles = {"farming_sunflower_8.png"}
|
|
|
|
def.groups.growing = nil
|
2023-06-06 11:28:47 -04:00
|
|
|
def.selection_box = farming.select_final
|
upgrade beds,boats,bucket,carts,creative,doors,farming,fire,stairs,tnt,wool
* beds https://codeberg.org/minenux/minetest-mod-beds/commit/7b6fae96d5e273dad9a373e63eb958145c9bfbef
* boats https://codeberg.org/minenux/minetest-mod-boats/commit/3832de08f705d5d2e7b5a971760e5fad1653305f
* bucket https://codeberg.org/minenux/minetest-mod-bucket/commit/1d9f32295aba3ef2a86be302050f34c1766e93d5
* carts https://codeberg.org/minenux/minetest-mod-carts/commit/dcbca916cffdcec281f0129ef350db2686bda933
* creative https://codeberg.org/minenux/minetest-mod-creative/commit/ca09e773701f834fec7de18bf13598b3323778db
* doors https://codeberg.org/minenux/minetest-mod-doors/commit/a89ab0454deb4933b6e4971c57055c40b7938e5b
* farming https://codeberg.org/minenux/minetest-mod-farming/commit/10de84d12d24a87f3aa9abef73f87c6cebb2614c
* fire https://codeberg.org/minenux/minetest-mod-fire/commit/4e5f7ad55314bd9b126fb133cfc5a32fa58b20d2
* stairs https://codeberg.org/minenux/minetest-mod-stairs/commit/c3a5af6c452daca599d226df694df1b75f15c110
* tnt https://codeberg.org/minenux/minetest-mod-tnt/commit/8195861f905a90b53cd52348deb34df41a053027
* wool https://codeberg.org/minenux/minetest-mod-wool/commit/de642a08e80bfd7a4a1e5629e50458a609dbda3a
2022-03-01 23:26:11 -04:00
|
|
|
def.drop = {
|
|
|
|
items = {
|
|
|
|
{items = {"farming:sunflower"}, rarity = 1},
|
|
|
|
{items = {"farming:sunflower"}, rarity = 6}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
minetest.register_node("farming:sunflower_8", table.copy(def))
|
|
|
|
|
|
|
|
-- add to registered_plants
|
|
|
|
farming.registered_plants["farming:sunflower"] = {
|
|
|
|
crop = "farming:sunflower",
|
|
|
|
seed = "farming:seed_sunflower",
|
|
|
|
minlight = 14,
|
|
|
|
maxlight = farming.max_light,
|
|
|
|
steps = 8
|
|
|
|
}
|
2023-06-06 11:28:47 -04:00
|
|
|
|
|
|
|
-- mapgen
|
|
|
|
minetest.register_decoration({
|
|
|
|
deco_type = "simple",
|
|
|
|
place_on = {"default:dirt_with_grass"},
|
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = 0,
|
|
|
|
scale = farming.sunflower,
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
|
|
|
seed = 254,
|
|
|
|
octaves = 3,
|
|
|
|
persist = 0.6
|
|
|
|
},
|
|
|
|
y_min = 10,
|
|
|
|
y_max = 40,
|
|
|
|
decoration = "farming:sunflower_8"
|
|
|
|
})
|