From b781a1935b000b9bc3ee98ed9e5c3d7678e0857f Mon Sep 17 00:00:00 2001 From: macniel Date: Sat, 11 Oct 2025 13:50:11 +0200 Subject: [PATCH] implements calculations for wounds without zones --- src/packs/_source/wunden/arm-r-wunde.json | 4 +- src/packs/_source/wunden/bein-r-wunde.json | 4 +- src/packs/_source/wunden/wunde.json | 50 ++++++++++++++++++++++ 3 files changed, 54 insertions(+), 4 deletions(-) create mode 100644 src/packs/_source/wunden/wunde.json diff --git a/src/packs/_source/wunden/arm-r-wunde.json b/src/packs/_source/wunden/arm-r-wunde.json index b16c3c11..436be843 100644 --- a/src/packs/_source/wunden/arm-r-wunde.json +++ b/src/packs/_source/wunden/arm-r-wunde.json @@ -11,13 +11,13 @@ "priority": 10 }, { - "key": "system.at.rechts.mod", + "key": "system.attribute.at.rechts.mod", "mode": 2, "value": "-2", "priority": 10 }, { - "key": "system.pa.mod", + "key": "system.atribute.pa.mod", "mode": 2, "value": "-2", "priority": 10 diff --git a/src/packs/_source/wunden/bein-r-wunde.json b/src/packs/_source/wunden/bein-r-wunde.json index 8fd2c273..fceba306 100644 --- a/src/packs/_source/wunden/bein-r-wunde.json +++ b/src/packs/_source/wunden/bein-r-wunde.json @@ -11,13 +11,13 @@ "priority": 10 }, { - "key": "system.attribute.at.mod", + "key": "system.at.mod", "mode": 2, "value": "-2", "priority": 10 }, { - "key": "system.attribute.pa.mod", + "key": "system.pa.mod", "mode": 2, "value": "-2", "priority": 10 diff --git a/src/packs/_source/wunden/wunde.json b/src/packs/_source/wunden/wunde.json new file mode 100644 index 00000000..0f6ff0cb --- /dev/null +++ b/src/packs/_source/wunden/wunde.json @@ -0,0 +1,50 @@ +{ + "name": "Wunde", + "notes": "Nur für das Spiel ohne Trefferzonen gedacht.
Eine Waffe oder andere Auswirkung hat eine Wunde verursacht", + "unique": false, + "image": "icons/skills/wounds/bone-broken-knee-beam.webp", + "effects": [ + { + "key": "system.wunden", + "mode": 2, + "value": "1", + "priority": 10 + }, + { + "key": "system.at.mod", + "mode": 2, + "value": "-2", + "priority": 10 + }, + { + "key": "system.pa.mod", + "mode": 2, + "value": "-2", + "priority": 10 + }, + { + "key": "system.fk.mod", + "mode": 2, + "value": "-2", + "priority": 10 + }, + { + "key": "system.ini.mod", + "mode": 2, + "value": "-2", + "priority": 10 + }, + { + "key": "system.attribute.ge.mod", + "mode": 2, + "value": "-2", + "priority": 10 + }, + { + "key": "system.gs.mod", + "mode": 2, + "value": "-1", + "priority": 10 + } + ] +} \ No newline at end of file