Add a simple stick to the items list.

This commit is contained in:
Andres Gomez, Thomas (ITDV RL) 2025-04-04 17:06:27 +02:00
parent f0e6586236
commit cf9a3442a3
2 changed files with 46 additions and 0 deletions

19
items/STICK.json Normal file
View file

@ -0,0 +1,19 @@
{
"type": "com.pixelized.shared.lwa.model.item.ItemJsonV1",
"id": "STICK",
"metadata": {
"name": "Bâton",
"description": "Un bâton usé qui peut aussi bien servir dappui à un vieillard, qu'être le témoin daventures imaginaires d'un enfant ou encore l'arme improvisée de mains moins innocentes.",
"thumbnail": "",
"image": ""
},
"options": {
"stackable": false,
"equipable": true,
"consumable": false
},
"tags": [
"EQUIPMENT"
],
"alterations": []
}

27
tags/item.json Normal file
View file

@ -0,0 +1,27 @@
[
{
"type": "com.pixelized.shared.lwa.model.tag.TagJsonV1",
"id": "EQUIPMENT",
"label": "Équipement"
},
{
"type": "com.pixelized.shared.lwa.model.tag.TagJsonV1",
"id": "CONSUMABLE",
"label": "Consomable"
},
{
"type": "com.pixelized.shared.lwa.model.tag.TagJsonV1",
"id": "TONIC",
"label": "Tonique"
},
{
"type": "com.pixelized.shared.lwa.model.tag.TagJsonV1",
"id": "MISCELLANEOUS",
"label": "Divers"
},
{
"type": "com.pixelized.shared.lwa.model.tag.TagJsonV1",
"id": "QUEST",
"label": "Quêtes"
}
]