promotional bannermobile promotional banner

V-Tweaks

Adding New Mechanics without New Items!

File Details

V-Tweaks 1.19.2 3.6.5

  • R
  • Aug 15, 2022
  • 128.36 KB
  • 282
  • 1.19.2
  • Forge

File Name

VTweaks-1.19.2-3.6.5.jar

Supported Versions

  • 1.19.2

Curse Maven Snippet

Forge

implementation fg.deobf("curse.maven:v-tweaks-238048:3935597")
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

V-Tweaks Changelog MC 1.19.x

Should work on 1.19.1 and .2, but this has not been tested.

3.6.5

Added

  • New vtweaks:anvil recipe 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:anvil recipes 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 }