added effects to gurman drinks

This commit is contained in:
Pyritie 2025-11-30 21:29:29 +00:00
parent 8cd32a0f60
commit 8a5812b831
11 changed files with 158 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{
"ingredient": "tfc_gurman:chamomile_tea",
"thirst": 15,
"effects": [
{
"type": "minecraft:resistance",
"duration": 600,
"amplifier": 0
},
{
"type": "tfg:warming",
"duration": 20,
"amplifier": 0
}
]
}

View file

@ -0,0 +1,16 @@
{
"ingredient": "tfc_gurman:cocoa",
"thirst": 15,
"effects": [
{
"type": "minecraft:haste",
"duration": 600,
"amplifier": 0
},
{
"type": "tfg:warming",
"duration": 20,
"amplifier": 0
}
]
}

View file

@ -0,0 +1,16 @@
{
"ingredient": "tfc_gurman:coffee",
"thirst": 15,
"effects": [
{
"type": "minecraft:speed",
"duration": 600,
"amplifier": 0
},
{
"type": "tfg:warming",
"duration": 20,
"amplifier": 0
}
]
}

View file

@ -0,0 +1,11 @@
{
"ingredient": "tfc_gurman:compote",
"thirst": 15,
"effects": [
{
"type": "minecraft:jump_boost",
"duration": 600,
"amplifier": 0
}
]
}

View file

@ -0,0 +1,16 @@
{
"ingredient": "tfc_gurman:kvass",
"thirst": 15,
"effects": [
{
"type": "minecraft:strength",
"duration": 1600,
"amplifier": 0
},
{
"type": "tfg:cooling",
"duration": 20,
"amplifier": 0
}
]
}

View file

@ -0,0 +1,16 @@
{
"ingredient": "tfc_gurman:lemonade",
"thirst": 15,
"effects": [
{
"type": "minecraft:haste",
"duration": 600,
"amplifier": 0
},
{
"type": "tfg:cooling",
"duration": 20,
"amplifier": 0
}
]
}

View file

@ -0,0 +1,16 @@
{
"ingredient": "tfc_gurman:mint_tea",
"thirst": 15,
"effects": [
{
"type": "minecraft:regeneration",
"duration": 600,
"amplifier": 0
},
{
"type": "tfg:warming",
"duration": 20,
"amplifier": 0
}
]
}

View file

@ -0,0 +1,16 @@
{
"ingredient": "tfc_gurman:nalivka",
"thirst": 15,
"effects": [
{
"type": "minecraft:strength",
"duration": 3200,
"amplifier": 0
},
{
"type": "tfg:cooling",
"duration": 20,
"amplifier": 0
}
]
}

View file

@ -0,0 +1,16 @@
{
"ingredient": "tfc_gurman:nettle_tea",
"thirst": 15,
"effects": [
{
"type": "minecraft:slow_falling",
"duration": 600,
"amplifier": 0
},
{
"type": "tfg:warming",
"duration": 20,
"amplifier": 0
}
]
}

View file

@ -0,0 +1,16 @@
{
"ingredient": "tfc_gurman:rosehip_tea",
"thirst": 15,
"effects": [
{
"type": "minecraft:absorption",
"duration": 600,
"amplifier": 0
},
{
"type": "tfg:warming",
"duration": 20,
"amplifier": 0
}
]
}

View file

@ -33,6 +33,9 @@ const registerAdAstraFluidTags = (event) => {
event.add('ad_astra:evaporates_in_space', 'tfc:salt_water')
event.add('ad_astra:evaporates_in_space', 'tfc:spring_water')
event.add('ad_astra:evaporates_in_space', '#tfc:alcohols')
event.add('ad_astra:evaporates_in_space', '#tfc:milks')
event.add('ad_astra:evaporates_in_space', '#tfc:dyes')
event.add('ad_astra:evaporates_in_space', '#tfc:drinkables')
global.BREATHABLE_COMPRESSED_AIRS.forEach(x => {
event.add('ad_astra:zip_gun_propellants', x)