
GoodyBags
The GoodyBags mod allows you to create custom loot bags using JSON files. This system is similar to Thaumcraft loot bags but with extended customization options.
Bag Types
Currently, three main types of bags are available:
-
Spawn Bags - automatically appear in a player's inventory upon first joining the world. Designed to replace the traditional item spam common in modded Minecraft. Can also be used for other purposes.
-
Loot Bags - generate in dungeon chests with configurable spawn probability.
-
Prize Bags - intended to reward players for completing achievements or quests. Similar to HQM bags.
Technical Features
The mod currently does not support NBT data. This feature will be considered in future updates.
Configuration Example
Here is an example of a spawn bag configuration:
{
"bagType": "SPAWN",
"name": "Spawn Bag 1",
"rarityType": "uncommon",
"stackList": [
{
"name": "minecraft:chainmail_helmet",
"metadata": 0,
"amount": 1
}
]
}