Merge branch 'dev' of https://github.com/TerraFirmaGreg-Team/Modpack-Modern into dev
This commit is contained in:
commit
3b05453c88
5 changed files with 44 additions and 6 deletions
|
|
@ -65,7 +65,7 @@
|
|||
*path/ends/with.txt Any files who's path ends with
|
||||
*path/contains* Any files who's path contains
|
||||
*/
|
||||
"excluded": [],
|
||||
"excluded": ["DistantHorizons.sqlite"],
|
||||
// The dimension used when creating backup preview image, specify "all" to enable automatic detection of primary dimension (can be very slow)
|
||||
"preview_dimension": "minecraft:overworld"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -95,6 +95,7 @@ function registerDomumOrnamentumBlockTags(event) {
|
|||
"gtceu:dark_concrete_windmill_b",
|
||||
"gtceu:small_dark_concrete_bricks",
|
||||
"gtceu:square_dark_concrete_bricks",
|
||||
"gtceu:treated_wood_planks",
|
||||
//createdeco blocks
|
||||
"createdeco:dean_bricks",
|
||||
"createdeco:short_dean_bricks",
|
||||
|
|
|
|||
|
|
@ -575,8 +575,6 @@ function registerTFGFoodRecipes(event) {
|
|||
|
||||
cookingRecipe("baked_potato", "tfc:food/potato", "tfc:food/baked_potato")
|
||||
|
||||
cookingRecipe("boiled_egg", "#firmalife:foods/raw_eggs", "tfc:food/boiled_egg", "#tfg:clean_water 200")
|
||||
|
||||
cookingRecipe("cooked_rice", "tfc:food/rice_grain", "tfc:food/cooked_rice", "#tfg:clean_water 200")
|
||||
|
||||
processorRecipe("pasta_tomato_sauce", 60, 8, {
|
||||
|
|
@ -667,6 +665,14 @@ function registerTFGFoodRecipes(event) {
|
|||
itemOutputProvider: TFC.isp.of('tfg:food/calorie_paste').copyOldestFood().addTrait('tfg:freeze_dried')
|
||||
})
|
||||
|
||||
processorRecipe("boiled_egg", 200, 16, {
|
||||
circuit: 1,
|
||||
itemInputs: ["#firmalife:foods/raw_eggs"],
|
||||
fluidInputs: ["#tfg:clean_water 200"],
|
||||
itemOutputs: ["tfc:food/boiled_egg"],
|
||||
itemOutputProvider: TFC.isp.of("tfc:food/boiled_egg").copyFood()
|
||||
})
|
||||
|
||||
//Kelp
|
||||
cookingRecipe("dried_kelp_a", "tfc:plant/winged_kelp", "tfc:food/dried_kelp")
|
||||
cookingRecipe("dried_kelp_b", "tfc:plant/leafy_kelp", "tfc:food/dried_kelp")
|
||||
|
|
@ -922,7 +928,7 @@ function registerTFGFoodRecipes(event) {
|
|||
itemOutputProvider: TFC.isp.of('4x firmalife:food/bacon').copyFood()
|
||||
})
|
||||
|
||||
processorRecipe("picked_egg", 1000, 8, {
|
||||
processorRecipe("pickled_egg", 1000, 8, {
|
||||
circuit: 1,
|
||||
itemInputs: ['minecraft:clay_ball', 'tfc:powder/wood_ash', 'tfc:powder/salt', 'tfc:food/boiled_egg'],
|
||||
itemOutputs: ['firmalife:food/pickled_egg'],
|
||||
|
|
|
|||
|
|
@ -72,6 +72,7 @@ function registerTFGFacadeWhitelistItemTags(event) {
|
|||
'gtceu:laminated_glass',
|
||||
'gtceu:plascrete',
|
||||
'gtceu:cleanroom_glass',
|
||||
'gtceu:treated_wood_planks',
|
||||
|
||||
//gtceu casing
|
||||
'gtceu:steam_machine_casing',
|
||||
|
|
|
|||
|
|
@ -92,6 +92,7 @@ function registerTFGFoodItems(event) {
|
|||
.texture('tfg:item/food/raw_moon_rabbit')
|
||||
.food(food => food.hunger(2).saturation(2)
|
||||
.effect('minecraft:hunger', 100, 0, 1))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/raw_meats')
|
||||
|
||||
|
|
@ -99,6 +100,7 @@ function registerTFGFoodItems(event) {
|
|||
.translationKey('item.tfg.food.cooked_moon_rabbit')
|
||||
.texture('tfg:item/food/cooked_moon_rabbit')
|
||||
.food(food => food.hunger(4).saturation(8))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/cooked_meats')
|
||||
|
||||
|
|
@ -108,6 +110,7 @@ function registerTFGFoodItems(event) {
|
|||
.texture('tfg:item/food/raw_glacian_mutton')
|
||||
.food(food => food.hunger(2).saturation(2)
|
||||
.effect('minecraft:hunger', 100, 0, 1))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/raw_meats')
|
||||
|
||||
|
|
@ -115,6 +118,7 @@ function registerTFGFoodItems(event) {
|
|||
.translationKey('item.tfg.food.cooked_glacian_mutton')
|
||||
.texture('tfg:item/food/cooked_glacian_mutton')
|
||||
.food(food => food.hunger(5).saturation(8))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/cooked_meats')
|
||||
|
||||
|
|
@ -124,6 +128,7 @@ function registerTFGFoodItems(event) {
|
|||
.texture('tfg:item/food/raw_sniffer_beef')
|
||||
.food(food => food.hunger(3).saturation(2)
|
||||
.effect('minecraft:hunger', 100, 0, 1))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/raw_meats')
|
||||
|
||||
|
|
@ -131,6 +136,7 @@ function registerTFGFoodItems(event) {
|
|||
.translationKey('item.tfg.food.cooked_sniffer_beef')
|
||||
.texture('tfg:item/food/cooked_sniffer_beef')
|
||||
.food(food => food.hunger(8).saturation(9))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/cooked_meats')
|
||||
|
||||
|
|
@ -140,6 +146,7 @@ function registerTFGFoodItems(event) {
|
|||
.texture('tfg:item/food/raw_wraptor')
|
||||
.food(food => food.hunger(3).saturation(2)
|
||||
.effect('minecraft:hunger', 100, 0, 1))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/raw_meats')
|
||||
|
||||
|
|
@ -147,6 +154,7 @@ function registerTFGFoodItems(event) {
|
|||
.translationKey('item.tfg.food.cooked_wraptor')
|
||||
.texture('tfg:item/food/cooked_wraptor')
|
||||
.food(food => food.hunger(6).saturation(8))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/cooked_meats')
|
||||
|
||||
|
|
@ -156,6 +164,7 @@ function registerTFGFoodItems(event) {
|
|||
.texture('tfg:item/food/raw_springling_collar')
|
||||
.food(food => food.hunger(2).saturation(2)
|
||||
.effect('minecraft:hunger', 100, 0, 1))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/raw_meats')
|
||||
|
||||
|
|
@ -163,6 +172,7 @@ function registerTFGFoodItems(event) {
|
|||
.translationKey('item.tfg.food.cooked_springling_chops')
|
||||
.texture('tfg:item/food/cooked_springling_collar')
|
||||
.food(food => food.hunger(4).saturation(4))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/cooked_meats')
|
||||
|
||||
|
|
@ -172,6 +182,7 @@ function registerTFGFoodItems(event) {
|
|||
.texture('tfg:item/food/raw_walker_steak')
|
||||
.food(food => food.hunger(3).saturation(2)
|
||||
.effect('minecraft:hunger', 100, 0, 1))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/raw_meats')
|
||||
|
||||
|
|
@ -179,6 +190,7 @@ function registerTFGFoodItems(event) {
|
|||
.translationKey('item.tfg.food.cooked_walker_steak')
|
||||
.texture('tfg:item/food/cooked_walker_steak')
|
||||
.food(food => food.hunger(8).saturation(10))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/cooked_meats')
|
||||
|
||||
|
|
@ -188,6 +200,7 @@ function registerTFGFoodItems(event) {
|
|||
.texture('tfg:item/food/raw_glider_wings')
|
||||
.food(food => food.hunger(1).saturation(1)
|
||||
.effect('minecraft:hunger', 100, 0, 1))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/raw_meats')
|
||||
|
||||
|
|
@ -195,6 +208,7 @@ function registerTFGFoodItems(event) {
|
|||
.translationKey('item.tfg.food.cooked_glider_wings')
|
||||
.texture('tfg:item/food/cooked_glider_wings')
|
||||
.food(food => food.hunger(2).saturation(3))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/cooked_meats')
|
||||
|
||||
|
|
@ -204,6 +218,7 @@ function registerTFGFoodItems(event) {
|
|||
.texture('tfg:item/food/raw_whole_soarer')
|
||||
.food(food => food.hunger(2).saturation(2)
|
||||
.effect('minecraft:hunger', 100, 0, 1))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/raw_meats')
|
||||
|
||||
|
|
@ -211,6 +226,7 @@ function registerTFGFoodItems(event) {
|
|||
.translationKey('item.tfg.food.cooked_whole_soarer')
|
||||
.texture('tfg:item/food/cooked_whole_soarer')
|
||||
.food(food => food.hunger(6).saturation(6))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/cooked_meats')
|
||||
|
||||
|
|
@ -220,6 +236,7 @@ function registerTFGFoodItems(event) {
|
|||
.texture('tfg:item/food/raw_crusher_meat')
|
||||
.food(food => food.hunger(3).saturation(2)
|
||||
.effect('minecraft:hunger', 100, 0, 1))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/raw_meats')
|
||||
|
||||
|
|
@ -227,6 +244,7 @@ function registerTFGFoodItems(event) {
|
|||
.translationKey('item.tfg.food.cooked_crusher_meat')
|
||||
.texture('tfg:item/food/cooked_crusher_meat')
|
||||
.food(food => food.hunger(5).saturation(6))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/cooked_meats')
|
||||
|
||||
|
|
@ -236,6 +254,7 @@ function registerTFGFoodItems(event) {
|
|||
.texture('tfg:item/food/raw_goober_meat')
|
||||
.food(food => food.hunger(1).saturation(2)
|
||||
.effect('minecraft:hunger', 100, 0, 1))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/raw_meats')
|
||||
|
||||
|
|
@ -243,6 +262,7 @@ function registerTFGFoodItems(event) {
|
|||
.translationKey('item.tfg.food.cooked_goober_meat')
|
||||
.texture('tfg:item/food/cooked_goober_meat')
|
||||
.food(food => food.hunger(3).saturation(9))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/cooked_meats')
|
||||
|
||||
|
|
@ -252,6 +272,7 @@ function registerTFGFoodItems(event) {
|
|||
.texture('tfg:item/food/raw_stackatick_chunks')
|
||||
.food(food => food.hunger(1).saturation(1)
|
||||
.effect('minecraft:hunger', 100, 0, 1))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/raw_meats')
|
||||
|
||||
|
|
@ -263,6 +284,7 @@ function registerTFGFoodItems(event) {
|
|||
.eaten(ctx => {
|
||||
ctx.player.give('minecraft:stick')
|
||||
}))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/raw_meats')
|
||||
|
||||
|
|
@ -273,6 +295,7 @@ function registerTFGFoodItems(event) {
|
|||
.eaten(ctx => {
|
||||
ctx.player.give('minecraft:stick')
|
||||
}))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/cooked_meats')
|
||||
|
||||
|
|
@ -282,6 +305,7 @@ function registerTFGFoodItems(event) {
|
|||
.texture('tfg:item/food/raw_cruncher_ribs')
|
||||
.food(food => food.hunger(2).saturation(2)
|
||||
.effect('minecraft:hunger', 100, 0, 1))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/raw_meats')
|
||||
|
||||
|
|
@ -289,6 +313,7 @@ function registerTFGFoodItems(event) {
|
|||
.translationKey('item.tfg.food.cooked_cruncher_ribs')
|
||||
.texture('tfg:item/food/cooked_cruncher_ribs')
|
||||
.food(food => food.hunger(10).saturation(14))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/cooked_meats')
|
||||
|
||||
|
|
@ -298,6 +323,7 @@ function registerTFGFoodItems(event) {
|
|||
.texture('tfg:item/food/raw_surfer_steak')
|
||||
.food(food => food.hunger(2).saturation(2)
|
||||
.effect('minecraft:hunger', 100, 0, 1))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/raw_meats')
|
||||
|
||||
|
|
@ -305,6 +331,7 @@ function registerTFGFoodItems(event) {
|
|||
.translationKey('item.tfg.food.cooked_surfer_steak')
|
||||
.texture('tfg:item/food/cooked_surfer_steak')
|
||||
.food(food => food.hunger(8).saturation(8))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/cooked_meats')
|
||||
|
||||
|
|
@ -314,6 +341,7 @@ function registerTFGFoodItems(event) {
|
|||
.texture('tfg:item/food/raw_long_pig_filet')
|
||||
.food(food => food.hunger(2).saturation(1)
|
||||
.effect('minecraft:hunger', 100, 0, 1))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/raw_meats')
|
||||
|
||||
|
|
@ -321,6 +349,7 @@ function registerTFGFoodItems(event) {
|
|||
.translationKey('item.tfg.food.cooked_long_pig_filet')
|
||||
.texture('tfg:item/food/cooked_long_pig_filet')
|
||||
.food(food => food.hunger(4).saturation(2))
|
||||
.tag('tfc:foods')
|
||||
.tag('tfc:foods/meats')
|
||||
.tag('tfc:foods/cooked_meats')
|
||||
|
||||
|
|
@ -438,7 +467,8 @@ function registerTFGFoodItems(event) {
|
|||
.tag('tfc:foods/usable_in_jam_sandwich_2')
|
||||
.tag('tfc:foods/usable_in_sandwich')
|
||||
.tag('tfg:foods/usable_in_meal_bag')
|
||||
.tag('tfc:foods/dairy');
|
||||
.tag('tfc:foods/dairy')
|
||||
.tag('tfc:pig_food')
|
||||
|
||||
// Oatmeal
|
||||
event.create('tfg:food/oatmeal')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue