File Details
V-Tweaks 1.19.2 3.6.5.1
- R
- Aug 20, 2022
- 128.36 KB
- 1.9K
- 1.19.2+2
- Forge
File Name
VTweaks-1.19.2-3.6.5.1.jar
Supported Versions
- 1.19.2
- 1.19.1
- 1.19
Curse Maven Snippet
V-Tweaks Changelog MC 1.19.x
Should work on 1.19.1 and .2, but this has not been tested.
3.6.5.1
- Hopefully resolved issues with
Accessing LegacyRandomSource from multiple threadserrors.
3.6.5
Added
- New
vtweaks:anvilrecipe type -- see below!
Changed
- Huge internal refactor of code
- Lumbering and Imperishable will not disappear when disabled, but will not function
- Recipes for Enchanted Books now use
vtweaks:anvilrecipes to control inputs and cost
vtweaks:anvil
Inputs AND outputs can have NBT defined for them! This recipe type performs a soft NBT comparison.
Example: if your item is defined as {"item": "minecraft:stick", "nbt": { "Damage": 0 }}, then if you input a stick
with enchantments or other NBT it will succeed so long as the NBT matches at the bare minimum the NBT defined in the
recipe (in this case, {Damage:0}).
imperishable.json:
json
{
"type": "vtweaks:anvil",
"left": {
"item": "minecraft:enchanted_book",
"nbt": {
"StoredEnchantments": [
{
"id": "minecraft:unbreaking",
"lvl": 3
}
]
}
},
"right": {
"item": "minecraft:enchanted_book",
"nbt": {
"StoredEnchantments": [
{
"id": "minecraft:unbreaking",
"lvl": 3
}
]
}
},
"result": {
"item": "minecraft:enchanted_book",
"nbt": {
"StoredEnchantments": [
{
"id": "vtweaks:imperishable",
"lvl": 1
}
]
}
},
"cost": 24
}
lumbering.json:
json
{
"type": "vtweaks:anvil",
"left": {
"item": "minecraft:writable_book"
},
"right": {
"item": "minecraft:golden_axe",
"nbt": {
"Damage": 0
}
},
"result": {
"item": "minecraft:enchanted_book",
"nbt": {
"StoredEnchantments": [
{
"id": "vtweaks:lumbering",
"lvl": 1
}
]
}
},
"cost": 16
}

