From 24bc2cd4d5e537a987fd9c27bc5f3227e73497e6 Mon Sep 17 00:00:00 2001 From: CwasCard <46525736+CwasCard@users.noreply.github.com> Date: Wed, 8 Jan 2025 05:47:35 -0500 Subject: [PATCH] Removes damage from archery bracers, adds weakpoint accuracy. (#78731) * Update enchanted_bracers.json * Update enchanted_bracers.json * Update enchanted_bracers.json * Update enchanted_bracers.json * Update data/mods/Magiclysm/items/enchanted_bracers.json Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Changes WEAKPOINT_ACCURACY to an enchantment effect. * Update data/mods/Magiclysm/effects/effects.json Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * divide archery skill multiplier by 3 * Lint --------- Co-authored-by: Maleclypse <54345792+Maleclypse@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Anton Simakov <67688115+GuardianDll@users.noreply.github.com> --- data/mods/Magiclysm/effects/effects.json | 8 ++++++++ data/mods/Magiclysm/items/enchanted_bracers.json | 8 ++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/data/mods/Magiclysm/effects/effects.json b/data/mods/Magiclysm/effects/effects.json index ca014b0402ba2..6d1253d7832cf 100644 --- a/data/mods/Magiclysm/effects/effects.json +++ b/data/mods/Magiclysm/effects/effects.json @@ -1723,6 +1723,14 @@ "rating": "good", "base_mods": { "hit_mod": [ 2 ] } }, + { + "type": "effect_type", + "id": "archerybracers", + "name": [ "" ], + "desc": [ "" ], + "rating": "good", + "enchantments": [ { "values": [ { "value": "WEAKPOINT_ACCURACY", "multiply": { "math": [ "1+((u_skill('archery'))/3)" ] } } ] } ] + }, { "type": "effect_type", "id": "effect_feral_stormshaper_stormhammer", diff --git a/data/mods/Magiclysm/items/enchanted_bracers.json b/data/mods/Magiclysm/items/enchanted_bracers.json index 42471ab86eec7..d97d15dacc4cc 100644 --- a/data/mods/Magiclysm/items/enchanted_bracers.json +++ b/data/mods/Magiclysm/items/enchanted_bracers.json @@ -118,12 +118,8 @@ { "has": "WORN", "condition": { "u_has_wielded_with_flag": "SHEATH_BOW" }, - "values": [ - { "value": "RANGED_DAMAGE", "multiply": 0.25 }, - { "value": "RANGE", "multiply": 0.2 }, - { "value": "WEAPON_DISPERSION", "multiply": -0.33 } - ], - "ench_effects": [ { "effect": "effect_plus_two_to_hit", "intensity": 1 } ] + "values": [ { "value": "RANGE", "multiply": 0.2 }, { "value": "WEAPON_DISPERSION", "multiply": -0.33 } ], + "ench_effects": [ { "effect": "effect_plus_two_to_hit", "intensity": 1 }, { "effect": "archerybracers", "intensity": 1 } ] } ] }