diff --git a/game/modules/tome/data/general/objects/egos/weapon.lua b/game/modules/tome/data/general/objects/egos/weapon.lua index fd9c7e87ee9fdaf2241584d0bc084d8874fa325e..7fad68d5a61e43b714558d9dce98f97234420706 100644 --- a/game/modules/tome/data/general/objects/egos/weapon.lua +++ b/game/modules/tome/data/general/objects/egos/weapon.lua @@ -119,7 +119,7 @@ newEntity{ cost = 22, combat = { special_on_hit = {desc="10% chance to torment the target", fct=function(combat, who, target) - if not rng.percent(100) then return end + if not rng.percent(10) then return end local eff = rng.table{"stun", "blind", "pin", "teleport", "stone", "confusion", "silence", "knockback"} if not target:canBe(eff) then return end if not target:checkHit(who:combatAttack(combat), target:combatPhysicalResist(), 15) then return end diff --git a/game/modules/tome/data/general/objects/world-artifacts.lua b/game/modules/tome/data/general/objects/world-artifacts.lua index c6ba451a2e86765b1fafcd6f796574189018e8a4..88359844d60efb7f909d34fa80cc0d00e40179f4 100644 --- a/game/modules/tome/data/general/objects/world-artifacts.lua +++ b/game/modules/tome/data/general/objects/world-artifacts.lua @@ -1154,6 +1154,38 @@ newEntity{ base = "BASE_MASSIVE_ARMOR", }, } +newEntity{ base = "BASE_GREATSWORD", + unique = true, + name = "Golden Three-Edged Sword 'The Truth' ", + unided_name = "three-edged sword", + desc = [[The wise ones say that truth is a three-edged sword. And sometimes, the truth hurts.]], + level_range = {25, 32}, + require = { stat = { str=26, wil=26, cun=26 }, }, + color = colors.GOLD, + encumberance = 12, + cost = 350, + rarity = 240, + material_level = 4, + combat = { + dam = 40, + apr = 1, + physcrit = 7, + dammod = {str=1.2}, + special_on_hit = {desc="9% chance to stun or confuse the target", fct=function(combat, who, target) + if not rng.percent(9) then return end + local eff = rng.table{"stun", "confusion"} + if not target:canBe(eff) then return end + if not target:checkHit(who:combatAttack(combat), target:combatPhysicalResist(), 15) then return end + if eff == "stun" then target:setEffect(target.EFF_STUNNED, 3, {}) + elseif eff == "confusion" then target:setEffect(target.EFF_CONFUSED, 3, {power=75}) + end + end}, + }, + wielder = { + melee_project={[DamageType.LIGHT] = 40, [DamageType.DARKNESS] = 40}, + }, +} + --[=[ newEntity{ unique = true,