added buffs to wine
This commit is contained in:
parent
63aae3191b
commit
7a2ed6251e
7 changed files with 71 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
})
|
||||
}
|
||||
|
|
|
|||
11
kubejs/data/firmalife/tfc/drinkables/dessert_wine.json
Normal file
11
kubejs/data/firmalife/tfc/drinkables/dessert_wine.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"ingredient": "firmalife:dessert_wine",
|
||||
"thirst": 15,
|
||||
"effects": [
|
||||
{
|
||||
"type": "species:iron_will",
|
||||
"duration": 6400,
|
||||
"amplifier": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
11
kubejs/data/firmalife/tfc/drinkables/red_wine.json
Normal file
11
kubejs/data/firmalife/tfc/drinkables/red_wine.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"ingredient": "firmalife:red_wine",
|
||||
"thirst": 15,
|
||||
"effects": [
|
||||
{
|
||||
"type": "minecraft:strength",
|
||||
"duration": 6400,
|
||||
"amplifier": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
11
kubejs/data/firmalife/tfc/drinkables/rose_wine.json
Normal file
11
kubejs/data/firmalife/tfc/drinkables/rose_wine.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"ingredient": "firmalife:rose_wine",
|
||||
"thirst": 15,
|
||||
"effects": [
|
||||
{
|
||||
"type": "minecraft:dolphins_grace",
|
||||
"duration": 6400,
|
||||
"amplifier": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
11
kubejs/data/firmalife/tfc/drinkables/sparkling_wine.json
Normal file
11
kubejs/data/firmalife/tfc/drinkables/sparkling_wine.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"ingredient": "firmalife:dessert_wine",
|
||||
"thirst": 15,
|
||||
"effects": [
|
||||
{
|
||||
"type": "minecraft:jump_boost",
|
||||
"duration": 6400,
|
||||
"amplifier": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
11
kubejs/data/firmalife/tfc/drinkables/white_wine.json
Normal file
11
kubejs/data/firmalife/tfc/drinkables/white_wine.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"ingredient": "firmalife:white_wine",
|
||||
"thirst": 15,
|
||||
"effects": [
|
||||
{
|
||||
"type": "species:wither_resistance",
|
||||
"duration": 6400,
|
||||
"amplifier": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue