Update alterations to add tags.

This commit is contained in:
Thomas Andres Gomez 2025-03-29 15:40:29 +01:00
parent f091a5669a
commit f0e6586236
8 changed files with 111 additions and 64 deletions

View file

@ -1,18 +1,21 @@
{
"type": "com.pixelized.shared.lwa.model.alteration.AlterationJsonV1",
"id": "ARMOR_DARK_LEATHER",
"metadata": {
"name": "Armure de cuir sombre",
"description": "Armure cuir sombre, idéale pour se fondre dans la pénombre"
},
"fields": [
{
"fieldId": "ARMOR",
"expression": "+1"
"type": "com.pixelized.shared.lwa.model.alteration.AlterationJsonV1",
"id": "ARMOR_DARK_LEATHER",
"metadata": {
"name": "Armure de cuir sombre",
"description": "Armure cuir sombre, idéale pour se fondre dans la pénombre"
},
{
"fieldId": "DISCRETION",
"expression": "+10"
}
]
"tags": [
"EQUIPMENT"
],
"fields": [
{
"fieldId": "ARMOR",
"expression": "1"
},
{
"fieldId": "DISCRETION",
"expression": "10"
}
]
}

View file

@ -1,10 +1,13 @@
{
"type": "com.pixelized.shared.lwa.model.alteration.AlterationJsonV1",
"id": "METAMOPHOSIS_WOLF",
"id": "METAMORPHOSIS_WOLF",
"metadata": {
"name": "Forme de loup",
"description": "Capacité spécial des maks de la tribue Palok."
},
"tags": [
"METAMORPHOSIS"
],
"fields": [
{
"fieldId": "THUMBNAIL",

View file

@ -1,14 +1,17 @@
{
"type": "com.pixelized.shared.lwa.model.alteration.AlterationJsonV1",
"id": "TATOO_HANNA",
"metadata": {
"name": "Tatouage des Dorveille",
"description": "Tatouage héréditaire de la famille Dorveille."
},
"fields": [
{
"fieldId": "PP",
"expression": "-2"
}
]
"type": "com.pixelized.shared.lwa.model.alteration.AlterationJsonV1",
"id": "TATOO_HANNA",
"metadata": {
"name": "Tatouage des Dorveille",
"description": "Tatouage héréditaire de la famille Dorveille."
},
"tags": [
"TATOO"
],
"fields": [
{
"fieldId": "PP",
"expression": "-(2)"
}
]
}

View file

@ -1,14 +1,17 @@
{
"type": "com.pixelized.shared.lwa.model.alteration.AlterationJsonV1",
"id": "TATOO_MAK",
"metadata": {
"name": "Tatouage Mak",
"description": "Tatouage des Mak permettant la transformation en loup."
},
"fields": [
{
"fieldId": "PP",
"expression": "-2"
}
]
"type": "com.pixelized.shared.lwa.model.alteration.AlterationJsonV1",
"id": "TATOO_MAK",
"metadata": {
"name": "Tatouage Mak",
"description": "Tatouage des Mak permettant la transformation en loup."
},
"tags": [
"TATOO"
],
"fields": [
{
"fieldId": "PP",
"expression": "-(2)"
}
]
}

View file

@ -1,14 +1,17 @@
{
"type": "com.pixelized.shared.lwa.model.alteration.AlterationJsonV1",
"id": "TATOO_MET_KHAFU",
"metadata": {
"name": "Tatouage de Met' Khafu",
"description": "Tatouage symbole d'un contrat partiel avec Met' Khafu."
},
"fields": [
{
"fieldId": "PP",
"expression": "-4"
}
]
"type": "com.pixelized.shared.lwa.model.alteration.AlterationJsonV1",
"id": "TATOO_MET_KHAFU",
"metadata": {
"name": "Tatouage de Met' Khafu",
"description": "Tatouage symbole d'un contrat partiel avec Met' Khafu."
},
"tags": [
"TATOO"
],
"fields": [
{
"fieldId": "PP",
"expression": "-(4)"
}
]
}

View file

@ -1,14 +1,17 @@
{
"type": "com.pixelized.shared.lwa.model.alteration.AlterationJsonV1",
"id": "TATOO_NYMPH",
"metadata": {
"name": "Tatouage de la nymphe",
"description": "Tatouage de de la Nymphe prodigué par Eyden Neige-Crin."
},
"fields": [
{
"fieldId": "PP",
"expression": "-3"
}
]
"type": "com.pixelized.shared.lwa.model.alteration.AlterationJsonV1",
"id": "TATOO_NYMPH",
"metadata": {
"name": "Tatouage de la nymphe",
"description": "Tatouage de de la Nymphe prodigué par Eyden Neige-Crin."
},
"tags": [
"TATOO"
],
"fields": [
{
"fieldId": "PP",
"expression": "-(3)"
}
]
}

17
tags/alteration.json Normal file
View file

@ -0,0 +1,17 @@
[
{
"type": "com.pixelized.shared.lwa.model.tag.TagJsonV1",
"id": "METAMORPHOSIS",
"label": "Métamorphose"
},
{
"type": "com.pixelized.shared.lwa.model.tag.TagJsonV1",
"id": "TATOO",
"label": "Tatouage"
},
{
"type": "com.pixelized.shared.lwa.model.tag.TagJsonV1",
"id": "EQUIPMENT",
"label": "Équipement"
}
]

12
tags/character.json Normal file
View file

@ -0,0 +1,12 @@
[
{
"type": "com.pixelized.shared.lwa.model.tag.TagJsonV1",
"id": "PLAYER",
"label": "Joueur"
},
{
"type": "com.pixelized.shared.lwa.model.tag.TagJsonV1",
"id": "NPC",
"label": "Npc"
}
]