1
0
ミラー元 https://codeberg.org/tenplus1/farming.git 前回の同期 2025-07-03 00:30:39 +02:00

add initial MineClone2 support (thx usrib)

このコミットが含まれているのは:
tenplus1
2023-08-31 07:53:19 +01:00
コミット df64f1117f
45個のファイルの変更256行の追加183行の削除

ファイルの表示

@ -5,7 +5,7 @@ local S = farming.translate
minetest.register_craftitem("farming:eggplant", {
description = S("Eggplant"),
inventory_image = "farming_eggplant.png",
groups = {seed = 2, food_eggplant = 1, flammable = 2},
groups = {compostability = 65, seed = 2, food_eggplant = 1, flammable = 2},
on_place = function(itemstack, placer, pointed_thing)
return farming.place_seed(itemstack, placer, pointed_thing, "farming:eggplant_1")
end,
@ -25,10 +25,10 @@ local def = {
waving = 1,
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