added buffs to wine

This commit is contained in:
Pyritie 2025-12-28 16:26:42 +00:00
parent 63aae3191b
commit 7a2ed6251e
7 changed files with 71 additions and 0 deletions

View file

@ -22,6 +22,7 @@
- Removed the cleanroom requirement for level emitters since they were also craftable in a crafting grid (#2529) @Jeuvke
- Overhauled photographic film development @Pyritie
- Lowered the temperature of gas fuels and their related gases/fluids @Pyritie
- Added buff effects to wine @Pyritie
### Bug fixes
- Fix for food stacking everywhere! @Mqrius
- Fixed the grappling hook crashing and sending you to the void if you use it while travelling between dimensions (#2514) @Mqrius

View file

@ -398,4 +398,19 @@ const registerTooltips = (event) => {
event.addAdvanced(['tfc:bucket/spring_water'], (item, advanced, text) => {
text.add(1, Text.translate('tfg.tooltip.warming_foods'));
})
event.addAdvanced(['firmalife:bucket/red_wine'], (item, advanced, text) => {
text.add(1, Text.of("Strength (05:20)").blue());
})
event.addAdvanced(['firmalife:bucket/rose_wine'], (item, advanced, text) => {
text.add(1, Text.of("Dolphin's Grace (05:20)").blue());
})
event.addAdvanced(['firmalife:bucket/white_wine'], (item, advanced, text) => {
text.add(1, Text.of("Wither Resistance (05:20)").blue());
})
event.addAdvanced(['firmalife:bucket/dessert_wine'], (item, advanced, text) => {
text.add(1, Text.of("Knockback Resistance (05:20)").blue());
})
event.addAdvanced(['firmalife:bucket/sparkling_wine'], (item, advanced, text) => {
text.add(1, Text.of("Jump Boost II (05:20)").blue());
})
}

View file

@ -0,0 +1,11 @@
{
"ingredient": "firmalife:dessert_wine",
"thirst": 15,
"effects": [
{
"type": "species:iron_will",
"duration": 6400,
"amplifier": 0
}
]
}

View file

@ -0,0 +1,11 @@
{
"ingredient": "firmalife:red_wine",
"thirst": 15,
"effects": [
{
"type": "minecraft:strength",
"duration": 6400,
"amplifier": 0
}
]
}

View file

@ -0,0 +1,11 @@
{
"ingredient": "firmalife:rose_wine",
"thirst": 15,
"effects": [
{
"type": "minecraft:dolphins_grace",
"duration": 6400,
"amplifier": 0
}
]
}

View file

@ -0,0 +1,11 @@
{
"ingredient": "firmalife:dessert_wine",
"thirst": 15,
"effects": [
{
"type": "minecraft:jump_boost",
"duration": 6400,
"amplifier": 1
}
]
}

View file

@ -0,0 +1,11 @@
{
"ingredient": "firmalife:white_wine",
"thirst": 15,
"effects": [
{
"type": "species:wither_resistance",
"duration": 6400,
"amplifier": 0
}
]
}