
Can't get villager trades for modded profession working
jakeb072001 opened this issue ยท 7 comments
Trying to add support for this mod to my own mod TerraMine, but can't seem to get the trades to be added, the villager with my goblin tinkerer profession will only shake his head when interacted with. Either I messed up with the json, or something else is wrong:
{
"profession": "terramine:goblin_tinkerer",
"trades": {
"novice": [
{
"type": "numismatic-overhaul:buy_stack",
"price": 50000,
"buy": {
"item": "terramine:rocket_boots",
"count": 1
},
"max_uses": 1
},
{
"type": "numismatic-overhaul:sell_stack",
"price": 2000,
"sell": {
"item": "minecraft:dispenser",
"count": 1
},
"max_uses": 15,
"villager_experience": 10
}
],
"apprentice": [
{
"type": "numismatic-overhaul:buy_stack",
"price": 50000,
"buy": {
"item": "terramine:stopwatch",
"count": 1
},
"max_uses": 1
},
{
"type": "numismatic-overhaul:sell_stack",
"price": 1500,
"sell": {
"item": "minecraft:sticky_piston",
"count": 1
},
"max_uses": 20,
"villager_experience": 5
}
],
"journeyman": [
{
"type": "numismatic-overhaul:buy_stack",
"price": 50000,
"buy": {
"item": "terramine:weather_radio",
"count": 1
},
"max_uses": 1
},
{
"type": "numismatic-overhaul:buy_stack",
"price": 50000,
"buy": {
"item": "terramine:sextant",
"count": 1
},
"max_uses": 1
}
],
"expert": [
{
"type": "numismatic-overhaul:sell_stack",
"price": 2500,
"sell": {
"item": "minecraft:observer",
"count": 1
},
"max_uses": 15,
"villager_experience": 15
},
{
"type": "numismatic-overhaul:buy_stack",
"price": 50000,
"buy": {
"item": "terramine:extendo_grip",
"count": 1
},
"max_uses": 1
}
],
"master": [
{
"type": "numismatic-overhaul:buy_stack",
"price": 50000,
"buy": {
"item": "terramine:toolbelt",
"count": 1
},
"max_uses": 1
},
{
"type": "numismatic-overhaul:buy_stack",
"price": 50000,
"buy": {
"item": "terramine:toolbox",
"count": 1
},
"max_uses": 1
}
]
}
}
Do mind that Numismatic does not refresh trades retroactively, meaning you need a new Goblin Tinkerer to test the trades with
Yea, I've been spawning new villagers just to be sure and I even just tried it in another world but its still doesn't work, very odd
The JSON certainly looks correct. If there was anything wrong with it you would get an error when the trade file is loaded. What I am more curious about is how your profession is registered.
This is my profession init:
https://github.com/jakeb072001/TerraMine/blob/1.19/src/main/java/terramine/common/init/ModProfessions.java
If I change the profession in the json to something that doesn't exist it does give an error so it is loading and gives no errors when set to the goblin tinkerer profession.