From cf9a3442a3eb63b29728e498ff183430a0b03417 Mon Sep 17 00:00:00 2001 From: "Andres Gomez, Thomas (ITDV RL)" Date: Fri, 4 Apr 2025 17:06:27 +0200 Subject: [PATCH] Add a simple stick to the items list. --- items/STICK.json | 19 +++++++++++++++++++ tags/item.json | 27 +++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 items/STICK.json create mode 100644 tags/item.json diff --git a/items/STICK.json b/items/STICK.json new file mode 100644 index 0000000..648de50 --- /dev/null +++ b/items/STICK.json @@ -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 d’appui à un vieillard, qu'être le témoin d’aventures 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": [] +} \ No newline at end of file diff --git a/tags/item.json b/tags/item.json new file mode 100644 index 0000000..78b5c0d --- /dev/null +++ b/tags/item.json @@ -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" + } +] \ No newline at end of file