Description
RtChanger is a mod that lets you change crafting recipes through a simple configuration file. Instead of digging through asset files, you just define your changes in rtchanger.json.
The mod applies these overrides during startup. It automatically syncs with the in-game workbench so players see the updated costs.
Feel free to report bugs or share suggestions!

How to use:
Open mods/tiffy/rtchanger.json
Add the target Item ID and its new ingredients. Restart your server. It works for standard Hytale items and items added by other plugins.
{
"overrides": [
{
"targetItemId": "Bench_Campfire",
"ingredients": [
{ "id": "Ingredient_Bar_Iron", "amount": 999 },
{ "id": "Ingredient_Bar_Copper", "amount": 999 }
]
},
{
"targetItemId": "Jewelry_Fly_Ring",
"ingredients": [
{ "id": "Ingredient_Bar_Iron", "amount": 1500 },
{ "id": "Ingredient_Bar_Gold", "amount": 250 }
]
}
]
}


