Supports adding/editing categories and products directly through the Datapack system:
Datapack folder structure:
data/
└── questshop/
└── questshop/
├── shop_categories/ <-- JSON
│ ├── create_tech.json
│ └── sell.json
└── shop_entries/ <-- JSON
├── create_tech.json
└── sell_items.json
shop_categories/example.json
{
"display": "Create Tech",
"unlocked_by_default": true,
"order": 1
}
shop_entries/example.json
[
{
"item": "create:cogwheel",
"amount": 8,
"cost": 4,
"category": "questshop:create_tech"
}
]