1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2025-06-29 23:01:00 +02:00

add initial MineClone2 support (thx usrib)

This commit is contained in:
tenplus1
2023-08-31 07:53:19 +01:00
parent 581a1bbaef
commit df64f1117f
45 changed files with 256 additions and 183 deletions

View File

@ -5,8 +5,10 @@ local S = farming.translate
minetest.register_craftitem("farming:blueberries", {
description = S("Wild Blueberries"),
inventory_image = "farming_blueberries.png",
groups = {seed = 2, food_blueberries = 1, food_blueberry = 1,
food_berry = 1, flammable = 2},
groups = {
compostability = 65,seed = 2, food_blueberries = 1, food_blueberry = 1,
food_berry = 1, flammable = 2
},
on_place = function(itemstack, placer, pointed_thing)
return farming.place_seed(itemstack, placer, pointed_thing, "farming:blueberry_1")
end,
@ -47,7 +49,7 @@ minetest.register_craft({
-- Blue Dye
minetest.register_craft({
output = "dye:blue",
output = farming.mcl and "mcl_dye:blue" or "dye:blue",
recipe = {{"farming:blueberries"}}
})
@ -62,10 +64,10 @@ local def = {
drop = "",
selection_box = farming.select,
groups = {
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
handy = 1, snappy = 3, flammable = 2, plant = 1, attached_node = 1,
not_in_creative_inventory = 1, growing = 1
},
sounds = default.node_sound_leaves_defaults()
sounds = farming.sounds.node_sound_leaves_defaults()
}
-- stage 1