
Trade Stages
The Trade Stages modification provides the ability to limit access to villager trading offers depending on their professional development. The system accounts for all career levels: from Novice to Apprentice, then Journeyman, Expert, and finally Master.
For the mod to function, a configuration file is required, which should be located at: config/tradestages.json
For the wandering trader, the profession name must be specified as: "wandering_trader"
Regarding professions from other modifications, use their registry names. For example: "immersiveengineering:machinist"
Wandering traders do not have standard career levels. Instead, they have common and rare offers, which correspond to the first and second trade levels respectively.
Example configuration file:
{
"trades": {
"armorer": {
"1": [
"stage_armorer_trade_level_0",
"basic_armorer_trades"
],
"2": [
"basic_armorer_trades"
]
},
"librarian": {
"5": [
"enchantment_lock"
]
}
}
}