Numismatic Overhaul

Numismatic Overhaul

2M Downloads

Can't get villager trades for modded profession working

jakeb072001 opened this issue ยท 7 comments

commented

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
      }
    ]
  }
}
commented

Do mind that Numismatic does not refresh trades retroactively, meaning you need a new Goblin Tinkerer to test the trades with

commented

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

commented

image

commented

that was fast

commented

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.

commented

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.

commented

Thanks for opening this issue. With the next release of Numismatic Overhaul this issue should be resolved.