From 57d77e43f65fa2684cf2fa14839c9d584a83e90f Mon Sep 17 00:00:00 2001 From: LocalIdentity Date: Mon, 8 Jun 2026 08:38:23 +1000 Subject: [PATCH] Fix Evasion and Deflection granted by Tangmazu's Thurible Accidentally forgot to divide the value by 10 --- src/Data/Skills/other.lua | 4 ++-- src/Export/Skills/other.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Data/Skills/other.lua b/src/Data/Skills/other.lua index 89d2e061b..21f006964 100644 --- a/src/Data/Skills/other.lua +++ b/src/Data/Skills/other.lua @@ -17842,10 +17842,10 @@ skills["SupportTangMazusThuriblePlayer"] = { statDescriptionScope = "gem_stat_descriptions", statMap = { ["companion_evasion_rating_+_per_10_summoner_evasion_rating"] = { - mod("MinionModifier", "LIST", { mod = mod("Evasion", "BASE", nil, 0, 0, { type = "PerStat", stat = "Evasion", actor = "parent" }) }), + mod("MinionModifier", "LIST", { mod = mod("Evasion", "BASE", nil, 0, 0, { type = "PerStat", stat = "Evasion", actor = "parent", div = 10 }) }), }, ["companion_deflection_rating_+_per_10_summoner_deflection_rating"] = { - mod("MinionModifier", "LIST", { mod = mod("DeflectionRating", "BASE", nil, 0, 0, { type = "PerStat", stat = "DeflectionRating", actor = "parent" }) }), + mod("MinionModifier", "LIST", { mod = mod("DeflectionRating", "BASE", nil, 0, 0, { type = "PerStat", stat = "DeflectionRating", actor = "parent", div = 10 }) }), }, }, baseFlags = { diff --git a/src/Export/Skills/other.txt b/src/Export/Skills/other.txt index 831aa3e98..c04eb29bb 100644 --- a/src/Export/Skills/other.txt +++ b/src/Export/Skills/other.txt @@ -1222,10 +1222,10 @@ statMap = { #set SupportTangMazusThuriblePlayer statMap = { ["companion_evasion_rating_+_per_10_summoner_evasion_rating"] = { - mod("MinionModifier", "LIST", { mod = mod("Evasion", "BASE", nil, 0, 0, { type = "PerStat", stat = "Evasion", actor = "parent" }) }), + mod("MinionModifier", "LIST", { mod = mod("Evasion", "BASE", nil, 0, 0, { type = "PerStat", stat = "Evasion", actor = "parent", div = 10 }) }), }, ["companion_deflection_rating_+_per_10_summoner_deflection_rating"] = { - mod("MinionModifier", "LIST", { mod = mod("DeflectionRating", "BASE", nil, 0, 0, { type = "PerStat", stat = "DeflectionRating", actor = "parent" }) }), + mod("MinionModifier", "LIST", { mod = mod("DeflectionRating", "BASE", nil, 0, 0, { type = "PerStat", stat = "DeflectionRating", actor = "parent", div = 10 }) }), }, }, #mods