From 85d9fbebbb8df6653f5590d3621e45675e6152da Mon Sep 17 00:00:00 2001 From: Thomas Andres Gomez Date: Fri, 9 May 2025 22:00:25 +0200 Subject: [PATCH] Add tonic alteration --- alterations/ARCANTHIA_TONIC.json | 18 +++++++++++++++++ alterations/VELNERIS_TONIC.json | 34 ++++++++++++++++++++++++++++++++ characters/Hannah_Dorveille.json | 20 ++++++++++--------- tags/alteration.json | 5 +++++ 4 files changed, 68 insertions(+), 9 deletions(-) create mode 100644 alterations/ARCANTHIA_TONIC.json create mode 100644 alterations/VELNERIS_TONIC.json diff --git a/alterations/ARCANTHIA_TONIC.json b/alterations/ARCANTHIA_TONIC.json new file mode 100644 index 0000000..103c6f9 --- /dev/null +++ b/alterations/ARCANTHIA_TONIC.json @@ -0,0 +1,18 @@ +{ + "type": "com.pixelized.shared.lwa.model.alteration.AlterationJsonV1", + "id": "ARCANTHIA_TONIC", + "metadata": { + "name": "Tonic d'Arcanthia", + "description": "+3 de Constitution pour une journée", + "icon": "https://bg3.wiki/w/images/e/e3/POT_Potion_of_Everlasting_Vigour_Unfaded_Icon.png" + }, + "tags": [ + "TONIC" + ], + "fields": [ + { + "fieldId": "CON", + "expression": "3" + } + ] +} \ No newline at end of file diff --git a/alterations/VELNERIS_TONIC.json b/alterations/VELNERIS_TONIC.json new file mode 100644 index 0000000..f569f70 --- /dev/null +++ b/alterations/VELNERIS_TONIC.json @@ -0,0 +1,34 @@ +{ + "type": "com.pixelized.shared.lwa.model.alteration.AlterationJsonV1", + "id": "VELNERIS_TONIC", + "metadata": { + "name": "Tonic de Velniris", + "description": "Augmente les scores de perceptions de 10 pendant une journée.", + "icon": "https://bg3.wiki/w/images/d/df/Potion_of_Sleep_Item_Icon.png" + }, + "tags": [ + "TONIC" + ], + "fields": [ + { + "fieldId": "PERCEPTION", + "expression": "10" + }, + { + "fieldId": "SEARCH", + "expression": "10" + }, + { + "fieldId": "EMPATHY", + "expression": "10" + }, + { + "fieldId": "ANIMAL_EMPATHY", + "expression": "10" + }, + { + "fieldId": "TRACKING", + "expression": "10" + } + ] +} \ No newline at end of file diff --git a/characters/Hannah_Dorveille.json b/characters/Hannah_Dorveille.json index f672127..d4b937d 100644 --- a/characters/Hannah_Dorveille.json +++ b/characters/Hannah_Dorveille.json @@ -2,6 +2,7 @@ "type": "com.pixelized.shared.lwa.model.characterSheet.CharacterSheetJsonV1", "id": "Hannah_Dorveille", "name": "Hannah Dorveille", + "job": "", "portrait": "https://drive.google.com/uc?export=view&id=1jweMwSTpLfOuzy-P_914xP--4BYf7WRt", "thumbnail": "https://drive.google.com/uc?export=view&id=1OGrOfglTeQKuTlt6MC5YEHRyaoWMzFsw", "level": 3, @@ -175,20 +176,20 @@ ], "occupations": [ { - "id": "420f7e40-2d4c-490b-832d-407054bb0469", + "id": "MASTERY_DAGGER_THROW", "label": "Maîtrise des dagues de lancer", "description": "Lancer une dague sur une cible.", - "base": "", + "base": "0", "bonus": "30", "level": 1, "occupation": true, "used": false }, { - "id": "80c1c9db-56ef-4bc6-b324-696d57dc7da2", + "id": "LOCK_PICKING", "label": "Crochetage", "description": "Crocheter une serrure.", - "base": "", + "base": "0", "bonus": "35", "level": 1, "occupation": true, @@ -197,10 +198,10 @@ ], "magics": [ { - "id": "e554da42-b67b-4dfd-82fe-d8b8b21c022b", + "id": "PORTAL", "label": "Portails", "description": "Permet d'ouvrir deux portails magiques reliant deux points de l'espace. L'un dans la main du joueur et l'autre à l'endroit où le joueur le souhaite dans son champs de vision. Les portails ont un diamètre d'une dizaine de centimètres.\nLe joueur peut garder les portails ouvert pour une durée maximum de 5 minutes.\n\nCoût: 2 PP\nPortée: 10m\nEnrichissement: +1 PP pour +5m de portée", - "base": "", + "base": "0", "bonus": "30", "level": 1, "occupation": true, @@ -209,7 +210,7 @@ ], "rolls": [ { - "id": "90db5b65-9539-4f5a-b08c-6145840d9f62", + "id": "ATK_DAGGER_THROW", "label": "Dague de lancer", "description": "Cette dague de lancer standard.", "canBeCritical": true, @@ -218,7 +219,7 @@ "critical": "2d4+BDD" }, { - "id": "e9122153-900f-40d6-9d5d-cee75caae0cf", + "id": "ATLK_DAGGER_THROW_EQ", "label": "Dague de lancer équilibrée", "description": "Cette dague de lancer est si bien équilibrée que sa rotation lors d'un lancer lui permet d'atteindre une vitesse optimale.", "canBeCritical": true, @@ -226,5 +227,6 @@ "special": "a1d6+BDD", "critical": "2d6+BDD" } - ] + ], + "tag": [] } \ No newline at end of file diff --git a/tags/alteration.json b/tags/alteration.json index ccf28ab..06dcb99 100644 --- a/tags/alteration.json +++ b/tags/alteration.json @@ -13,5 +13,10 @@ "type": "com.pixelized.shared.lwa.model.tag.TagJsonV1", "id": "EQUIPMENT", "label": "Équipement" + }, + { + "type": "com.pixelized.shared.lwa.model.tag.TagJsonV1", + "id": "TONIC", + "label": "Tonic" } ] \ No newline at end of file