questshop_examples

This is a Data Pack used with Mod Packs. Its function is to define product details (ftb).

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

The questshop_examples Team

profile avatar
  • 1
    Followers
  • 4
    Projects
  • 836
    Downloads

More from LINGling01