update changelog, revert unnecessary changes from #1390
This commit is contained in:
parent
91d9738f1c
commit
5bb1c17eae
9 changed files with 15 additions and 100 deletions
|
|
@ -1,6 +1,11 @@
|
|||
# Changelog
|
||||
## [Unreleased]
|
||||
## [0.10.2] - 20-07-2025
|
||||
### Changes
|
||||
- Aged Corn Whiskey and Aged Rye Whiskey now have status effects (#1390) @EveProgrammingsockson
|
||||
### Bug fixes
|
||||
- Fixed TFG-Core version mismatch @Xikaro
|
||||
- Fixed hardwood logs macerating into softwood pulp (#1391) @Forsuin
|
||||
- Fixed iron flask dupe (#1397) @Pyritie
|
||||
|
||||
## [0.10.1] - 19-07-2025
|
||||
### Changes
|
||||
|
|
|
|||
|
|
@ -1,21 +0,0 @@
|
|||
{
|
||||
"replace":true,
|
||||
"values":[
|
||||
"tfc:beer",
|
||||
"tfc:cider",
|
||||
"tfc:rum",
|
||||
"tfc:sake",
|
||||
"tfc:vodka",
|
||||
"tfc:whiskey",
|
||||
"tfc:corn_whiskey",
|
||||
"tfc:rye_whiskey",
|
||||
"tfcagedalcohol:aged_beer",
|
||||
"tfcagedalcohol:aged_cider",
|
||||
"tfcagedalcohol:aged_rum",
|
||||
"tfcagedalcohol:aged_sake",
|
||||
"tfcagedalcohol:aged_vodka",
|
||||
"tfcagedalcohol:aged_whiskey",
|
||||
"tfcagedalcohol:aged_corn_whiskey",
|
||||
"tfcagedalcohol:aged_rye_whiskey"
|
||||
]
|
||||
}
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"__comment__": "This file was automatically created by mcresources",
|
||||
"ingredient": "tfcagedalcohol:aged_beer",
|
||||
"thirst": 15,
|
||||
"intoxication": 2000,
|
||||
"effects": [
|
||||
{
|
||||
"type": "minecraft:absorption",
|
||||
"duration": 24000,
|
||||
"amplifier": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"__comment__": "This file was automatically created by mcresources",
|
||||
"ingredient": "tfcagedalcohol:aged_cider",
|
||||
"thirst": 15,
|
||||
"intoxication": 2000,
|
||||
"effects": [
|
||||
{
|
||||
"type": "minecraft:speed",
|
||||
"duration": 6400,
|
||||
"amplifier": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"__comment__": "This file was automatically created by mcresources",
|
||||
"ingredient": "tfcagedalcohol:aged_rum",
|
||||
"thirst": 15,
|
||||
"intoxication": 2000,
|
||||
"effects": [
|
||||
{
|
||||
"type": "minecraft:speed",
|
||||
"duration": 3200,
|
||||
"amplifier": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"__comment__": "This file was automatically created by mcresources",
|
||||
"ingredient": "tfcagedalcohol:aged_sake",
|
||||
"thirst": 15,
|
||||
"intoxication": 2000,
|
||||
"effects": [
|
||||
{
|
||||
"type": "minecraft:resistance",
|
||||
"duration": 6400,
|
||||
"amplifier": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"__comment__": "This file was automatically created by mcresources",
|
||||
"ingredient": "tfcagedalcohol:aged_vodka",
|
||||
"thirst": 15,
|
||||
"intoxication": 2000,
|
||||
"effects": [
|
||||
{
|
||||
"type": "minecraft:resistance",
|
||||
"duration": 3200,
|
||||
"amplifier": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"__comment__": "This file was automatically created by mcresources",
|
||||
"ingredient": "tfcagedalcohol:aged_whiskey",
|
||||
"thirst": 15,
|
||||
"intoxication": 2000,
|
||||
"effects": [
|
||||
{
|
||||
"type": "minecraft:haste",
|
||||
"duration": 3200,
|
||||
"amplifier": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -517,6 +517,15 @@ const registerTFCFluidTags = (event) => {
|
|||
event.add('tfc:usable_in_blue_steel_bucket', 'tfc:spring_water')
|
||||
event.add('tfc:usable_in_red_steel_bucket', 'tfc:spring_water')
|
||||
|
||||
event.add('tfc:alcohols', "tfcagedalcohol:aged_beer")
|
||||
event.add('tfc:alcohols', "tfcagedalcohol:aged_cider")
|
||||
event.add('tfc:alcohols', "tfcagedalcohol:aged_rum")
|
||||
event.add('tfc:alcohols', "tfcagedalcohol:aged_sake")
|
||||
event.add('tfc:alcohols', "tfcagedalcohol:aged_vodka")
|
||||
event.add('tfc:alcohols', "tfcagedalcohol:aged_whiskey")
|
||||
event.add('tfc:alcohols', "tfcagedalcohol:aged_corn_whiskey")
|
||||
event.add('tfc:alcohols', "tfcagedalcohol:aged_rye_whiskey")
|
||||
|
||||
// Добавляем тег для скрытия в EMI
|
||||
event.add('c:hidden_from_recipe_viewers', 'tfc:metal/bismuth')
|
||||
event.add('c:hidden_from_recipe_viewers', 'tfc:metal/bismuth_bronze')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue