Mods in den Spieleordner reingeschoben. So richtig tief.

This commit is contained in:
N-Nachtigal 2025-05-08 22:41:25 +02:00
parent b4b6c08f4f
commit f7bc25a670
1674 changed files with 56056 additions and 530 deletions

View file

@ -45,10 +45,11 @@ local carrot_def = {
-- MCL
food = 2,
eatable = 1,
compostability = 65
compostability = 65,
food_carrot = 1
},
_mcl_saturation = 3.6,
_mcl_blast_resistance = 0,
_mcl_blast_resistance = 0
}
if minetest.get_modpath('farming') then

View file

@ -46,7 +46,8 @@ local potato_def = {
food = 2,
eatable = 1,
compostability = 65,
smoker_cookable = 1
smoker_cookable = 1,
food_potato = 1
},
_mcl_saturation = 0.6
}

View file

@ -40,7 +40,8 @@ minetest.override_item('x_farming:soybean', {
-- X Farming
compost = 65,
-- MCL
compostability = 65
compostability = 65,
food_soy = 1
},
})
@ -50,7 +51,7 @@ minetest.register_craftitem('x_farming:bottle_soymilk', {
tiles = { 'x_farming_bottle_soymilk.png' },
inventory_image = 'x_farming_bottle_soymilk.png',
wield_image = 'x_farming_bottle_soymilk.png',
groups = { vessel = 1 },
groups = { vessel = 1 , food_milk = 1},
sounds = x_farming.node_sound_thin_glass_defaults(),
})
@ -67,11 +68,11 @@ minetest.register_craft({
type = 'shapeless',
output = 'x_farming:bottle_soymilk_raw',
recipe = {
'x_farming:soybean',
'x_farming:soybean',
'x_farming:soybean',
'x_farming:soybean',
'x_farming:soybean',
'group:food_soy',
'group:food_soy',
'group:food_soy',
'group:food_soy',
'group:food_soy',
'x_farming:bottle_water'
}
})

View file

@ -40,7 +40,8 @@ local strawberry_def = {
-- X Farming
compost = 30,
-- MCL
compostability = 30
compostability = 30,
food_strawberry = 1
},
short_description = S('Strawberry'),
}