Basic loaders implemented

This commit is contained in:
gamer147
2025-11-24 15:23:38 -05:00
parent 4455668e90
commit 7cc3f0e184
6 changed files with 205 additions and 12 deletions

View File

@@ -4,7 +4,33 @@
"categoryId": 1,
"name": "Sleep Powder",
"description": "Grants 1 hour of sleep bonus.",
"ironPrice": 50000,
"image": "https://www.wurmpedia.com/images/5/5e/Sleep_powder.png"
"image": "https://www.wurmpedia.com/images/5/5e/Sleep_powder.png",
"currency": {
"type": "WurmBankCurrency",
"ironAmount": 50000
},
"handler": {
"type": "ShopWurmItemPurchaseEffect",
"itemTemplateId": 740,
"ql": 99.0,
"rarity": 0
}
},
{
"id": 2,
"categoryId": 1,
"name": "Res Stone",
"description": "Gives you one resurrection charge.",
"image": "https://www.wurmpedia.com/images/a/aa/Resurrection_stone_icon.png",
"currency": {
"type": "WurmBankCurrency",
"ironAmount": 100000
},
"handler": {
"type": "ShopWurmItemPurchaseEffect",
"itemTemplateId": 302,
"ql": 99.0,
"rarity": 0
}
}
]
]