various crop related things
This commit is contained in:
parent
abaca75e1e
commit
d68c0550f9
7 changed files with 33 additions and 13 deletions
|
|
@ -8,30 +8,31 @@
|
|||
function registerBetterEndItems(event) {
|
||||
event.create('betterend:bolux_mushroom_cooked')
|
||||
.food(food => {
|
||||
food.hunger(2)
|
||||
food.saturation(2.5)
|
||||
food.hunger(2)
|
||||
food.saturation(2.5)
|
||||
})
|
||||
event.create('betterend:cave_pumpkin_chunks')
|
||||
.food(food => {
|
||||
food.hunger(4)
|
||||
food.saturation(1)
|
||||
food.hunger(4)
|
||||
food.saturation(1)
|
||||
food.effect('minecraft:glowing', 10 * 20, 0, 1)
|
||||
})
|
||||
event.create('betterend:cave_pumpkin_pie_raw')
|
||||
event.create('betterend:cave_pumpkin_pie_dough')
|
||||
.food(food => {})
|
||||
.food(food => { })
|
||||
event.create('betterend:cave_pumpkin_pie')
|
||||
.food(food => {
|
||||
food.hunger(4)
|
||||
food.saturation(3)
|
||||
food.hunger(4)
|
||||
food.saturation(3)
|
||||
})
|
||||
event.create('betterend:chorus_mushroom_cooked')
|
||||
.food(food => {
|
||||
food.hunger(2)
|
||||
food.saturation(2.5)
|
||||
food.hunger(2)
|
||||
food.saturation(2.5)
|
||||
})
|
||||
event.create('betterend:shadow_berry_cooked')
|
||||
.food(food => {
|
||||
food.hunger(5)
|
||||
food.saturation(2)
|
||||
food.hunger(5)
|
||||
food.saturation(2)
|
||||
})
|
||||
}
|
||||
|
|
@ -645,6 +645,7 @@ global.MINECRAFT_DISABLED_ITEMS = [
|
|||
'minecraft:crimson_button',
|
||||
'minecraft:crimson_sign',
|
||||
'minecraft:crimson_hanging_sign',
|
||||
'minecraft:crimson_fungus',
|
||||
|
||||
// Варпед незер дерево
|
||||
'minecraft:warped_stem',
|
||||
|
|
@ -662,6 +663,7 @@ global.MINECRAFT_DISABLED_ITEMS = [
|
|||
'minecraft:warped_button',
|
||||
'minecraft:warped_sign',
|
||||
'minecraft:warped_hanging_sign',
|
||||
'minecraft:warped_fungus',
|
||||
|
||||
// Куча незер блоков
|
||||
'minecraft:netherrack',
|
||||
|
|
|
|||
|
|
@ -169,6 +169,7 @@ const registerTFGCrops = (event) => {
|
|||
.tagBlock('minecraft:mineable/axe')
|
||||
.tagBlock('minecraft:mineable/hoe')
|
||||
.mapColor('color_red')
|
||||
.lightLevel(0.85)
|
||||
.requiresTool(false)
|
||||
.fullBlock(false)
|
||||
.opaque(false)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue