Compatibility
Minecraft: Java Edition
1.21.x
1.20.1–1.20.6
Platforms
Fabric
Supported environments
90% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Links
Creators
Details
Licensed MIT
Published 9 months ago
Updated 4 days ago
Shifting-Wares: VillagerConfig Addon
Compatibility addon that enables ShiftingWares rerolls to use the custom trades and layouts defined by VillagerConfig.
Shifting Wares v2
In order for Shifting Ware's map caching to work properly, Exploration Map trades must use the same item-naming convention as vanilla trades. Behaviour is undefined otherwise.
Shifting Wares v3
With this addon, map persistence can be defined in the trade themselves, alongside to the costs and result:
shiftingwares:isPersistent
: (boolean) Forcibly marks the trade as persistent. This trade's rerollability will be limited to the same conditions as for map trades.shiftingwares:tradeId
: (Identifier) When defined, this allows ShiftingWares to associate an existing trade to its source in the datapack, and prevent duplicates of that trade from being generated.
Example:
{
"shiftingwares:isPersistent": true,
"shiftingwares:tradeId": "minecraft:on_ocean_explorer_maps",
"cost_a": { "type": "minecraft:item", "name": "minecraft:emerald" },
"cost_b": { "type": "minecraft:item", "name": "minecraft:compass" },
"result": {
"type": "minecraft:item",
"name": "minecraft:map",
"functions": [
{
"decoration": "minecraft:monument",
"destination": "minecraft:on_ocean_explorer_maps",
"function": "minecraft:exploration_map",
"search_radius": 100
}
],
}
}
This data will not be present by default when VillagerConfig generates data from vanilla trade, however its presence is not required for map trades to be handled properly. Setting the trade Id on map trades (or any persistent trade) is still recommended.