diff --git a/game/modules/tome/data/timed_effects/floor.lua b/game/modules/tome/data/timed_effects/floor.lua index b3e6b0b22e5845f9cd0e4d4a46098cb2230c0c4e..c78c7e351a8a5a9dbca96139c8e73f95fa34febf 100644 --- a/game/modules/tome/data/timed_effects/floor.lua +++ b/game/modules/tome/data/timed_effects/floor.lua @@ -24,6 +24,7 @@ local Chat = require "engine.Chat" local Map = require "engine.Map" local Level = require "engine.Level" +--I18N-TODO Need some clean up local function floorEffect(t) t.name = t.name or t.desc t.name = t.name:upper():gsub("[ ']", "_") @@ -40,7 +41,7 @@ end floorEffect{ desc = "Icy Floor", image = "talents/ice_storm.png", - long_desc = "The target is walking on an icy floor. Increasing movement speed by 20%, providing +20% cold damage piercing and -30% stun immunity.", + long_desc = _t"The target is walking on an icy floor. Increasing movement speed by 20%, providing +20% cold damage piercing and -30% stun immunity.", activate = function(self, eff) self:effectTemporaryValue(eff, "resists_pen", {[DamageType.COLD] = 20}) self:effectTemporaryValue(eff, "movement_speed", 0.2) @@ -50,7 +51,7 @@ floorEffect{ floorEffect{ desc = "Font of Life", image = "talents/grand_arrival.png", - long_desc = function(self, eff) return ("The target is near a font of life, granting %+0.2f life regeneration, %+0.2f equilibrium regeneration, %+0.2f stamina regeneration and %+0.2f psi regeneration. (Only living creatures benefit.)"):format(eff.power, eff.equilibrium, eff.stamina, eff.psi) end, + long_desc = function(self, eff) return ("The target is near a font of life, granting %+0.2f life regeneration, %+0.2f equilibrium regeneration, %+0.2f stamina regeneration and %+0.2f psi regeneration. (Only living creatures benefit.)"):tformat(eff.power, eff.equilibrium, eff.stamina, eff.psi) end, parameters = {power=1, equilibrium=0, stamina=0, psi=0}, activate = function(self, eff) if not self:checkClassification("living") then eff.power = 0 return end @@ -67,7 +68,7 @@ floorEffect{ floorEffect{ desc = "Spellblaze Scar", image = "talents/blood_boil.png", - long_desc = "The target is near a spellblaze scar, granting +25% spell critical chance, +10% fire and blight damage but critical spells will drain arcane forces.", + long_desc = _t"The target is near a spellblaze scar, granting +25% spell critical chance, +10% fire and blight damage but critical spells will drain arcane forces.", activate = function(self, eff) self:effectTemporaryValue(eff, "combat_spellcrit", 25) self:effectTemporaryValue(eff, "inc_damage", {[DamageType.FIRE]=10,[DamageType.BLIGHT]=10}) @@ -81,7 +82,7 @@ floorEffect{ floorEffect{ desc = "Blighted Soil", image = "talents/blightzone.png", - long_desc = "The target is walking on blighted soil, reducing diseases resistance by 60% and giving all attacks a 40% chance to infect the target with a random disease (can only happen once per turn).", + long_desc = _t"The target is walking on blighted soil, reducing diseases resistance by 60% and giving all attacks a 40% chance to infect the target with a random disease (can only happen once per turn).", activate = function(self, eff) self:effectTemporaryValue(eff, "disease_immune", -0.6) self:effectTemporaryValue(eff, "blighted_soil", 40) @@ -90,14 +91,14 @@ floorEffect{ floorEffect{ desc = "Glimmerstone", image = "effects/dazed.png", name = "DAZING_DAMAGE", - long_desc = "The target is affected by a glimmerstone, its next attack will try to daze.", + long_desc = _t"The target is affected by a glimmerstone, its next attack will try to daze.", activate = function(self, eff) end, } floorEffect{ desc = "Protective Aura", image = "talents/barrier.png", - long_desc = function(self, eff) return ("The target is near a protective aura, granting +%d armour and +%d physical save."):format(eff.armor, eff.power) end, + long_desc = function(self, eff) return ("The target is near a protective aura, granting +%d armour and +%d physical save."):tformat(eff.armor, eff.power) end, parameters = {power=1, armor=1}, activate = function(self, eff) local power = 3 + game.zone:level_adjust_level(game.level, game.zone, "object") / 2 @@ -110,7 +111,7 @@ floorEffect{ floorEffect{ desc = "Antimagic Bush", image = "talents/fungal_growth.png", - long_desc = function(self, eff) return ("The target is near an antimagic bush, granting +20%% nature damage, +20%% nature resistance penetration and -%d spellpower."):format(eff.power) end, + long_desc = function(self, eff) return ("The target is near an antimagic bush, granting +20%% nature damage, +20%% nature resistance penetration and -%d spellpower."):tformat(eff.power) end, activate = function(self, eff) eff.power = 10 + game.zone:level_adjust_level(game.level, game.zone, "object") / 1.5 self:effectTemporaryValue(eff, "combat_spellpower", -eff.power) @@ -121,7 +122,7 @@ floorEffect{ floorEffect{ desc = "Necrotic Air", image = "talents/repression.png", - long_desc = "The target is in a zone of necrotic air, granting -40% healing mod. Undead creatures also get +15% to all resistances.", + long_desc = _t"The target is in a zone of necrotic air, granting -40% healing mod. Undead creatures also get +15% to all resistances.", activate = function(self, eff) self:effectTemporaryValue(eff, "healing_factor", -0.4) if self:attr("undead") then self:effectTemporaryValue(eff, "resists", {all=15}) end @@ -130,7 +131,7 @@ floorEffect{ floorEffect{ desc = "Whistling Vortex", image = "talents/shadow_blast.png", - long_desc = function(self, eff) return ("The target is in a whistling vortex, granting +%d ranged defense, -%d ranged accuracy and incoming projectiles are 30%% slower."):format(eff.power, eff.power) end, + long_desc = function(self, eff) return ("The target is in a whistling vortex, granting +%d ranged defense, -%d ranged accuracy and incoming projectiles are 30%% slower."):tformat(eff.power, eff.power) end, activate = function(self, eff) eff.power = 10 + game.zone:level_adjust_level(game.level, game.zone, "object") / 2 self:effectTemporaryValue(eff, "combat_def_ranged", eff.power) @@ -141,7 +142,7 @@ floorEffect{ floorEffect{ desc = "Fell Aura", image = "talents/shadow_mages.png", - long_desc = "The target is surrounded by a fell aura, granting 40% critical damage bonus but -20% to all resistances.", + long_desc = _t"The target is surrounded by a fell aura, granting 40% critical damage bonus but -20% to all resistances.", activate = function(self, eff) self:effectTemporaryValue(eff, "combat_critical_power", 40) self:effectTemporaryValue(eff, "resists", {all=-20}) @@ -150,7 +151,7 @@ floorEffect{ floorEffect{ desc = "Slimey Pool", image = "talents/acidic_skin.png", - long_desc = "The target is walking on slime. Decreasing movement speed by 20% and dealing 20 slime damage to any creatures attacking it.", + long_desc = _t"The target is walking on slime. Decreasing movement speed by 20% and dealing 20 slime damage to any creatures attacking it.", activate = function(self, eff) self:effectTemporaryValue(eff, "on_melee_hit", {[DamageType.SLIME] = 20}) self:effectTemporaryValue(eff, "movement_speed", -0.2) diff --git a/game/modules/tome/data/timed_effects/magical.lua b/game/modules/tome/data/timed_effects/magical.lua index 310112adeb37471ba57ea9933e485443219d4acd..a21be3d1f3e9c033f26540e973d56b456caa6259 100644 --- a/game/modules/tome/data/timed_effects/magical.lua +++ b/game/modules/tome/data/timed_effects/magical.lua @@ -32,15 +32,15 @@ local Level = require "engine.Level" -- Add dummy power/dam parameters to try to stay in line with other diseases for subtype checks newEffect{ name = "ITEM_BLIGHT_ILLNESS", image = "talents/decrepitude_disease.png", - desc = "Illness", - long_desc = function(self, eff) return ("The target is infected by a disease, reducing its dexterity, strength, and constitution by %d."):format(eff.reduce) end, + desc = _t"Illness", + long_desc = function(self, eff) return ("The target is infected by a disease, reducing its dexterity, strength, and constitution by %d."):tformat(eff.reduce) end, charges = function(self, eff) return (tostring(math.floor(eff.reduce))) end, type = "magical", subtype = {disease=true, blight=true}, status = "detrimental", parameters = {reduce = 1, dam = 0, power = 0}, - on_gain = function(self, err) return "#Target# is afflicted by a crippling illness!" end, - on_lose = function(self, err) return "#Target# is free from the illness." end, + on_gain = function(self, err) return _t"#Target# is afflicted by a crippling illness!" end, + on_lose = function(self, err) return _t"#Target# is free from the illness." end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("inc_stats", { [Stats.STAT_DEX] = -eff.reduce, @@ -56,15 +56,15 @@ newEffect{ newEffect{ name = "ITEM_ACID_CORRODE", image = "talents/acidic_skin.png", - desc = "Armor Corroded", - long_desc = function(self, eff) return ("The target has been splashed with acid, reducing armour by %d%% (#RED#%d#LAST#)."):format(eff.pct*100 or 0, eff.reduce or 0) end, + desc = _t"Armor Corroded", + long_desc = function(self, eff) return ("The target has been splashed with acid, reducing armour by %d%% (#RED#%d#LAST#)."):tformat(eff.pct*100 or 0, eff.reduce or 0) end, charges = function(self, eff) return (tostring(math.floor(eff.reduce))) end, type = "magical", subtype = { acid=true, sunder=true }, status = "detrimental", parameters = {pct = 0.3}, - on_gain = function(self, err) return "#Target#'s armor corrodes!" end, - on_lose = function(self, err) return "#Target# is fully armored again." end, + on_gain = function(self, err) return _t"#Target#'s armor corrodes!" end, + on_lose = function(self, err) return _t"#Target# is fully armored again." end, on_timeout = function(self, eff) end, activate = function(self, eff) @@ -79,14 +79,14 @@ newEffect{ newEffect{ name = "MANASURGE", image = "talents/rune__manasurge.png", - desc = "Surging mana", - long_desc = function(self, eff) return ("The mana surge engulfs the target, regenerating %0.2f mana per turn."):format(eff.power) end, + desc = _t"Surging mana", + long_desc = function(self, eff) return ("The mana surge engulfs the target, regenerating %0.2f mana per turn."):tformat(eff.power) end, type = "magical", subtype = { arcane=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# starts to surge mana.", "+Manasurge" end, - on_lose = function(self, err) return "#Target# stops surging mana.", "-Manasurge" end, + on_gain = function(self, err) return _t"#Target# starts to surge mana.", _t"+Manasurge" end, + on_lose = function(self, err) return _t"#Target# stops surging mana.", _t"-Manasurge" end, on_merge = function(self, old_eff, new_eff) -- Merge the mana local olddam = old_eff.power * old_eff.dur @@ -109,14 +109,14 @@ newEffect{ newEffect{ name = "MANA_OVERFLOW", image = "talents/aegis.png", - desc = "Mana Overflow", - long_desc = function(self, eff) return ("The mana is overflowing, increasing your max mana by %d%%."):format(eff.power) end, + desc = _t"Mana Overflow", + long_desc = function(self, eff) return ("The mana is overflowing, increasing your max mana by %d%%."):tformat(eff.power) end, type = "magical", subtype = { arcane=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# starts to overflow mana.", "+Mana Overflow" end, - on_lose = function(self, err) return "#Target# stops overflowing mana.", "-Mana Overflow" end, + on_gain = function(self, err) return _t"#Target# starts to overflow mana.", _t"+Mana Overflow" end, + on_lose = function(self, err) return _t"#Target# stops overflowing mana.", _t"-Mana Overflow" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("max_mana", eff.power * self:getMaxMana() / 100) end, @@ -127,14 +127,14 @@ newEffect{ newEffect{ name = "STONED", image = "talents/stone_touch.png", - desc = "Stoned", - long_desc = function(self, eff) return "The target has been turned to stone: it is rooted in place, unable to act, and may be shattered by a single blow dealing more than 30% of its maximum life. It's new form makes it immune to being poisoned or cut, and grants improved physical(+20%), fire(+80%) and lightning(+50%) resistances." end, + desc = _t"Stoned", + long_desc = function(self, eff) return _t"The target has been turned to stone: it is rooted in place, unable to act, and may be shattered by a single blow dealing more than 30% of its maximum life. It's new form makes it immune to being poisoned or cut, and grants improved physical(+20%), fire(+80%) and lightning(+50%) resistances." end, type = "magical", subtype = { earth=true, stone=true, stun = true}, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# turns to #GREY#STONE#LAST#!", "+Stoned" end, - on_lose = function(self, err) return "#Target# is no longer a #GREY#statue#LAST#.", "-Stoned" end, + on_gain = function(self, err) return _t"#Target# turns to #GREY#STONE#LAST#!", _t"+Stoned" end, + on_lose = function(self, err) return _t"#Target# is no longer a #GREY#statue#LAST#.", _t"-Stoned" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("stoned", 1) eff.poison = self:addTemporaryValue("poison_immune", 1) @@ -159,8 +159,8 @@ newEffect{ newEffect{ name = "ARCANE_STORM", image = "talents/disruption_shield.png", - desc = "Arcane Storm", - long_desc = function(self, eff) return ("The target is the epicenter of a terrible arcane storm, providing +%d%% arcane resistance."):format(eff.power) end, + desc = _t"Arcane Storm", + long_desc = function(self, eff) return ("The target is the epicenter of a terrible arcane storm, providing +%d%% arcane resistance."):tformat(eff.power) end, type = "magical", subtype = { arcane=true}, status = "beneficial", @@ -177,14 +177,14 @@ newEffect{ newEffect{ name = "EARTHEN_BARRIER", image = "talents/earthen_barrier.png", - desc = "Earthen Barrier", - long_desc = function(self, eff) return ("Reduces physical damage received by %d%%."):format(eff.power) end, + desc = _t"Earthen Barrier", + long_desc = function(self, eff) return ("Reduces physical damage received by %d%%."):tformat(eff.power) end, type = "magical", subtype = { earth=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# hardens its skin.", "+Earthen barrier" end, - on_lose = function(self, err) return "#Target#'s skin returns to normal.", "-Earthen barrier" end, + on_gain = function(self, err) return _t"#Target# hardens its skin.", _t"+Earthen barrier" end, + on_lose = function(self, err) return _t"#Target#'s skin returns to normal.", _t"-Earthen barrier" end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("stone_skin", 1, {density=4})) eff.tmpid = self:addTemporaryValue("resists", {[DamageType.PHYSICAL]=eff.power}) @@ -197,14 +197,14 @@ newEffect{ newEffect{ name = "MOLTEN_SKIN", image = "talents/golem_molten_skin.png", - desc = "Molten Skin", - long_desc = function(self, eff) return ("Reduces fire damage received by %d%%."):format(eff.power) end, + desc = _t"Molten Skin", + long_desc = function(self, eff) return ("Reduces fire damage received by %d%%."):tformat(eff.power) end, type = "magical", subtype = { fire=true, earth=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target#'s skin turns into molten lava.", "+Molten Skin" end, - on_lose = function(self, err) return "#Target#'s skin returns to normal.", "-Molten Skin" end, + on_gain = function(self, err) return _t"#Target#'s skin turns into molten lava.", _t"+Molten Skin" end, + on_lose = function(self, err) return _t"#Target#'s skin returns to normal.", _t"-Molten Skin" end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("wildfire", 1)) eff.tmpid = self:addTemporaryValue("resists", {[DamageType.FIRE]=eff.power}) @@ -217,14 +217,14 @@ newEffect{ newEffect{ name = "REFLECTIVE_SKIN", image = "talents/golem_reflective_skin.png", - desc = "Reflective Skin", - long_desc = function(self, eff) return ("Magically returns %d%% of any damage done to the attacker."):format(eff.power) end, + desc = _t"Reflective Skin", + long_desc = function(self, eff) return ("Magically returns %d%% of any damage done to the attacker."):tformat(eff.power) end, type = "magical", subtype = { arcane=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target#'s skin starts to shimmer.", "+Reflective Skin" end, - on_lose = function(self, err) return "#Target#'s skin returns to normal.", "-Reflective Skin" end, + on_gain = function(self, err) return _t"#Target#'s skin starts to shimmer.", _t"+Reflective Skin" end, + on_lose = function(self, err) return _t"#Target#'s skin returns to normal.", _t"-Reflective Skin" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("reflect_damage", eff.power) self:addShaderAura("reflective_skin", "awesomeaura", {time_factor=5500, alpha=0.6, flame_scale=0.6}, "particles_images/arcaneshockwave.png") @@ -237,8 +237,8 @@ newEffect{ newEffect{ name = "VIMSENSE", image = "talents/vimsense.png", - desc = "Vimsense", - long_desc = function(self, eff) return ("Reduces blight resistance by %d%% and all saves by %d."):format(eff.power, eff.saves) end, + desc = _t"Vimsense", + long_desc = function(self, eff) return ("Reduces blight resistance by %d%% and all saves by %d."):tformat(eff.power, eff.saves) end, type = "magical", subtype = { blight=true }, status = "detrimental", @@ -255,14 +255,14 @@ newEffect{ newEffect{ name = "INVISIBILITY", image = "effects/invisibility.png", - desc = "Invisibility", - long_desc = function(self, eff) return ("Improves/gives invisibility (power %d), reducing damage dealt by %d%%%s."):format(eff.power, eff.penalty*100, eff.regen and " and preventing healing and life regeneration" or "") end, + desc = _t"Invisibility", + long_desc = function(self, eff) return ("Improves/gives invisibility (power %d), reducing damage dealt by %d%%%s."):tformat(eff.power, eff.penalty*100, eff.regen and " and preventing healing and life regeneration" or "") end, type = "magical", subtype = { phantasm=true }, status = "beneficial", parameters = { power=10, penalty=0, regen=false }, - on_gain = function(self, err) return "#Target# vanishes from sight.", "+Invis" end, - on_lose = function(self, err) return "#Target# is no longer invisible.", "-Invis" end, + on_gain = function(self, err) return _t"#Target# vanishes from sight.", _t"+Invis" end, + on_lose = function(self, err) return _t"#Target# is no longer invisible.", _t"-Invis" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("invisible", eff.power) eff.penaltyid = self:addTemporaryValue("invisible_damage_penalty", eff.penalty) @@ -295,15 +295,15 @@ newEffect{ newEffect{ name = "ETHEREAL", image = "effects/invisibility.png", - desc = "Ethereal", + desc = _t"Ethereal", long_desc = function(self, eff) return ("Invisible (power %d), damage dealt reduced by %d%%, all resistances increased by %d%%, movement speed increased by %d%%."): - format(eff.power, eff.reduction * 100, eff.resist, eff.move) end, + tformat(eff.power, eff.reduction * 100, eff.resist, eff.move) end, type = "magical", subtype = { phantasm=true }, status = "beneficial", parameters = { power=10, resist=0, reduction=0, move=0}, - on_gain = function(self, err) return "#Target# becomes ethereal.", "+Ethereal" end, - on_lose = function(self, err) return "#Target# is no longer ethereal.", "-Ethereal" end, + on_gain = function(self, err) return _t"#Target# becomes ethereal.", _t"+Ethereal" end, + on_lose = function(self, err) return _t"#Target# is no longer ethereal.", _t"-Ethereal" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("invisible", eff.power) eff.penaltyid = self:addTemporaryValue("invisible_damage_penalty", eff.reduction) @@ -333,16 +333,16 @@ newEffect{ newEffect{ name = "STORMSHIELD", image = "talents/rune__lightning.png", - desc = "Stormshield", + desc = _t"Stormshield", long_desc = function(self, eff) return ("The target is protected a raging storm deflecting up to %d instances of damage over %d."): - format(eff.blocks, eff.threshold) end, + tformat(eff.blocks, eff.threshold) end, type = "magical", subtype = { lightning=true, shield=true }, status = "beneficial", charges = function(self, eff) return math.floor(eff.blocks) end, parameters = {threshold = 1, blocks = 1,}, - on_gain = function(self, err) return "#Target# summons a storm to protect them!", "+Stormshield" end, - on_lose = function(self, err) return "#Target#'s storm dissipates.", "-Stormshield" end, + on_gain = function(self, err) return _t"#Target# summons a storm to protect them!", _t"+Stormshield" end, + on_lose = function(self, err) return _t"#Target#'s storm dissipates.", _t"-Stormshield" end, activate = function(self, eff) if core.shader.active(4) then self:effectParticles(eff, {type="shader_ring_rotating", args={rotation=0, radius=1.0, img="lightningshield"}, shader={type="lightningshield"}}) @@ -355,7 +355,7 @@ newEffect{ callbackOnTakeDamage = function(self, eff, src, x, y, type, dam, state) if dam < eff.threshold then return end local d_color = DamageType:get(type).text_color or "#ORCHID#" - game:delayedLogDamage(src, self, 0, ("%s(%d stormshielded#LAST#%s)#LAST#"):format(d_color, dam, d_color), false) + game:delayedLogDamage(src, self, 0, ("%s(%d stormshielded#LAST#%s)#LAST#"):tformat(d_color, dam, d_color), false) eff.blocks = eff.blocks - 1 if eff.blocks <= 0 then src:logCombat(self, "#BLUE##Target#'s stormshield is out of charges and disspitates!#LAST#.") @@ -367,21 +367,21 @@ newEffect{ newEffect{ name = "PRISMATIC_SHIELD", image = "talents/ward.png", - desc = "Prismatic Shield", + desc = _t"Prismatic Shield", long_desc = function(self, eff) local str = "" for k,v in pairs(eff.wards) do str = str .. ", " .. v .. " " .. k:lower() end str = string.sub(str, 2) - return ("The target is protected by a prismatic shield blocking many instances of damage. Remaining: %s"):format(str) -- add tooltip + return ("The target is protected by a prismatic shield blocking many instances of damage. Remaining: %s"):tformat(str) -- add tooltip end, type = "magical", subtype = { ward=true, }, status = "beneficial", parameters = { wards = {} }, - on_gain = function(self, err) return "#Target# summons a prismatic shield to protect him!", "+Prismatic" end, - on_lose = function(self, err) return "#Target#'s prismatic shield fades.", "-Prismatic" end, + on_gain = function(self, err) return _t"#Target# summons a prismatic shield to protect him!", _t"+Prismatic" end, + on_lose = function(self, err) return _t"#Target#'s prismatic shield fades.", _t"-Prismatic" end, activate = function(self, eff) end, deactivate = function(self, eff) @@ -391,7 +391,7 @@ newEffect{ for k,v in pairs(eff.wards) do if k == type then local d_color = DamageType:get(type).text_color or "#ORCHID#" -- fix display - game:delayedLogDamage(src, self, 0, ("%s(%d to prism#LAST#%s)#LAST#"):format(d_color, dam, d_color), false) + game:delayedLogDamage(src, self, 0, ("%s(%d to prism#LAST#%s)#LAST#"):tformat(d_color, dam, d_color), false) eff.wards[k] = eff.wards[k] - 1 if eff.wards[k] <= 0 then eff.wards[k] = nil end return {dam = 0} @@ -403,15 +403,15 @@ newEffect{ newEffect{ name = "PURGING", image = "talents/willful_tormenter.png", -- re-used icon - desc = "PURGING", + desc = _t"PURGING", long_desc = function(self, eff) return ("The target is being purged of 1 physical ailment each turn."): - format() end, + tformat() end, type = "magical", subtype = { arcane=true, }, status = "beneficial", parameters = {}, - on_gain = function(self, err) return "#Target# is being purged of his physical ailments!", "+Purging" end, - on_lose = function(self, err) return "#Target#'s is no longer being purged.", "-Purging" end, + on_gain = function(self, err) return _t"#Target# is being purged of his physical ailments!", _t"+Purging" end, + on_lose = function(self, err) return _t"#Target#'s is no longer being purged.", _t"-Purging" end, activate = function(self, eff) end, deactivate = function(self, eff) @@ -424,8 +424,8 @@ newEffect{ newEffect{ name = "VIMSENSE_DETECT", image = "talents/vimsense.png", - desc = "Sensing (Vim)", - long_desc = function(self, eff) return "Improves senses, allowing the detection of unseen things." end, + desc = _t"Sensing (Vim)", + long_desc = function(self, eff) return _t"Improves senses, allowing the detection of unseen things." end, type = "magical", subtype = { sense=true, corruption=true }, status = "beneficial", @@ -453,14 +453,14 @@ newEffect{ newEffect{ name = "SENSE_HIDDEN", image = "talents/keen_senses.png", - desc = "Sense Hidden", - long_desc = function(self, eff) return ("Improves/gives the ability to see invisible and stealthed creatures (power %d)."):format(eff.power) end, + desc = _t"Sense Hidden", + long_desc = function(self, eff) return ("Improves/gives the ability to see invisible and stealthed creatures (power %d)."):tformat(eff.power) end, type = "magical", subtype = { sense=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target#'s eyes tingle." end, - on_lose = function(self, err) return "#Target#'s eyes tingle no more." end, + on_gain = function(self, err) return _t"#Target#'s eyes tingle." end, + on_lose = function(self, err) return _t"#Target#'s eyes tingle no more." end, activate = function(self, eff) eff.invisid = self:addTemporaryValue("see_invisible", eff.power) eff.stealthid = self:addTemporaryValue("see_stealth", eff.power) @@ -473,14 +473,14 @@ newEffect{ newEffect{ name = "BANE_BLINDED", image = "effects/bane_blinded.png", - desc = "Bane of Blindness", - long_desc = function(self, eff) return ("The target is blinded, unable to see anything and takes %0.2f darkness damage per turn."):format(eff.dam) end, + desc = _t"Bane of Blindness", + long_desc = function(self, eff) return ("The target is blinded, unable to see anything and takes %0.2f darkness damage per turn."):tformat(eff.dam) end, type = "magical", subtype = { bane=true, blind=true }, status = "detrimental", parameters = { dam=10}, - on_gain = function(self, err) return "#Target# loses sight!", "+Blind" end, - on_lose = function(self, err) return "#Target# recovers sight.", "-Blind" end, + on_gain = function(self, err) return _t"#Target# loses sight!", _t"+Blind" end, + on_lose = function(self, err) return _t"#Target# recovers sight.", _t"-Blind" end, on_timeout = function(self, eff) DamageType:get(DamageType.DARKNESS).projector(eff.src, self.x, self.y, DamageType.DARKNESS, eff.dam) end, @@ -502,15 +502,15 @@ newEffect{ newEffect{ name = "BANE_CONFUSED", image = "effects/bane_confused.png", - desc = "Bane of Confusion", - long_desc = function(self, eff) return ("The target is confused, acting randomly (chance %d%%), unable to perform complex actions and takes %0.2f darkness damage per turn."):format(eff.power, eff.dam) end, + desc = _t"Bane of Confusion", + long_desc = function(self, eff) return ("The target is confused, acting randomly (chance %d%%), unable to perform complex actions and takes %0.2f darkness damage per turn."):tformat(eff.power, eff.dam) end, charges = function(self, eff) return (tostring(math.floor(eff.power)).."%") end, type = "magical", subtype = { bane=true, confusion=true }, status = "detrimental", parameters = { power=50, dam=10 }, - on_gain = function(self, err) return "#Target# wanders around!.", "+Confused" end, - on_lose = function(self, err) return "#Target# seems more focused.", "-Confused" end, + on_gain = function(self, err) return _t"#Target# wanders around!.", _t"+Confused" end, + on_lose = function(self, err) return _t"#Target# seems more focused.", _t"-Confused" end, on_timeout = function(self, eff) DamageType:get(DamageType.DARKNESS).projector(eff.src, self.x, self.y, DamageType.DARKNESS, eff.dam) end, @@ -526,14 +526,14 @@ newEffect{ newEffect{ name = "SUPERCHARGE_GOLEM", image = "talents/supercharge_golem.png", - desc = "Supercharge Golem", - long_desc = function(self, eff) return ("The target is supercharged, increasing life regen by %0.2f and damage done by 20%%."):format(eff.regen) end, + desc = _t"Supercharge Golem", + long_desc = function(self, eff) return ("The target is supercharged, increasing life regen by %0.2f and damage done by 20%%."):tformat(eff.regen) end, type = "magical", subtype = { arcane=true }, status = "beneficial", parameters = { regen=10 }, - on_gain = function(self, err) return "#Target# is overloaded with power.", "+Supercharge" end, - on_lose = function(self, err) return "#Target# seems less dangerous.", "-Supercharge" end, + on_gain = function(self, err) return _t"#Target# is overloaded with power.", _t"+Supercharge" end, + on_lose = function(self, err) return _t"#Target# seems less dangerous.", _t"-Supercharge" end, activate = function(self, eff) eff.pid = self:addTemporaryValue("inc_damage", {all=25}) eff.lid = self:addTemporaryValue("life_regen", eff.regen) @@ -552,14 +552,14 @@ newEffect{ newEffect{ name = "POWER_OVERLOAD", - desc = "Power Overload", - long_desc = function(self, eff) return ("The target radiates incredible power, increasing all damage done by %d%%."):format(eff.power) end, + desc = _t"Power Overload", + long_desc = function(self, eff) return ("The target radiates incredible power, increasing all damage done by %d%%."):tformat(eff.power) end, type = "magical", subtype = { arcane=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is overloaded with power.", "+Overload" end, - on_lose = function(self, err) return "#Target# seems less dangerous.", "-Overload" end, + on_gain = function(self, err) return _t"#Target# is overloaded with power.", _t"+Overload" end, + on_lose = function(self, err) return _t"#Target# seems less dangerous.", _t"-Overload" end, activate = function(self, eff) eff.pid = self:addTemporaryValue("inc_damage", {all=eff.power}) end, @@ -570,14 +570,14 @@ newEffect{ newEffect{ name = "LIFE_TAP", image = "talents/life_tap.png", - desc = "Life Tap", - long_desc = function(self, eff) return ("The target taps its blood's hidden power, healing for %d%% of all damage they deal."):format(eff.power) end, + desc = _t"Life Tap", + long_desc = function(self, eff) return ("The target taps its blood's hidden power, healing for %d%% of all damage they deal."):tformat(eff.power) end, type = "magical", subtype = { blight=true }, status = "beneficial", parameters = { power=0 }, - on_gain = function(self, err) return "#Target# looks healthier as he deals damage.", "+Life Tap" end, - on_lose = function(self, err) return "#Target# stops leeching life.", "-Life Tap" end, + on_gain = function(self, err) return _t"#Target# looks healthier as he deals damage.", _t"+Life Tap" end, + on_lose = function(self, err) return _t"#Target# stops leeching life.", _t"-Life Tap" end, activate = function(self, eff) end, deactivate = function(self, eff) @@ -594,8 +594,8 @@ newEffect{ newEffect{ name = "ARCANE_EYE", image = "talents/arcane_eye.png", - desc = "Arcane Eye", - long_desc = function(self, eff) return ("You have an arcane eye observing for you in a radius of %d."):format(eff.radius) end, + desc = _t"Arcane Eye", + long_desc = function(self, eff) return ("You have an arcane eye observing for you in a radius of %d."):tformat(eff.radius) end, type = "magical", subtype = { sense=true }, status = "beneficial", @@ -627,8 +627,8 @@ newEffect{ newEffect{ name = "ARCANE_EYE_SEEN", image = "talents/arcane_eye.png", - desc = "Seen by Arcane Eye", - long_desc = function(self, eff) return "An Arcane Eye has seen this creature." end, + desc = _t"Seen by Arcane Eye", + long_desc = function(self, eff) return _t"An Arcane Eye has seen this creature." end, type = "magical", subtype = { sense=true }, no_ct_effect = true, @@ -648,8 +648,8 @@ newEffect{ newEffect{ name = "ALL_STAT", image = "effects/all_stat.png", - desc = "All stats increase", - long_desc = function(self, eff) return ("All primary stats of the target are increased by %d."):format(eff.power) end, + desc = _t"All stats increase", + long_desc = function(self, eff) return ("All primary stats of the target are increased by %d."):tformat(eff.power) end, type = "magical", subtype = { arcane=true }, status = "beneficial", @@ -672,14 +672,14 @@ newEffect{ newEffect{ name = "DISPLACEMENT_SHIELD", image = "talents/displacement_shield.png", - desc = "Displacement Shield", - long_desc = function(self, eff) return ("The target is surrounded by a space distortion that randomly sends (%d%% chance) incoming damage to another target (%s). Absorbs %d/%d damage before it crumbles."):format(eff.chance, eff.target and eff.target.name or "unknown", self.displacement_shield, eff.power) end, + desc = _t"Displacement Shield", + long_desc = function(self, eff) return ("The target is surrounded by a space distortion that randomly sends (%d%% chance) incoming damage to another target (%s). Absorbs %d/%d damage before it crumbles."):tformat(eff.chance, eff.target and eff.target.name or "unknown", self.displacement_shield, eff.power) end, type = "magical", subtype = { teleport=true, shield=true }, status = "beneficial", parameters = { power=10, target=nil, chance=25 }, - on_gain = function(self, err) return "The very fabric of space alters around #target#.", "+Displacement Shield" end, - on_lose = function(self, err) return "The fabric of space around #target# stabilizes to normal.", "-Displacement Shield" end, + on_gain = function(self, err) return _t"The very fabric of space alters around #target#.", _t"+Displacement Shield" end, + on_lose = function(self, err) return _t"The fabric of space around #target# stabilizes to normal.", _t"-Displacement Shield" end, on_aegis = function(self, eff, aegis) self.displacement_shield = self.displacement_shield + eff.power * aegis / 100 if core.shader.active(4) then @@ -726,15 +726,15 @@ newEffect{ newEffect{ name = "DAMAGE_SHIELD", image = "talents/barrier.png", - desc = "Damage Shield", - long_desc = function(self, eff) return ("The target is surrounded by a magical shield, absorbing %d/%d damage %s before it crumbles."):format(self.damage_shield_absorb, eff.power, ((self.damage_shield_reflect and self.damage_shield_reflect > 0) and ("(reflecting %d%% back to the attacker)"):format(self.damage_shield_reflect) or "")) end, + desc = _t"Damage Shield", + long_desc = function(self, eff) return ("The target is surrounded by a magical shield, absorbing %d/%d damage %s before it crumbles."):tformat(self.damage_shield_absorb, eff.power, ((self.damage_shield_reflect and self.damage_shield_reflect > 0) and ("(reflecting %d%% back to the attacker)"):tformat(self.damage_shield_reflect) or "")) end, type = "magical", subtype = { arcane=true, shield=true }, status = "beneficial", parameters = { power=100 }, charges = function(self, eff) return math.ceil(self.damage_shield_absorb) end, - on_gain = function(self, err) return "A shield forms around #target#.", "+Shield" end, - on_lose = function(self, err) return "The shield around #target# crumbles.", "-Shield" end, + on_gain = function(self, err) return _t"A shield forms around #target#.", _t"+Shield" end, + on_lose = function(self, err) return _t"The shield around #target# crumbles.", _t"-Shield" end, on_merge = function(self, old_eff, new_eff) local new_eff_adj = {} -- Adjust for shield modifiers if self:attr("shield_factor") then @@ -826,14 +826,14 @@ newEffect{ newEffect{ name = "MARTYRDOM", image = "talents/martyrdom.png", - desc = "Martyrdom", - long_desc = function(self, eff) return ("All damage done by the target will also hurt it for %d%%."):format(eff.power) end, + desc = _t"Martyrdom", + long_desc = function(self, eff) return ("All damage done by the target will also hurt it for %d%%."):tformat(eff.power) end, type = "magical", subtype = { light=true }, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is a martyr.", "+Martyr" end, - on_lose = function(self, err) return "#Target# is no longer influenced by martyrdom.", "-Martyr" end, + on_gain = function(self, err) return _t"#Target# is a martyr.", _t"+Martyr" end, + on_lose = function(self, err) return _t"#Target# is no longer influenced by martyrdom.", _t"-Martyr" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("martyrdom", eff.power) end, @@ -845,13 +845,13 @@ newEffect{ -- This only exists to mark a timer for Radiance being consumed newEffect{ name = "RADIANCE_DIM", image = "talents/curse_of_vulnerability.png", - desc = "Radiance Lost", - long_desc = function(self, eff) return ("You have expended the power of your Radiance temporarily reducing its radius to 1."):format() end, + desc = _t"Radiance Lost", + long_desc = function(self, eff) return ("You have expended the power of your Radiance temporarily reducing its radius to 1."):tformat() end, type = "other", subtype = { radiance=true }, parameters = { }, - on_gain = function(self, err) return "#Target#'s aura dims.", "+Dim" end, - on_lose = function(self, err) return "#Target# shines with renewed light.", "-Dim" end, + on_gain = function(self, err) return _t"#Target#'s aura dims.", _t"+Dim" end, + on_lose = function(self, err) return _t"#Target# shines with renewed light.", _t"-Dim" end, activate = function(self, eff) self:callTalent(self.T_SEARING_SIGHT, "updateParticle") end, @@ -862,14 +862,14 @@ newEffect{ newEffect{ name = "CURSE_VULNERABILITY", image = "talents/curse_of_vulnerability.png", - desc = "Curse of Vulnerability", - long_desc = function(self, eff) return ("The target is cursed, reducing all resistances by %d%%."):format(eff.power) end, + desc = _t"Curse of Vulnerability", + long_desc = function(self, eff) return ("The target is cursed, reducing all resistances by %d%%."):tformat(eff.power) end, type = "magical", subtype = { curse=true }, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is cursed.", "+Curse" end, - on_lose = function(self, err) return "#Target# is no longer cursed.", "-Curse" end, + on_gain = function(self, err) return _t"#Target# is cursed.", _t"+Curse" end, + on_lose = function(self, err) return _t"#Target# is no longer cursed.", _t"-Curse" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("resists", { all = -eff.power, @@ -882,14 +882,14 @@ newEffect{ newEffect{ name = "CURSE_IMPOTENCE", image = "talents/curse_of_impotence.png", - desc = "Curse of Impotence", - long_desc = function(self, eff) return ("The target is cursed, reducing all damage done by %d%%."):format(eff.power) end, + desc = _t"Curse of Impotence", + long_desc = function(self, eff) return ("The target is cursed, reducing all damage done by %d%%."):tformat(eff.power) end, type = "magical", subtype = { curse=true }, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is cursed.", "+Curse" end, - on_lose = function(self, err) return "#Target# is no longer cursed.", "-Curse" end, + on_gain = function(self, err) return _t"#Target# is cursed.", _t"+Curse" end, + on_lose = function(self, err) return _t"#Target# is no longer cursed.", _t"-Curse" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("inc_damage", { all = -eff.power, @@ -902,14 +902,14 @@ newEffect{ newEffect{ name = "CURSE_DEFENSELESSNESS", image = "talents/curse_of_defenselessness.png", - desc = "Curse of Defenselessness", - long_desc = function(self, eff) return ("The target is cursed, reducing defence and all saves by %d."):format(eff.power) end, + desc = _t"Curse of Defenselessness", + long_desc = function(self, eff) return ("The target is cursed, reducing defence and all saves by %d."):tformat(eff.power) end, type = "magical", subtype = { curse=true }, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is cursed.", "+Curse" end, - on_lose = function(self, err) return "#Target# is no longer cursed.", "-Curse" end, + on_gain = function(self, err) return _t"#Target# is cursed.", _t"+Curse" end, + on_lose = function(self, err) return _t"#Target# is no longer cursed.", _t"-Curse" end, activate = function(self, eff) eff.def = self:addTemporaryValue("combat_def", -eff.power) eff.mental = self:addTemporaryValue("combat_mentalresist", -eff.power) @@ -926,14 +926,14 @@ newEffect{ newEffect{ name = "CURSE_DEATH", image = "talents/curse_of_death.png", - desc = "Curse of Death", - long_desc = function(self, eff) return ("The target is cursed, taking %0.2f darkness damage per turn and preventing natural life regeneration."):format(eff.dam) end, + desc = _t"Curse of Death", + long_desc = function(self, eff) return ("The target is cursed, taking %0.2f darkness damage per turn and preventing natural life regeneration."):tformat(eff.dam) end, type = "magical", subtype = { curse=true, darkness=true }, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is cursed.", "+Curse" end, - on_lose = function(self, err) return "#Target# is no longer cursed.", "-Curse" end, + on_gain = function(self, err) return _t"#Target# is cursed.", _t"+Curse" end, + on_lose = function(self, err) return _t"#Target# is no longer cursed.", _t"-Curse" end, -- Damage each turn on_timeout = function(self, eff) DamageType:get(DamageType.DARKNESS).projector(eff.src, self.x, self.y, DamageType.DARKNESS, eff.dam) @@ -948,14 +948,14 @@ newEffect{ newEffect{ name = "CURSE_HATE", image = "talents/curse_of_the_meek.png", - desc = "Curse of Hate", + desc = _t"Curse of Hate", long_desc = function(self, eff) return ("The target is cursed, force all foes in a radius of 5 to attack it.") end, type = "magical", subtype = { curse=true }, status = "detrimental", parameters = { }, - on_gain = function(self, err) return "#Target# is cursed.", "+Curse" end, - on_lose = function(self, err) return "#Target# is no longer cursed.", "-Curse" end, + on_gain = function(self, err) return _t"#Target# is cursed.", _t"+Curse" end, + on_lose = function(self, err) return _t"#Target# is no longer cursed.", _t"-Curse" end, on_timeout = function(self, eff) if self.dead or not self.x then return end local tg = {type="ball", range=0, radius=5, friendlyfire=false} @@ -972,14 +972,14 @@ newEffect{ newEffect{ name = "CORRUPTING_STRIKE", image = "talents/dark_surprise.png", - desc = "Corrupting Strike", - long_desc = function(self, eff) return ("The targets natural essence in corrupted reducing disease resistance by 100%%."):format() end, + desc = _t"Corrupting Strike", + long_desc = function(self, eff) return ("The targets natural essence in corrupted reducing disease resistance by 100%%."):tformat() end, type = "magical", subtype = {blight=true}, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is completely vulnerable to disease!" end, - on_lose = function(self, err) return "#Target# no longer vulnerable to disease." end, + on_gain = function(self, err) return _t"#Target# is completely vulnerable to disease!" end, + on_lose = function(self, err) return _t"#Target# no longer vulnerable to disease." end, activate = function(self, eff) self:effectTemporaryValue(eff, "disease_immune", -1) end, @@ -989,8 +989,8 @@ newEffect{ newEffect{ name = "BLOODLUST", image = "talents/bloodlust.png", - desc = "Bloodlust", - long_desc = function(self, eff) return ("The target is in a magical frenzy, improving spellpower by %d."):format(eff.spellpower * eff.stacks) end, + desc = _t"Bloodlust", + long_desc = function(self, eff) return ("The target is in a magical frenzy, improving spellpower by %d."):tformat(eff.spellpower * eff.stacks) end, type = "magical", subtype = { frenzy=true }, status = "beneficial", @@ -1012,14 +1012,14 @@ newEffect{ newEffect{ name = "ACID_SPLASH", image = "talents/acidic_skin.png", - desc = "Acid Splash", - long_desc = function(self, eff) return ("The target has been splashed with acid, taking %0.2f acid damage per turn, reducing armour by %d and attack by %d."):format(eff.dam, eff.armor or 0, eff.atk) end, + desc = _t"Acid Splash", + long_desc = function(self, eff) return ("The target has been splashed with acid, taking %0.2f acid damage per turn, reducing armour by %d and attack by %d."):tformat(eff.dam, eff.armor or 0, eff.atk) end, type = "magical", subtype = { acid=true, sunder=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is covered in acid!" end, - on_lose = function(self, err) return "#Target# is free from the acid." end, + on_gain = function(self, err) return _t"#Target# is covered in acid!" end, + on_lose = function(self, err) return _t"#Target# is free from the acid." end, -- Damage each turn on_timeout = function(self, eff) DamageType:get(DamageType.ACID).projector(eff.src, self.x, self.y, DamageType.ACID, eff.dam) @@ -1036,8 +1036,8 @@ newEffect{ newEffect{ name = "BLOOD_FURY", image = "talents/blood_fury.png", - desc = "Bloodfury", - long_desc = function(self, eff) return ("The target's blight and acid damage is increased by %d%%."):format(eff.power) end, + desc = _t"Bloodfury", + long_desc = function(self, eff) return ("The target's blight and acid damage is increased by %d%%."):tformat(eff.power) end, type = "magical", subtype = { frenzy=true }, status = "beneficial", @@ -1053,14 +1053,14 @@ newEffect{ newEffect{ name = "PHOENIX_EGG", image = "effects/phoenix_egg.png", - desc = "Reviving Phoenix", - long_desc = function(self, eff) return "Target is being brought back to life." end, + desc = _t"Reviving Phoenix", + long_desc = function(self, eff) return _t"Target is being brought back to life." end, type = "magical", subtype = { fire=true }, status = "beneficial", parameters = { life_regen = 25, mana_regen = -9.75, never_move = 1, silence = 1 }, - on_gain = function(self, err) return "#Target# is consumed in a burst of flame. All that remains is a fiery egg.", "+Phoenix" end, - on_lose = function(self, err) return "#Target# bursts out from the egg.", "-Phoenix" end, + on_gain = function(self, err) return _t"#Target# is consumed in a burst of flame. All that remains is a fiery egg.", _t"+Phoenix" end, + on_lose = function(self, err) return _t"#Target# bursts out from the egg.", _t"-Phoenix" end, activate = function(self, eff) self.display = "O" -- change the display of the phoenix to an egg, maybe later make it a fiery orb image eff.old_image = self.image @@ -1093,14 +1093,14 @@ newEffect{ newEffect{ name = "HURRICANE", image = "effects/hurricane.png", - desc = "Hurricane", - long_desc = function(self, eff) return ("The target is in the center of a lightning hurricane, doing %0.2f to %0.2f lightning damage to itself and others around every turn."):format(eff.dam / 3, eff.dam) end, + desc = _t"Hurricane", + long_desc = function(self, eff) return ("The target is in the center of a lightning hurricane, doing %0.2f to %0.2f lightning damage to itself and others around every turn."):tformat(eff.dam / 3, eff.dam) end, type = "magical", subtype = { lightning=true }, status = "detrimental", parameters = { dam=10, radius=2 }, - on_gain = function(self, err) return "#Target# is caught inside a Hurricane.", "+Hurricane" end, - on_lose = function(self, err) return "The Hurricane around #Target# dissipates.", "-Hurricane" end, + on_gain = function(self, err) return _t"#Target# is caught inside a Hurricane.", _t"+Hurricane" end, + on_lose = function(self, err) return _t"The Hurricane around #Target# dissipates.", _t"-Hurricane" end, on_timeout = function(self, eff) local tg = {type="ball", x=self.x, y=self.y, radius=eff.radius, selffire=false} local dam = eff.dam @@ -1115,8 +1115,8 @@ newEffect{ newEffect{ name = "TELEPORT_ANGOLWEN", image = "talents/teleport_angolwen.png", - desc = "Teleport: Angolwen", - long_desc = function(self, eff) return "The target is waiting to be recalled back to Angolwen." end, + desc = _t"Teleport: Angolwen", + long_desc = function(self, eff) return _t"The target is waiting to be recalled back to Angolwen." end, type = "magical", subtype = { teleport=true }, status = "beneficial", @@ -1153,8 +1153,8 @@ newEffect{ newEffect{ name = "TELEPORT_POINT_ZERO", image = "talents/teleport_point_zero.png", - desc = "Timeport: Point Zero", - long_desc = function(self, eff) return "The target is waiting to be recalled back to Point Zero." end, + desc = _t"Timeport: Point Zero", + long_desc = function(self, eff) return _t"The target is waiting to be recalled back to Point Zero." end, type = "magical", subtype = { timeport=true }, status = "beneficial", @@ -1197,14 +1197,14 @@ newEffect{ newEffect{ name = "PREMONITION_SHIELD", image = "talents/premonition.png", - desc = "Premonition Shield", - long_desc = function(self, eff) return ("Reduces %s damage received by %d%%."):format(DamageType:get(eff.damtype).name, eff.resist) end, + desc = _t"Premonition Shield", + long_desc = function(self, eff) return ("Reduces %s damage received by %d%%."):tformat(DamageType:get(eff.damtype).name, eff.resist) end, type = "magical", subtype = { sense=true }, status = "beneficial", parameters = { }, - on_gain = function(self, err) return "#Target# casts a protective shield just in time!", "+Premonition Shield" end, - on_lose = function(self, err) return "The protective shield of #Target# disappears.", "-Premonition Shield" end, + on_gain = function(self, err) return _t"#Target# casts a protective shield just in time!", _t"+Premonition Shield" end, + on_lose = function(self, err) return _t"The protective shield of #Target# disappears.", _t"-Premonition Shield" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("resists", {[eff.damtype]=eff.resist}) end, @@ -1215,14 +1215,14 @@ newEffect{ newEffect{ name = "CORROSIVE_WORM", image = "talents/corrosive_worm.png", - desc = "Corrosive Worm", - long_desc = function(self, eff) return ("The target is infected with a corrosive worm, reducing blight and acid resistance by %d%%. When the effect ends, the worm will explode, dealing %d acid damage in a 4 radius ball. This damage will increase by %d%% of all damage taken while under torment"):format(eff.power, eff.finaldam, eff.rate*100) end, + desc = _t"Corrosive Worm", + long_desc = function(self, eff) return ("The target is infected with a corrosive worm, reducing blight and acid resistance by %d%%. When the effect ends, the worm will explode, dealing %d acid damage in a 4 radius ball. This damage will increase by %d%% of all damage taken while under torment"):tformat(eff.power, eff.finaldam, eff.rate*100) end, type = "magical", subtype = { acid=true }, status = "detrimental", parameters = { power=20, rate=10, finaldam=50, }, - on_gain = function(self, err) return "#Target# is infected by a corrosive worm.", "+Corrosive Worm" end, - on_lose = function(self, err) return "#Target# is free from the corrosive worm.", "-Corrosive Worm" end, + on_gain = function(self, err) return _t"#Target# is infected by a corrosive worm.", _t"+Corrosive Worm" end, + on_lose = function(self, err) return _t"#Target# is free from the corrosive worm.", _t"-Corrosive Worm" end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("circle", 1, {base_rot=0, oversize=0.7, a=255, appear=8, speed=0, img="blight_worms", radius=0})) self:effectTemporaryValue(eff, "resists", {[DamageType.BLIGHT]=-eff.power, [DamageType.ACID]=-eff.power}) @@ -1245,14 +1245,14 @@ newEffect{ newEffect{ name = "WRAITHFORM", image = "talents/wraithform.png", - desc = "Wraithform", - long_desc = function(self, eff) return ("Turn into a wraith, passing through walls (but not natural obstacles), granting %d defense and %d armour."):format(eff.def, eff.armor) end, + desc = _t"Wraithform", + long_desc = function(self, eff) return ("Turn into a wraith, passing through walls (but not natural obstacles), granting %d defense and %d armour."):tformat(eff.def, eff.armor) end, type = "magical", subtype = { darkness=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# turns into a wraith.", "+Wraithform" end, - on_lose = function(self, err) return "#Target# returns to normal.", "-Wraithform" end, + on_gain = function(self, err) return _t"#Target# turns into a wraith.", _t"+Wraithform" end, + on_lose = function(self, err) return _t"#Target# returns to normal.", _t"-Wraithform" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("can_pass", {pass_wall=20}) eff.defid = self:addTemporaryValue("combat_def", eff.def) @@ -1283,8 +1283,8 @@ newEffect{ newEffect{ name = "EMPOWERED_HEALING", image = "effects/empowered_healing.png", - desc = "Empowered Healing", - long_desc = function(self, eff) return ("Increases the effectiveness of all healing the target receives by %d%%."):format(eff.power * 100) end, + desc = _t"Empowered Healing", + long_desc = function(self, eff) return ("Increases the effectiveness of all healing the target receives by %d%%."):tformat(eff.power * 100) end, type = "magical", subtype = { light=true }, status = "beneficial", @@ -1299,8 +1299,8 @@ newEffect{ newEffect{ name = "PROVIDENCE", image = "talents/providence.png", - desc = "Providence", - long_desc = function(self, eff) return ("The target is under protection, removing one negative effect per turn."):format() end, + desc = _t"Providence", + long_desc = function(self, eff) return ("The target is under protection, removing one negative effect per turn."):tformat() end, type = "magical", subtype = { light=true, shield=true }, status = "beneficial", @@ -1336,8 +1336,8 @@ newEffect{ newEffect{ name = "SOLAR_INFUSION", image = "talents/sun_flare.png", - desc = "Solar Infusion", - long_desc = function(self, eff) return ("The target's light, darkness, and fire resistance has been increased by %d%%."):format(eff.resist) end, + desc = _t"Solar Infusion", + long_desc = function(self, eff) return ("The target's light, darkness, and fire resistance has been increased by %d%%."):tformat(eff.resist) end, type = "magical", subtype = { }, status = "beneficial", @@ -1356,8 +1356,8 @@ newEffect{ newEffect{ name = "TOTALITY", image = "talents/totality.png", - desc = "Totality", - long_desc = function(self, eff) return ("The target's light and darkness spell penetration has been increased by %d%%."):format(eff.power) end, + desc = _t"Totality", + long_desc = function(self, eff) return ("The target's light and darkness spell penetration has been increased by %d%%."):tformat(eff.power) end, type = "magical", subtype = { darkness=true, light=true }, status = "beneficial", @@ -1375,9 +1375,9 @@ newEffect{ newEffect{ name = "DIVINE_GLYPHS", image = "talents/glyph_of_explosion.png", - desc = "Empowered Glyphs", + desc = _t"Empowered Glyphs", long_desc = function(self, eff) - return ("A divine glyph recently triggered, providing %d%% light and darkness affinity and resistence."):format(eff.power) + return ("A divine glyph recently triggered, providing %d%% light and darkness affinity and resistence."):tformat(eff.power) end, type = "magical", subtype = {light=true, darkness=true}, @@ -1406,9 +1406,9 @@ newEffect{ newEffect{ name = "STARLIGHT_FATIGUE", image = "talents/glyph_of_fatigue.png", - desc = "Fatiguing Starlight", + desc = _t"Fatiguing Starlight", long_desc = function(self, eff) - return ("Inflicted with a fatiguing starlight, taking %d darkness damage and increasing the cooldown of a cooling-down talent by 1 whenever they act"):format(eff.src.summoner:damDesc(DamageType.DARKNESS, eff.dam)) + return ("Inflicted with a fatiguing starlight, taking %d darkness damage and increasing the cooldown of a cooling-down talent by 1 whenever they act"):tformat(eff.src.summoner:damDesc(DamageType.DARKNESS, eff.dam)) end, type = "magical", subtype = {darkness = true}, @@ -1428,9 +1428,9 @@ newEffect{ newEffect{ name = "SUNBURST", image = "talents/sunburst.png", - desc = "Sunburst", + desc = _t"Sunburst", long_desc = function(self, eff) - return ("Light damage has been increased by %d%% to +%d%%."):format(eff.damInc, self.inc_damage.LIGHT) + return ("Light damage has been increased by %d%% to +%d%%."):tformat(eff.damInc, self.inc_damage.LIGHT) end, type = "magical", subtype = {light=true, darkness=true}, @@ -1443,9 +1443,9 @@ newEffect{ newEffect{ name = "DARKLIGHT", image = "talents/darkest_light.png", - desc = "Shrouded in Darklight", + desc = _t"Shrouded in Darklight", long_desc = function(self, eff) - return ("%d%% of the targets damage is being split between light and darkness and they are taking %d light and %d darkness damage each turn."):format(eff.conversion * 100, eff.src:damDesc(DamageType.LIGHT, eff.dotDam), eff.src:damDesc(DamageType.DARKNESS, eff.dotDam)) + return ("%d%% of the targets damage is being split between light and darkness and they are taking %d light and %d darkness damage each turn."):tformat(eff.conversion * 100, eff.src:damDesc(DamageType.LIGHT, eff.dotDam), eff.src:damDesc(DamageType.DARKNESS, eff.dotDam)) end, type = "magical", subtype = {light=true, darkness=true}, @@ -1471,7 +1471,7 @@ newEffect{ -- Circles newEffect{ name = "SANCTITY", image = "talents/circle_of_sanctity.png", - desc = "Sanctity", + desc = _t"Sanctity", long_desc = function(self, eff) return ("The target is protected from silence effects.") end, type = "magical", subtype = { circle=true }, @@ -1490,8 +1490,8 @@ newEffect{ newEffect{ name = "SHIFTING_SHADOWS", image = "talents/circle_of_shifting_shadows.png", - desc = "Shifting Shadows", - long_desc = function(self, eff) return ("The target's defense is increased by %d."):format(eff.power) end, + desc = _t"Shifting Shadows", + long_desc = function(self, eff) return ("The target's defense is increased by %d."):tformat(eff.power) end, type = "magical", subtype = { circle=true, darkness=true }, status = "beneficial", @@ -1515,8 +1515,8 @@ newEffect{ newEffect{ name = "BLAZING_LIGHT", image = "talents/circle_of_blazing_light.png", - desc = "Blazing Light", - long_desc = function(self, eff) return ("The target is gaining %d positive energy each turn."):format(eff.power) end, + desc = _t"Blazing Light", + long_desc = function(self, eff) return ("The target is gaining %d positive energy each turn."):tformat(eff.power) end, type = "magical", subtype = { circle=true, light=true }, status = "beneficial", @@ -1531,8 +1531,8 @@ newEffect{ newEffect{ name = "WARDING", image = "talents/circle_of_warding.png", - desc = "Warding", - long_desc = function(self, eff) return ("Projectiles aimed at the target are slowed by %d%%."):format (eff.power) end, + desc = _t"Warding", + long_desc = function(self, eff) return ("Projectiles aimed at the target are slowed by %d%%."):tformat (eff.power) end, type = "magical", subtype = { circle=true, light=true, darkness=true }, status = "beneficial", @@ -1550,14 +1550,14 @@ newEffect{ newEffect{ name = "TURN_BACK_THE_CLOCK", image = "talents/turn_back_the_clock.png", - desc = "Turn Back the Clock", - long_desc = function(self, eff) return ("The target has been returned to a much younger state, reducing all its stats by %d."):format(eff.power) end, + desc = _t"Turn Back the Clock", + long_desc = function(self, eff) return ("The target has been returned to a much younger state, reducing all its stats by %d."):tformat(eff.power) end, type = "magical", subtype = { temporal=true }, status = "detrimental", parameters = { }, - on_gain = function(self, err) return "#Target# is returned to a much younger state!", "+Turn Back the Clock" end, - on_lose = function(self, err) return "#Target# has regained its natural age.", "-Turn Back the Clock" end, + on_gain = function(self, err) return _t"#Target# is returned to a much younger state!", _t"+Turn Back the Clock" end, + on_lose = function(self, err) return _t"#Target# has regained its natural age.", _t"-Turn Back the Clock" end, activate = function(self, eff) eff.stat = self:addTemporaryValue("inc_stats", { [Stats.STAT_STR] = -eff.power, @@ -1579,14 +1579,14 @@ newEffect{ newEffect{ name = "WASTING", image = "talents/ashes_to_ashes.png", - desc = "Wasting", - long_desc = function(self, eff) return ("The target is wasting away, taking %0.2f temporal damage per turn."):format(eff.power) end, + desc = _t"Wasting", + long_desc = function(self, eff) return ("The target is wasting away, taking %0.2f temporal damage per turn."):tformat(eff.power) end, type = "magical", subtype = { temporal=true }, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is wasting away!", "+Wasting" end, - on_lose = function(self, err) return "#Target# stops wasting away.", "-Wasting" end, + on_gain = function(self, err) return _t"#Target# is wasting away!", _t"+Wasting" end, + on_lose = function(self, err) return _t"#Target# stops wasting away.", _t"-Wasting" end, on_merge = function(self, old_eff, new_eff) -- Merge the flames! local olddam = old_eff.power * old_eff.dur @@ -1603,14 +1603,14 @@ newEffect{ newEffect{ name = "PRESCIENCE", image = "talents/moment_of_prescience.png", - desc = "Prescience", - long_desc = function(self, eff) return ("The target's awareness is fully in the present, increasing stealth detection, see invisibility, defense, and accuracy by %d."):format(eff.power) end, + desc = _t"Prescience", + long_desc = function(self, eff) return ("The target's awareness is fully in the present, increasing stealth detection, see invisibility, defense, and accuracy by %d."):tformat(eff.power) end, type = "magical", subtype = { sense=true, temporal=true }, status = "beneficial", parameters = { power = 1 }, - on_gain = function(self, err) return "#Target# has found the present moment!", "+Prescience" end, - on_lose = function(self, err) return "#Target#'s awareness returns to normal.", "-Prescience" end, + on_gain = function(self, err) return _t"#Target# has found the present moment!", _t"+Prescience" end, + on_lose = function(self, err) return _t"#Target#'s awareness returns to normal.", _t"-Prescience" end, activate = function(self, eff) eff.defid = self:addTemporaryValue("combat_def", eff.power) eff.atkid = self:addTemporaryValue("combat_atk", eff.power) @@ -1627,14 +1627,14 @@ newEffect{ newEffect{ name = "INVIGORATE", image = "talents/invigorate.png", - desc = "Invigorate", - long_desc = function(self, eff) return ("The target is regaining %d life per turn and refreshing talents at twice the normal rate."):format(eff.power) end, + desc = _t"Invigorate", + long_desc = function(self, eff) return ("The target is regaining %d life per turn and refreshing talents at twice the normal rate."):tformat(eff.power) end, type = "magical", subtype = { temporal=true, regeneration=true }, status = "beneficial", parameters = {power = 10}, - on_gain = function(self, err) return "#Target# is invigorated.", "+Invigorate" end, - on_lose = function(self, err) return "#Target# is no longer invigorated.", "-Invigorate" end, + on_gain = function(self, err) return _t"#Target# is invigorated.", _t"+Invigorate" end, + on_lose = function(self, err) return _t"#Target# is no longer invigorated.", _t"-Invigorate" end, on_timeout = function(self, eff) if not self:attr("no_talents_cooldown") then for tid, _ in pairs(self.talents_cd) do @@ -1661,15 +1661,15 @@ newEffect{ newEffect{ name = "GATHER_THE_THREADS", image = "talents/gather_the_threads.png", - desc = "Gather the Threads", + desc = _t"Gather the Threads", long_desc = function(self, eff) return ("The target's spellpower has been increased by %d and will continue to increase by %d each turn."): - format(eff.cur_power or eff.power, eff.power/5) end, + tformat(eff.cur_power or eff.power, eff.power/5) end, type = "magical", subtype = { temporal=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is gathering energy from other timelines.", "+Gather the Threads" end, - on_lose = function(self, err) return "#Target# is no longer manipulating the timestream.", "-Gather the Threads" end, + on_gain = function(self, err) return _t"#Target# is gathering energy from other timelines.", _t"+Gather the Threads" end, + on_lose = function(self, err) return _t"#Target# is no longer manipulating the timestream.", _t"-Gather the Threads" end, on_merge = function(self, old_eff, new_eff) self:removeTemporaryValue("combat_spellpower", old_eff.tmpid) old_eff.cur_power = (old_eff.cur_power + new_eff.power) @@ -1696,14 +1696,14 @@ newEffect{ newEffect{ name = "FLAWED_DESIGN", image = "talents/flawed_design.png", - desc = "Flawed Design", - long_desc = function(self, eff) return ("The target's resistances have been reduced by %d%%."):format(eff.power) end, + desc = _t"Flawed Design", + long_desc = function(self, eff) return ("The target's resistances have been reduced by %d%%."):tformat(eff.power) end, type = "magical", subtype = { temporal=true }, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is flawed.", "+Flawed" end, - on_lose = function(self, err) return "#Target# is no longer flawed.", "-Flawed" end, + on_gain = function(self, err) return _t"#Target# is flawed.", _t"+Flawed" end, + on_lose = function(self, err) return _t"#Target# is no longer flawed.", _t"-Flawed" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("resists", { all = -eff.power, @@ -1716,14 +1716,14 @@ newEffect{ newEffect{ name = "MANAWORM", image = "effects/manaworm.png", - desc = "Manaworm", - long_desc = function(self, eff) return ("The target is infected by a manaworm, draining %0.2f mana per turn and releasing it as arcane damage to the target."):format(eff.power) end, + desc = _t"Manaworm", + long_desc = function(self, eff) return ("The target is infected by a manaworm, draining %0.2f mana per turn and releasing it as arcane damage to the target."):tformat(eff.power) end, type = "magical", subtype = { arcane=true }, status = "detrimental", parameters = {power=10}, - on_gain = function(self, err) return "#Target# is infected by a manaworm!", "+Manaworm" end, - on_lose = function(self, err) return "#Target# is no longer infected.", "-Manaworm" end, + on_gain = function(self, err) return _t"#Target# is infected by a manaworm!", _t"+Manaworm" end, + on_lose = function(self, err) return _t"#Target# is no longer infected.", _t"-Manaworm" end, on_timeout = function(self, eff) local dam = eff.power if dam > self:getMana() then dam = self:getMana() end @@ -1734,14 +1734,14 @@ newEffect{ newEffect{ name = "SURGE_OF_UNDEATH", image = "talents/surge_of_undeath.png", - desc = "Surge of Undeath", - long_desc = function(self, eff) return ("Increases the target combat power, spellpower, accuracy by %d, armour penetration by %d and critical chances by %d."):format(eff.power, eff.apr, eff.crit) end, + desc = _t"Surge of Undeath", + long_desc = function(self, eff) return ("Increases the target combat power, spellpower, accuracy by %d, armour penetration by %d and critical chances by %d."):tformat(eff.power, eff.apr, eff.crit) end, type = "magical", subtype = { frenzy=true }, status = "beneficial", parameters = { power=10, crit=10, apr=10 }, - on_gain = function(self, err) return "#Target# is engulfed in dark energies.", "+Undeath Surge" end, - on_lose = function(self, err) return "#Target# seems less powerful.", "-Undeath Surge" end, + on_gain = function(self, err) return _t"#Target# is engulfed in dark energies.", _t"+Undeath Surge" end, + on_lose = function(self, err) return _t"#Target# seems less powerful.", _t"-Undeath Surge" end, activate = function(self, eff) eff.damid = self:addTemporaryValue("combat_dam", eff.power) eff.spellid = self:addTemporaryValue("combat_spellpower", eff.power) @@ -1762,14 +1762,14 @@ newEffect{ newEffect{ name = "BONE_SHIELD", image = "talents/bone_shield.png", - desc = "Bone Shield", - long_desc = function(self, eff) return ("Any attacks doing more than %d%% of your life is reduced to %d%%."):format(eff.power, eff.power) end, + desc = _t"Bone Shield", + long_desc = function(self, eff) return ("Any attacks doing more than %d%% of your life is reduced to %d%%."):tformat(eff.power, eff.power) end, type = "magical", subtype = { arcane=true, shield=true }, status = "beneficial", parameters = { power=30 }, - on_gain = function(self, err) return "#Target# protected by flying bones.", "+Bone Shield" end, - on_lose = function(self, err) return "#Target# flying bones crumble.", "-Bone Shield" end, + on_gain = function(self, err) return _t"#Target# protected by flying bones.", _t"+Bone Shield" end, + on_lose = function(self, err) return _t"#Target# flying bones crumble.", _t"-Bone Shield" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("flat_damage_cap", {all=eff.power}) if core.shader.active(4) then @@ -1786,8 +1786,8 @@ newEffect{ newEffect{ name = "REDUX", image = "talents/redux.png", - desc = "Redux", - long_desc = function(self, eff) return ("Chronomancy spells with cooldown less than %d will not go on cooldown when cast."):format(eff.max_cd) end, + desc = _t"Redux", + long_desc = function(self, eff) return ("Chronomancy spells with cooldown less than %d will not go on cooldown when cast."):tformat(eff.max_cd) end, type = "magical", subtype = { temporal=true }, status = "beneficial", @@ -1805,14 +1805,14 @@ newEffect{ newEffect{ name = "TEMPORAL_DESTABILIZATION_START", image = "talents/destabilize.png", - desc = "Temporal Destabilization", - long_desc = function(self, eff) return ("Target is destabilized and in %d turns will start suffering %0.2f temporal damage per turn. If it dies with this effect active after the damage starts it will explode."):format(eff.dur, eff.dam) end, + desc = _t"Temporal Destabilization", + long_desc = function(self, eff) return ("Target is destabilized and in %d turns will start suffering %0.2f temporal damage per turn. If it dies with this effect active after the damage starts it will explode."):tformat(eff.dur, eff.dam) end, type = "magical", subtype = { temporal=true }, status = "detrimental", parameters = { dam=1, explosion=10 }, - on_gain = function(self, err) return "#Target# is unstable.", "+Temporal Destabilization" end, - on_lose = function(self, err) return "#Target# has regained stability.", "-Temporal Destabilization" end, + on_gain = function(self, err) return _t"#Target# is unstable.", _t"+Temporal Destabilization" end, + on_lose = function(self, err) return _t"#Target# has regained stability.", _t"-Temporal Destabilization" end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("destabilized", 1)) end, @@ -1824,14 +1824,14 @@ newEffect{ newEffect{ name = "TEMPORAL_DESTABILIZATION", image = "talents/destabilize.png", - desc = "Temporal Destabilization", - long_desc = function(self, eff) return ("Target is destabilized and suffering %0.2f temporal damage per turn. If it dies with this effect active it will explode."):format(eff.dam) end, + desc = _t"Temporal Destabilization", + long_desc = function(self, eff) return ("Target is destabilized and suffering %0.2f temporal damage per turn. If it dies with this effect active it will explode."):tformat(eff.dam) end, type = "magical", subtype = { temporal=true }, status = "detrimental", parameters = { dam=1, explosion=10 }, - on_gain = function(self, err) return "#Target# is unstable.", "+Temporal Destabilization" end, - on_lose = function(self, err) return "#Target# has regained stability.", "-Temporal Destabilization" end, + on_gain = function(self, err) return _t"#Target# is unstable.", _t"+Temporal Destabilization" end, + on_lose = function(self, err) return _t"#Target# has regained stability.", _t"-Temporal Destabilization" end, on_timeout = function(self, eff) DamageType:get(DamageType.TEMPORAL).projector(eff.src or self, self.x, self.y, DamageType.TEMPORAL, eff.dam) end, @@ -1845,8 +1845,8 @@ newEffect{ newEffect{ name = "CELERITY", image = "talents/celerity.png", - desc = "Celerity", - long_desc = function(self, eff) return ("The target is moving is %d%% faster."):format(eff.speed * 100 * eff.charges) end, + desc = _t"Celerity", + long_desc = function(self, eff) return ("The target is moving is %d%% faster."):tformat(eff.speed * 100 * eff.charges) end, type = "magical", display_desc = function(self, eff) return eff.charges.." Celerity" end, charges = function(self, eff) return eff.charges end, @@ -1876,8 +1876,8 @@ newEffect{ newEffect{ name = "TIME_DILATION", image = "talents/time_dilation.png", - desc = "Time Dilation", - long_desc = function(self, eff) return ("Increases attack, spell, and mind speed by %d%%."):format(eff.speed * 100 * eff.charges) end, + desc = _t"Time Dilation", + long_desc = function(self, eff) return ("Increases attack, spell, and mind speed by %d%%."):tformat(eff.speed * 100 * eff.charges) end, type = "magical", display_desc = function(self, eff) return eff.charges.." Time Dilation" end, charges = function(self, eff) return eff.charges end, @@ -1915,14 +1915,14 @@ newEffect{ newEffect{ name = "HASTE", image = "talents/haste.png", - desc = "Haste", - long_desc = function(self, eff) return ("Increases global action speed by %d%%."):format(eff.power * 100) end, + desc = _t"Haste", + long_desc = function(self, eff) return ("Increases global action speed by %d%%."):tformat(eff.power * 100) end, type = "magical", subtype = { temporal=true, speed=true }, status = "beneficial", parameters = { move=0.1, speed=0.1 }, - on_gain = function(self, err) return "#Target# speeds up.", "+Haste" end, - on_lose = function(self, err) return "#Target# slows down.", "-Haste" end, + on_gain = function(self, err) return _t"#Target# speeds up.", _t"+Haste" end, + on_lose = function(self, err) return _t"#Target# slows down.", _t"-Haste" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("global_speed_add", eff.power) if not self.shader then @@ -1947,13 +1947,13 @@ newEffect{ newEffect{ name = "CEASE_TO_EXIST", image = "talents/cease_to_exist.png", - desc = "Cease to Exist", - long_desc = function(self, eff) return ("The target is being removed from the timeline, its resistance to physical and temporal damage have been reduced by %d%%."):format(eff.power) end, + desc = _t"Cease to Exist", + long_desc = function(self, eff) return ("The target is being removed from the timeline, its resistance to physical and temporal damage have been reduced by %d%%."):tformat(eff.power) end, type = "magical", subtype = { temporal=true }, status = "detrimental", parameters = { power = 1, damage=1 }, - on_gain = function(self, err) return "#Target# is being removed from the timeline.", "+Cease to Exist" end, + on_gain = function(self, err) return _t"#Target# is being removed from the timeline.", _t"+Cease to Exist" end, activate = function(self, eff) eff.phys = self:addTemporaryValue("resists", { [DamageType.PHYSICAL] = -eff.power}) eff.temp = self:addTemporaryValue("resists", { [DamageType.TEMPORAL] = -eff.power}) @@ -1969,14 +1969,14 @@ newEffect{ newEffect{ name = "IMPENDING_DOOM", image = "talents/impending_doom.png", - desc = "Impending Doom", - long_desc = function(self, eff) return ("The target's final doom is drawing near, reducing healing factor by 80%% and dealing %0.2f arcane damage per turn. The effect will stop if the caster dies."):format(eff.dam) end, + desc = _t"Impending Doom", + long_desc = function(self, eff) return ("The target's final doom is drawing near, reducing healing factor by 80%% and dealing %0.2f arcane damage per turn. The effect will stop if the caster dies."):tformat(eff.dam) end, type = "magical", subtype = { arcane=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is doomed!", "+Doomed" end, - on_lose = function(self, err) return "#Target# is freed from the impending doom.", "-Doomed" end, + on_gain = function(self, err) return _t"#Target# is doomed!", _t"+Doomed" end, + on_lose = function(self, err) return _t"#Target# is freed from the impending doom.", _t"-Doomed" end, activate = function(self, eff) eff.healid = self:addTemporaryValue("healing_factor", -0.8) end, @@ -1991,14 +1991,14 @@ newEffect{ newEffect{ name = "RIGOR_MORTIS", image = "talents/rigor_mortis.png", - desc = "Rigor Mortis", - long_desc = function(self, eff) return ("The target takes %d%% more damage from necrotic minions."):format(eff.power) end, + desc = _t"Rigor Mortis", + long_desc = function(self, eff) return ("The target takes %d%% more damage from necrotic minions."):tformat(eff.power) end, type = "magical", subtype = { arcane=true }, status = "detrimental", parameters = {power=20}, - on_gain = function(self, err) return "#Target# feels death coming!", "+Rigor Mortis" end, - on_lose = function(self, err) return "#Target# is freed from the rigor mortis.", "-Rigor Mortis" end, + on_gain = function(self, err) return _t"#Target# feels death coming!", _t"+Rigor Mortis" end, + on_lose = function(self, err) return _t"#Target# is freed from the rigor mortis.", _t"-Rigor Mortis" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("inc_necrotic_minions", eff.power) end, @@ -2009,14 +2009,14 @@ newEffect{ newEffect{ name = "ABYSSAL_SHROUD", image = "talents/abyssal_shroud.png", - desc = "Abyssal Shroud", - long_desc = function(self, eff) return ("The target's lite radius has been reduced by %d, and its darkness resistance by %d%%."):format(eff.lite, eff.power) end, + desc = _t"Abyssal Shroud", + long_desc = function(self, eff) return ("The target's lite radius has been reduced by %d, and its darkness resistance by %d%%."):tformat(eff.lite, eff.power) end, type = "magical", subtype = { darkness=true }, status = "detrimental", parameters = {power=20}, - on_gain = function(self, err) return "#Target# feels closer to the abyss!", "+Abyssal Shroud" end, - on_lose = function(self, err) return "#Target# is free from the abyss.", "-Abyssal Shroud" end, + on_gain = function(self, err) return _t"#Target# feels closer to the abyss!", _t"+Abyssal Shroud" end, + on_lose = function(self, err) return _t"#Target# is free from the abyss.", _t"-Abyssal Shroud" end, activate = function(self, eff) eff.liteid = self:addTemporaryValue("lite", -eff.lite) eff.darkid = self:addTemporaryValue("resists", { [DamageType.DARKNESS] = -eff.power }) @@ -2029,16 +2029,16 @@ newEffect{ newEffect{ name = "SPIN_FATE", image = "talents/spin_fate.png", - desc = "Spin Fate", - long_desc = function(self, eff) return ("The target's defense and saves have been increased by %d."):format(eff.save_bonus * eff.spin) end, + desc = _t"Spin Fate", + long_desc = function(self, eff) return ("The target's defense and saves have been increased by %d."):tformat(eff.save_bonus * eff.spin) end, display_desc = function(self, eff) return eff.spin.." Spin" end, charges = function(self, eff) return eff.spin end, type = "magical", subtype = { temporal=true }, status = "beneficial", parameters = { save_bonus=0, spin=0, max_spin=3}, - on_gain = function(self, err) return "#Target# spins fate.", "+Spin Fate" end, - on_lose = function(self, err) return "#Target# stops spinning fate.", "-Spin Fate" end, + on_gain = function(self, err) return _t"#Target# spins fate.", _t"+Spin Fate" end, + on_lose = function(self, err) return _t"#Target# stops spinning fate.", _t"-Spin Fate" end, on_merge = function(self, old_eff, new_eff) -- remove the four old values self:removeTemporaryValue("combat_def", old_eff.defid) @@ -2084,14 +2084,14 @@ newEffect{ newEffect{ name = "SPELLSHOCKED", - desc = "Spellshocked", + desc = _t"Spellshocked", long_desc = function(self, eff) return string.format("Overwhelming magic has temporarily interfered with all damage resistances, lowering them by %d%%.", eff.power) end, type = "magical", subtype = { ["cross tier"]=true }, status = "detrimental", parameters = { power=20 }, - on_gain = function(self, err) return nil, "+Spellshocked" end, - on_lose = function(self, err) return nil, "-Spellshocked" end, + on_gain = function(self, err) return nil, _t"+Spellshocked" end, + on_lose = function(self, err) return nil, _t"-Spellshocked" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("resists", { all = -eff.power, @@ -2104,14 +2104,14 @@ newEffect{ newEffect{ name = "ROTTING_DISEASE", image = "talents/rotting_disease.png", - desc = "Rotting Disease", - long_desc = function(self, eff) return ("The target is infected by a disease, reducing its constitution by %d and doing %0.2f blight damage per turn."):format(eff.con, eff.dam) end, + desc = _t"Rotting Disease", + long_desc = function(self, eff) return ("The target is infected by a disease, reducing its constitution by %d and doing %0.2f blight damage per turn."):tformat(eff.con, eff.dam) end, type = "magical", subtype = {disease=true, blight=true}, status = "detrimental", parameters = {con = 1, dam = 0}, - on_gain = function(self, err) return "#Target# is afflicted by a rotting disease!" end, - on_lose = function(self, err) return "#Target# is free from the rotting disease." end, + on_gain = function(self, err) return _t"#Target# is afflicted by a rotting disease!" end, + on_lose = function(self, err) return _t"#Target# is free from the rotting disease." end, -- Damage each turn on_timeout = function(self, eff) if self:attr("purify_disease") then self:heal(eff.dam, eff.src) @@ -2129,14 +2129,14 @@ newEffect{ newEffect{ name = "DECREPITUDE_DISEASE", image = "talents/decrepitude_disease.png", - desc = "Decrepitude Disease", - long_desc = function(self, eff) return ("The target is infected by a disease, reducing its dexterity by %d and doing %0.2f blight damage per turn."):format(eff.dex, eff.dam) end, + desc = _t"Decrepitude Disease", + long_desc = function(self, eff) return ("The target is infected by a disease, reducing its dexterity by %d and doing %0.2f blight damage per turn."):tformat(eff.dex, eff.dam) end, type = "magical", subtype = {disease=true, blight=true}, status = "detrimental", parameters = {dex = 1, dam = 0}, - on_gain = function(self, err) return "#Target# is afflicted by a decrepitude disease!" end, - on_lose = function(self, err) return "#Target# is free from the decrepitude disease." end, + on_gain = function(self, err) return _t"#Target# is afflicted by a decrepitude disease!" end, + on_lose = function(self, err) return _t"#Target# is free from the decrepitude disease." end, -- Damage each turn on_timeout = function(self, eff) if self:attr("purify_disease") then self:heal(eff.dam, eff.src) @@ -2154,14 +2154,14 @@ newEffect{ newEffect{ name = "WEAKNESS_DISEASE", image = "talents/weakness_disease.png", - desc = "Weakness Disease", - long_desc = function(self, eff) return ("The target is infected by a disease, reducing its strength by %d and doing %0.2f blight damage per turn."):format(eff.str, eff.dam) end, + desc = _t"Weakness Disease", + long_desc = function(self, eff) return ("The target is infected by a disease, reducing its strength by %d and doing %0.2f blight damage per turn."):tformat(eff.str, eff.dam) end, type = "magical", subtype = {disease=true, blight=true}, status = "detrimental", parameters = {str = 1, dam = 0}, - on_gain = function(self, err) return "#Target# is afflicted by a weakness disease!" end, - on_lose = function(self, err) return "#Target# is free from the weakness disease." end, + on_gain = function(self, err) return _t"#Target# is afflicted by a weakness disease!" end, + on_lose = function(self, err) return _t"#Target# is free from the weakness disease." end, -- Damage each turn on_timeout = function(self, eff) if self:attr("purify_disease") then self:heal(eff.dam, eff.src) @@ -2180,15 +2180,15 @@ newEffect{ -- Endless Woes prodigy effects newEffect{ name = "WOEFUL_DISEASE", image = "talents/weakness_disease.png", - desc = "Woeful Disease", + desc = _t"Woeful Disease", long_desc = function(self, eff) return ("The target is infected by a disease, reducing its strength, constitution, dexterity by %d and doing %0.2f blight damage per turn."): - format(eff.str, eff.con, eff.dex, eff.dam) end, + tformat(eff.str, eff.con, eff.dex, eff.dam) end, type = "magical", subtype = {disease=true, blight=true}, status = "detrimental", parameters = {str = 1, con = 1, dex = 1, dam = 0}, - on_gain = function(self, err) return "#Target# is afflicted by a woeful disease!" end, - on_lose = function(self, err) return "#Target# is free from the woeful disease." end, + on_gain = function(self, err) return _t"#Target# is afflicted by a woeful disease!" end, + on_lose = function(self, err) return _t"#Target# is free from the woeful disease." end, -- Damage each turn on_timeout = function(self, eff) if self:attr("purify_disease") then self:heal(eff.dam, eff.src) @@ -2208,14 +2208,14 @@ newEffect{ newEffect{ name = "WOEFUL_DARKNESS", image = "effects/bane_blinded.png", - desc = "Woeful Darkness", - long_desc = function(self, eff) return ("The target is weakened and lost, all damage it does is reduced by %d%%."):format(eff.reduce) end, + desc = _t"Woeful Darkness", + long_desc = function(self, eff) return ("The target is weakened and lost, all damage it does is reduced by %d%%."):tformat(eff.reduce) end, type = "magical", subtype = { darkness=true,}, status = "detrimental", parameters = {power=10, reduce=5}, - on_gain = function(self, err) return "#Target# is weakened by the darkness!", "+Woeful Darkness" end, - on_lose = function(self, err) return "#Target# looks more determined.", "-Woeful Darkness" end, + on_gain = function(self, err) return _t"#Target# is weakened by the darkness!", _t"+Woeful Darkness" end, + on_lose = function(self, err) return _t"#Target# looks more determined.", _t"-Woeful Darkness" end, on_timeout = function(self, eff) end, @@ -2229,14 +2229,14 @@ newEffect{ newEffect{ name = "WOEFUL_CORROSION", image = "talents/acidic_skin.png", - desc = "Woeful Corrosion", - long_desc = function(self, eff) return ("The target has been splashed with acid, taking %0.2f acid damage per turn."):format(eff.dam) end, + desc = _t"Woeful Corrosion", + long_desc = function(self, eff) return ("The target has been splashed with acid, taking %0.2f acid damage per turn."):tformat(eff.dam) end, type = "magical", subtype = { acid=true,}, status = "detrimental", parameters = {dam = 0}, - on_gain = function(self, err) return "#Target# is covered in acid!" end, - on_lose = function(self, err) return "#Target# is free from the acid." end, + on_gain = function(self, err) return _t"#Target# is covered in acid!" end, + on_lose = function(self, err) return _t"#Target# is free from the acid." end, -- Damage each turn on_timeout = function(self, eff) DamageType:get(DamageType.ACID).projector(eff.src, self.x, self.y, DamageType.ACID, eff.dam) @@ -2249,14 +2249,14 @@ newEffect{ newEffect{ name = "WOEFUL_CRIPPLE", image = "talents/cripple.png", - desc = "Woeful Cripple", - long_desc = function(self, eff) return ("The target is crippled, reducing melee, spellcasting and mind speed by %d%%."):format(eff.speed*100) end, + desc = _t"Woeful Cripple", + long_desc = function(self, eff) return ("The target is crippled, reducing melee, spellcasting and mind speed by %d%%."):tformat(eff.speed*100) end, type = "magical", subtype = { slow=true }, status = "detrimental", parameters = { speed=0.2 }, - on_gain = function(self, err) return "#Target# is crippled." end, - on_lose = function(self, err) return "#Target# is not crippled anymore." end, + on_gain = function(self, err) return _t"#Target# is crippled." end, + on_lose = function(self, err) return _t"#Target# is not crippled anymore." end, activate = function(self, eff) self:effectTemporaryValue(eff, "combat_physspeed", -eff.speed) self:effectTemporaryValue(eff, "combat_spellspeed", -eff.speed) @@ -2266,14 +2266,14 @@ newEffect{ newEffect{ name = "EPIDEMIC", image = "talents/epidemic.png", - desc = "Epidemic", - long_desc = function(self, eff) return ("The target is infected by a disease, doing %0.2f blight damage per turn and reducing healing received by %d%%.\nEach non-disease blight damage done to it will spread the disease."):format(eff.dam, eff.heal_factor) end, + desc = _t"Epidemic", + long_desc = function(self, eff) return ("The target is infected by a disease, doing %0.2f blight damage per turn and reducing healing received by %d%%.\nEach non-disease blight damage done to it will spread the disease."):tformat(eff.dam, eff.heal_factor) end, type = "magical", subtype = {disease=true, blight=true}, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is afflicted by an epidemic!" end, - on_lose = function(self, err) return "#Target# is free from the epidemic." end, + on_gain = function(self, err) return _t"#Target# is afflicted by an epidemic!" end, + on_lose = function(self, err) return _t"#Target# is free from the epidemic." end, -- Damage each turn on_timeout = function(self, eff) if self:attr("purify_disease") then self:heal(eff.dam, eff.src) @@ -2294,14 +2294,14 @@ newEffect{ newEffect{ name = "WORM_ROT", image = "talents/worm_rot.png", - desc = "Worm Rot", - long_desc = function(self, eff) return ("The target is infected with carrion worm larvae. Each turn it will lose one beneficial physical effect and %0.2f blight and acid damage will be inflicted.\nAfter five turns the disease will inflict %0.2f blight damage and spawn a carrion worm mass."):format(eff.dam, eff.burst) end, + desc = _t"Worm Rot", + long_desc = function(self, eff) return ("The target is infected with carrion worm larvae. Each turn it will lose one beneficial physical effect and %0.2f blight and acid damage will be inflicted.\nAfter five turns the disease will inflict %0.2f blight damage and spawn a carrion worm mass."):tformat(eff.dam, eff.burst) end, type = "magical", subtype = {disease=true, blight=true, acid=true}, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is afflicted by a terrible worm rot!" end, - on_lose = function(self, err) return "#Target# is free from the worm rot." end, + on_gain = function(self, err) return _t"#Target# is afflicted by a terrible worm rot!" end, + on_lose = function(self, err) return _t"#Target# is free from the worm rot." end, -- Damage each turn on_timeout = function(self, eff) eff.rot_timer = eff.rot_timer - 1 @@ -2353,18 +2353,18 @@ newEffect{ newEffect{ name = "GHOUL_ROT", image = "talents/gnaw.png", - desc = "Ghoul Rot", + desc = _t"Ghoul Rot", long_desc = function(self, eff) local ghoulify = "" if eff.make_ghoul > 0 then ghoulify = " If the target dies while ghoul rot is active it will rise as a ghoul." end - return ("The target is infected by a disease doing %0.2f blight damage per turn.%s"):format(eff.dam, ghoulify) + return ("The target is infected by a disease doing %0.2f blight damage per turn.%s"):tformat(eff.dam, ghoulify) end, type = "magical", subtype = {disease=true, blight=true}, status = "detrimental", parameters = {str = 0, con = 0, dex = 0, make_ghoul = 0}, - on_gain = function(self, err) return "#Target# is afflicted by ghoul rot!" end, - on_lose = function(self, err) return "#Target# is free from the ghoul rot." end, + on_gain = function(self, err) return _t"#Target# is afflicted by ghoul rot!" end, + on_lose = function(self, err) return _t"#Target# is free from the ghoul rot." end, -- Damage each turn on_timeout = function(self, eff) if self:attr("purify_disease") then self:heal(eff.dam, eff.src) @@ -2379,7 +2379,7 @@ newEffect{ newEffect{ name = "BLOODCASTING", image = "talents/bloodcasting.png", - desc = "Bloodcasting", + desc = _t"Bloodcasting", long_desc = function(self, eff) return ("Corruptions consume health instead of vim.") end, type = "magical", subtype = {corruption=true}, @@ -2396,9 +2396,9 @@ newEffect{ newEffect{ name = "BLOOD_GRASP", image = "talents/blood_grasp.png", - desc = "Sanguine Infusion", + desc = _t"Sanguine Infusion", charges = function(self, eff) return math.floor(eff.life) end, - long_desc = function(self, eff) return ("Maximum life increased by %d."):format(eff.life) end, + long_desc = function(self, eff) return ("Maximum life increased by %d."):tformat(eff.life) end, type = "magical", subtype = {corruption=true}, status = "beneficial", @@ -2421,14 +2421,14 @@ newEffect{ newEffect{ name = "ARCANE_SUPREMACY", image = "talents/arcane_supremacy.png", - desc = "Arcane Supremacy", - long_desc = function(self, eff) return ("The target's spellpower and spell save has been increased by %d"): format(eff.power) end, + desc = _t"Arcane Supremacy", + long_desc = function(self, eff) return ("The target's spellpower and spell save has been increased by %d"):tformat(eff.power) end, type = "magical", subtype = { arcane=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is surging with arcane energy.", "+Arcane Supremacy" end, - on_lose = function(self, err) return "#The arcane energy around Target# has dissipated.", "-Arcane Supremacy" end, + on_gain = function(self, err) return _t"#Target# is surging with arcane energy.", _t"+Arcane Supremacy" end, + on_lose = function(self, err) return _t"#The arcane energy around Target# has dissipated.", _t"-Arcane Supremacy" end, activate = function(self, eff) eff.spell_save = self:addTemporaryValue("combat_spellresist", eff.power) eff.spell_power = self:addTemporaryValue("combat_spellpower", eff.power) @@ -2443,14 +2443,14 @@ newEffect{ newEffect{ name = "WARD", image = "talents/ward.png", - desc = "Ward", - long_desc = function(self, eff) return ("Fully absorbs %d %s attack%s."):format(#eff.particles, DamageType.dam_def[eff.d_type].name, #eff.particles > 1 and "s" or "") end, + desc = _t"Ward", + long_desc = function(self, eff) return ("Fully absorbs %d %s attack%s."):tformat(#eff.particles, DamageType.dam_def[eff.d_type].name, #eff.particles > 1 and "s" or "") end, type = "magical", subtype = { arcane=true }, status = "beneficial", parameters = { nb=3 }, - on_gain = function(self, eff) return ("#Target# warded against %s!"):format(DamageType.dam_def[eff.d_type].name), "+Ward" end, - on_lose = function(self, eff) return ("#Target#'s %s ward fades"):format(DamageType.dam_def[eff.d_type].name), "-Ward" end, + on_gain = function(self, eff) return ("#Target# warded against %s!"):tformat(DamageType.dam_def[eff.d_type].name), "+Ward" end, + on_lose = function(self, eff) return ("#Target#'s %s ward fades"):tformat(DamageType.dam_def[eff.d_type].name), "-Ward" end, absorb = function(type, dam, eff, self, src) if eff.d_type ~= type then return dam end game.logPlayer(self, "Your %s ward absorbs the damage!", DamageType.dam_def[eff.d_type].name) @@ -2475,15 +2475,15 @@ newEffect{ newEffect{ name = "SPELLSURGE", image = "talents/gather_the_threads.png", - desc = "Spellsurge", - long_desc = function(self, eff) return ("The target's spellpower has been increased by %d."):format(eff.cur_power or eff.power) end, + desc = _t"Spellsurge", + long_desc = function(self, eff) return ("The target's spellpower has been increased by %d."):tformat(eff.cur_power or eff.power) end, charges = function(self, eff) return math.floor(eff.cur_power or eff.power) end, type = "magical", subtype = { arcane=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is surging arcane power.", "+Spellsurge" end, - on_lose = function(self, err) return "#Target# is no longer surging arcane power.", "-Spellsurge" end, + on_gain = function(self, err) return _t"#Target# is surging arcane power.", _t"+Spellsurge" end, + on_lose = function(self, err) return _t"#Target# is no longer surging arcane power.", _t"-Spellsurge" end, on_merge = function(self, old_eff, new_eff) self:removeTemporaryValue("combat_spellpower", old_eff.tmpid) old_eff.cur_power = math.min(old_eff.cur_power + new_eff.power, new_eff.max) @@ -2505,14 +2505,14 @@ newEffect{ newEffect{ name = "OUT_OF_PHASE", image = "talents/phase_door.png", - desc = "Out of Phase", - long_desc = function(self, eff) return ("The target is out of phase with reality, increasing defense by %d, resist all by %d%%, and reducing the duration of detrimental timed effects by %d%%.\nThese effects cap at 40%%."):format(eff.defense or 0, eff.resists or 0, eff.effect_reduction or 0) end, + desc = _t"Out of Phase", + long_desc = function(self, eff) return ("The target is out of phase with reality, increasing defense by %d, resist all by %d%%, and reducing the duration of detrimental timed effects by %d%%.\nThese effects cap at 40%%."):tformat(eff.defense or 0, eff.resists or 0, eff.effect_reduction or 0) end, type = "magical", subtype = { teleport=true }, status = "beneficial", parameters = { defense=0, resists=0, effect_reduction=0 }, - on_gain = function(self, err) return "#Target# is out of phase.", "+Phased" end, - on_lose = function(self, err) return "#Target# is no longer out of phase.", "-Phased" end, + on_gain = function(self, err) return _t"#Target# is out of phase.", _t"+Phased" end, + on_lose = function(self, err) return _t"#Target# is no longer out of phase.", _t"-Phased" end, activate = function(self, eff) eff.defense = math.min(40, eff.defense + (self:attr("defense_on_teleport") or 0)) eff.resists = math.min(40, eff.resists + (self:attr("resist_all_on_teleport") or 0)) @@ -2548,14 +2548,14 @@ newEffect{ newEffect{ name = "BLOOD_LOCK", image = "talents/blood_lock.png", - desc = "Blood Lock", - long_desc = function(self, eff) return ("Cannot heal higher than %d life."):format(eff.power) end, + desc = _t"Blood Lock", + long_desc = function(self, eff) return ("Cannot heal higher than %d life."):tformat(eff.power) end, type = "magical", subtype = { blood=true }, status = "detrimental", parameters = { }, - on_gain = function(self, err) return "#Target# is blood locked.", "+Blood Lock" end, - on_lose = function(self, err) return "#Target# is no longer blood locked.", "-Blood Lock" end, + on_gain = function(self, err) return _t"#Target# is blood locked.", _t"+Blood Lock" end, + on_lose = function(self, err) return _t"#Target# is no longer blood locked.", _t"-Blood Lock" end, activate = function(self, eff) eff.power = self.life eff.tmpid = self:addTemporaryValue("blood_lock", eff.power) @@ -2568,14 +2568,14 @@ newEffect{ newEffect{ name = "CONGEAL_TIME", image = "talents/congeal_time.png", - desc = "Congeal Time", - long_desc = function(self, eff) return ("Reduces global action speed by %d%% and all outgoing projectiles speed by %d%%."):format(eff.slow * 100, eff.proj) end, + desc = _t"Congeal Time", + long_desc = function(self, eff) return ("Reduces global action speed by %d%% and all outgoing projectiles speed by %d%%."):tformat(eff.slow * 100, eff.proj) end, type = "magical", subtype = { temporal=true, slow=true }, status = "detrimental", parameters = { slow=0.1, proj=15 }, - on_gain = function(self, err) return "#Target# slows down.", "+Congeal Time" end, - on_lose = function(self, err) return "#Target# speeds up.", "-Congeal Time" end, + on_gain = function(self, err) return _t"#Target# slows down.", _t"+Congeal Time" end, + on_lose = function(self, err) return _t"#Target# speeds up.", _t"-Congeal Time" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("global_speed_add", -eff.slow) eff.prjid = self:addTemporaryValue("slow_projectiles_outgoing", eff.proj) @@ -2593,14 +2593,14 @@ newEffect{ newEffect{ name = "ARCANE_VORTEX", image = "talents/arcane_vortex.png", - desc = "Arcane Vortex", - long_desc = function(self, eff) return ("An arcane vortex follows the target. Each turn a manathrust fires from it to a random foe in sight doing %0.2f arcane damage to all. If no foes are found the main target takes 50%% more arcane damage this turn. If the target dies the remaining damage is dealt as a radius 2 ball of arcane."):format(eff.dam) end, + desc = _t"Arcane Vortex", + long_desc = function(self, eff) return ("An arcane vortex follows the target. Each turn a manathrust fires from it to a random foe in sight doing %0.2f arcane damage to all. If no foes are found the main target takes 50%% more arcane damage this turn. If the target dies the remaining damage is dealt as a radius 2 ball of arcane."):tformat(eff.dam) end, type = "magical", subtype = { arcane=true }, status = "detrimental", parameters = { dam=10 }, - on_gain = function(self, err) return "#Target# is focused by an arcane vortex!.", "+Arcane Vortex" end, - on_lose = function(self, err) return "#Target# is free from the arcane vortex.", "-Arcane Vortex" end, + on_gain = function(self, err) return _t"#Target# is focused by an arcane vortex!.", _t"+Arcane Vortex" end, + on_lose = function(self, err) return _t"#Target# is free from the arcane vortex.", _t"-Arcane Vortex" end, on_timeout = function(self, eff) if not self.x then return end local l = {} @@ -2639,14 +2639,14 @@ newEffect{ newEffect{ name = "AETHER_BREACH", image = "talents/aether_breach.png", - desc = "Aether Breach", - long_desc = function(self, eff) return ("Fires an arcane explosion each turn doing %0.2f arcane damage in radius 2."):format(eff.dam) end, + desc = _t"Aether Breach", + long_desc = function(self, eff) return ("Fires an arcane explosion each turn doing %0.2f arcane damage in radius 2."):tformat(eff.dam) end, type = "magical", subtype = { arcane=true }, status = "beneficial", parameters = { dam=10 }, - on_gain = function(self, err) return "#Target# begins channeling arcane through a breach in reality!", "+Aether Breach" end, - on_lose = function(self, err) return "The aetheric breach around #Target# seals itself.", "-Aether Breach" end, + on_gain = function(self, err) return _t"#Target# begins channeling arcane through a breach in reality!", _t"+Aether Breach" end, + on_lose = function(self, err) return _t"The aetheric breach around #Target# seals itself.", _t"-Aether Breach" end, on_timeout = function(self, eff) if game.zone.short_name.."-"..game.level.level ~= eff.level then return end @@ -2678,7 +2678,7 @@ newEffect{ newEffect{ name = "AETHER_AVATAR", image = "talents/aether_avatar.png", - desc = "Aether Avatar", + desc = _t"Aether Avatar", long_desc = function(self, eff) return ("Filled with pure aether forces!") end, type = "magical", subtype = { arcane=true }, @@ -2712,18 +2712,18 @@ newEffect{ newEffect{ name = "VULNERABILITY_POISON", image = "talents/vulnerability_poison.png", - desc = "Vulnerability Poison", + desc = _t"Vulnerability Poison", long_desc = function(self, eff) local poison_id = eff.__tmpvals and eff.__tmpvals[2] and eff.__tmpvals[2][2] local poison_effect = self:getTemporaryValue(poison_id) - return ("The target is afflicted with a magical poison and is suffering %0.2f arcane damage per turn. All resistances are reduced by 10%%%s."):format(eff.src:damDesc("ARCANE", eff.power) , poison_effect and (" and poison resistance is reduced by %s%%"):format(-100*poison_effect) or "") + return ("The target is afflicted with a magical poison and is suffering %0.2f arcane damage per turn. All resistances are reduced by 10%%%s."):tformat(eff.src:damDesc("ARCANE", eff.power) , poison_effect and (" and poison resistance is reduced by %s%%"):tformat(-100*poison_effect) or "") end, type = "magical", subtype = { poison=true, arcane=true }, status = "detrimental", parameters = {power=10, unresistable=true}, - on_gain = function(self, err) return "#Target# is magically poisoned!", "+Vulnerability Poison" end, - on_lose = function(self, err) return "#Target# is no longer magically poisoned.", "-Vulnerability Poison" end, + on_gain = function(self, err) return _t"#Target# is magically poisoned!", _t"+Vulnerability Poison" end, + on_lose = function(self, err) return _t"#Target# is no longer magically poisoned.", _t"-Vulnerability Poison" end, -- Damage each turn on_timeout = function(self, eff) if self:attr("purify_poison") then self:heal(eff.power, eff.src) @@ -2742,14 +2742,14 @@ newEffect{ newEffect{ name = "IRRESISTIBLE_SUN", image = "talents/irresistible_sun.png", - desc = "Irresistible Sun", - long_desc = function(self, eff) return ("The target is attracting all toward it, also dealing fire, light and physical damage each turn.."):format() end, + desc = _t"Irresistible Sun", + long_desc = function(self, eff) return ("The target is attracting all toward it, also dealing fire, light and physical damage each turn.."):tformat() end, type = "magical", subtype = { sun=true }, status = "beneficial", parameters = {dam=100}, - on_gain = function(self, err) return "#Target# starts to attract all creatures around!", "+Irresistible Sun" end, - on_lose = function(self, err) return "#Target# is no longer attracting creatures.", "-Irresistible Sun" end, + on_gain = function(self, err) return _t"#Target# starts to attract all creatures around!", _t"+Irresistible Sun" end, + on_lose = function(self, err) return _t"#Target# is no longer attracting creatures.", _t"-Irresistible Sun" end, activate = function(self, eff) local particle = Particles.new("generic_vortex", 5, {rm=230, rM=230, gm=20, gM=250, bm=250, bM=80, am=80, aM=150, radius=5, density=50}) if core.shader.allow("distort") then particle:setSub("vortex_distort", 5, {radius=5}) end @@ -2787,14 +2787,14 @@ newEffect{ newEffect{ name = "WEIGHT_OF_THE_SUN", image = "talents/irresistible_sun.png", - desc = "Weight of the Sun", - long_desc = function(self, eff) return ("The target is struggling against immense gravity, all damage it does is reduced by %d%%."):format(eff.reduce) end, + desc = _t"Weight of the Sun", + long_desc = function(self, eff) return ("The target is struggling against immense gravity, all damage it does is reduced by %d%%."):tformat(eff.reduce) end, type = "magical", subtype = { sun=true,}, status = "detrimental", parameters = {reduce=5}, - on_gain = function(self, err) return "#Target# can barely stand!", "+Weight of the Sun" end, - on_lose = function(self, err) return "#Target# can move freely once more.", "-Weight of the Sun" end, + on_gain = function(self, err) return _t"#Target# can barely stand!", _t"+Weight of the Sun" end, + on_lose = function(self, err) return _t"#Target# can move freely once more.", _t"-Weight of the Sun" end, activate = function(self, eff) self:effectTemporaryValue(eff, "numbed", eff.reduce) end, @@ -2802,14 +2802,14 @@ newEffect{ newEffect{ name = "TEMPORAL_FORM", image = "talents/temporal_form.png", - desc = "Temporal Form", - long_desc = function(self, eff) return ("The target assumes the form of a telugoroth."):format() end, + desc = _t"Temporal Form", + long_desc = function(self, eff) return ("The target assumes the form of a telugoroth."):tformat() end, type = "magical", subtype = { temporal=true }, status = "beneficial", parameters = {}, - on_gain = function(self, err) return "#Target# threads time as a shell!", "+Temporal Form" end, - on_lose = function(self, err) return "#Target# is no longer embeded in time.", "-Temporal Form" end, + on_gain = function(self, err) return _t"#Target# threads time as a shell!", _t"+Temporal Form" end, + on_lose = function(self, err) return _t"#Target# is no longer embeded in time.", _t"-Temporal Form" end, activate = function(self, eff) self:effectTemporaryValue(eff, "all_damage_convert", DamageType.TEMPORAL) self:effectTemporaryValue(eff, "all_damage_convert_percent", 50) @@ -2859,14 +2859,14 @@ newEffect{ newEffect{ name = "CORRUPT_LOSGOROTH_FORM", image = "shockbolt/npc/elemental_void_losgoroth_corrupted.png", - desc = "Corrupted Losgoroth Form", - long_desc = function(self, eff) return ("The target has assumed the form of a corrupted losgoroth, gaining immunity to poison, disease, bleeding, and confusion. It does not need to breathe, and converts half of all damage to life draining blight."):format() end, + desc = _t"Corrupted Losgoroth Form", + long_desc = function(self, eff) return ("The target has assumed the form of a corrupted losgoroth, gaining immunity to poison, disease, bleeding, and confusion. It does not need to breathe, and converts half of all damage to life draining blight."):tformat() end, type = "magical", subtype = { blight=true, arcane=true }, status = "beneficial", parameters = {}, - on_gain = function(self, err) return "#Target# turns into a losgoroth!", "+Corrupted Losgoroth Form" end, - on_lose = function(self, err) return "#Target# is no longer transformed.", "-Corrupted Losgoroth Form" end, + on_gain = function(self, err) return _t"#Target# turns into a losgoroth!", _t"+Corrupted Losgoroth Form" end, + on_lose = function(self, err) return _t"#Target# is no longer transformed.", _t"-Corrupted Losgoroth Form" end, activate = function(self, eff) self:effectTemporaryValue(eff, "all_damage_convert", DamageType.DRAINLIFE) self:effectTemporaryValue(eff, "all_damage_convert_percent", 50) @@ -2894,14 +2894,14 @@ newEffect{ newEffect{ name = "SHIVGOROTH_FORM", image = "talents/shivgoroth_form.png", - desc = "Shivgoroth Form", - long_desc = function(self, eff) return ("The target assumes the form of a shivgoroth."):format() end, + desc = _t"Shivgoroth Form", + long_desc = function(self, eff) return ("The target assumes the form of a shivgoroth."):tformat() end, type = "magical", subtype = { ice=true }, status = "beneficial", parameters = {}, - on_gain = function(self, err) return "#Target# turns into a shivgoroth!", "+Shivgoroth Form" end, - on_lose = function(self, err) return "#Target# is no longer transformed.", "-Shivgoroth Form" end, + on_gain = function(self, err) return _t"#Target# turns into a shivgoroth!", _t"+Shivgoroth Form" end, + on_lose = function(self, err) return _t"#Target# is no longer transformed.", _t"-Shivgoroth Form" end, activate = function(self, eff) self:effectTemporaryValue(eff, "damage_affinity", {[DamageType.COLD]=50 + 100 * eff.power}) self:effectTemporaryValue(eff, "resists", {[DamageType.COLD]=100 * eff.power / 2}) @@ -2946,14 +2946,14 @@ newEffect{ --Duplicate for Frost Lord's Chain newEffect{ name = "SHIVGOROTH_FORM_LORD", image = "talents/shivgoroth_form.png", - desc = "Shivgoroth Form", - long_desc = function(self, eff) return ("The target assumes the form of a shivgoroth."):format() end, + desc = _t"Shivgoroth Form", + long_desc = function(self, eff) return ("The target assumes the form of a shivgoroth."):tformat() end, type = "magical", subtype = { ice=true }, status = "beneficial", parameters = {}, - on_gain = function(self, err) return "#Target# turns into a shivgoroth!", "+Shivgoroth Form" end, - on_lose = function(self, err) return "#Target# is no longer transformed.", "-Shivgoroth Form" end, + on_gain = function(self, err) return _t"#Target# turns into a shivgoroth!", _t"+Shivgoroth Form" end, + on_lose = function(self, err) return _t"#Target# is no longer transformed.", _t"-Shivgoroth Form" end, activate = function(self, eff) self:effectTemporaryValue(eff, "damage_affinity", {[DamageType.COLD]=50 + 100 * eff.power}) self:effectTemporaryValue(eff, "resists", {[DamageType.COLD]=100 * eff.power / 2}) @@ -2997,8 +2997,8 @@ newEffect{ newEffect{ name = "KEEPER_OF_REALITY", image = "effects/continuum_destabilization.png", - desc = "Keepers of Reality Rally Call", - long_desc = function(self, eff) return "The keepers of reality have called upon all to defend Point Zero. Life increased by 5000, damage by 300%." end, + desc = _t"Keepers of Reality Rally Call", + long_desc = function(self, eff) return _t"The keepers of reality have called upon all to defend Point Zero. Life increased by 5000, damage by 300%." end, type = "magical", decrease = 0, subtype = { temporal=true }, @@ -3017,8 +3017,8 @@ newEffect{ newEffect{ name = "RECEPTIVE_MIND", image = "talents/rune__vision.png", - desc = "Receptive Mind", - long_desc = function(self, eff) return ("You can sense the presence of all %s around you."):format(eff.what) end, + desc = _t"Receptive Mind", + long_desc = function(self, eff) return ("You can sense the presence of all %s around you."):tformat(eff.what) end, type = "magical", subtype = { rune=true }, status = "beneficial", @@ -3032,8 +3032,8 @@ newEffect{ newEffect{ name = "BORN_INTO_MAGIC", image = "talents/born_into_magic.png", - desc = "Born into Magic", - long_desc = function(self, eff) return ("%s damage increased by 20%%."):format(DamageType:get(eff.damtype).name:capitalize()) end, + desc = _t"Born into Magic", + long_desc = function(self, eff) return ("%s damage increased by 20%%."):tformat(DamageType:get(eff.damtype).name:capitalize()) end, type = "magical", subtype = { race=true }, status = "beneficial", @@ -3047,8 +3047,8 @@ newEffect{ newEffect{ name = "ESSENCE_OF_THE_DEAD", image = "talents/essence_of_the_dead.png", - desc = "Essence of the Dead", - long_desc = function(self, eff) return ("The target consumed souls to gain new powers. %d spells affected."):format(eff.nb) end, + desc = _t"Essence of the Dead", + long_desc = function(self, eff) return ("The target consumed souls to gain new powers. %d spells affected."):tformat(eff.nb) end, type = "magical", decrease = 0, subtype = { necrotic=true }, @@ -3065,14 +3065,14 @@ newEffect{ newEffect{ name = "ICE_ARMOUR", image = "talents/ice_armour.png", - desc = "Ice Armour", - long_desc = function(self, eff) return ("The target is covered in a layer of ice. Its armour is increased by %d, it deals %0.1f Cold damage to attackers that hit in melee, and 50%% of its damage is converted to cold."):format(eff.armor, self:damDesc(DamageType.COLD, eff.dam)) end, + desc = _t"Ice Armour", + long_desc = function(self, eff) return ("The target is covered in a layer of ice. Its armour is increased by %d, it deals %0.1f Cold damage to attackers that hit in melee, and 50%% of its damage is converted to cold."):tformat(eff.armor, self:damDesc(DamageType.COLD, eff.dam)) end, type = "magical", subtype = { cold=true, armour=true, }, status = "beneficial", parameters = {armor=10, dam=10}, - on_gain = function(self, err) return "#Target# is covered in icy armor!" end, - on_lose = function(self, err) return "#Target#'s ice coating crumbles away." end, + on_gain = function(self, err) return _t"#Target# is covered in icy armor!" end, + on_lose = function(self, err) return _t"#Target#'s ice coating crumbles away." end, activate = function(self, eff) self:effectTemporaryValue(eff, "combat_armor", eff.armor) self:effectTemporaryValue(eff, "on_melee_hit", {[DamageType.COLD]=eff.dam}) @@ -3089,14 +3089,14 @@ newEffect{ newEffect{ name = "CAUSTIC_GOLEM", image = "talents/caustic_golem.png", - desc = "Caustic Golem", - long_desc = function(self, eff) return ("The target is coated with acid. When struck in melee, it has a %d%% chance to spray a cone of acid towards the attacker doing %0.1f damage."):format(eff.chance, self:damDesc(DamageType.ACID, eff.dam)) end, + desc = _t"Caustic Golem", + long_desc = function(self, eff) return ("The target is coated with acid. When struck in melee, it has a %d%% chance to spray a cone of acid towards the attacker doing %0.1f damage."):tformat(eff.chance, self:damDesc(DamageType.ACID, eff.dam)) end, type = "magical", subtype = { acid=true, coating=true, }, status = "beneficial", parameters = {chance=10, dam=10}, - on_gain = function(self, err) return "#Target# is coated in acid!" end, - on_lose = function(self, err) return "#Target#'s acid coating is diluted." end, + on_gain = function(self, err) return _t"#Target# is coated in acid!" end, + on_lose = function(self, err) return _t"#Target#'s acid coating is diluted." end, callbackOnMeleeHit = function(self, eff, src) if self.turn_procs.caustic_golem then return end if not rng.percent(eff.chance) then return end @@ -3117,14 +3117,14 @@ newEffect{ newEffect{ name = "SUN_VENGEANCE", image = "talents/sun_vengeance.png", - desc = "Sun's Vengeance", - long_desc = function(self, eff) return ("The target is filled with the Sun's fury, next Sun Beam will be instant cast."):format() end, + desc = _t"Sun's Vengeance", + long_desc = function(self, eff) return ("The target is filled with the Sun's fury, next Sun Beam will be instant cast."):tformat() end, type = "magical", subtype = { sun=true, }, status = "beneficial", parameters = {}, - on_gain = function(self, err) return "#Target# is filled with the Sun's fury!", "+Sun's Vengeance" end, - on_lose = function(self, err) return "#Target#'s solar fury subsides.", "-Sun's Vengeance" end, + on_gain = function(self, err) return _t"#Target# is filled with the Sun's fury!", _t"+Sun's Vengeance" end, + on_lose = function(self, err) return _t"#Target#'s solar fury subsides.", _t"-Sun's Vengeance" end, activate = function(self, eff) self:effectTemporaryValue(eff, "amplify_sun_beam", 25) end @@ -3132,15 +3132,15 @@ newEffect{ newEffect{ name = "SUNCLOAK", image = "talents/suncloak.png", - desc = "Suncloak", + desc = _t"Suncloak", long_desc = function(self, eff) return ("The target is protected by the sun, increasing their spell casting speed by %d%%, reducing spell cooldowns by %d%%, and preventing damage over %d%% of your maximum life from a single hit."): - format(eff.haste*100, eff.cd*100, eff.cap) end, + tformat(eff.haste*100, eff.cd*100, eff.cap) end, type = "magical", subtype = { light=true, }, status = "beneficial", parameters = {cap = 1, haste = 0.1, cd = 0.1}, - on_gain = function(self, err) return "#Target# is energized and protected by the Sun!", "+Suncloak" end, - on_lose = function(self, err) return "#Target#'s solar fury subsides.", "-Suncloak" end, + on_gain = function(self, err) return _t"#Target# is energized and protected by the Sun!", _t"+Suncloak" end, + on_lose = function(self, err) return _t"#Target#'s solar fury subsides.", _t"-Suncloak" end, activate = function(self, eff) self:effectTemporaryValue(eff, "flat_damage_cap", {all=eff.cap}) self:effectTemporaryValue(eff, "combat_spellspeed", eff.haste) @@ -3154,14 +3154,14 @@ newEffect{ newEffect{ name = "MARK_OF_LIGHT", image = "talents/mark_of_light.png", - desc = "Mark of Light", - long_desc = function(self, eff) return ("The creature that marked the target with light will be healed for all melee attacks against it by %d%%."):format(eff.power) end, + desc = _t"Mark of Light", + long_desc = function(self, eff) return ("The creature that marked the target with light will be healed for all melee attacks against it by %d%%."):tformat(eff.power) end, type = "magical", subtype = { light=true, }, status = "detrimental", parameters = { power = 10 }, - on_gain = function(self, err) return "#Target# is marked by light!", "+Mark of Light" end, - on_lose = function(self, err) return "#Target#'s mark disappears.", "-Mark of Light" end, + on_gain = function(self, err) return _t"#Target# is marked by light!", _t"+Mark of Light" end, + on_lose = function(self, err) return _t"#Target#'s mark disappears.", _t"-Mark of Light" end, callbackOnMeleeHit = function(self, eff, src, dam) if eff.src == src then src:heal(dam * eff.power / 100, self) @@ -3175,14 +3175,14 @@ newEffect{ newEffect{ name = "RIGHTEOUS_STRENGTH", image = "talents/righteous_strength.png", - desc = "Righteous Strength", - long_desc = function(self, eff) return ("Increase light and physical damage by %d%%."):format(eff.power) end, + desc = _t"Righteous Strength", + long_desc = function(self, eff) return ("Increase light and physical damage by %d%%."):tformat(eff.power) end, type = "magical", subtype = { sun=true, }, status = "beneficial", parameters = { power = 10 }, - on_gain = function(self, err) return "#Target# shines with light!", "+Righteous Strength" end, - on_lose = function(self, err) return "#Target# stops shining.", "-Righteous Strength" end, + on_gain = function(self, err) return _t"#Target# shines with light!", _t"+Righteous Strength" end, + on_lose = function(self, err) return _t"#Target# stops shining.", _t"-Righteous Strength" end, charges = function(self, eff) return eff.charges end, on_merge = function(self, old_eff, new_eff) new_eff.charges = math.min(old_eff.charges + 1, 3) @@ -3202,14 +3202,14 @@ newEffect{ newEffect{ name = "LIGHTBURN", image = "talents/righteous_strength.png", - desc = "Lightburn", - long_desc = function(self, eff) return ("The creature is burnt by light, dealing %0.2f light damage each turn and reducing armour by %d."):format(eff.dam, eff.armor) end, + desc = _t"Lightburn", + long_desc = function(self, eff) return ("The creature is burnt by light, dealing %0.2f light damage each turn and reducing armour by %d."):tformat(eff.dam, eff.armor) end, type = "magical", subtype = { sun=true, }, status = "detrimental", parameters = { armor = 10, dam = 10 }, - on_gain = function(self, err) return "#Target# burns with light!", "+Lightburn" end, - on_lose = function(self, err) return "#Target# stops burning.", "-Lightburn" end, + on_gain = function(self, err) return _t"#Target# burns with light!", _t"+Lightburn" end, + on_lose = function(self, err) return _t"#Target# stops burning.", _t"-Lightburn" end, on_merge = function(self, old_eff, new_eff) -- Merge the flames! local olddam = old_eff.dam * old_eff.dur @@ -3229,14 +3229,14 @@ newEffect{ newEffect{ name = "ILLUMINATION", - desc = "Illumination ", image = "talents/illumination.png", - long_desc = function(self, eff) return ("The target glows in the light, reducing its stealth and invisibility power by %d, defense by %d and looses all evasion bonus from being unseen."):format(eff.power, eff.def) end, + desc = _t"Illumination ", image = "talents/illumination.png", + long_desc = function(self, eff) return ("The target glows in the light, reducing its stealth and invisibility power by %d, defense by %d and looses all evasion bonus from being unseen."):tformat(eff.power, eff.def) end, type = "magical", subtype = { sun=true }, status = "detrimental", parameters = { power=20, def=20 }, - on_gain = function(self, err) return nil, "+Illumination" end, - on_lose = function(self, err) return nil, "-Illumination" end, + on_gain = function(self, err) return nil, _t"+Illumination" end, + on_lose = function(self, err) return nil, _t"-Illumination" end, activate = function(self, eff) self:effectTemporaryValue(eff, "inc_stealth", -eff.power) if self:attr("invisible") then self:effectTemporaryValue(eff, "invisible", -eff.power) end @@ -3247,27 +3247,27 @@ newEffect{ newEffect{ name = "LIGHT_BURST", - desc = "Light Burst ", image = "talents/light_burst.png", - long_desc = function(self, eff) return ("The is invigorated when dealing damage with Searing Sight."):format() end, + desc = _t"Light Burst ", image = "talents/light_burst.png", + long_desc = function(self, eff) return ("The is invigorated when dealing damage with Searing Sight."):tformat() end, type = "magical", subtype = { sun=true }, status = "beneficial", parameters = { max=1 }, - on_gain = function(self, err) return nil, "+Light Burst" end, - on_lose = function(self, err) return nil, "-Light Burst" end, + on_gain = function(self, err) return nil, _t"+Light Burst" end, + on_lose = function(self, err) return nil, _t"-Light Burst" end, } newEffect{ name = "LIGHT_BURST_SPEED", - desc = "Light Burst Speed", image = "effects/light_burst_speed.png", - long_desc = function(self, eff) return ("The target is invigorated from Searing Sight, increasing movement speed by %d%%."):format(eff.charges * 10) end, + desc = _t"Light Burst Speed", image = "effects/light_burst_speed.png", + long_desc = function(self, eff) return ("The target is invigorated from Searing Sight, increasing movement speed by %d%%."):tformat(eff.charges * 10) end, type = "magical", subtype = { sun=true }, status = "beneficial", parameters = {}, charges = function(self, eff) return eff.charges end, - on_gain = function(self, err) return nil, "+Light Burst Speed" end, - on_lose = function(self, err) return nil, "-Light Burst Speed" end, + on_gain = function(self, err) return nil, _t"+Light Burst Speed" end, + on_lose = function(self, err) return nil, _t"-Light Burst Speed" end, on_merge = function(self, old_eff, new_eff) local p = self:hasEffect(self.EFF_LIGHT_BURST) if not p then p = {max=1} end @@ -3288,14 +3288,14 @@ newEffect{ newEffect{ name = "HEALING_INVERSION", - desc = "Healing Inversion", image = "talents/healing_inversion.png", - long_desc = function(self, eff) return ("All healing done to the target will instead turn into %d%% blight damage."):format(eff.power) end, + desc = _t"Healing Inversion", image = "talents/healing_inversion.png", + long_desc = function(self, eff) return ("All healing done to the target will instead turn into %d%% blight damage."):tformat(eff.power) end, type = "magical", subtype = { heal=true }, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return nil, "+Healing Inversion" end, - on_lose = function(self, err) return nil, "-Healing Inversion" end, + on_gain = function(self, err) return nil, _t"+Healing Inversion" end, + on_lose = function(self, err) return nil, _t"-Healing Inversion" end, callbackPriorities={callbackOnHeal = 1}, -- trigger after (most) other healing callbacks callbackOnHeal = function(self, eff, value, src, raw_value) if raw_value > 0 and not eff.projecting then -- avoid feedback; it's bad to lose out on dmg but it's worse to break the game @@ -3318,13 +3318,13 @@ newEffect{ newEffect{ name = "SHOCKED", - desc = "Shocked", - long_desc = function(self, eff) return ("Target is reeling from an lightning shock, halving its stun and pinning resistance."):format() end, + desc = _t"Shocked", + long_desc = function(self, eff) return ("Target is reeling from an lightning shock, halving its stun and pinning resistance."):tformat() end, type = "magical", subtype = { lightning=true }, status = "detrimental", - on_gain = function(self, err) return nil, "+Shocked" end, - on_lose = function(self, err) return nil, "-Shocked" end, + on_gain = function(self, err) return nil, _t"+Shocked" end, + on_lose = function(self, err) return nil, _t"-Shocked" end, activate = function(self, eff) if self:attr("stun_immune") then self:effectTemporaryValue(eff, "stun_immune", -self:attr("stun_immune") / 2) @@ -3339,13 +3339,13 @@ newEffect{ newEffect{ name = "WET", - desc = "Wet", - long_desc = function(self, eff) return ("Target is drenched with magical water, halving its stun resistance."):format() end, + desc = _t"Wet", + long_desc = function(self, eff) return ("Target is drenched with magical water, halving its stun resistance."):tformat() end, type = "magical", subtype = { water=true, ice=true }, status = "detrimental", - on_gain = function(self, err) return nil, "+Wet" end, - on_lose = function(self, err) return nil, "-Wet" end, + on_gain = function(self, err) return nil, _t"+Wet" end, + on_lose = function(self, err) return nil, _t"-Wet" end, on_merge = function(self, old_eff, new_eff) old_eff.dur = new_eff.dur return old_eff @@ -3363,14 +3363,14 @@ newEffect{ newEffect{ name = "PROBABILITY_TRAVEL", image = "talents/anomaly_probability_travel.png", - desc = "Probability Travel", - long_desc = function(self, eff) return ("Target is out of phase and may move through walls."):format() end, + desc = _t"Probability Travel", + long_desc = function(self, eff) return ("Target is out of phase and may move through walls."):tformat() end, type = "magical", subtype = { teleport=true }, status = "beneficial", parameters = { power=0 }, - on_gain = function(self, err) return nil, "+Probability Travel" end, - on_lose = function(self, err) return nil, "-Probability Travel" end, + on_gain = function(self, err) return nil, _t"+Probability Travel" end, + on_lose = function(self, err) return nil, _t"-Probability Travel" end, activate = function(self, eff) self:effectTemporaryValue(eff, "prob_travel", eff.power) self:effectTemporaryValue(eff, "prob_travel_penalty", eff.power) @@ -3381,13 +3381,13 @@ newEffect{ newEffect{ name = "BLINK", image = "talents/anomaly_blink.png", - desc = "Blink", - long_desc = function(self, eff) return ("Target is randomly teleporting every turn."):format() end, + desc = _t"Blink", + long_desc = function(self, eff) return ("Target is randomly teleporting every turn."):tformat() end, type = "magical", subtype = { teleport=true }, status = "detrimental", - on_gain = function(self, err) return nil, "+Blink" end, - on_lose = function(self, err) return nil, "-Blink" end, + on_gain = function(self, err) return nil, _t"+Blink" end, + on_lose = function(self, err) return nil, _t"-Blink" end, on_timeout = function(self, eff) if self:teleportRandom(self.x, self.y, eff.power) then game.level.map:particleEmitter(self.x, self.y, 1, "temporal_teleport") @@ -3397,14 +3397,14 @@ newEffect{ newEffect{ name = "DIMENSIONAL_ANCHOR", image = "talents/dimensional_anchor.png", - desc = "Dimensional Anchor", - long_desc = function(self, eff) return ("The target is unable to teleport and takes %0.2f temporal and %0.2f physical damage if they try."):format(eff.damage, eff.damage) end, + desc = _t"Dimensional Anchor", + long_desc = function(self, eff) return ("The target is unable to teleport and takes %0.2f temporal and %0.2f physical damage if they try."):tformat(eff.damage, eff.damage) end, type = "magical", subtype = { temporal=true, slow=true }, status = "detrimental", parameters = { damage=0 }, - on_gain = function(self, err) return "#Target# is anchored.", "+Anchor" end, - on_lose = function(self, err) return "#Target# is no longer anchored.", "-Anchor" end, + on_gain = function(self, err) return _t"#Target# is anchored.", _t"+Anchor" end, + on_lose = function(self, err) return _t"#Target# is no longer anchored.", _t"-Anchor" end, onTeleport = function(self, eff) DamageType:get(DamageType.WARP).projector(eff.src or self, self.x, self.y, DamageType.WARP, eff.damage) end, @@ -3419,13 +3419,13 @@ newEffect{ newEffect{ name = "BREACH", image = "talents/breach.png", - desc = "Breach", - long_desc = function(self, eff) return ("The target's defenses have been breached, reducing armor hardiness, stun, pin, blindness, and confusion immunity by 50%%."):format() end, + desc = _t"Breach", + long_desc = function(self, eff) return ("The target's defenses have been breached, reducing armor hardiness, stun, pin, blindness, and confusion immunity by 50%%."):tformat() end, type = "magical", subtype = { temporal=true }, status = "detrimental", - on_gain = function(self, err) return nil, "+Breach" end, - on_lose = function(self, err) return nil, "-Breach" end, + on_gain = function(self, err) return nil, _t"+Breach" end, + on_lose = function(self, err) return nil, _t"-Breach" end, on_merge = function(self, old_eff, new_eff) old_eff.dur = new_eff.dur return old_eff @@ -3450,21 +3450,21 @@ newEffect{ newEffect{ name = "BRAIDED", image = "talents/braid_lifelines.png", - desc = "Braided", - long_desc = function(self, eff) return ("The target is taking %d%% of all damage dealt to other braided targets."):format(eff.power) end, + desc = _t"Braided", + long_desc = function(self, eff) return ("The target is taking %d%% of all damage dealt to other braided targets."):tformat(eff.power) end, type = "magical", subtype = { temporal=true }, status = "detrimental", parameters = { power=0 }, - on_gain = function(self, err) return "#Target#'s lifeline has been braided.", "+Braided" end, - on_lose = function(self, err) return "#Target#'s lifeline is no longer braided.", "-Braided" end, + on_gain = function(self, err) return _t"#Target#'s lifeline has been braided.", _t"+Braided" end, + on_lose = function(self, err) return _t"#Target#'s lifeline is no longer braided.", _t"-Braided" end, doBraid = function(self, eff, dam) local braid_damage = dam * eff.power/ 100 for i = 1, #eff.targets do local target = eff.targets[i] if target ~= self and not target.dead then game:delayedLogMessage(eff.src, target, "braided", "#CRIMSON##Source# damages #Target# through the Braid!") - game:delayedLogDamage(eff.src, target, braid_damage, ("#PINK#%d braided #LAST#"):format(braid_damage), false) + game:delayedLogDamage(eff.src, target, braid_damage, ("#PINK#%d braided #LAST#"):tformat(braid_damage), false) target:takeHit(braid_damage, eff.src) end end @@ -3486,8 +3486,8 @@ newEffect{ newEffect{ name = "PRECOGNITION", image = "talents/precognition.png", - desc = "Precognition", - long_desc = function(self, eff) return ("Peer into the future, detecting enemies, increasing defense by %d, and granting a %d%% chance to ignore critical hits."):format(eff.defense, eff.crits) end, + desc = _t"Precognition", + long_desc = function(self, eff) return ("Peer into the future, detecting enemies, increasing defense by %d, and granting a %d%% chance to ignore critical hits."):tformat(eff.defense, eff.crits) end, type = "magical", subtype = { sense=true }, status = "beneficial", @@ -3508,13 +3508,13 @@ newEffect{ newEffect{ name = "WEBS_OF_FATE", image = "talents/webs_of_fate.png", - desc = "Webs of Fate", - long_desc = function(self, eff) return ("Displacing %d%% of all damage on to a random enemy."):format(eff.power*100) end, + desc = _t"Webs of Fate", + long_desc = function(self, eff) return ("Displacing %d%% of all damage on to a random enemy."):tformat(eff.power*100) end, type = "magical", subtype = { temporal=true }, status = "beneficial", - on_gain = function(self, err) return nil, "+Webs of Fate" end, - on_lose = function(self, err) return nil, "-Webs of Fate" end, + on_gain = function(self, err) return nil, _t"+Webs of Fate" end, + on_lose = function(self, err) return nil, _t"-Webs of Fate" end, parameters = { power=0.1 }, callbackOnTakeDamage = function(self, eff, src, x, y, type, dam, state) -- Displace Damage? @@ -3545,7 +3545,7 @@ newEffect{ DamageType.defaultProjector(self, a.x, a.y, type, displace, state) state.no_reflect = nil dam = dam - displace - game:delayedLogDamage(src, self, 0, ("%s(%d webs of fate)#LAST#"):format(DamageType:get(type).text_color or "#aaaaaa#", displace), false) + game:delayedLogDamage(src, self, 0, ("%s(%d webs of fate)#LAST#"):tformat(DamageType:get(type).text_color or "#aaaaaa#", displace), false) end end @@ -3564,21 +3564,21 @@ newEffect{ newEffect{ name = "SEAL_FATE", image = "talents/seal_fate.png", - desc = "Seal Fate", + desc = _t"Seal Fate", long_desc = function(self, eff) local chance = eff.chance local spin = self:hasEffect(self.EFF_SPIN_FATE) if spin then chance = chance * (1 + spin.spin/3) end - return ("The target has a %d%% chance of increasing the duration of one detrimental status effects on targets it damages by one."):format(chance) + return ("The target has a %d%% chance of increasing the duration of one detrimental status effects on targets it damages by one."):tformat(chance) end, type = "magical", subtype = { focus=true }, status = "beneficial", parameters = { procs=1 }, - on_gain = function(self, err) return nil, "+Seal Fate" end, - on_lose = function(self, err) return nil, "-Seal Fate" end, + on_gain = function(self, err) return nil, _t"+Seal Fate" end, + on_lose = function(self, err) return nil, _t"-Seal Fate" end, callbackOnDealDamage = function(self, eff, dam, target) if dam <=0 then return end @@ -3624,11 +3624,11 @@ newEffect{ newEffect{ name = "UNRAVEL", image = "talents/temporal_vigour.png", - desc = "Unravel", + desc = _t"Unravel", long_desc = function(self, eff) - return ("The target is immune to further damage but is dealing %d%% less damage."):format(eff.power) + return ("The target is immune to further damage but is dealing %d%% less damage."):tformat(eff.power) end, - on_gain = function(self, err) return "#Target# has started to unravel.", "+Unraveling" end, + on_gain = function(self, err) return _t"#Target# has started to unravel.", _t"+Unraveling" end, type = "magical", subtype = {time=true}, status = "beneficial", @@ -3656,10 +3656,10 @@ newEffect{ newEffect{ name = "ENTROPY", image = "talents/entropy.png", - desc = "Entropy", - long_desc = function(self, eff) return "The target is losing one sustain per turn." end, - on_gain = function(self, err) return "#Target# is caught in an entropic field!", "+Entropy" end, - on_lose = function(self, err) return "#Target# is free from the entropy.", "-Entropy" end, + desc = _t"Entropy", + long_desc = function(self, eff) return _t"The target is losing one sustain per turn." end, + on_gain = function(self, err) return _t"#Target# is caught in an entropic field!", _t"+Entropy" end, + on_lose = function(self, err) return _t"#Target# is free from the entropy.", _t"-Entropy" end, type = "magical", subtype = { temporal=true }, status = "detrimental", @@ -3680,10 +3680,10 @@ newEffect{ newEffect{ name = "REGRESSION", image = "talents/turn_back_the_clock.png", - desc = "Regression", - long_desc = function(self, eff) return ("Reduces your three highest stats by %d."):format(eff.power) end, - on_gain = function(self, err) return "#Target# has regressed.", "+Regression" end, - on_lose = function(self, err) return "#Target# has returned to its natural state.", "-Regression" end, + desc = _t"Regression", + long_desc = function(self, eff) return ("Reduces your three highest stats by %d."):tformat(eff.power) end, + on_gain = function(self, err) return _t"#Target# has regressed.", _t"+Regression" end, + on_lose = function(self, err) return _t"#Target# has returned to its natural state.", _t"-Regression" end, type = "physical", subtype = { temporal=true }, status = "detrimental", @@ -3699,14 +3699,14 @@ newEffect{ newEffect{ name = "ATTENUATE_DET", image = "talents/attenuate.png", - desc = "Attenuate", - long_desc = function(self, eff) return ("The target is being removed from the timeline and is taking %0.2f temporal damage per turn."):format(eff.power) end, + desc = _t"Attenuate", + long_desc = function(self, eff) return ("The target is being removed from the timeline and is taking %0.2f temporal damage per turn."):tformat(eff.power) end, type = "magical", subtype = { temporal=true }, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is being being removed from the timeline!", "+Attenuate" end, - on_lose = function(self, err) return "#Target# survived the attenuation.", "-Attenuate" end, + on_gain = function(self, err) return _t"#Target# is being being removed from the timeline!", _t"+Attenuate" end, + on_lose = function(self, err) return _t"#Target# survived the attenuation.", _t"-Attenuate" end, on_merge = function(self, old_eff, new_eff) -- Merge the flames! local olddam = old_eff.power * old_eff.dur @@ -3738,14 +3738,14 @@ newEffect{ newEffect{ name = "ATTENUATE_BEN", image = "talents/attenuate.png", - desc = "Attenuate", - long_desc = function(self, eff) return ("The target is being grounded in the timeline and is healing %0.2f life per turn."):format(eff.power) end, + desc = _t"Attenuate", + long_desc = function(self, eff) return ("The target is being grounded in the timeline and is healing %0.2f life per turn."):tformat(eff.power) end, type = "magical", subtype = { temporal=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is being being grounded in the timeline!", "+Attenuate" end, - on_lose = function(self, err) return "#Target# is no longer being grounded.", "-Attenuate" end, + on_gain = function(self, err) return _t"#Target# is being being grounded in the timeline!", _t"+Attenuate" end, + on_lose = function(self, err) return _t"#Target# is no longer being grounded.", _t"-Attenuate" end, on_merge = function(self, old_eff, new_eff) -- Merge the flames! local olddam = old_eff.power * old_eff.dur @@ -3762,14 +3762,14 @@ newEffect{ newEffect{ name = "OGRIC_WRATH", image = "talents/ogre_wrath.png", - desc = "Ogric Wrath", - long_desc = function(self, eff) return ("Do not try to resist it!"):format() end, + desc = _t"Ogric Wrath", + long_desc = function(self, eff) return ("Do not try to resist it!"):tformat() end, type = "magical", subtype = { runic=true }, status = "beneficial", parameters = { power=1 }, - on_gain = function(self, err) return "#Target# enters an ogric frenzy.", "+Ogric Wrath" end, - on_lose = function(self, err) return "#Target# calms down.", "-Ogric Wrath" end, + on_gain = function(self, err) return _t"#Target# enters an ogric frenzy.", _t"+Ogric Wrath" end, + on_lose = function(self, err) return _t"#Target# calms down.", _t"-Ogric Wrath" end, callbackOnDealDamage = function(self, eff, val, target, dead, death_note) if not death_note or not death_note.initial_dam then return end if val >= death_note.initial_dam then return end @@ -3812,8 +3812,8 @@ newEffect{ newEffect{ name = "OGRE_FURY", image = "effects/ogre_fury.png", - desc = "Ogre Fury", - long_desc = function(self, eff) return ("Increases crit chance by %d%% and critical power by %d%%. %d charge(s)."):format(eff.stacks * 5, eff.stacks * 20, eff.stacks) end, + desc = _t"Ogre Fury", + long_desc = function(self, eff) return ("Increases crit chance by %d%% and critical power by %d%%. %d charge(s)."):tformat(eff.stacks * 5, eff.stacks * 20, eff.stacks) end, type = "magical", subtype = { runic=true }, status = "beneficial", @@ -3859,14 +3859,14 @@ newEffect{ newEffect{ name = "WRIT_LARGE", image = "talents/writ_large.png", - desc = "Writ Large", - long_desc = function(self, eff) return ("Inscriptions cooldown twice as fast."):format(eff.power) end, + desc = _t"Writ Large", + long_desc = function(self, eff) return ("Inscriptions cooldown twice as fast."):tformat(eff.power) end, type = "magical", subtype = { runic=true }, status = "beneficial", parameters = { power=1 }, - on_gain = function(self, err) return nil, "+Writ Large" end, - on_lose = function(self, err) return nil, "-Writ Large" end, + on_gain = function(self, err) return nil, _t"+Writ Large" end, + on_lose = function(self, err) return nil, _t"-Writ Large" end, callbackOnActBase = function(self, eff) if not self:attr("no_talents_cooldown") then for tid, c in pairs(self.talents_cd) do @@ -3887,14 +3887,14 @@ newEffect{ newEffect{ name = "STATIC_HISTORY", image = "talents/static_history.png", - desc = "Static History", - long_desc = function(self, eff) return ("Chronomancy spells cast by the target will not produce minor anomalies."):format() end, + desc = _t"Static History", + long_desc = function(self, eff) return ("Chronomancy spells cast by the target will not produce minor anomalies."):tformat() end, type = "magical", subtype = { time=true }, status = "beneficial", parameters = { power=0.1 }, - on_gain = function(self, err) return "Spacetime has stabilized around #Target#.", "+Static History" end, - on_lose = function(self, err) return "The fabric of spacetime around #Target# has returned to normal.", "-Static History" end, + on_gain = function(self, err) return _t"Spacetime has stabilized around #Target#.", _t"+Static History" end, + on_lose = function(self, err) return _t"The fabric of spacetime around #Target# has returned to normal.", _t"-Static History" end, activate = function(self, eff) self:effectTemporaryValue(eff, "no_minor_anomalies", 1) end, @@ -3904,14 +3904,14 @@ newEffect{ newEffect{ name = "ARROW_ECHOES", image = "talents/arrow_echoes.png", - desc = "Arrow Echoes", - long_desc = function(self, eff) return ("Each turn will fire an arrow at %s."):format(eff.target.name) end, + desc = _t"Arrow Echoes", + long_desc = function(self, eff) return ("Each turn will fire an arrow at %s."):tformat(eff.target.name) end, type = "magical", subtype = { time=true }, status = "beneficial", remove_on_clone = true, - on_gain = function(self, err) return nil, "+Arrow Echoes" end, - on_lose = function(self, err) return nil, "-Arrow Echoes" end, + on_gain = function(self, err) return nil, _t"+Arrow Echoes" end, + on_lose = function(self, err) return nil, _t"-Arrow Echoes" end, parameters = { shots = 1 }, on_timeout = function(self, eff) if eff.shots <= 0 or eff.target.dead or not game.level:hasEntity(self) or not game.level:hasEntity(eff.target) or core.fov.distance(self.x, self.y, eff.target.x, eff.target.y) > 10 then @@ -3928,15 +3928,15 @@ newEffect{ newEffect{ name = "WARDEN_S_FOCUS", image = "talents/warden_s_focus.png", - desc = "Warden's Focus", + desc = _t"Warden's Focus", long_desc = function(self, eff) - return ("Focused on %s, +%d%% critical damage and +%d%% critical hit chance against this target."):format(eff.target.name, eff.power, eff.power) + return ("Focused on %s, +%d%% critical damage and +%d%% critical hit chance against this target."):tformat(eff.target.name, eff.power, eff.power) end, type = "magical", subtype = { tactic=true }, status = "beneficial", - on_gain = function(self, err) return nil, "+Warden's Focus" end, - on_lose = function(self, err) return nil, "-Warden's Focus" end, + on_gain = function(self, err) return nil, _t"+Warden's Focus" end, + on_lose = function(self, err) return nil, _t"-Warden's Focus" end, parameters = { power=0}, callbackOnTakeDamage = function(self, eff, src, x, y, type, dam, tmp) local eff = self:hasEffect(self.EFF_WARDEN_S_FOCUS) @@ -3944,7 +3944,7 @@ newEffect{ -- Reduce damage local reduction = dam * eff.power/100 dam = dam - reduction - game:delayedLogDamage(src, self, 0, ("%s(%d focus)#LAST#"):format(DamageType:get(type).text_color or "#aaaaaa#", reduction), false) + game:delayedLogDamage(src, self, 0, ("%s(%d focus)#LAST#"):tformat(DamageType:get(type).text_color or "#aaaaaa#", reduction), false) end return {dam=dam} end, @@ -3961,16 +3961,16 @@ newEffect{ newEffect{ name = "FATEWEAVER", image = "talents/fateweaver.png", - desc = "Fateweaver", - long_desc = function(self, eff) return ("The target's accuracy and power have been increased by %d."):format(eff.power_bonus * eff.spin) end, + desc = _t"Fateweaver", + long_desc = function(self, eff) return ("The target's accuracy and power have been increased by %d."):tformat(eff.power_bonus * eff.spin) end, display_desc = function(self, eff) return eff.spin.." Fateweaver" end, charges = function(self, eff) return eff.spin end, type = "magical", subtype = { temporal=true }, status = "beneficial", parameters = { power_bonus=0, spin=0, max_spin=3}, - on_gain = function(self, err) return "#Target# weaves fate.", "+Fateweaver" end, - on_lose = function(self, err) return "#Target# stops weaving fate.", "-Fateweaver" end, + on_gain = function(self, err) return _t"#Target# weaves fate.", _t"+Fateweaver" end, + on_lose = function(self, err) return _t"#Target# stops weaving fate.", _t"-Fateweaver" end, on_merge = function(self, old_eff, new_eff) -- remove the four old values self:removeTemporaryValue("combat_atk", old_eff.atkid) @@ -4008,13 +4008,13 @@ newEffect{ newEffect{ name = "FOLD_FATE", image = "talents/fold_fate.png", - desc = "Fold Fate", - long_desc = function(self, eff) return ("The target is nearing the end, its resistance to physical and temporal damage have been reduced by %d%%."):format(eff.power) end, + desc = _t"Fold Fate", + long_desc = function(self, eff) return ("The target is nearing the end, its resistance to physical and temporal damage have been reduced by %d%%."):tformat(eff.power) end, type = "magical", subtype = { temporal=true }, status = "detrimental", parameters = { power = 1 }, - on_gain = function(self, err) return "#Target# is nearing the end.", "+Fold Fate" end, + on_gain = function(self, err) return _t"#Target# is nearing the end.", _t"+Fold Fate" end, activate = function(self, eff) eff.phys = self:addTemporaryValue("resists", { [DamageType.PHYSICAL] = -eff.power}) eff.temp = self:addTemporaryValue("resists", { [DamageType.TEMPORAL] = -eff.power}) @@ -4028,17 +4028,17 @@ newEffect{ -- These are cosmetic so they can be cleared or clicked off newEffect{ name = "BEN_TETHER", image = "talents/spatial_tether.png", - desc = "Spatial Tether", + desc = _t"Spatial Tether", long_desc = function(self, eff) local chance = eff.chance * core.fov.distance(self.x, self.y, eff.x, eff.y) - return ("The target has been tethered to the location and has a %d%% chance of being teleported back, creating an explosion for %0.2f physical and %0.2f temporal warp damage at both ends of the teleport."):format(chance, eff.dam/2, eff.dam/2) + return ("The target has been tethered to the location and has a %d%% chance of being teleported back, creating an explosion for %0.2f physical and %0.2f temporal warp damage at both ends of the teleport."):tformat(chance, eff.dam/2, eff.dam/2) end, type = "magical", subtype = { teleport=true, temporal=true }, status = "beneficial", parameters = { chance = 1 }, - on_gain = function(self, err) return "#Target# has been tethered!", "+Tether" end, - on_lose = function(self, err) return "#Target# is no longer tethered.", "-Tether" end, + on_gain = function(self, err) return _t"#Target# has been tethered!", _t"+Tether" end, + on_lose = function(self, err) return _t"#Target# is no longer tethered.", _t"-Tether" end, activate = function(self, eff) end, deactivate = function(self, eff) @@ -4047,17 +4047,17 @@ newEffect{ newEffect{ name = "DET_TETHER", image = "talents/spatial_tether.png", - desc = "Spatial Tether", + desc = _t"Spatial Tether", long_desc = function(self, eff) local chance = eff.chance * core.fov.distance(self.x, self.y, eff.x, eff.y) - return ("The target has been tethered to the location and has a %d%% chance of being teleported back, creating an explosion for %0.2f physical and %0.2f temporal warp damage at both ends of the teleport."):format(chance, eff.dam/2, eff.dam/2) + return ("The target has been tethered to the location and has a %d%% chance of being teleported back, creating an explosion for %0.2f physical and %0.2f temporal warp damage at both ends of the teleport."):tformat(chance, eff.dam/2, eff.dam/2) end, type = "magical", subtype = { teleport=true, temporal=true }, status = "detrimental", parameters = { chance = 1 }, - on_gain = function(self, err) return "#Target# has been tethered!", "+Tether" end, - on_lose = function(self, err) return "#Target# is no longer tethered.", "-Tether" end, + on_gain = function(self, err) return _t"#Target# has been tethered!", _t"+Tether" end, + on_lose = function(self, err) return _t"#Target# is no longer tethered.", _t"-Tether" end, activate = function(self, eff) end, deactivate = function(self, eff) @@ -4066,15 +4066,15 @@ newEffect{ newEffect{ name = "BLIGHT_POISON", image = "effects/poisoned.png", - desc = "Blight Poison", - long_desc = function(self, eff) return ("The target is poisoned, taking %0.2f blight damage per turn."):format(eff.power) end, + desc = _t"Blight Poison", + long_desc = function(self, eff) return ("The target is poisoned, taking %0.2f blight damage per turn."):tformat(eff.power) end, charges = function(self, eff) return math.floor(eff.power) end, type = "magical", subtype = { poison=true, blight=true }, no_ct_effect = true, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is poisoned with blight!", "+Blight Poison" end, - on_lose = function(self, err) return "#Target# is free from the blighted poison.", "-Blight Poison" end, + on_gain = function(self, err) return _t"#Target# is poisoned with blight!", _t"+Blight Poison" end, + on_lose = function(self, err) return _t"#Target# is free from the blighted poison.", _t"-Blight Poison" end, on_merge = function(self, old_eff, new_eff) -- Merge the poison local olddam = old_eff.power * old_eff.dur @@ -4094,14 +4094,14 @@ newEffect{ newEffect{ name = "INSIDIOUS_BLIGHT", image = "effects/insidious_poison.png", - desc = "Insidious Blight", - long_desc = function(self, eff) return ("The target is poisoned, taking %0.2f blight damage per turn and decreasing all heals received by %d%%."):format(eff.power, eff.heal_factor) end, + desc = _t"Insidious Blight", + long_desc = function(self, eff) return ("The target is poisoned, taking %0.2f blight damage per turn and decreasing all heals received by %d%%."):tformat(eff.power, eff.heal_factor) end, type = "magical", subtype = { poison=true, blight=true }, no_ct_effect = true, status = "detrimental", parameters = {power=10, heal_factor=30}, - on_gain = function(self, err) return "#Target# is poisoned with insidious blight!!", "+Insidious Blight" end, - on_lose = function(self, err) return "#Target# is free from the insidious blight.", "-Insidious Blight" end, + on_gain = function(self, err) return _t"#Target# is poisoned with insidious blight!!", _t"+Insidious Blight" end, + on_lose = function(self, err) return _t"#Target# is free from the insidious blight.", _t"-Insidious Blight" end, activate = function(self, eff) eff.healid = self:addTemporaryValue("healing_factor", -eff.heal_factor / 100) end, @@ -4122,14 +4122,14 @@ newEffect{ newEffect{ name = "CRIPPLING_BLIGHT", image = "talents/crippling_poison.png", - desc = "Crippling Blight", - long_desc = function(self, eff) return ("The target is poisoned and sick, doing %0.2f blight damage per turn. Each time it tries to use a talent there is %d%% chance of failure."):format(eff.power, eff.fail) end, + desc = _t"Crippling Blight", + long_desc = function(self, eff) return ("The target is poisoned and sick, doing %0.2f blight damage per turn. Each time it tries to use a talent there is %d%% chance of failure."):tformat(eff.power, eff.fail) end, type = "magical", subtype = { poison=true, blight=true }, no_ct_effect = true, status = "detrimental", parameters = {power=10, fail=5}, - on_gain = function(self, err) return "#Target# is poisoned with crippling blight!", "+Crippling Blight" end, - on_lose = function(self, err) return "#Target# is free from the crippling blight.", "-Crippling Blight" end, + on_gain = function(self, err) return _t"#Target# is poisoned with crippling blight!", _t"+Crippling Blight" end, + on_lose = function(self, err) return _t"#Target# is free from the crippling blight.", _t"-Crippling Blight" end, -- Damage each turn on_timeout = function(self, eff) if self:attr("purify_poison") then self:heal(eff.power, eff.src) @@ -4151,14 +4151,14 @@ newEffect{ newEffect{ name = "NUMBING_BLIGHT", image = "effects/numbing_poison.png", - desc = "Numbing Blight", - long_desc = function(self, eff) return ("The target is poisoned and sick, doing %0.2f blight damage per turn. All damage it does is reduced by %d%%."):format(eff.power, eff.reduce) end, + desc = _t"Numbing Blight", + long_desc = function(self, eff) return ("The target is poisoned and sick, doing %0.2f blight damage per turn. All damage it does is reduced by %d%%."):tformat(eff.power, eff.reduce) end, type = "magical", subtype = { poison=true, blight=true }, no_ct_effect = true, status = "detrimental", parameters = {power=10, reduce=5}, - on_gain = function(self, err) return "#Target# is poisoned numbing blight!", "+Numbing Blight" end, - on_lose = function(self, err) return "#Target# is free from the numbing blight.", "-Numbing Blight" end, + on_gain = function(self, err) return _t"#Target# is poisoned numbing blight!", _t"+Numbing Blight" end, + on_lose = function(self, err) return _t"#Target# is free from the numbing blight.", _t"-Numbing Blight" end, -- Damage each turn on_timeout = function(self, eff) if self:attr("purify_poison") then self:heal(eff.power, eff.src) @@ -4180,18 +4180,18 @@ newEffect{ newEffect{ name = "ELDRITCH_STONE", image = "talents/eldritch_stone.png", - desc = "Eldritch Stone Shield", + desc = _t"Eldritch Stone Shield", long_desc = function(self, eff) return ("The target is surrounded by a stone shield absorbing %d/%d damage. When the shield is removed, it will explode for up to %d (currently %d) Arcane damage in a radius %d."): - format(eff.power, eff.max, eff.maxdam, math.min(eff.maxdam, self:getEquilibrium() - self:getMinEquilibrium()), eff.radius) + tformat(eff.power, eff.max, eff.maxdam, math.min(eff.maxdam, self:getEquilibrium() - self:getMinEquilibrium()), eff.radius) end, type = "magical", subtype = { earth=true, shield=true }, status = "beneficial", parameters = { power=100, radius=3 , maxdam=500}, - on_gain = function(self, err) return "#Target# is encased in a stone shield." end, + on_gain = function(self, err) return _t"#Target# is encased in a stone shield." end, on_lose = function(self, err) - return ("The stone shield around #Target# %s"):format(self:getEquilibrium() - self:getMinEquilibrium() > 0 and "explodes!" or "crumbles.") + return ("The stone shield around #Target# %s"):tformat(self:getEquilibrium() - self:getMinEquilibrium() > 0 and "explodes!" or "crumbles.") end, on_aegis = function(self, eff, aegis) eff.power = eff.power + eff.max * aegis / 100 @@ -4234,26 +4234,26 @@ newEffect{ newEffect{ name = "DEEPROCK_FORM", image = "talents/deeprock_form.png", - desc = "Deeprock Form", + desc = _t"Deeprock Form", long_desc = function(self, eff) local xs = "" if eff.arcaneDam and eff.arcanePen then - xs = xs..(", +%d%% Arcane damage and +%d%% Arcane damage penetration,"):format(eff.arcaneDam, eff.arcanePen) + xs = xs..(", +%d%% Arcane damage and +%d%% Arcane damage penetration,"):tformat(eff.arcaneDam, eff.arcanePen) end if eff.natureDam and eff.naturePen then - xs = (", +%d%% Nature damage and +%d%% Nature damage penetration"):format(eff.natureDam, eff.naturePen)..xs + xs = (", +%d%% Nature damage and +%d%% Nature damage penetration"):tformat(eff.natureDam, eff.naturePen)..xs end if eff.immune then - xs = (", %d%% bleeding, poison, disease, and stun immunity"):format(eff.immune*100)..xs + xs = (", %d%% bleeding, poison, disease, and stun immunity"):tformat(eff.immune*100)..xs end - return ("The target has turned into a huge deeprock elemental. It gains 2 size categories%s and +%d%% Physical damage and +%d%% Physical damage penetration.%s"):format(xs, eff.dam, eff.pen, eff.useResist and " In addition, it uses its physical resistance against all damage." or "") + return ("The target has turned into a huge deeprock elemental. It gains 2 size categories%s and +%d%% Physical damage and +%d%% Physical damage penetration.%s"):tformat(xs, eff.dam, eff.pen, eff.useResist and " In addition, it uses its physical resistance against all damage." or "") end, type = "magical", subtype = { earth=true, elemental=true }, status = "beneficial", parameters = { dam = 10, pen = 5, armor = 5}, - on_gain = function(self, err) return "#Target# is imbued by the power of the Stone.", "+Deeprock Form" end, - on_lose = function(self, err) return "#Target# is abandoned by the Stone's power.", "-Deeprock Form" end, + on_gain = function(self, err) return _t"#Target# is imbued by the power of the Stone.", _t"+Deeprock Form" end, + on_lose = function(self, err) return _t"#Target# is abandoned by the Stone's power.", _t"-Deeprock Form" end, activate = function(self, eff) if self:knowTalent(self.T_VOLCANIC_ROCK) then self:learnTalent(self.T_VOLCANO, true, self:getTalentLevelRaw(self.T_VOLCANIC_ROCK) * 2, {no_unlearn=true}) @@ -4315,8 +4315,8 @@ newEffect{ newEffect{ name = "BATHE_IN_LIGHT", image = "talents/bathe_in_light.png", - desc = "Bathe in Light", - long_desc = function(self, eff) return ("Fire and Light damage increased by %d%%."):format(eff.power) + desc = _t"Bathe in Light", + long_desc = function(self, eff) return ("Fire and Light damage increased by %d%%."):tformat(eff.power) end, type = "magical", subtype = { celestial=true, light=true }, @@ -4333,8 +4333,8 @@ newEffect{ newEffect{ name = "OVERSEER_OF_NATIONS", image = "talents/overseer_of_nations.png", - desc = "Overseer of Nations", - long_desc = function(self, eff) return ("Detects creatures of type %s/%s in radius 15."):format(eff.type, eff.subtype) end, + desc = _t"Overseer of Nations", + long_desc = function(self, eff) return ("Detects creatures of type %s/%s in radius 15."):tformat(eff.type, eff.subtype) end, type = "magical", subtype = { higher=true }, status = "beneficial", @@ -4350,14 +4350,14 @@ newEffect{ newEffect{ name = "PACIFICATION_HEX", image = "talents/pacification_hex.png", - desc = "Pacification Hex", - long_desc = function(self, eff) return ("The target is hexed, granting it %d%% chance each turn to be dazed for 3 turns."):format(eff.chance) end, + desc = _t"Pacification Hex", + long_desc = function(self, eff) return ("The target is hexed, granting it %d%% chance each turn to be dazed for 3 turns."):tformat(eff.chance) end, type = "magical", subtype = { hex=true, dominate=true }, status = "detrimental", parameters = {chance=10, power=10}, - on_gain = function(self, err) return "#Target# is hexed!", "+Pacification Hex" end, - on_lose = function(self, err) return "#Target# is free from the hex.", "-Pacification Hex" end, + on_gain = function(self, err) return _t"#Target# is hexed!", _t"+Pacification Hex" end, + on_lose = function(self, err) return _t"#Target# is free from the hex.", _t"-Pacification Hex" end, -- Damage each turn on_timeout = function(self, eff) if not self:hasEffect(self.EFF_DAZED) and rng.percent(eff.chance) and self:canBe("stun") then @@ -4380,9 +4380,9 @@ newEffect{ newEffect{ name = "BURNING_HEX", image = "talents/burning_hex.png", - desc = "Burning Hex", + desc = _t"Burning Hex", long_desc = function(self, eff) return ("The target is hexed. Each time it uses an ability it takes %0.2f fire damage, and talent cooldowns are increased by %s plus 1 turn."): - format(eff.dam, eff.power and ("%d%%"):format((eff.power-1)*100) or "") + tformat(eff.dam, eff.power and ("%d%%"):tformat((eff.power-1)*100) or "") end, charges = function(self, eff) return (tostring(math.floor((eff.power-1)*100)).."%") end, type = "magical", @@ -4390,21 +4390,21 @@ newEffect{ status = "detrimental", -- _M:getTalentCooldown(t) in mod.class.Actor.lua references this table to compute cooldowns parameters = {dam=10, power = 1}, - on_gain = function(self, err) return "#Target# is hexed!", "+Burning Hex" end, - on_lose = function(self, err) return "#Target# is free from the hex.", "-Burning Hex" end, + on_gain = function(self, err) return _t"#Target# is hexed!", _t"+Burning Hex" end, + on_lose = function(self, err) return _t"#Target# is free from the hex.", _t"-Burning Hex" end, } newEffect{ name = "EMPATHIC_HEX", image = "talents/empathic_hex.png", - desc = "Empathic Hex", - long_desc = function(self, eff) return ("The target is hexed, creating an empathic bond with its victims. It takes %d%% feedback damage from all damage done."):format(eff.power) end, + desc = _t"Empathic Hex", + long_desc = function(self, eff) return ("The target is hexed, creating an empathic bond with its victims. It takes %d%% feedback damage from all damage done."):tformat(eff.power) end, charges = function(self, eff) return (tostring(math.floor(eff.power)).."%") end, type = "magical", subtype = { hex=true, dominate=true }, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is hexed.", "+Empathic Hex" end, - on_lose = function(self, err) return "#Target# is free from the hex.", "-Empathic hex" end, + on_gain = function(self, err) return _t"#Target# is hexed.", _t"+Empathic Hex" end, + on_lose = function(self, err) return _t"#Target# is free from the hex.", _t"-Empathic hex" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("martyrdom", eff.power) if core.shader.active() then @@ -4419,14 +4419,14 @@ newEffect{ newEffect{ name = "DOMINATION_HEX", image = "talents/domination_hex.png", - desc = "Domination Hex", - long_desc = function(self, eff) return ("The target is hexed, temporarily changing its faction to %s."):format(engine.Faction.factions[eff.faction].name) end, + desc = _t"Domination Hex", + long_desc = function(self, eff) return ("The target is hexed, temporarily changing its faction to %s."):tformat(engine.Faction.factions[eff.faction].name) end, type = "magical", subtype = { hex=true, dominate=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is hexed.", "+Domination Hex" end, - on_lose = function(self, err) return "#Target# is free from the hex.", "-Domination hex" end, + on_gain = function(self, err) return _t"#Target# is hexed.", _t"+Domination Hex" end, + on_lose = function(self, err) return _t"#Target# is free from the hex.", _t"-Domination hex" end, activate = function(self, eff) self:setTarget() -- clear ai target eff.olf_faction = self.faction @@ -4443,13 +4443,13 @@ newEffect{ newEffect{ name = "SHADOWGUARD_IMMUNITY", image = "talents/shadowguard.png", - desc = "Shadowguard Immunity", - long_desc = function(self, eff) return "The target is immune to all detrimental effects." end, + desc = _t"Shadowguard Immunity", + long_desc = function(self, eff) return _t"The target is immune to all detrimental effects." end, type = "other", subtype = { shadow=true }, status = "beneficial", - on_gain = function(self, err) return "#Target#'s fades into the shadows.", "+Shadowguard" end, - on_lose = function(self, err) return "#Target#'s can be afflicted again.", "-Shadowguard" end, + on_gain = function(self, err) return _t"#Target#'s fades into the shadows.", _t"+Shadowguard" end, + on_lose = function(self, err) return _t"#Target#'s can be afflicted again.", _t"-Shadowguard" end, parameters = { }, activate = function(self, eff) self:effectTemporaryValue(eff, "negative_status_effect_immune", 1) @@ -4458,13 +4458,13 @@ newEffect{ newEffect{ name = "SHADOWGUARD_BUFF", image = "talents/shadowguard.png", - desc = "Shadowguard", - long_desc = function(self, eff) return ("The target is enveloped in shadows gaining %d spellpower and defense."):format(eff.spellpower) end, + desc = _t"Shadowguard", + long_desc = function(self, eff) return ("The target is enveloped in shadows gaining %d spellpower and defense."):tformat(eff.spellpower) end, type = "magical", subtype = { shadow=true }, status = "beneficial", - --on_gain = function(self, err) return "#Target#'s fades into the shadows.", "+Shadowguard" end, - on_lose = function(self, err) return "#Target#'s fully exits the shadows.", "-Shadowguard" end, + --on_gain = function(self, err) return _t"#Target#'s fades into the shadows.", _t"+Shadowguard" end, + on_lose = function(self, err) return _t"#Target#'s fully exits the shadows.", _t"-Shadowguard" end, parameters = { spellpower=0}, activate = function(self, eff) self:effectTemporaryValue(eff, "combat_spellpower", eff.spellpower) @@ -4474,13 +4474,13 @@ newEffect{ newEffect{ name = "RETCHED", image = "talents/retch.png", - desc = "Retched", - long_desc = function(self, eff) return ("The target is walking in its own retch, negating the natural ghoul's speed penalty."):format() end, + desc = _t"Retched", + long_desc = function(self, eff) return ("The target is walking in its own retch, negating the natural ghoul's speed penalty."):tformat() end, type = "magical", subtype = { undead=true, speed=true }, status = "beneficial", - on_gain = function(self, err) return "#Target# speeds up in the retch.", "+Retched" end, - on_lose = function(self, err) return "#Target# speeds down outside of the retch.", "-Retched" end, + on_gain = function(self, err) return _t"#Target# speeds up in the retch.", _t"+Retched" end, + on_lose = function(self, err) return _t"#Target# speeds down outside of the retch.", _t"-Retched" end, parameters = { spellpower=0}, activate = function(self, eff) self:effectTemporaryValue(eff, "global_speed_add", 0.2) @@ -4489,14 +4489,14 @@ newEffect{ newEffect{ name = "SHADOW_CUT", image = "", - desc = "Shadow Cut", - long_desc = function(self, eff) return ("Huge shadow cut that bleeds, doing %0.2f darkness damage per turn. Anytime you hit it you get healed for %d."):format(eff.dam/5, eff.heal) end, + desc = _t"Shadow Cut", + long_desc = function(self, eff) return ("Huge shadow cut that bleeds, doing %0.2f darkness damage per turn. Anytime you hit it you get healed for %d."):tformat(eff.dam/5, eff.heal) end, type = "magical", subtype = { wound=true, cut=true, bleed=true, darkness=true }, status = "detrimental", parameters = { dam=1, heal=1 }, - on_gain = function(self, err) return "#Target# starts to bleed darkness.", "+Shadow Cut" end, - on_lose = function(self, err) return "#Target# stops bleeding darkness.", "-Shadow Cut" end, + on_gain = function(self, err) return _t"#Target# starts to bleed darkness.", _t"+Shadow Cut" end, + on_lose = function(self, err) return _t"#Target# stops bleeding darkness.", _t"-Shadow Cut" end, callbackOnMeleeHit = function(self, eff, src, dam) if not dam or dam <= 0 or src ~= eff.src then return end @@ -4521,14 +4521,14 @@ newEffect{ newEffect{ name = "GLYPH_OF_MOONLIGHT", image = "trap/trap_glyph_fatigue_01_64.png", - desc = "Draining Moonlight", - long_desc = function(self, eff) return ("The target has been drained by a glyph, all damage it does is reduced by %d%%."):format(eff.reduce) end, + desc = _t"Draining Moonlight", + long_desc = function(self, eff) return ("The target has been drained by a glyph, all damage it does is reduced by %d%%."):tformat(eff.reduce) end, type = "magical", subtype = { darkness=true,}, status = "detrimental", parameters = {reduce=5}, - on_gain = function(self, err) return "#Target# is weakened by the glyph of moonlight!", "+Draining Moonlight" end, - on_lose = function(self, err) return "#Target# looks shakes off the effect of the glyph of moonlight.", "-Draining Moonlight" end, + on_gain = function(self, err) return _t"#Target# is weakened by the glyph of moonlight!", _t"+Draining Moonlight" end, + on_lose = function(self, err) return _t"#Target# looks shakes off the effect of the glyph of moonlight.", _t"-Draining Moonlight" end, activate = function(self, eff) self:effectTemporaryValue(eff, "numbed", eff.reduce) end, @@ -4538,8 +4538,8 @@ newEffect{ newEffect{ name = "AUGER_OF_DESTRUCTION", image = "talents/dig.png", - desc = "Auger of Destruction", - long_desc = function(self, eff) return ("Physical damage increased by %d%%."):format(eff.power) end, + desc = _t"Auger of Destruction", + long_desc = function(self, eff) return ("Physical damage increased by %d%%."):tformat(eff.power) end, type = "magical", subtype = { physical=true,}, status = "beneficial", diff --git a/game/modules/tome/data/timed_effects/mental.lua b/game/modules/tome/data/timed_effects/mental.lua index a597b0a691142a7adccea25224ce872ac066fe72..7fc0cb284ca68ffa8f7f443479f1057013bb8a7d 100644 --- a/game/modules/tome/data/timed_effects/mental.lua +++ b/game/modules/tome/data/timed_effects/mental.lua @@ -28,15 +28,15 @@ local Astar = require "engine.Astar" -- Item specific newEffect{ name = "ITEM_EXPOSED", image = "talents/curse_of_the_meek.png", -- Re-used icon - desc = "Exposed", - long_desc = function(self, eff) return ("Mind and body exposed to effects and attacks, reducing all saves and defense by %d."):format(eff.reduce) end, + desc = _t"Exposed", + long_desc = function(self, eff) return ("Mind and body exposed to effects and attacks, reducing all saves and defense by %d."):tformat(eff.reduce) end, charges = function(self, eff) return (tostring(math.floor(eff.reduce))) end, type = "mental", subtype = { }, status = "detrimental", parameters = {reduce=0}, - on_gain = function(self, err) return "#Target#'s is vulnerable to attacks and effects!" end, - on_lose = function(self, err) return "#Target# is less vulnerable." end, + on_gain = function(self, err) return _t"#Target#'s is vulnerable to attacks and effects!" end, + on_lose = function(self, err) return _t"#Target# is less vulnerable." end, activate = function(self, eff) self:effectTemporaryValue(eff, "combat_physresist", -eff.reduce) self:effectTemporaryValue(eff, "combat_spellresist", -eff.reduce) @@ -50,15 +50,15 @@ newEffect{ newEffect{ name = "ITEM_NUMBING_DARKNESS", image = "effects/bane_blinded.png", - desc = "Numbing Darkness", - long_desc = function(self, eff) return ("The target is losing hope, all damage it does is reduced by %d%%."):format(eff.reduce) end, + desc = _t"Numbing Darkness", + long_desc = function(self, eff) return ("The target is losing hope, all damage it does is reduced by %d%%."):tformat(eff.reduce) end, charges = function(self, eff) return (tostring(math.floor(eff.reduce))) end, type = "mental", subtype = { darkness=true,}, no_ct_effect = true, status = "detrimental", parameters = {power=10, reduce=5}, - on_gain = function(self, err) return "#Target# is weakened by the darkness!", "+Numbing Darkness" end, - on_lose = function(self, err) return "#Target# regains their energy.", "-Numbing Darkness" end, + on_gain = function(self, err) return _t"#Target# is weakened by the darkness!", _t"+Numbing Darkness" end, + on_lose = function(self, err) return _t"#Target# regains their energy.", _t"-Numbing Darkness" end, on_timeout = function(self, eff) end, @@ -72,14 +72,14 @@ newEffect{ newEffect{ name = "SILENCED", image = "effects/silenced.png", - desc = "Silenced", + desc = _t"Silenced", long_desc = function(self, eff) return "The target is silenced, preventing it from casting spells and using some vocal talents." end, type = "mental", subtype = { silence=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is silenced!", "+Silenced" end, - on_lose = function(self, err) return "#Target# is not silenced anymore.", "-Silenced" end, + on_gain = function(self, err) return _t"#Target# is silenced!", _t"+Silenced" end, + on_lose = function(self, err) return _t"#Target# is not silenced anymore.", _t"-Silenced" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("silence", 1) end, @@ -90,8 +90,8 @@ newEffect{ newEffect{ name = "SUMMON_CONTROL", image = "talents/summon_control.png", --Backwards compatibility - desc = "Pheromones", - long_desc = function(self, eff) return ("The target has been marked as the focus for all nature summons within %d radius, receiving %d%% increased damage from nature summons."):format(eff.range, eff.power) end, + desc = _t"Pheromones", + long_desc = function(self, eff) return ("The target has been marked as the focus for all nature summons within %d radius, receiving %d%% increased damage from nature summons."):tformat(eff.range, eff.power) end, type = "mental", subtype = { focus=true }, status = "detrimental", @@ -124,15 +124,15 @@ newEffect{ newEffect{ name = "CONFUSED", image = "effects/confused.png", - desc = "Confused", - long_desc = function(self, eff) return ("The target is confused, acting randomly (chance %d%%) and unable to perform complex actions."):format(eff.power) end, + desc = _t"Confused", + long_desc = function(self, eff) return ("The target is confused, acting randomly (chance %d%%) and unable to perform complex actions."):tformat(eff.power) end, charges = function(self, eff) return (tostring(math.floor(eff.power)).."%") end, type = "mental", subtype = { confusion=true }, status = "detrimental", parameters = { power=30 }, - on_gain = function(self, err) return "#Target# wanders around!.", "+Confused" end, - on_lose = function(self, err) return "#Target# seems more focused.", "-Confused" end, + on_gain = function(self, err) return _t"#Target# wanders around!.", _t"+Confused" end, + on_lose = function(self, err) return _t"#Target# seems more focused.", _t"-Confused" end, activate = function(self, eff) eff.power = math.floor(util.bound(eff.power, 0, 50)) eff.tmpid = self:addTemporaryValue("confused", eff.power) @@ -146,13 +146,13 @@ newEffect{ newEffect{ name = "DOMINANT_WILL", image = "talents/yeek_will.png", - desc = "Mental Domination", - long_desc = function(self, eff) return ("The target's mind has been shattered. Its body remains as a thrall to %s."):format(eff.src.name:capitalize()) end, + desc = _t"Mental Domination", + long_desc = function(self, eff) return ("The target's mind has been shattered. Its body remains as a thrall to %s."):tformat(eff.src.name:capitalize()) end, type = "mental", subtype = { dominate=true }, status = "detrimental", parameters = { }, - on_gain = function(self, err) return "#Target#'s mind is shattered." end, + on_gain = function(self, err) return _t"#Target#'s mind is shattered." end, activate = function(self, eff) eff.pid = self:addTemporaryValue("inc_damage", {all=-15}) self.ai_state = self.ai_state or {} @@ -219,13 +219,13 @@ newEffect{ newEffect{ name = "DOMINANT_WILL_BOSS", image = "talents/yeek_will.png", - desc = "Mental Domination", - long_desc = function(self, eff) return ("The target's mind has been shaken. It is temporarily aligned with %s and immune to all damage."):format(eff.src.name:capitalize()) end, + desc = _t"Mental Domination", + long_desc = function(self, eff) return ("The target's mind has been shaken. It is temporarily aligned with %s and immune to all damage."):tformat(eff.src.name:capitalize()) end, type = "mental", subtype = { dominate=true }, status = "detrimental", parameters = { }, - on_gain = function(self, err) return "#Target#'s mind is dominated.", "+Dominant Will" end, + on_gain = function(self, err) return _t"#Target#'s mind is dominated.", _t"+Dominant Will" end, on_lose = function(self, err) return "#Target# is free from the domination.", "-Dominant Will" end, activate = function(self, eff) self:setTarget() -- clear ai target @@ -243,8 +243,8 @@ newEffect{ newEffect{ name = "BATTLE_SHOUT", image = "talents/battle_shout.png", - desc = "Battle Shout", - long_desc = function(self, eff) return ("Increases maximum life and stamina by %d%%. When the effect ends, the extra life and stamina will be lost."):format(eff.power) end, + desc = _t"Battle Shout", + long_desc = function(self, eff) return ("Increases maximum life and stamina by %d%%. When the effect ends, the extra life and stamina will be lost."):tformat(eff.power) end, type = "mental", subtype = { morale=true }, status = "beneficial", @@ -268,14 +268,14 @@ newEffect{ newEffect{ name = "BATTLE_CRY", image = "talents/battle_cry.png", - desc = "Battle Cry", - long_desc = function(self, eff) return ("The target's will to defend itself is shattered by the powerful battle cry, reducing defense by %d."):format(eff.power) end, + desc = _t"Battle Cry", + long_desc = function(self, eff) return ("The target's will to defend itself is shattered by the powerful battle cry, reducing defense by %d."):tformat(eff.power) end, type = "mental", subtype = { morale=true }, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return "#Target#'s will is shattered.", "+Battle Cry" end, - on_lose = function(self, err) return "#Target# regains some of its will.", "-Battle Cry" end, + on_gain = function(self, err) return _t"#Target#'s will is shattered.", _t"+Battle Cry" end, + on_lose = function(self, err) return _t"#Target# regains some of its will.", _t"-Battle Cry" end, activate = function(self, eff) self:effectTemporaryValue(eff, "combat_def", -eff.power) self:effectTemporaryValue(eff, "no_evasion", 1) @@ -285,14 +285,14 @@ newEffect{ newEffect{ name = "WILLFUL_COMBAT", image = "talents/willful_combat.png", - desc = "Willful Combat", - long_desc = function(self, eff) return ("The target puts all its willpower into its blows, improving physical power by %d."):format(eff.power) end, + desc = _t"Willful Combat", + long_desc = function(self, eff) return ("The target puts all its willpower into its blows, improving physical power by %d."):tformat(eff.power) end, type = "mental", subtype = { focus=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# lashes out with pure willpower." end, - on_lose = function(self, err) return "#Target#'s willpower rush ends." end, + on_gain = function(self, err) return _t"#Target# lashes out with pure willpower." end, + on_lose = function(self, err) return _t"#Target#'s willpower rush ends." end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("combat_dam", eff.power) end, @@ -303,14 +303,14 @@ newEffect{ newEffect{ name = "GLOOM_WEAKNESS", image = "effects/gloom_weakness.png", - desc = "Gloom Weakness", - long_desc = function(self, eff) return ("The gloom reduces damage the target inflicts by %d%%."):format(eff.incDamageChange) end, + desc = _t"Gloom Weakness", + long_desc = function(self, eff) return ("The gloom reduces damage the target inflicts by %d%%."):tformat(eff.incDamageChange) end, type = "mental", subtype = { gloom=true }, status = "detrimental", parameters = { atk=10, dam=10 }, - on_gain = function(self, err) return "#F53CBE##Target# is weakened by the gloom." end, - on_lose = function(self, err) return "#F53CBE##Target# is no longer weakened." end, + on_gain = function(self, err) return _t"#F53CBE##Target# is weakened by the gloom." end, + on_lose = function(self, err) return _t"#F53CBE##Target# is no longer weakened." end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("gloom_weakness", 1)) eff.incDamageId = self:addTemporaryValue("inc_damage", {all = -eff.incDamageChange}) @@ -323,14 +323,14 @@ newEffect{ newEffect{ name = "GLOOM_SLOW", image = "effects/gloom_slow.png", - desc = "Slowed by the gloom", - long_desc = function(self, eff) return ("The gloom reduces the target's global speed by %d%%."):format(eff.power * 100) end, + desc = _t"Slowed by the gloom", + long_desc = function(self, eff) return ("The gloom reduces the target's global speed by %d%%."):tformat(eff.power * 100) end, type = "mental", subtype = { gloom=true, slow=true }, status = "detrimental", parameters = { power=0.1 }, - on_gain = function(self, err) return "#F53CBE##Target# moves reluctantly!", "+Slow" end, - on_lose = function(self, err) return "#Target# overcomes the gloom.", "-Slow" end, + on_gain = function(self, err) return _t"#F53CBE##Target# moves reluctantly!", _t"+Slow" end, + on_lose = function(self, err) return _t"#Target# overcomes the gloom.", _t"-Slow" end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("gloom_slow", 1)) eff.tmpid = self:addTemporaryValue("global_speed_add", -eff.power) @@ -343,14 +343,14 @@ newEffect{ newEffect{ name = "GLOOM_STUNNED", image = "effects/gloom_stunned.png", - desc = "Stunned by the gloom", - long_desc = function(self, eff) return ("The gloom has stunned the target, reducing damage by 50%%, putting 4 random talents on cooldown and reducing movement speed by 50%%. While stunned talents cooldown twice as slow."):format() end, + desc = _t"Stunned by the gloom", + long_desc = function(self, eff) return ("The gloom has stunned the target, reducing damage by 50%%, putting 4 random talents on cooldown and reducing movement speed by 50%%. While stunned talents cooldown twice as slow."):tformat() end, type = "mental", subtype = { gloom=true, stun=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#F53CBE##Target# is stunned with fear!", "+Stunned" end, - on_lose = function(self, err) return "#Target# overcomes the gloom", "-Stunned" end, + on_gain = function(self, err) return _t"#F53CBE##Target# is stunned with fear!", _t"+Stunned" end, + on_lose = function(self, err) return _t"#Target# overcomes the gloom", _t"-Stunned" end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("gloom_stunned", 1)) eff.tmpid = self:addTemporaryValue("stunned", 1) @@ -377,15 +377,15 @@ newEffect{ newEffect{ name = "GLOOM_CONFUSED", image = "effects/gloom_confused.png", - desc = "Confused by the gloom", - long_desc = function(self, eff) return ("The gloom has confused the target, making it act randomly (%d%% chance) and unable to perform complex actions."):format(eff.power) end, + desc = _t"Confused by the gloom", + long_desc = function(self, eff) return ("The gloom has confused the target, making it act randomly (%d%% chance) and unable to perform complex actions."):tformat(eff.power) end, type = "mental", charges = function(self, eff) return (tostring(eff.power).."%") end, subtype = { gloom=true, confusion=true }, status = "detrimental", parameters = { power = 10 }, - on_gain = function(self, err) return "#F53CBE##Target# is lost in despair!", "+Confused" end, - on_lose = function(self, err) return "#Target# overcomes the gloom", "-Confused" end, + on_gain = function(self, err) return _t"#F53CBE##Target# is lost in despair!", _t"+Confused" end, + on_lose = function(self, err) return _t"#Target# overcomes the gloom", _t"-Confused" end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("gloom_confused", 1)) eff.power = math.floor(util.bound(eff.power, 0, 50)) @@ -401,14 +401,14 @@ newEffect{ newEffect{ name = "DISMAYED", image = "talents/dismay.png", - desc = "Dismayed", + desc = _t"Dismayed", long_desc = function(self, eff) return ("The target is dismayed. The next melee attack against the target will be a guaranteed critical hit.") end, type = "mental", subtype = { gloom=true, confusion=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#F53CBE##Target# is dismayed!", "+Dismayed" end, - on_lose = function(self, err) return "#Target# overcomes the dismay", "-Dismayed" end, + on_gain = function(self, err) return _t"#F53CBE##Target# is dismayed!", _t"+Dismayed" end, + on_lose = function(self, err) return _t"#Target# overcomes the dismay", _t"-Dismayed" end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("dismayed", 1)) end, @@ -419,17 +419,17 @@ newEffect{ newEffect{ name = "STALKER", image = "talents/stalk.png", - desc = "Stalking", + desc = _t"Stalking", display_desc = function(self, eff) - return ([[Stalking %d/%d +%d ]]):format(eff.target.life, eff.target.max_life, eff.bonus) + return ([[Stalking %d/%d +%d ]]):tformat(eff.target.life, eff.target.max_life, eff.bonus) end, long_desc = function(self, eff) local t = self:getTalentFromId(self.T_STALK) local effStalked = eff.target:hasEffect(eff.target.EFF_STALKED) - local desc = ([[Stalking %s. Bonus level %d: +%d accuracy, +%d%% melee damage, +%0.2f hate/turn prey was hit.]]):format( + local desc = ([[Stalking %s. Bonus level %d: +%d accuracy, +%d%% melee damage, +%0.2f hate/turn prey was hit.]]):tformat( eff.target.name, eff.bonus, t.getAttackChange(self, t, eff.bonus), t.getStalkedDamageMultiplier(self, t, eff.bonus) * 100 - 100, t.getHitHateChange(self, t, eff.bonus)) if effStalked and effStalked.damageChange and effStalked.damageChange > 0 then - desc = desc..("Prey damage modifier: %d%%."):format(effStalked.damageChange) + desc = desc..("Prey damage modifier: %d%%."):tformat(effStalked.damageChange) end return desc end, @@ -452,15 +452,15 @@ newEffect{ newEffect{ name = "STALKED", image = "effects/stalked.png", - desc = "Stalked", + desc = _t"Stalked", long_desc = function(self, eff) local effStalker = eff.src:hasEffect(eff.src.EFF_STALKER) if not effStalker then return "Being stalked." end local t = self:getTalentFromId(eff.src.T_STALK) - local desc = ([[Being stalked by %s. Stalker bonus level %d: +%d accuracy, +%d%% melee damage, +%0.2f hate/turn prey was hit.]]):format( + local desc = ([[Being stalked by %s. Stalker bonus level %d: +%d accuracy, +%d%% melee damage, +%0.2f hate/turn prey was hit.]]):tformat( eff.src.name, effStalker.bonus, t.getAttackChange(eff.src, t, effStalker.bonus), t.getStalkedDamageMultiplier(eff.src, t, effStalker.bonus) * 100 - 100, t.getHitHateChange(eff.src, t, effStalker.bonus)) if eff.damageChange and eff.damageChange > 0 then - desc = desc..(" Prey damage modifier: %d%%."):format(eff.damageChange) + desc = desc..(" Prey damage modifier: %d%%."):tformat(eff.damageChange) end return desc end, @@ -503,11 +503,11 @@ newEffect{ newEffect{ name = "BECKONED", image = "talents/beckon.png", - desc = "Beckoned", + desc = _t"Beckoned", long_desc = function(self, eff) - local message = ("The target has been beckoned by %s and is heeding the call. There is a %d%% chance of moving towards the beckoner each turn."):format(eff.src.name, eff.chance) + local message = ("The target has been beckoned by %s and is heeding the call. There is a %d%% chance of moving towards the beckoner each turn."):tformat(eff.src.name, eff.chance) if eff.spellpowerChangeId and eff.mindpowerChangeId then - message = message..(" (spellpower: %d, mindpower: %d"):format(eff.spellpowerChange, eff.mindpowerChange) + message = message..(" (spellpower: %d, mindpower: %d"):tformat(eff.spellpowerChange, eff.mindpowerChange) end return message end, @@ -515,8 +515,8 @@ newEffect{ subtype = { dominate=true }, status = "detrimental", parameters = { speedChange=0.5 }, - on_gain = function(self, err) return "#Target# has been beckoned.", "+Beckoned" end, - on_lose = function(self, err) return "#Target# is no longer beckoned.", "-Beckoned" end, + on_gain = function(self, err) return _t"#Target# has been beckoned.", _t"+Beckoned" end, + on_lose = function(self, err) return _t"#Target# is no longer beckoned.", _t"-Beckoned" end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("beckoned", 1)) @@ -618,14 +618,14 @@ newEffect{ newEffect{ name = "OVERWHELMED", image = "talents/frenzy.png", - desc = "Overwhelmed", - long_desc = function(self, eff) return ("The target has been overwhemed by a furious assault, reducing defence by %d."):format( -eff.defenseChange) end, + desc = _t"Overwhelmed", + long_desc = function(self, eff) return ("The target has been overwhemed by a furious assault, reducing defence by %d."):tformat( -eff.defenseChange) end, type = "mental", subtype = { fear=true }, status = "detrimental", parameters = { damageChange=0.1 }, - on_gain = function(self, err) return "#Target# has been overwhelmed.", "+Overwhelmed" end, - on_lose = function(self, err) return "#Target# is no longer overwhelmed.", "-Overwhelmed" end, + on_gain = function(self, err) return _t"#Target# has been overwhelmed.", _t"+Overwhelmed" end, + on_lose = function(self, err) return _t"#Target# is no longer overwhelmed.", _t"-Overwhelmed" end, parameters = { chance=5 }, activate = function(self, eff) eff.defenseChangeId = self:addTemporaryValue("combat_def", -eff.defenseChange) @@ -640,14 +640,14 @@ newEffect{ newEffect{ name = "CURSED_MIASMA", image = "talents/savage_hunter.png", - desc = "Cursed Miasma", - long_desc = function(self, eff) return ("The target is enveloped in a cursed miasma."):format(eff.sight) end, + desc = _t"Cursed Miasma", + long_desc = function(self, eff) return ("The target is enveloped in a cursed miasma."):tformat(eff.sight) end, type = "mental", subtype = { fear=true }, status = "detrimental", parameters = { chance=5 }, - on_gain = function(self, err) return "#Target# is surrounded by a cursed miasma.", "+Cursed Miasma" end, - on_lose = function(self, err) return "The cursed miasma around #target# dissipates.", "-Cursed Miasma" end, + on_gain = function(self, err) return _t"#Target# is surrounded by a cursed miasma.", _t"+Cursed Miasma" end, + on_lose = function(self, err) return _t"The cursed miasma around #target# dissipates.", _t"-Cursed Miasma" end, activate = function(self, eff) self:setTarget(nil) -- Reset target to grab a random new one self:effectTemporaryValue(eff, "hates_everybody", 1) @@ -661,14 +661,14 @@ newEffect{ newEffect{ name = "HARASSED", image = "talents/harass_prey.png", - desc = "Harassed", - long_desc = function(self, eff) return ("The target has been harassed by its stalker, reducing damage by %d%%."):format( -eff.damageChange) end, + desc = _t"Harassed", + long_desc = function(self, eff) return ("The target has been harassed by its stalker, reducing damage by %d%%."):tformat( -eff.damageChange) end, type = "mental", subtype = { fear=true }, status = "detrimental", parameters = { damageChange=0.1 }, - on_gain = function(self, err) return "#Target# has been harassed.", "+Harassed" end, - on_lose = function(self, err) return "#Target# is no longer harassed.", "-Harassed" end, + on_gain = function(self, err) return _t"#Target# has been harassed.", _t"+Harassed" end, + on_lose = function(self, err) return _t"#Target# is no longer harassed.", _t"-Harassed" end, activate = function(self, eff) eff.damageChangeId = self:addTemporaryValue("inc_damage", {all=eff.damageChange}) eff.particle = self:addParticles(Particles.new("harassed", 1)) @@ -681,13 +681,13 @@ newEffect{ newEffect{ name = "DOMINATED", image = "talents/dominate.png", - desc = "Dominated", - long_desc = function(self, eff) return ("The target has been dominated. It is unable to move and has lost %d armor and %d defense. Attacks from %s gain %d%% damage penetration."):format(-eff.armorChange, -eff.defenseChange, eff.src.name:capitalize(), eff.resistPenetration) end, + desc = _t"Dominated", + long_desc = function(self, eff) return ("The target has been dominated. It is unable to move and has lost %d armor and %d defense. Attacks from %s gain %d%% damage penetration."):tformat(-eff.armorChange, -eff.defenseChange, eff.src.name:capitalize(), eff.resistPenetration) end, type = "mental", subtype = { dominate=true }, status = "detrimental", - on_gain = function(self, err) return "#F53CBE##Target# has been dominated!", "+Dominated" end, - on_lose = function(self, err) return "#F53CBE##Target# is no longer dominated.", "-Dominated" end, + on_gain = function(self, err) return _t"#F53CBE##Target# has been dominated!", _t"+Dominated" end, + on_lose = function(self, err) return _t"#F53CBE##Target# is no longer dominated.", _t"-Dominated" end, parameters = { armorChange = -3, defenseChange = -3, physicalResistChange = -0.1 }, activate = function(self, eff) eff.neverMoveId = self:addTemporaryValue("never_move", 1) @@ -707,14 +707,14 @@ newEffect{ newEffect{ name = "AGONY", image = "talents/agony.png", - desc = "Agony", - long_desc = function(self, eff) return ("%s is writhing in agony, suffering from %d to %d damage over %d turns."):format(self.name:capitalize(), eff.damage / eff.duration, eff.damage, eff.duration) end, + desc = _t"Agony", + long_desc = function(self, eff) return ("%s is writhing in agony, suffering from %d to %d damage over %d turns."):tformat(self.name:capitalize(), eff.damage / eff.duration, eff.damage, eff.duration) end, type = "mental", subtype = { pain=true, psionic=true }, status = "detrimental", parameters = { damage=10, mindpower=10, range=10, minPercent=10 }, - on_gain = function(self, err) return "#Target# is writhing in agony!", "+Agony" end, - on_lose = function(self, err) return "#Target# is no longer writhing in agony.", "-Agony" end, + on_gain = function(self, err) return _t"#Target# is writhing in agony!", _t"+Agony" end, + on_lose = function(self, err) return _t"#Target# is no longer writhing in agony.", _t"-Agony" end, activate = function(self, eff) eff.power = 0 end, @@ -743,14 +743,14 @@ newEffect{ newEffect{ name = "HATEFUL_WHISPER", image = "talents/hateful_whisper.png", - desc = "Hateful Whisper", - long_desc = function(self, eff) return ("%s has heard the hateful whisper."):format(self.name:capitalize()) end, + desc = _t"Hateful Whisper", + long_desc = function(self, eff) return ("%s has heard the hateful whisper."):tformat(self.name:capitalize()) end, type = "mental", subtype = { madness=true, psionic=true }, status = "detrimental", parameters = { }, - on_gain = function(self, err) return "#Target# has heard the hateful whisper!", "+Hateful Whisper" end, - on_lose = function(self, err) return "#Target# no longer hears the hateful whisper.", "-Hateful Whisper" end, + on_gain = function(self, err) return _t"#Target# has heard the hateful whisper!", _t"+Hateful Whisper" end, + on_lose = function(self, err) return _t"#Target# no longer hears the hateful whisper.", _t"-Hateful Whisper" end, activate = function(self, eff) if not eff.src.dead and eff.src:knowTalent(eff.src.T_HATE_POOL) then eff.src:incHate(eff.hateGain) @@ -829,14 +829,14 @@ newEffect{ newEffect{ name = "MADNESS_SLOW", image = "effects/madness_slowed.png", - desc = "Slowed by madness", - long_desc = function(self, eff) return ("Madness reduces the target's global speed by %d%% and lowers mind resistance by %d%%."):format(eff.power * 100, -eff.mindResistChange) end, + desc = _t"Slowed by madness", + long_desc = function(self, eff) return ("Madness reduces the target's global speed by %d%% and lowers mind resistance by %d%%."):tformat(eff.power * 100, -eff.mindResistChange) end, type = "mental", subtype = { madness=true, slow=true }, status = "detrimental", parameters = { power=0.1 }, - on_gain = function(self, err) return "#F53CBE##Target# slows in the grip of madness!", "+Slow" end, - on_lose = function(self, err) return "#Target# overcomes the madness.", "-Slow" end, + on_gain = function(self, err) return _t"#F53CBE##Target# slows in the grip of madness!", _t"+Slow" end, + on_lose = function(self, err) return _t"#Target# overcomes the madness.", _t"-Slow" end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("gloom_slow", 1)) eff.mindResistChangeId = self:addTemporaryValue("resists", { [DamageType.MIND]=eff.mindResistChange }) @@ -851,14 +851,14 @@ newEffect{ newEffect{ name = "MADNESS_STUNNED", image = "effects/madness_stunned.png", - desc = "Stunned by madness", - long_desc = function(self, eff) return ("Madness has stunned the target, reducing damage by 50%%, lowering mind resistance by %d%%, putting 4 random talents on cooldown and reducing movement speed by 50%%. While stunned talents cooldown twice as slow."):format(eff.mindResistChange) end, + desc = _t"Stunned by madness", + long_desc = function(self, eff) return ("Madness has stunned the target, reducing damage by 50%%, lowering mind resistance by %d%%, putting 4 random talents on cooldown and reducing movement speed by 50%%. While stunned talents cooldown twice as slow."):tformat(eff.mindResistChange) end, type = "mental", subtype = { madness=true, stun=true }, status = "detrimental", parameters = {mindResistChange = -10}, - on_gain = function(self, err) return "#F53CBE##Target# is stunned by madness!", "+Stunned" end, - on_lose = function(self, err) return "#Target# overcomes the madness", "-Stunned" end, + on_gain = function(self, err) return _t"#F53CBE##Target# is stunned by madness!", _t"+Stunned" end, + on_lose = function(self, err) return _t"#Target# overcomes the madness", _t"-Stunned" end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("gloom_stunned", 1)) @@ -890,15 +890,15 @@ newEffect{ newEffect{ name = "MADNESS_CONFUSED", image = "effects/madness_confused.png", - desc = "Confused by madness", - long_desc = function(self, eff) return ("Madness has confused the target, lowering mind resistance by %d%% and making it act randomly (%d%% chance)"):format(eff.mindResistChange, eff.power) end, + desc = _t"Confused by madness", + long_desc = function(self, eff) return ("Madness has confused the target, lowering mind resistance by %d%% and making it act randomly (%d%% chance)"):tformat(eff.mindResistChange, eff.power) end, type = "mental", subtype = { madness=true, confusion=true, power=50 }, status = "detrimental", charges = function(self, eff) return (tostring(eff.power).."%") end, parameters = { power=10 }, - on_gain = function(self, err) return "#F53CBE##Target# is lost in madness!", "+Confused" end, - on_lose = function(self, err) return "#Target# overcomes the madness", "-Confused" end, + on_gain = function(self, err) return _t"#F53CBE##Target# is lost in madness!", _t"+Confused" end, + on_lose = function(self, err) return _t"#Target# overcomes the madness", _t"-Confused" end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("gloom_confused", 1)) eff.mindResistChangeId = self:addTemporaryValue("resists", { [DamageType.MIND]=eff.mindResistChange }) @@ -915,14 +915,14 @@ newEffect{ newEffect{ name = "MALIGNED", image = "talents/getsture_of_malice.png", - desc = "Maligned", - long_desc = function(self, eff) return ("The target is under a malign influence. All resists have been lowered by %d%%."):format(-eff.resistAllChange) end, + desc = _t"Maligned", + long_desc = function(self, eff) return ("The target is under a malign influence. All resists have been lowered by %d%%."):tformat(-eff.resistAllChange) end, type = "mental", subtype = { curse=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#F53CBE##Target# has been maligned!", "+Maligned" end, - on_lose = function(self, err) return "#Target# is no longer maligned", "-Maligned" end, + on_gain = function(self, err) return _t"#F53CBE##Target# has been maligned!", _t"+Maligned" end, + on_lose = function(self, err) return _t"#Target# is no longer maligned", _t"-Maligned" end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("maligned", 1)) eff.resistAllChangeId = self:addTemporaryValue("resists", { all=eff.resistAllChange }) @@ -956,9 +956,9 @@ end newEffect{ name = "HEIGHTEN_FEAR", image = "talents/heighten_fear.png", - desc = "Heighten Fear", + desc = _t"Heighten Fear", long_desc = function(self, eff) return ("The target is in a state of growing fear. If they spend %d more turns within range %d and in sight of the source of this fear (%s), they will take %d mind and darkness damage and be subjected to a new fear."): - format(eff.turns_left, eff.range, eff.src.name, eff.damage) end, + tformat(eff.turns_left, eff.range, eff.src.name, eff.damage) end, type = "other", charges = function(self, eff) return "#ORANGE#"..eff.turns_left.."#LAST#" end, subtype = { }, @@ -991,7 +991,7 @@ newEffect{ newEffect{ name = "Tyrant", image = "talents/tyrant.png", - desc = "Tyrant", + desc = _t"Tyrant", long_desc = function(self, eff) return ("Your tyranny is increasing your Mindpower and Physicalpower by 2 for each fear applied, for a total of %d"): format(eff.tyrantPower * eff.stacks) end, type = "mental", subtype = { }, @@ -1018,14 +1018,14 @@ newEffect{ newEffect{ name = "PARANOID", image = "effects/paranoid.png", - desc = "Paranoid", - long_desc = function(self, eff) return ("Paranoia has gripped the target, causing a %d%% chance they will physically attack anyone nearby, friend or foe. Targets of the attack may become paranoid themselves."):format(eff.attackChance) end, + desc = _t"Paranoid", + long_desc = function(self, eff) return ("Paranoia has gripped the target, causing a %d%% chance they will physically attack anyone nearby, friend or foe. Targets of the attack may become paranoid themselves."):tformat(eff.attackChance) end, type = "mental", subtype = { fear=true }, status = "detrimental", parameters = { tyrantDur=5, tyrantPower=2, maxStacks=7 }, - on_gain = function(self, err) return "#F53CBE##Target# becomes paranoid!", "+Paranoid" end, - on_lose = function(self, err) return "#Target# is no longer paranoid", "-Paranoid" end, + on_gain = function(self, err) return _t"#F53CBE##Target# becomes paranoid!", _t"+Paranoid" end, + on_lose = function(self, err) return _t"#Target# is no longer paranoid", _t"-Paranoid" end, activate = function(self, eff) --fear effect for each fear effect in mental.lua to give caster a buff if eff.src and eff.src.knowTalent and eff.src:knowTalent(eff.src.T_TYRANT) then @@ -1079,15 +1079,15 @@ newEffect{ newEffect{ name = "DISPAIR", image = "effects/despair.png", - desc = "Despair", - long_desc = function(self, eff) return ("The target is in despair, reducing their armour, defence, mindsave and mind resist by %d."):format(-eff.statChange) end, + desc = _t"Despair", + long_desc = function(self, eff) return ("The target is in despair, reducing their armour, defence, mindsave and mind resist by %d."):tformat(-eff.statChange) end, charges = function(self, eff) return math.floor(-eff.statChange) end, type = "mental", subtype = { fear=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#F53CBE##Target# is in despair!", "+Despair" end, - on_lose = function(self, err) return "#Target# is no longer in despair", "-Despair" end, + on_gain = function(self, err) return _t"#F53CBE##Target# is in despair!", _t"+Despair" end, + on_lose = function(self, err) return _t"#Target# is no longer in despair", _t"-Despair" end, activate = function(self, eff) --fear effect for each fear effect in mental.lua to give caster a buff if eff.src and eff.src.knowTalent and eff.src:knowTalent(eff.src.T_TYRANT) then @@ -1110,15 +1110,15 @@ newEffect{ newEffect{ name = "TERRIFIED", image = "effects/terrified.png", - desc = "Terrified", - long_desc = function(self, eff) return ("The target is terrified taking %d mind and darkness damage per turn and increasing all their cooldowns by %d%%."):format(eff.damage, eff.cooldownPower * 100) end, + desc = _t"Terrified", + long_desc = function(self, eff) return ("The target is terrified taking %d mind and darkness damage per turn and increasing all their cooldowns by %d%%."):tformat(eff.damage, eff.cooldownPower * 100) end, type = "mental", subtype = { fear=true }, status = "detrimental", parameters = {}, charges = function(self, eff) return (tostring(math.floor(eff.cooldownPower * 100)).."%") end, - on_gain = function(self, err) return "#F53CBE##Target# becomes terrified!", "+Terrified" end, - on_lose = function(self, err) return "#Target# is no longer terrified", "-Terrified" end, + on_gain = function(self, err) return _t"#F53CBE##Target# becomes terrified!", _t"+Terrified" end, + on_lose = function(self, err) return _t"#Target# is no longer terrified", _t"-Terrified" end, activate = function(self, eff) --cooldown increase handled in class.actor.lua --fear effect for each fear effect in mental.lua to give caster a buff if eff.src and eff.src.knowTalent and eff.src:knowTalent(eff.src.T_TYRANT) then @@ -1139,14 +1139,14 @@ newEffect{ --[[ newEffect{ name = "DISTRESSED", image = "effects/distressed.png", - desc = "Distressed", - long_desc = function(self, eff) return ("The target is distressed, reducing all saves by %d."):format(-eff.saveChange) end, + desc = _t"Distressed", + long_desc = function(self, eff) return ("The target is distressed, reducing all saves by %d."):tformat(-eff.saveChange) end, type = "mental", subtype = { fear=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#F53CBE##Target# becomes distressed!", "+Distressed" end, - on_lose = function(self, err) return "#Target# is no longer distressed", "-Distressed" end, + on_gain = function(self, err) return _t"#F53CBE##Target# becomes distressed!", _t"+Distressed" end, + on_lose = function(self, err) return _t"#Target# is no longer distressed", _t"-Distressed" end, activate = function(self, eff) eff.physicalId = self:addTemporaryValue("combat_physresist", eff.saveChange) eff.mentalId = self:addTemporaryValue("combat_mentalresist", eff.saveChange) @@ -1167,15 +1167,15 @@ newEffect{ newEffect{ name = "HAUNTED", image = "effects/haunted.png", - desc = "Haunted", - long_desc = function(self, eff) return ("The target is haunted by a feeling of dread, causing each detrimental mental effect to inflict %d mind and darkness damage every turn."):format(eff.damage) end, --perhaps add total. + desc = _t"Haunted", + long_desc = function(self, eff) return ("The target is haunted by a feeling of dread, causing each detrimental mental effect to inflict %d mind and darkness damage every turn."):tformat(eff.damage) end, --perhaps add total. charges = function(self, eff) return (math.floor(eff.damage)) end, type = "mental", subtype = { fear=true }, status = "detrimental", parameters = {damage=10}, - on_gain = function(self, err) return "#F53CBE##Target# becomes haunted!", "+Haunted" end, - on_lose = function(self, err) return "#Target# is no longer haunted", "-Haunted" end, + on_gain = function(self, err) return _t"#F53CBE##Target# becomes haunted!", _t"+Haunted" end, + on_lose = function(self, err) return _t"#Target# is no longer haunted", _t"-Haunted" end, activate = function(self, eff) --fear effect for each fear effect in mental.lua to give caster a buff if eff.src and eff.src.knowTalent and eff.src:knowTalent(eff.src.T_TYRANT) then @@ -1209,14 +1209,14 @@ newEffect{ --[[ newEffect{ name = "TORMENTED", image = "effects/tormented.png", - desc = "Tormented", - long_desc = function(self, eff) return ("The target's mind is being tormented, causing %d apparitions to manifest and attack the target, inflicting %d mind damage each before disappearing."):format(eff.count, eff.damage) end, + desc = _t"Tormented", + long_desc = function(self, eff) return ("The target's mind is being tormented, causing %d apparitions to manifest and attack the target, inflicting %d mind damage each before disappearing."):tformat(eff.count, eff.damage) end, type = "mental", subtype = { fear=true }, status = "detrimental", parameters = {count=1, damage=10}, - on_gain = function(self, err) return "#F53CBE##Target# becomes tormented!", "+Tormented" end, - on_lose = function(self, err) return "#Target# is no longer tormented", "-Tormented" end, + on_gain = function(self, err) return _t"#F53CBE##Target# becomes tormented!", _t"+Tormented" end, + on_lose = function(self, err) return _t"#Target# is no longer tormented", _t"-Tormented" end, activate = function(self, eff) updateFearParticles(self) end, @@ -1230,7 +1230,7 @@ newEffect{ name = "tormentor", display = "h", color=colors.DARK_GREY, image="npc/horror_eldritch_nightmare_horror.png", blood_color = colors.BLACK, - desc = "A vision of terror that wracks the mind.", + desc = _t"A vision of terror that wracks the mind.", type = "horror", subtype = "eldritch", rank = 2, size_category = 2, @@ -1298,14 +1298,14 @@ newEffect{ newEffect{ name = "PANICKED", image = "talents/panic.png", - desc = "Panicked", - long_desc = function(self, eff) return ("The target has been panicked by %s, causing them to have a %d%% chance of fleeing in terror instead of acting."):format(eff.src.name, eff.chance) end, + desc = _t"Panicked", + long_desc = function(self, eff) return ("The target has been panicked by %s, causing them to have a %d%% chance of fleeing in terror instead of acting."):tformat(eff.src.name, eff.chance) end, type = "mental", subtype = { fear=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#F53CBE##Target# becomes panicked!", "+Panicked" end, - on_lose = function(self, err) return "#Target# is no longer panicked", "-Panicked" end, + on_gain = function(self, err) return _t"#F53CBE##Target# becomes panicked!", _t"+Panicked" end, + on_lose = function(self, err) return _t"#Target# is no longer panicked", _t"-Panicked" end, activate = function(self, eff) eff.particlesId = self:addParticles(Particles.new("fear_violet", 1)) end, @@ -1373,14 +1373,14 @@ newEffect{ newEffect{ name = "QUICKNESS", image = "effects/quickness.png", - desc = "Quick", - long_desc = function(self, eff) return ("Increases global speed by %d%%."):format(eff.power * 100) end, + desc = _t"Quick", + long_desc = function(self, eff) return ("Increases global speed by %d%%."):tformat(eff.power * 100) end, type = "mental", subtype = { telekinesis=true, speed=true }, status = "beneficial", parameters = { power=0.1 }, - on_gain = function(self, err) return "#Target# speeds up.", "+Quick" end, - on_lose = function(self, err) return "#Target# slows down.", "-Quick" end, + on_gain = function(self, err) return _t"#Target# speeds up.", _t"+Quick" end, + on_lose = function(self, err) return _t"#Target# slows down.", _t"-Quick" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("global_speed_add", eff.power) end, @@ -1391,30 +1391,30 @@ newEffect{ newEffect{ name = "PSIFRENZY", image = "talents/frenzied_focus.png", - desc = "Frenzied Focus", + desc = _t"Frenzied Focus", long_desc = function(self, eff) return ("This creatures psionic focus item is supercharged!") end, type = "mental", subtype = { telekinesis=true, frenzy=true }, status = "beneficial", parameters = {dam=10}, - on_gain = function(self, err) return "#Target# enters a frenzy!", "+Frenzy" end, - on_lose = function(self, err) return "#Target# is no longer frenzied.", "-Frenzy" end, + on_gain = function(self, err) return _t"#Target# enters a frenzy!", _t"+Frenzy" end, + on_lose = function(self, err) return _t"#Target# is no longer frenzied.", _t"-Frenzy" end, } newEffect{ name = "KINSPIKE_SHIELD", image = "talents/kinetic_shield.png", - desc = "Spiked Kinetic Shield", + desc = _t"Spiked Kinetic Shield", long_desc = function(self, eff) local tl = self:getTalentLevel(self.T_ABSORPTION_MASTERY) local xs = (tl>=3 and ", nature" or "")..(tl>=6 and ", temporal" or "") - return ("The target erects a powerful kinetic shield capable of absorbing %d/%d physical%s or acid damage before it crumbles."):format(self.kinspike_shield_absorb, eff.power, xs) + return ("The target erects a powerful kinetic shield capable of absorbing %d/%d physical%s or acid damage before it crumbles."):tformat(self.kinspike_shield_absorb, eff.power, xs) end, type = "mental", subtype = { telekinesis=true, shield=true }, status = "beneficial", parameters = { power=100 }, - on_gain = function(self, err) return "A powerful kinetic shield forms around #target#.", "+Shield" end, - on_lose = function(self, err) return "The powerful kinetic shield around #target# crumbles.", "-Shield" end, + on_gain = function(self, err) return _t"A powerful kinetic shield forms around #target#.", _t"+Shield" end, + on_lose = function(self, err) return _t"The powerful kinetic shield around #target# crumbles.", _t"-Shield" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("kinspike_shield", eff.power) self.kinspike_shield_absorb = eff.power @@ -1433,18 +1433,18 @@ newEffect{ } newEffect{ name = "THERMSPIKE_SHIELD", image = "talents/thermal_shield.png", - desc = "Spiked Thermal Shield", + desc = _t"Spiked Thermal Shield", long_desc = function(self, eff) local tl = self:getTalentLevel(self.T_ABSORPTION_MASTERY) local xs = (tl>=3 and ", light" or "")..(tl>=6 and ", arcane" or "") - return ("The target erects a powerful thermal shield capable of absorbing %d/%d fire%s or cold damage before it crumbles."):format(self.thermspike_shield_absorb, eff.power, xs) + return ("The target erects a powerful thermal shield capable of absorbing %d/%d fire%s or cold damage before it crumbles."):tformat(self.thermspike_shield_absorb, eff.power, xs) end, type = "mental", subtype = { telekinesis=true, shield=true }, status = "beneficial", parameters = { power=100 }, - on_gain = function(self, err) return "A powerful thermal shield forms around #target#.", "+Shield" end, - on_lose = function(self, err) return "The powerful thermal shield around #target# crumbles.", "-Shield" end, + on_gain = function(self, err) return _t"A powerful thermal shield forms around #target#.", _t"+Shield" end, + on_lose = function(self, err) return _t"The powerful thermal shield around #target# crumbles.", _t"-Shield" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("thermspike_shield", eff.power) self.thermspike_shield_absorb = eff.power @@ -1463,18 +1463,18 @@ newEffect{ } newEffect{ name = "CHARGESPIKE_SHIELD", image = "talents/charged_shield.png", - desc = "Spiked Charged Shield", + desc = _t"Spiked Charged Shield", long_desc = function(self, eff) local tl = self:getTalentLevel(self.T_ABSORPTION_MASTERY) local xs = (tl>=3 and ", darkness" or "")..(tl>=6 and ", mind" or "") - return ("The target erects a powerful charged shield capable of absorbing %d/%d lightning%s or blight damage before it crumbles."):format(self.chargespike_shield_absorb, eff.power, xs) + return ("The target erects a powerful charged shield capable of absorbing %d/%d lightning%s or blight damage before it crumbles."):tformat(self.chargespike_shield_absorb, eff.power, xs) end, type = "mental", subtype = { telekinesis=true, shield=true }, status = "beneficial", parameters = { power=100 }, - on_gain = function(self, err) return "A powerful charged shield forms around #target#.", "+Shield" end, - on_lose = function(self, err) return "The powerful charged shield around #target# crumbles.", "-Shield" end, + on_gain = function(self, err) return _t"A powerful charged shield forms around #target#.", _t"+Shield" end, + on_lose = function(self, err) return _t"The powerful charged shield around #target# crumbles.", _t"-Shield" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("chargespike_shield", eff.power) self.chargespike_shield_absorb = eff.power @@ -1494,8 +1494,8 @@ newEffect{ newEffect{ name = "CONTROL", image = "talents/perfect_control.png", - desc = "Perfect control", - long_desc = function(self, eff) return ("The target's combat attack and crit chance are improved by %d and %d%%, respectively."):format(eff.power, 0.5*eff.power) end, + desc = _t"Perfect control", + long_desc = function(self, eff) return ("The target's combat attack and crit chance are improved by %d and %d%%, respectively."):tformat(eff.power, 0.5*eff.power) end, type = "mental", subtype = { telekinesis=true, focus=true }, status = "beneficial", @@ -1512,14 +1512,14 @@ newEffect{ newEffect{ name = "PSI_REGEN", image = "talents/matter_is_energy.png", - desc = "Matter is energy", - long_desc = function(self, eff) return ("The gem's matter gradually transforms, granting %0.2f psi per turn."):format(eff.power) end, + desc = _t"Matter is energy", + long_desc = function(self, eff) return ("The gem's matter gradually transforms, granting %0.2f psi per turn."):tformat(eff.power) end, type = "mental", subtype = { psychic_drain=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "Energy starts pouring from the gem into #Target#.", "+Energy" end, - on_lose = function(self, err) return "The flow of energy from #Target#'s gem ceases.", "-Energy" end, + on_gain = function(self, err) return _t"Energy starts pouring from the gem into #Target#.", _t"+Energy" end, + on_lose = function(self, err) return _t"The flow of energy from #Target#'s gem ceases.", _t"-Energy" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("psi_regen", eff.power) end, @@ -1530,20 +1530,20 @@ newEffect{ newEffect{ name = "MASTERFUL_TELEKINETIC_ARCHERY", image = "talents/masterful_telekinetic_archery.png", - desc = "Telekinetic Archery", + desc = _t"Telekinetic Archery", long_desc = function(self, eff) return ("Your telekinetically-wielded bow automatically attacks the nearest target each turn.") end, type = "mental", subtype = { telekinesis=true }, status = "beneficial", parameters = {dam=10}, - on_gain = function(self, err) return "#Target# enters a telekinetic archer's trance!", "+Telekinetic archery" end, - on_lose = function(self, err) return "#Target# is no longer in a telekinetic archer's trance.", "-Telekinetic archery" end, + on_gain = function(self, err) return _t"#Target# enters a telekinetic archer's trance!", _t"+Telekinetic archery" end, + on_lose = function(self, err) return _t"#Target# is no longer in a telekinetic archer's trance.", _t"-Telekinetic archery" end, } newEffect{ name = "WEAKENED_MIND", image = "talents/taint__telepathy.png", - desc = "Receptive Mind", - long_desc = function(self, eff) return ("Decreases mind save by %d and increases mindpower by %d."):format(eff.save, eff.power) end, + desc = _t"Receptive Mind", + long_desc = function(self, eff) return ("Decreases mind save by %d and increases mindpower by %d."):tformat(eff.save, eff.power) end, type = "mental", subtype = { morale=true }, status = "detrimental", @@ -1560,14 +1560,14 @@ newEffect{ newEffect{ name = "VOID_ECHOES", image = "talents/echoes_from_the_void.png", - desc = "Void Echoes", - long_desc = function(self, eff) return ("The target is seeing echoes from the void and will take %0.2f mind damage as well as some resource damage each turn it fails a mental save."):format(eff.power) end, + desc = _t"Void Echoes", + long_desc = function(self, eff) return ("The target is seeing echoes from the void and will take %0.2f mind damage as well as some resource damage each turn it fails a mental save."):tformat(eff.power) end, type = "mental", subtype = { madness=true, psionic=true }, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is being driven mad by the void.", "+Void Echoes" end, - on_lose = function(self, err) return "#Target# has survived the void madness.", "-Void Echoes" end, + on_gain = function(self, err) return _t"#Target# is being driven mad by the void.", _t"+Void Echoes" end, + on_lose = function(self, err) return _t"#Target# has survived the void madness.", _t"-Void Echoes" end, on_timeout = function(self, eff) local drain = DamageType:get(DamageType.MIND).projector(eff.src or self, self.x, self.y, DamageType.MIND, eff.power) / 2 self:incMana(-drain) @@ -1582,14 +1582,14 @@ newEffect{ newEffect{ name = "WAKING_NIGHTMARE", image = "talents/waking_nightmare.png", - desc = "Waking Nightmare", - long_desc = function(self, eff) return ("The target is lost in a nightmare that deals %0.2f mind damage each turn and has a %d%% chance to cause a random detrimental effect."):format(eff.dam, eff.chance) end, + desc = _t"Waking Nightmare", + long_desc = function(self, eff) return ("The target is lost in a nightmare that deals %0.2f mind damage each turn and has a %d%% chance to cause a random detrimental effect."):tformat(eff.dam, eff.chance) end, type = "mental", subtype = { nightmare=true, darkness=true }, status = "detrimental", parameters = { chance=10, dam = 10 }, - on_gain = function(self, err) return "#F53CBE##Target# is lost in a nightmare.", "+Night Terrors" end, - on_lose = function(self, err) return "#Target# is free from the nightmare.", "-Night Terrors" end, + on_gain = function(self, err) return _t"#F53CBE##Target# is lost in a nightmare.", _t"+Night Terrors" end, + on_lose = function(self, err) return _t"#Target# is free from the nightmare.", _t"-Night Terrors" end, on_timeout = function(self, eff) DamageType:get(DamageType.DARKNESS).projector(eff.src or self, self.x, self.y, DamageType.DARKNESS, eff.dam) local chance = eff.chance @@ -1617,15 +1617,15 @@ newEffect{ newEffect{ name = "INNER_DEMONS", image = "talents/inner_demons.png", - desc = "Inner Demons", - long_desc = function(self, eff) return ("The target is plagued by inner demons and each turn there's a %d%% chance that one will appear. If the caster is killed or the target resists setting his demons loose the effect will end early."):format(eff.chance) end, + desc = _t"Inner Demons", + long_desc = function(self, eff) return ("The target is plagued by inner demons and each turn there's a %d%% chance that one will appear. If the caster is killed or the target resists setting his demons loose the effect will end early."):tformat(eff.chance) end, type = "mental", subtype = { nightmare=true }, status = "detrimental", remove_on_clone = true, parameters = {chance=0}, - on_gain = function(self, err) return "#F53CBE##Target# is plagued by inner demons!", "+Inner Demons" end, - on_lose = function(self, err) return "#Target# is freed from the demons.", "-Inner Demons" end, + on_gain = function(self, err) return _t"#F53CBE##Target# is plagued by inner demons!", _t"+Inner Demons" end, + on_lose = function(self, err) return _t"#Target# is freed from the demons.", _t"-Inner Demons" end, on_timeout = function(self, eff) if eff.src.dead or not game.level:hasEntity(eff.src) then eff.dur = 0 return true end local t = eff.src:getTalentFromId(eff.src.T_INNER_DEMONS) @@ -1644,14 +1644,14 @@ newEffect{ newEffect{ name = "DOMINATE_ENTHRALL", image = "talents/yeek_will.png", - desc = "Enthralled", - long_desc = function(self, eff) return ("The target is enthralled, temporarily changing its faction.") end,-- to %s.")--:format(engine.Faction.factions[eff.faction].name) end, + desc = _t"Enthralled", + long_desc = function(self, eff) return ("The target is enthralled, temporarily changing its faction.") end,-- to %s.")--:tformat(engine.Faction.factions[eff.faction].name) end, type = "mental", subtype = { dominate=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is entralled.", "+Enthralled" end, - on_lose = function(self, err) return "#Target# is free from the domination.", "-Enthralled" end, + on_gain = function(self, err) return _t"#Target# is entralled.", _t"+Enthralled" end, + on_lose = function(self, err) return _t"#Target# is free from the domination.", _t"-Enthralled" end, activate = function(self, eff) eff.olf_faction = self.faction self.faction = eff.src.faction @@ -1663,14 +1663,14 @@ newEffect{ newEffect{ name = "HALFLING_LUCK", image = "talents/halfling_luck.png", - desc = "Halflings's Luck", - long_desc = function(self, eff) return ("The target's luck and cunning combine to grant it %d%% higher critical chance and %d saves."):format(eff.crit, eff.save) end, + desc = _t"Halflings's Luck", + long_desc = function(self, eff) return ("The target's luck and cunning combine to grant it %d%% higher critical chance and %d saves."):tformat(eff.crit, eff.save) end, type = "mental", subtype = { focus=true }, status = "beneficial", parameters = { crit=10, save=10 }, - on_gain = function(self, err) return "#Target# seems more aware." end, - on_lose = function(self, err) return "#Target#'s awareness returns to normal." end, + on_gain = function(self, err) return _t"#Target# seems more aware." end, + on_lose = function(self, err) return _t"#Target#'s awareness returns to normal." end, activate = function(self, eff) self:effectTemporaryValue(eff, "combat_generic_crit", eff.crit) self:effectTemporaryValue(eff, "combat_physresist", eff.save) @@ -1681,14 +1681,14 @@ newEffect{ newEffect{ name = "ATTACK", image = "talents/perfect_strike.png", - desc = "Perfect Accuracy", - long_desc = function(self, eff) return ("The target's accuracy is improved by %d."):format(eff.power) end, + desc = _t"Perfect Accuracy", + long_desc = function(self, eff) return ("The target's accuracy is improved by %d."):tformat(eff.power) end, type = "mental", subtype = { focus=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# aims carefully." end, - on_lose = function(self, err) return "#Target# aims less carefully." end, + on_gain = function(self, err) return _t"#Target# aims carefully." end, + on_lose = function(self, err) return _t"#Target# aims less carefully." end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("combat_atk", eff.power) eff.bid = self:addTemporaryValue("blind_fight", 1) @@ -1702,14 +1702,14 @@ newEffect{ newEffect{ name = "DEADLY_STRIKES", image = "talents/deadly_strikes.png", - desc = "Deadly Strikes", - long_desc = function(self, eff) return ("The target's armour penetration is increased by %d."):format(eff.power) end, + desc = _t"Deadly Strikes", + long_desc = function(self, eff) return ("The target's armour penetration is increased by %d."):tformat(eff.power) end, type = "mental", subtype = { focus=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# aims carefully." end, - on_lose = function(self, err) return "#Target# aims less carefully." end, + on_gain = function(self, err) return _t"#Target# aims carefully." end, + on_lose = function(self, err) return _t"#Target# aims less carefully." end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("combat_apr", eff.power) end, @@ -1720,14 +1720,14 @@ newEffect{ newEffect{ name = "FRENZY", image = "effects/frenzy.png", - desc = "Frenzy", - long_desc = function(self, eff) return ("Increases global action speed by %d%% and physical crit by %d%%.\nAdditionally the target will continue to fight until its Life reaches -%d%%."):format(eff.power * 100, eff.crit, eff.dieat * 100) end, + desc = _t"Frenzy", + long_desc = function(self, eff) return ("Increases global action speed by %d%% and physical crit by %d%%.\nAdditionally the target will continue to fight until its Life reaches -%d%%."):tformat(eff.power * 100, eff.crit, eff.dieat * 100) end, type = "mental", subtype = { frenzy=true, speed=true }, status = "beneficial", parameters = { power=0.1 }, - on_gain = function(self, err) return "#Target# goes into a killing frenzy.", "+Frenzy" end, - on_lose = function(self, err) return "#Target# calms down.", "-Frenzy" end, + on_gain = function(self, err) return _t"#Target# goes into a killing frenzy.", _t"+Frenzy" end, + on_lose = function(self, err) return _t"#Target# calms down.", _t"-Frenzy" end, on_merge = function(self, old_eff, new_eff) -- use on merge so reapplied frenzy doesn't kill off creatures with negative life old_eff.dur = new_eff.dur @@ -1757,14 +1757,14 @@ newEffect{ newEffect{ name = "BLOODBATH", image = "talents/bloodbath.png", - desc = "Bloodbath", - long_desc = function(self, eff) return ("The thrill of combat improves the target's maximum life by %d%%, life regeneration by %0.2f, and stamina regeneration by %0.2f."):format(eff.hp, eff.cur_regen or eff.regen, eff.cur_regen/5 or eff.regen/5) end, + desc = _t"Bloodbath", + long_desc = function(self, eff) return ("The thrill of combat improves the target's maximum life by %d%%, life regeneration by %0.2f, and stamina regeneration by %0.2f."):tformat(eff.hp, eff.cur_regen or eff.regen, eff.cur_regen/5 or eff.regen/5) end, type = "mental", subtype = { frenzy=true, heal=true, regeneration=true, }, status = "beneficial", parameters = { hp=10, regen=10, max=50 }, - on_gain = function(self, err) return nil, "+Bloodbath" end, - on_lose = function(self, err) return nil, "-Bloodbath" end, + on_gain = function(self, err) return nil, _t"+Bloodbath" end, + on_lose = function(self, err) return nil, _t"-Bloodbath" end, on_merge = function(self, old_eff, new_eff) if old_eff.cur_regen + new_eff.regen < new_eff.max then game.logSeen(self, "%s's blood frenzy intensifies!", self.name:capitalize()) end new_eff.templife_id = old_eff.templife_id @@ -1811,8 +1811,8 @@ newEffect{ newEffect{ name = "BLOODRAGE", image = "talents/bloodrage.png", - desc = "Bloodrage", - long_desc = function(self, eff) return ("The target's strength is increased by %d by the thrill of combat."):format(eff.cur_inc) end, + desc = _t"Bloodrage", + long_desc = function(self, eff) return ("The target's strength is increased by %d by the thrill of combat."):tformat(eff.cur_inc) end, type = "mental", subtype = { frenzy=true }, status = "beneficial", @@ -1836,13 +1836,13 @@ newEffect{ newEffect{ name = "INCREASED_LIFE", image = "effects/increased_life.png", - desc = "Increased Life", - long_desc = function(self, eff) return ("The target's maximum life is increased by %d."):format(eff.life) end, + desc = _t"Increased Life", + long_desc = function(self, eff) return ("The target's maximum life is increased by %d."):tformat(eff.life) end, type = "mental", subtype = { frenzy=true, heal=true }, status = "beneficial", - on_gain = function(self, err) return "#Target# gains extra life.", "+Life" end, - on_lose = function(self, err) return "#Target# loses extra life.", "-Life" end, + on_gain = function(self, err) return _t"#Target# gains extra life.", _t"+Life" end, + on_lose = function(self, err) return _t"#Target# loses extra life.", _t"-Life" end, parameters = { life = 50 }, activate = function(self, eff) self.max_life = self.max_life + eff.life @@ -1863,7 +1863,7 @@ newEffect{ newEffect{ name = "GESTURE_OF_GUARDING", image = "talents/gesture_of_guarding.png", - desc = "Guarded", + desc = _t"Guarded", long_desc = function(self, eff) local xs = "" local dam, deflects = eff.dam, eff.deflects @@ -1871,8 +1871,8 @@ newEffect{ dam = dam*math.max(0,deflects) deflects = 1 end - if self:isTalentActive(self.T_GESTURE_OF_PAIN) then xs = (" with a %d%% chance to counterattack"):format(self:callTalent(self.T_GESTURE_OF_GUARDING,"getCounterAttackChance")) end - return ("Guarding against melee damage: Will dismiss up to %d damage from the next %0.1f attack(s)%s."):format(dam, deflects, xs) + if self:isTalentActive(self.T_GESTURE_OF_PAIN) then xs = (" with a %d%% chance to counterattack"):tformat(self:callTalent(self.T_GESTURE_OF_GUARDING,"getCounterAttackChance")) end + return ("Guarding against melee damage: Will dismiss up to %d damage from the next %0.1f attack(s)%s."):tformat(dam, deflects, xs) end, charges = function(self, eff) return "#LIGHT_GREEN#"..math.ceil(eff.deflects) end, type = "mental", @@ -1892,14 +1892,14 @@ newEffect{ newEffect{ name = "RAMPAGE", image = "talents/rampage.png", - desc = "Rampaging", + desc = _t"Rampaging", long_desc = function(self, eff) - local desc = ("The target is rampaging! (+%d%% movement speed, +%d%% attack speed, +%d%% mind speed"):format(eff.movementSpeedChange * 100, eff.combatPhysSpeedChange * 100, eff.combatMindSpeedChange * 100) + local desc = ("The target is rampaging! (+%d%% movement speed, +%d%% attack speed, +%d%% mind speed"):tformat(eff.movementSpeedChange * 100, eff.combatPhysSpeedChange * 100, eff.combatMindSpeedChange * 100) if eff.physicalDamageChange > 0 then - desc = desc..(", +%d%% physical damage, +%d physical save, +%d mental save"):format(eff.physicalDamageChange, eff.combatPhysResistChange, eff.combatMentalResistChange) + desc = desc..(", +%d%% physical damage, +%d physical save, +%d mental save"):tformat(eff.physicalDamageChange, eff.combatPhysResistChange, eff.combatMentalResistChange) end if eff.damageShieldMax > 0 then - desc = desc..(", %d/%d damage shrugged off this turn"):format(math.max(0, eff.damageShieldMax - eff.damageShield), eff.damageShieldMax) + desc = desc..(", %d/%d damage shrugged off this turn"):tformat(math.max(0, eff.damageShieldMax - eff.damageShield), eff.damageShieldMax) end desc = desc..")" return desc @@ -1908,8 +1908,8 @@ newEffect{ subtype = { frenzy=true, speed=true, evade=true }, status = "beneficial", parameters = { }, - on_gain = function(self, err) return "#F53CBE##Target# begins rampaging!", "+Rampage" end, - on_lose = function(self, err) return "#F53CBE##Target# is no longer rampaging.", "-Rampage" end, + on_gain = function(self, err) return _t"#F53CBE##Target# begins rampaging!", _t"+Rampage" end, + on_lose = function(self, err) return _t"#F53CBE##Target# is no longer rampaging.", _t"-Rampage" end, activate = function(self, eff) if eff.movementSpeedChange or 0 > 0 then eff.movementSpeedId = self:addTemporaryValue("movement_speed", eff.movementSpeedChange) end if eff.combatPhysSpeedChange or 0 > 0 then eff.combatPhysSpeedId = self:addTemporaryValue("combat_physspeed", eff.combatPhysSpeedChange) end @@ -1970,14 +1970,14 @@ newEffect{ newEffect{ name = "ORC_FURY", image = "talents/orc_fury.png", - desc = "Orcish Fury", - long_desc = function(self, eff) return ("The target enters a destructive fury, increasing all damage done by %d%%."):format(eff.power) end, + desc = _t"Orcish Fury", + long_desc = function(self, eff) return ("The target enters a destructive fury, increasing all damage done by %d%%."):tformat(eff.power) end, type = "mental", subtype = { frenzy=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# enters a state of bloodlust." end, - on_lose = function(self, err) return "#Target# calms down." end, + on_gain = function(self, err) return _t"#Target# enters a state of bloodlust." end, + on_lose = function(self, err) return _t"#Target# calms down." end, activate = function(self, eff) eff.pid = self:addTemporaryValue("inc_damage", {all=eff.power}) end, @@ -1988,14 +1988,14 @@ newEffect{ newEffect{ name = "ORC_TRIUMPH", image = "talents/skirmisher.png", - desc = "Orcish Triumph", - long_desc = function(self, eff) return ("Inspired by a recent kill increasing all resistance by %d%%."):format(eff.resists) end, + desc = _t"Orcish Triumph", + long_desc = function(self, eff) return ("Inspired by a recent kill increasing all resistance by %d%%."):tformat(eff.resists) end, type = "mental", subtype = { frenzy=true }, status = "beneficial", parameters = { resists=10 }, - on_gain = function(self, err) return "#Target# roars triumphantly." end, -- Too spammy? - on_lose = function(self, err) return "#Target# is no longer inspired." end, + on_gain = function(self, err) return _t"#Target# roars triumphantly." end, -- Too spammy? + on_lose = function(self, err) return _t"#Target# is no longer inspired." end, activate = function(self, eff) eff.pid = self:addTemporaryValue("resists", {all=eff.resists}) end, @@ -2006,14 +2006,14 @@ newEffect{ newEffect{ name = "BRAINLOCKED", - desc = "Brainlocked", - long_desc = function(self, eff) return ("Renders a random talent unavailable. Talent cooldown is halved until the effect has worn off."):format() end, + desc = _t"Brainlocked", + long_desc = function(self, eff) return ("Renders a random talent unavailable. Talent cooldown is halved until the effect has worn off."):tformat() end, type = "mental", subtype = { ["cross tier"]=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return nil, "+Brainlocked" end, - on_lose = function(self, err) return nil, "-Brainlocked" end, + on_gain = function(self, err) return nil, _t"+Brainlocked" end, + on_lose = function(self, err) return nil, _t"-Brainlocked" end, activate = function(self, eff) eff.tcdid = self:addTemporaryValue("half_talents_cooldown", 1) local tids = {} @@ -2034,13 +2034,13 @@ newEffect{ newEffect{ name = "FRANTIC_SUMMONING", image = "talents/frantic_summoning.png", - desc = "Frantic Summoning", - long_desc = function(self, eff) return ("Reduces the time taken for summoning by %d%%."):format(eff.power) end, + desc = _t"Frantic Summoning", + long_desc = function(self, eff) return ("Reduces the time taken for summoning by %d%%."):tformat(eff.power) end, type = "mental", subtype = { summon=true }, status = "beneficial", - on_gain = function(self, err) return "#Target# starts summoning at high speed.", "+Frantic Summoning" end, - on_lose = function(self, err) return "#Target#'s frantic summoning ends.", "-Frantic Summoning" end, + on_gain = function(self, err) return _t"#Target# starts summoning at high speed.", _t"+Frantic Summoning" end, + on_lose = function(self, err) return _t"#Target#'s frantic summoning ends.", _t"-Frantic Summoning" end, parameters = { power=20 }, activate = function(self, eff) eff.failid = self:addTemporaryValue("no_equilibrium_summon_fail", 1) @@ -2068,8 +2068,8 @@ newEffect{ newEffect{ name = "WILD_SUMMON", image = "talents/wild_summon.png", - desc = "Wild Summon", - long_desc = function(self, eff) return ("%d%% chance to get a more powerful summon."):format(eff.chance) end, + desc = _t"Wild Summon", + long_desc = function(self, eff) return ("%d%% chance to get a more powerful summon."):tformat(eff.chance) end, type = "mental", subtype = { summon=true }, status = "beneficial", @@ -2090,14 +2090,14 @@ newEffect{ newEffect{ name = "LOBOTOMIZED", image = "talents/psychic_lobotomy.png", - desc = "Lobotomized (confused)", - long_desc = function(self, eff) return ("The target's mental faculties have been severely impaired, making it act randomly each turn (%d%% chance) and reducing its cunning by %d."):format(eff.confuse, eff.power/2) end, + desc = _t"Lobotomized (confused)", + long_desc = function(self, eff) return ("The target's mental faculties have been severely impaired, making it act randomly each turn (%d%% chance) and reducing its cunning by %d."):tformat(eff.confuse, eff.power/2) end, type = "mental", subtype = { confusion=true }, status = "detrimental", charges = function(self, eff) return (tostring(math.floor(eff.confuse)).."%") end, - on_gain = function(self, err) return "#Target# higher mental functions have been imparied.", "+Lobotomized" end, - on_lose = function(self, err) return "#Target#'s regains its senses.", "-Lobotomized" end, + on_gain = function(self, err) return _t"#Target# higher mental functions have been imparied.", _t"+Lobotomized" end, + on_lose = function(self, err) return _t"#Target#'s regains its senses.", _t"-Lobotomized" end, parameters = { power=1, confuse=10, dam=1 }, activate = function(self, eff) DamageType:get(DamageType.MIND).projector(eff.src or self, self.x, self.y, DamageType.MIND, {dam=eff.dam, alwaysHit=true}) @@ -2117,9 +2117,9 @@ newEffect{ newEffect{ name = "PSIONIC_SHIELD", image = "talents/kinetic_shield.png", - desc = "Psionic Shield", + desc = _t"Psionic Shield", display_desc = function(self, eff) return eff.kind:capitalize().." Psionic Shield" end, - long_desc = function(self, eff) return ("Reduces all incoming %s damage by %d."):format(eff.what, eff.power) end, + long_desc = function(self, eff) return ("Reduces all incoming %s damage by %d."):tformat(eff.what, eff.power) end, type = "mental", subtype = { psionic=true, shield=true }, status = "beneficial", @@ -2165,8 +2165,8 @@ newEffect{ newEffect{ name = "CLEAR_MIND", image = "talents/mental_shielding.png", - desc = "Clear Mind", - long_desc = function(self, eff) return ("Nullifies the next %d detrimental mental effects."):format(self.clear_mind_immune) end, + desc = _t"Clear Mind", + long_desc = function(self, eff) return ("Nullifies the next %d detrimental mental effects."):tformat(self.clear_mind_immune) end, type = "mental", subtype = { psionic=true, }, status = "beneficial", @@ -2183,14 +2183,14 @@ newEffect{ newEffect{ name = "RESONANCE_FIELD", image = "talents/resonance_field.png", - desc = "Resonance Field", - long_desc = function(self, eff) return ("The target is surrounded by a psychic field, absorbing 50%% of all damage (up to %d/%d)."):format(self.resonance_field_absorb, eff.power) end, + desc = _t"Resonance Field", + long_desc = function(self, eff) return ("The target is surrounded by a psychic field, absorbing 50%% of all damage (up to %d/%d)."):tformat(self.resonance_field_absorb, eff.power) end, type = "mental", subtype = { psionic=true, shield=true }, status = "beneficial", parameters = { power=100 }, - on_gain = function(self, err) return "A psychic field forms around #target#.", "+Resonance Shield" end, - on_lose = function(self, err) return "The psychic field around #target# crumbles.", "-Resonance Shield" end, + on_gain = function(self, err) return _t"A psychic field forms around #target#.", _t"+Resonance Shield" end, + on_lose = function(self, err) return _t"The psychic field around #target# crumbles.", _t"-Resonance Shield" end, damage_feedback = function(self, eff, src, value) if eff.particle and eff.particle._shader and eff.particle._shader.shad and src and src.x and src.y then local r = -rng.float(0.2, 0.4) @@ -2218,15 +2218,15 @@ newEffect{ newEffect{ name = "MIND_LINK_TARGET", image = "talents/mind_link.png", - desc = "Mind Link", - long_desc = function(self, eff) return ("The target's mind has been invaded, increasing all mind damage it receives from %s by %d%%."):format(eff.src.name:capitalize(), eff.power) end, + desc = _t"Mind Link", + long_desc = function(self, eff) return ("The target's mind has been invaded, increasing all mind damage it receives from %s by %d%%."):tformat(eff.src.name:capitalize(), eff.power) end, type = "mental", subtype = { psionic=true }, status = "detrimental", parameters = {power = 1, range = 5}, remove_on_clone = true, decrease = 0, - on_gain = function(self, err) return "#Target#'s mind has been invaded!", "+Mind Link" end, - on_lose = function(self, err) return "#Target# is free from the mental invasion.", "-Mind Link" end, + on_gain = function(self, err) return _t"#Target#'s mind has been invaded!", _t"+Mind Link" end, + on_lose = function(self, err) return _t"#Target# is free from the mental invasion.", _t"-Mind Link" end, on_timeout = function(self, eff) -- Remove the mind link when appropriate local p = eff.src:isTalentActive(eff.src.T_MIND_LINK) @@ -2238,14 +2238,14 @@ newEffect{ newEffect{ name = "FEEDBACK_LOOP", image = "talents/feedback_loop.png", - desc = "Feedback Loop", + desc = _t"Feedback Loop", long_desc = function(self, eff) return "The target is gaining feedback." end, type = "mental", subtype = { psionic=true }, status = "beneficial", parameters = { power = 1 }, - on_gain = function(self, err) return "#Target# is gaining feedback.", "+Feedback Loop" end, - on_lose = function(self, err) return "#Target# is no longer gaining feedback.", "-Feedback Loop" end, + on_gain = function(self, err) return _t"#Target# is gaining feedback.", _t"+Feedback Loop" end, + on_lose = function(self, err) return _t"#Target# is no longer gaining feedback.", _t"-Feedback Loop" end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("ultrashield", 1, {rm=255, rM=255, gm=180, gM=255, bm=0, bM=0, am=35, aM=90, radius=0.2, density=15, life=28, instop=40})) end, @@ -2256,14 +2256,14 @@ newEffect{ newEffect{ name = "FOCUSED_WRATH", image = "talents/focused_wrath.png", - desc = "Focused Wrath", - long_desc = function(self, eff) return ("The target's subconscious has focused, increasing Mind resistance penetration by +%d%% and turning its attention on %s."):format(eff.pen, eff.target.name:capitalize()) end, + desc = _t"Focused Wrath", + long_desc = function(self, eff) return ("The target's subconscious has focused, increasing Mind resistance penetration by +%d%% and turning its attention on %s."):tformat(eff.pen, eff.target.name:capitalize()) end, type = "mental", subtype = { psionic=true }, status = "beneficial", parameters = { power = 1 }, - on_gain = function(self, err) return "#Target#'s subconscious has been focused.", "+Focused Wrath" end, - on_lose = function(self, err) return "#Target#'s subconscious has returned to normal.", "-Focused Wrath" end, + on_gain = function(self, err) return _t"#Target#'s subconscious has been focused.", _t"+Focused Wrath" end, + on_lose = function(self, err) return _t"#Target#'s subconscious has returned to normal.", _t"-Focused Wrath" end, activate = function(self, eff) self:effectTemporaryValue(eff, "resists_pen", {[DamageType.MIND]=eff.pen}) end, @@ -2276,14 +2276,14 @@ newEffect{ newEffect{ name = "SLEEP", image = "talents/sleep.png", - desc = "Sleep", - long_desc = function(self, eff) return ("The target is asleep and unable to perform most actions. Every %d damage it takes will reduce the duration of the effect by one turn."):format(eff.power) end, + desc = _t"Sleep", + long_desc = function(self, eff) return ("The target is asleep and unable to perform most actions. Every %d damage it takes will reduce the duration of the effect by one turn."):tformat(eff.power) end, type = "mental", subtype = { sleep=true }, status = "detrimental", parameters = { power=1, insomnia=1, waking=0, contagious=0 }, - on_gain = function(self, err) return "#Target# has been put to sleep.", "+Sleep" end, - on_lose = function(self, err) return "#Target# is no longer sleeping.", "-Sleep" end, + on_gain = function(self, err) return _t"#Target# has been put to sleep.", _t"+Sleep" end, + on_lose = function(self, err) return _t"#Target# is no longer sleeping.", _t"-Sleep" end, on_timeout = function(self, eff) local dream_prison = false if eff.src and eff.src.isTalentActive and eff.src:isTalentActive(eff.src.T_DREAM_PRISON) then @@ -2330,14 +2330,14 @@ newEffect{ newEffect{ name = "SLUMBER", image = "talents/slumber.png", - desc = "Slumber", - long_desc = function(self, eff) return ("The target is in a deep sleep and unable to perform most actions. Every %d damage it takes will reduce the duration of the effect by one turn."):format(eff.power) end, + desc = _t"Slumber", + long_desc = function(self, eff) return ("The target is in a deep sleep and unable to perform most actions. Every %d damage it takes will reduce the duration of the effect by one turn."):tformat(eff.power) end, type = "mental", subtype = { sleep=true }, status = "detrimental", parameters = { power=1, insomnia=1, waking=0 }, - on_gain = function(self, err) return "#Target# is in a deep sleep.", "+Slumber" end, - on_lose = function(self, err) return "#Target# is no longer sleeping.", "-Slumber" end, + on_gain = function(self, err) return _t"#Target# is in a deep sleep.", _t"+Slumber" end, + on_lose = function(self, err) return _t"#Target# is no longer sleeping.", _t"-Slumber" end, on_timeout = function(self, eff) local dream_prison = false if eff.src and eff.src.isTalentActive and eff.src:isTalentActive(eff.src.T_DREAM_PRISON) then @@ -2380,14 +2380,14 @@ newEffect{ newEffect{ name = "NIGHTMARE", image = "talents/nightmare.png", - desc = "Nightmare", - long_desc = function(self, eff) return ("The target is in a nightmarish sleep, suffering %0.2f mind damage each turn and unable to to perform most actions. Every %d damage it takes will reduce the duration of the effect by one turn."):format(eff.dam, eff.power) end, + desc = _t"Nightmare", + long_desc = function(self, eff) return ("The target is in a nightmarish sleep, suffering %0.2f mind damage each turn and unable to to perform most actions. Every %d damage it takes will reduce the duration of the effect by one turn."):tformat(eff.dam, eff.power) end, type = "mental", subtype = { nightmare=true, sleep=true }, status = "detrimental", parameters = { power=1, dam=0, insomnia=1, waking=0}, - on_gain = function(self, err) return "#F53CBE##Target# is lost in a nightmare.", "+Nightmare" end, - on_lose = function(self, err) return "#Target# is free from the nightmare.", "-Nightmare" end, + on_gain = function(self, err) return _t"#F53CBE##Target# is lost in a nightmare.", _t"+Nightmare" end, + on_lose = function(self, err) return _t"#Target# is free from the nightmare.", _t"-Nightmare" end, on_timeout = function(self, eff) local dream_prison = false if eff.src and eff.src.isTalentActive and eff.src:isTalentActive(eff.src.T_DREAM_PRISON) then @@ -2439,14 +2439,14 @@ newEffect{ newEffect{ name = "RESTLESS_NIGHT", image = "talents/restless_night.png", - desc = "Restless Night", - long_desc = function(self, eff) return ("Fatigue from poor sleep, dealing %0.2f mind damage per turn."):format(eff.power) end, + desc = _t"Restless Night", + long_desc = function(self, eff) return ("Fatigue from poor sleep, dealing %0.2f mind damage per turn."):tformat(eff.power) end, type = "mental", subtype = { psionic=true}, status = "detrimental", parameters = { power=1 }, - on_gain = function(self, err) return "#Target# had a restless night.", "+Restless Night" end, - on_lose = function(self, err) return "#Target# has recovered from poor sleep.", "-Restless Night" end, + on_gain = function(self, err) return _t"#Target# had a restless night.", _t"+Restless Night" end, + on_lose = function(self, err) return _t"#Target# has recovered from poor sleep.", _t"-Restless Night" end, on_merge = function(self, old_eff, new_eff) -- Merge the flames! local olddam = old_eff.power * old_eff.dur @@ -2463,14 +2463,14 @@ newEffect{ newEffect{ name = "INSOMNIA", image = "effects/insomnia.png", - desc = "Insomnia", - long_desc = function(self, eff) return ("The target is wide awake and has %d%% resistance to sleep effects."):format(eff.cur_power) end, + desc = _t"Insomnia", + long_desc = function(self, eff) return ("The target is wide awake and has %d%% resistance to sleep effects."):tformat(eff.cur_power) end, type = "mental", subtype = { psionic=true }, status = "beneficial", parameters = { power=0 }, - on_gain = function(self, err) return "#Target# is suffering from insomnia.", "+Insomnia" end, - on_lose = function(self, err) return "#Target# is no longer suffering from insomnia.", "-Insomnia" end, + on_gain = function(self, err) return _t"#Target# is suffering from insomnia.", _t"+Insomnia" end, + on_lose = function(self, err) return _t"#Target# is no longer suffering from insomnia.", _t"-Insomnia" end, on_merge = function(self, old_eff, new_eff) -- Add the durations on merge local dur = old_eff.dur + new_eff.dur @@ -2503,13 +2503,13 @@ newEffect{ newEffect{ name = "SUNDER_MIND", image = "talents/sunder_mind.png", - desc = "Sundered Mind", - long_desc = function(self, eff) return ("The target's mental faculties have been impaired, reducing its mental save by %d."):format(eff.cur_power or eff.power) end, + desc = _t"Sundered Mind", + long_desc = function(self, eff) return ("The target's mental faculties have been impaired, reducing its mental save by %d."):tformat(eff.cur_power or eff.power) end, type = "mental", subtype = { psionic=true }, status = "detrimental", - on_gain = function(self, err) return "#Target#'s mental functions have been impaired.", "+Sundered Mind" end, - on_lose = function(self, err) return "#Target# regains its senses.", "-Sundered Mind" end, + on_gain = function(self, err) return _t"#Target#'s mental functions have been impaired.", _t"+Sundered Mind" end, + on_lose = function(self, err) return _t"#Target# regains its senses.", _t"-Sundered Mind" end, parameters = { power=10 }, on_merge = function(self, old_eff, new_eff) self:removeTemporaryValue("combat_mentalresist", old_eff.sunder) @@ -2530,13 +2530,13 @@ newEffect{ newEffect{ name = "BROKEN_DREAM", image = "effects/broken_dream.png", - desc = "Broken Dream", - long_desc = function(self, eff) return ("The target's dreams have been broken by the dreamforge, reducing its mental save by %d and reducing its chance of successfully casting a spell by %d%%."):format(eff.power, eff.fail) end, + desc = _t"Broken Dream", + long_desc = function(self, eff) return ("The target's dreams have been broken by the dreamforge, reducing its mental save by %d and reducing its chance of successfully casting a spell by %d%%."):tformat(eff.power, eff.fail) end, type = "mental", subtype = { psionic=true, morale=true }, status = "detrimental", - on_gain = function(self, err) return "#Target#'s dreams have been broken.", "+Broken Dream" end, - on_lose = function(self, err) return "#Target# regains hope.", "-Broken Dream" end, + on_gain = function(self, err) return _t"#Target#'s dreams have been broken.", _t"+Broken Dream" end, + on_lose = function(self, err) return _t"#Target# regains hope.", _t"-Broken Dream" end, parameters = { power=10, fail=10 }, activate = function(self, eff) eff.silence = self:addTemporaryValue("spell_failure", eff.fail) @@ -2550,7 +2550,7 @@ newEffect{ newEffect{ name = "FORGE_SHIELD", image = "talents/block.png", - desc = "Forge Shield", + desc = _t"Forge Shield", long_desc = function(self, eff) local e_string = "" if eff.number == 1 then @@ -2565,7 +2565,7 @@ newEffect{ local function tchelper(first, rest) return first:upper()..rest:lower() end - return ("Absorbs %d damage from the next blockable attack. Currently Blocking: %s."):format(eff.power, e_string:gsub("(%a)([%w_']*)", tchelper)) + return ("Absorbs %d damage from the next blockable attack. Currently Blocking: %s."):tformat(eff.power, e_string:gsub("(%a)([%w_']*)", tchelper)) end, type = "mental", subtype = { psionic=true }, @@ -2595,13 +2595,13 @@ newEffect{ newEffect{ name = "HIDDEN_RESOURCES", image = "talents/hidden_resources.png", - desc = "Hidden Resources", + desc = _t"Hidden Resources", long_desc = function(self, eff) return "The target does not consume any resources." end, type = "mental", subtype = { willpower=true }, status = "beneficial", - on_gain = function(self, err) return "#Target#'s focuses.", "+Hidden Ressources" end, - on_lose = function(self, err) return "#Target#'s loses some focus.", "-Hidden Ressources" end, + on_gain = function(self, err) return _t"#Target#'s focuses.", _t"+Hidden Ressources" end, + on_lose = function(self, err) return _t"#Target#'s loses some focus.", _t"-Hidden Ressources" end, parameters = { }, activate = function(self, eff) self:effectTemporaryValue(eff, "force_talent_ignore_ressources", 1) @@ -2610,13 +2610,13 @@ newEffect{ newEffect{ name = "SPELL_FEEDBACK", image = "talents/spell_feedback.png", - desc = "Spell Feedback", - long_desc = function(self, eff) return ("The target suffers %d%% spell failue."):format(eff.power) end, + desc = _t"Spell Feedback", + long_desc = function(self, eff) return ("The target suffers %d%% spell failue."):tformat(eff.power) end, type = "mental", subtype = { nature=true }, status = "detrimental", - on_gain = function(self, err) return "#Target# is surrounded by antimagic forces.", "+Spell Feedback" end, - on_lose = function(self, err) return "#Target#'s antimagic forces vanishes.", "-Spell Feedback" end, + on_gain = function(self, err) return _t"#Target# is surrounded by antimagic forces.", _t"+Spell Feedback" end, + on_lose = function(self, err) return _t"#Target#'s antimagic forces vanishes.", _t"-Spell Feedback" end, parameters = { power=40 }, activate = function(self, eff) self:effectTemporaryValue(eff, "spell_failure", eff.power) @@ -2625,13 +2625,13 @@ newEffect{ newEffect{ name = "MIND_PARASITE", image = "talents/mind_parasite.png", - desc = "Mind Parasite", - long_desc = function(self, eff) return ("The target is infected with a mind parasite. Each time it uses a talent it has a %d%% chance to have %d random talent(s) put on cooldown for %d turns."):format(eff.chance, eff.nb, eff.turns) end, + desc = _t"Mind Parasite", + long_desc = function(self, eff) return ("The target is infected with a mind parasite. Each time it uses a talent it has a %d%% chance to have %d random talent(s) put on cooldown for %d turns."):tformat(eff.chance, eff.nb, eff.turns) end, type = "mental", subtype = { nature=true, mind=true }, status = "detrimental", - on_gain = function(self, err) return "#Target# is infected with a mind parasite.", "+Mind Parasite" end, - on_lose = function(self, err) return "#Target# is free from the mind parasite.", "-Mind Parasite" end, + on_gain = function(self, err) return _t"#Target# is infected with a mind parasite.", _t"+Mind Parasite" end, + on_lose = function(self, err) return _t"#Target# is free from the mind parasite.", _t"-Mind Parasite" end, parameters = { chance=40, nb=1, turns=2 }, activate = function(self, eff) self:effectTemporaryValue(eff, "random_talent_cooldown_on_use", eff.chance) @@ -2642,8 +2642,8 @@ newEffect{ newEffect{ name = "MINDLASH", image = "talents/mindlash.png", - desc = "Mindlash", - long_desc = function(self, eff) return ("Repeated mindlash usage is very taxing increasing the psi cost each time (currently %d%%)"):format(eff.power * 100) end, + desc = _t"Mindlash", + long_desc = function(self, eff) return ("Repeated mindlash usage is very taxing increasing the psi cost each time (currently %d%%)"):tformat(eff.power * 100) end, type = "mental", subtype = { mind=true }, status = "detrimental", @@ -2659,8 +2659,8 @@ newEffect{ newEffect{ name = "SHADOW_EMPATHY", image = "talents/shadow_empathy.png", - desc = "Shadow Empathy", - long_desc = function(self, eff) return ("%d%% of all damage is redirected to a random shadow."):format(eff.power) end, + desc = _t"Shadow Empathy", + long_desc = function(self, eff) return ("%d%% of all damage is redirected to a random shadow."):tformat(eff.power) end, type = "mental", subtype = { mind=true, shield=true }, status = "beneficial", @@ -2676,8 +2676,8 @@ newEffect{ newEffect{ name = "SHADOW_DECOY", image = "talents/shadow_decoy.png", - desc = "Shadow Decoy", - long_desc = function(self, eff) return ("A random shadow absorbed a fatal blow for you, granting you a negative shield of %d."):format(eff.power) end, + desc = _t"Shadow Decoy", + long_desc = function(self, eff) return ("A random shadow absorbed a fatal blow for you, granting you a negative shield of %d."):tformat(eff.power) end, type = "mental", subtype = { mind=true, shield=true }, status = "beneficial", @@ -2695,15 +2695,15 @@ newEffect{ newEffect{ name = "CRYSTAL_BUFF", image = "talents/stone_touch.png", - desc = "Crystal Resonance", + desc = _t"Crystal Resonance", --Might consider adding the gem properties to this tooltip - long_desc = function(self, eff) return ("The power released by the %s resonates."):format(eff.name) end, + long_desc = function(self, eff) return ("The power released by the %s resonates."):tformat(eff.name) end, type = "mental", subtype = { psionic=true }, status = "beneficial", parameters = { }, - on_gain = function(self, err) return "#Target# glints with a crystaline aura", "+Crystal Resonance" end, - on_lose = function(self, err) return "#Target# is no longer glinting.", "-Crystal Resonance" end, + on_gain = function(self, err) return _t"#Target# glints with a crystaline aura", _t"+Crystal Resonance" end, + on_lose = function(self, err) return _t"#Target# is no longer glinting.", _t"-Crystal Resonance" end, activate = function(self, eff) for a, b in pairs(eff.effects) do self:effectTemporaryValue(eff, a, b) @@ -2716,8 +2716,8 @@ newEffect{ newEffect{ name = "WEAPON_WARDING", image = "talents/warding_weapon.png", - desc = "Weapon Warding", - long_desc = function(self, eff) return ("Target is using %s telekinetically wielded weapon defensively and will block the next melee attack and retaliate."):format(string.his_her(self)) end, + desc = _t"Weapon Warding", + long_desc = function(self, eff) return ("Target is using %s telekinetically wielded weapon defensively and will block the next melee attack and retaliate."):tformat(string.his_her(self)) end, type = "mental", subtype = { tactic=true }, status = "beneficial", @@ -2752,8 +2752,8 @@ newEffect{ newEffect{ name = "THOUGHTSENSE", image = "talents/thought_sense.png", - desc = "Thought Sense", - long_desc = function(self, eff) return ("Detect nearby thoughts, revealing creature locations in a radius of %d and boosting defense by %d."):format(eff.range, eff.def) end, + desc = _t"Thought Sense", + long_desc = function(self, eff) return ("Detect nearby thoughts, revealing creature locations in a radius of %d and boosting defense by %d."):tformat(eff.range, eff.def) end, type = "mental", subtype = { tactic=true }, status = "beneficial", @@ -2776,8 +2776,8 @@ newEffect{ newEffect{ name = "STATIC_CHARGE", image = "talents/static_net.png", - desc = "Static Charge", - long_desc = function(self, eff) return ("You have accumulated an electric charge. Your next melee hit does %d extra lightning damage."):format(eff.power) end, + desc = _t"Static Charge", + long_desc = function(self, eff) return ("You have accumulated an electric charge. Your next melee hit does %d extra lightning damage."):tformat(eff.power) end, type = "mental", subtype = { lightning=true }, status = "beneficial", @@ -2803,8 +2803,8 @@ newEffect{ newEffect{ name = "HEART_STARTED", image = "talents/heartstart.png", - desc = "Heart Started", - long_desc = function(self, eff) return ("A psionic charge is keeping your heart pumping, allowing you to survive to %+d health."):format(-eff.power) end, + desc = _t"Heart Started", + long_desc = function(self, eff) return ("A psionic charge is keeping your heart pumping, allowing you to survive to %+d health."):tformat(-eff.power) end, type = "mental", subtype = { lightning=true }, status = "beneficial", @@ -2818,8 +2818,8 @@ newEffect{ newEffect{ name = "TRANSCENDENT_TELEKINESIS", image = "talents/transcendent_telekinesis.png", - desc = "Transcendent Telekinesis", - long_desc = function(self, eff) return ("Your telekinesis transcends normal limits. +%d Physical damage and +%d%% Physical damage penetration, and improved kinetic effects."):format(eff.power, eff.penetration) end, + desc = _t"Transcendent Telekinesis", + long_desc = function(self, eff) return ("Your telekinesis transcends normal limits. +%d Physical damage and +%d%% Physical damage penetration, and improved kinetic effects."):tformat(eff.power, eff.penetration) end, type = "mental", subtype = { physical=true }, status = "beneficial", @@ -2838,8 +2838,8 @@ newEffect{ newEffect{ name = "TRANSCENDENT_PYROKINESIS", image = "talents/transcendent_pyrokinesis.png", - desc = "Transcendent Pyrokinesis", - long_desc = function(self, eff) return ("Your pyrokinesis transcends normal limits. +%d%% Fire/Cold damage and +%d%% Fire/Cold damage penetration, and improved thermal effects."):format(eff.power, eff.penetration) end, + desc = _t"Transcendent Pyrokinesis", + long_desc = function(self, eff) return ("Your pyrokinesis transcends normal limits. +%d%% Fire/Cold damage and +%d%% Fire/Cold damage penetration, and improved thermal effects."):tformat(eff.power, eff.penetration) end, type = "mental", subtype = { fire=true, cold=true }, status = "beneficial", @@ -2858,8 +2858,8 @@ newEffect{ newEffect{ name = "TRANSCENDENT_ELECTROKINESIS", image = "talents/transcendent_electrokinesis.png", - desc = "Transcendent Electrokinesis", - long_desc = function(self, eff) return ("Your electrokinesis transcends normal limits. +%d%% Lightning damage and +%d%% Lightning damage penetration, and improved charged effects."):format(eff.power, eff.penetration) end, + desc = _t"Transcendent Electrokinesis", + long_desc = function(self, eff) return ("Your electrokinesis transcends normal limits. +%d%% Lightning damage and +%d%% Lightning damage penetration, and improved charged effects."):tformat(eff.power, eff.penetration) end, type = "mental", subtype = { lightning=true }, status = "beneficial", @@ -2878,14 +2878,14 @@ newEffect{ newEffect{ name = "PSI_DAMAGE_SHIELD", image = "talents/barrier.png", - desc = "Psionic Damage Shield", - long_desc = function(self, eff) return ("The target is surrounded by a psionic shield, absorbing %d/%d damage before it crumbles."):format(self.damage_shield_absorb, eff.power) end, + desc = _t"Psionic Damage Shield", + long_desc = function(self, eff) return ("The target is surrounded by a psionic shield, absorbing %d/%d damage before it crumbles."):tformat(self.damage_shield_absorb, eff.power) end, type = "mental", subtype = { psionic=true, shield=true }, status = "beneficial", parameters = { power=100 }, - on_gain = function(self, err) return "A psionic shield forms around #target#.", "+Shield" end, - on_lose = function(self, err) return "The psionic shield around #target# crumbles.", "-Shield" end, + on_gain = function(self, err) return _t"A psionic shield forms around #target#.", _t"+Shield" end, + on_lose = function(self, err) return _t"The psionic shield around #target# crumbles.", _t"-Shield" end, damage_feedback = function(self, eff, src, value) if eff.particle and eff.particle._shader and eff.particle._shader.shad and src and src.x and src.y then local r = -rng.float(0.2, 0.4) @@ -2917,12 +2917,12 @@ newEffect{ } newEffect{ - name = "UNSEEN_FORCE", desc = "Unseen Force", + name = "UNSEEN_FORCE", desc = _t"Unseen Force", image="talents/unseen_force.png", long_desc = function(self, eff) local hits = (eff.extrahit > 0 and "from "..eff.hits.." to "..(eff.hits + 1)) or ""..eff.hits return ("An unseen force strikes %s targets in a range of 5 around this creature ".. - "every turn, doing %d damage and knocking them back for %d tiles."):format(hits, eff.damage, eff.knockback) end, + "every turn, doing %d damage and knocking them back for %d tiles."):tformat(hits, eff.damage, eff.knockback) end, type = "mental", subtype = {psionic=true}, status = "beneficial", @@ -2963,8 +2963,8 @@ newEffect{ newEffect{ name = "PSIONIC_MAELSTROM", image = "talents/psionic_maelstrom.png", - desc = "Psionic Maelstrom", - long_desc = function(self, eff) return ("This creature is standing in the eye of a powerful storm of psionic forces."):format() end, + desc = _t"Psionic Maelstrom", + long_desc = function(self, eff) return ("This creature is standing in the eye of a powerful storm of psionic forces."):tformat() end, type = "mental", subtype = { psionic=true }, status = "beneficial", @@ -3013,8 +3013,8 @@ newEffect{ newEffect{ name = "CAUGHT_LIGHTNING", image = "talents/transcendent_electrokinesis.png", - desc = "Caught Lightning", - long_desc = function(self, eff) return ("Lightning Catcher has caught energy and is empowering you for +%d%% lightning damage and +%d to all stats."):format((eff.dur+1)*5, eff.dur+1) end, + desc = _t"Caught Lightning", + long_desc = function(self, eff) return ("Lightning Catcher has caught energy and is empowering you for +%d%% lightning damage and +%d to all stats."):tformat((eff.dur+1)*5, eff.dur+1) end, type = "mental", subtype = { lightning=true }, status = "beneficial", diff --git a/game/modules/tome/data/timed_effects/other.lua b/game/modules/tome/data/timed_effects/other.lua index 2f94a4d6b87201b61f7d6c5cb398317737d7bd99..3295241fa72839bcf7159d2837bdbd403b165259 100644 --- a/game/modules/tome/data/timed_effects/other.lua +++ b/game/modules/tome/data/timed_effects/other.lua @@ -28,8 +28,8 @@ local Combat = require "mod.class.interface.Combat" -- Elemental Surge effects here to avoid interaction with duration increases since so many can be up at once newEffect{ name = "ETHEREAL_FORM", image = "talents/displace_damage.png", - desc = "Ethereal Form", - long_desc = function(self, eff) return ("Ethereal Form bonuses reduced by %d%%"):format(eff.stacks * 5) end, + desc = _t"Ethereal Form", + long_desc = function(self, eff) return ("Ethereal Form bonuses reduced by %d%%"):tformat(eff.stacks * 5) end, type = "other", subtype = { }, status = "detrimental", @@ -61,7 +61,7 @@ newEffect{ newEffect{ name = "ELEMENTAL_SURGE_ARCANE", image = "talents/elemental_surge.png", - desc = "Elemental Surge: Arcane", + desc = _t"Elemental Surge: Arcane", long_desc = function(self, eff) return ("Spell and mind speed increased by 30%") end, type = "other", subtype = {elemental = true }, @@ -75,7 +75,7 @@ newEffect{ newEffect{ name = "ELEMENTAL_SURGE_PHYSICAL", image = "talents/elemental_surge.png", - desc = "Elemental Surge: Physical", + desc = _t"Elemental Surge: Physical", long_desc = function(self, eff) return ("Immune to detrimental physical effects") end, type = "other", subtype = {elemental = true }, @@ -88,7 +88,7 @@ newEffect{ newEffect{ name = "ELEMENTAL_SURGE_NATURE", image = "talents/elemental_surge.png", - desc = "Elemental Surge: Nature", + desc = _t"Elemental Surge: Nature", long_desc = function(self, eff) return ("Immune to detrimental magical effects") end, type = "other", subtype = {elemental = true }, @@ -101,8 +101,8 @@ newEffect{ newEffect{ name = "ELEMENTAL_SURGE_FIRE", image = "talents/elemental_surge.png", - desc = "Elemental Surge: Fire", - long_desc = function(self, eff) return ("All damage increased by %d%%"):format(eff.damage) end, + desc = _t"Elemental Surge: Fire", + long_desc = function(self, eff) return ("All damage increased by %d%%"):tformat(eff.damage) end, type = "other", subtype = {elemental = true }, status = "beneficial", @@ -114,8 +114,8 @@ newEffect{ newEffect{ name = "ELEMENTAL_SURGE_COLD", image = "talents/elemental_surge.png", - desc = "Elemental Surge: Cold", - long_desc = function(self, eff) return ("Armor increased by %d, deals %d ice damage when hit in melee."):format(eff.armor, eff.dam) end, + desc = _t"Elemental Surge: Cold", + long_desc = function(self, eff) return ("Armor increased by %d, deals %d ice damage when hit in melee."):tformat(eff.armor, eff.dam) end, type = "other", subtype = {elemental = true }, status = "beneficial", @@ -128,8 +128,8 @@ newEffect{ newEffect{ name = "ELEMENTAL_SURGE_LIGHTNING", image = "talents/elemental_surge.png", - desc = "Elemental Surge: Lightning", - long_desc = function(self, eff) return ("Movement speed increased by %d%%."):format(eff.move) end, + desc = _t"Elemental Surge: Lightning", + long_desc = function(self, eff) return ("Movement speed increased by %d%%."):tformat(eff.move) end, type = "other", subtype = {elemental = true }, status = "beneficial", @@ -141,8 +141,8 @@ newEffect{ newEffect{ name = "ELEMENTAL_SURGE_LIGHT", image = "talents/elemental_surge.png", - desc = "Elemental Surge: Light", - long_desc = function(self, eff) return ("All talent cooldowns reduced by %d%%."):format(eff.cooldown) end, + desc = _t"Elemental Surge: Light", + long_desc = function(self, eff) return ("All talent cooldowns reduced by %d%%."):tformat(eff.cooldown) end, type = "other", subtype = {elemental = true }, status = "beneficial", @@ -154,7 +154,7 @@ newEffect{ newEffect{ name = "SURGING_CIRCLES", image = "talents/celestial_surge.png", - desc = "Circle Surge", + desc = _t"Circle Surge", long_desc = function(self, eff) return [[Residual power from the surge is emanating from the circles. Shifting Shadows: +1 negative. Sanctity: +1 postive. @@ -167,12 +167,12 @@ newEffect{ newEffect{ name = "FLASH_SHIELD", image = "talents/flash_of_the_blade.png", - desc = "Protected by the Sun", + desc = _t"Protected by the Sun", long_desc = function(self, eff) return "The Sun has granted a brief immunity to all damage." end, type = "other", subtype = {}, status = "beneficial", - on_gain = function(self, err) return "#Target# whirls around and a radiant shield surrounds them!", "+Divine Shield" end, + on_gain = function(self, err) return _t"#Target# whirls around and a radiant shield surrounds them!", _t"+Divine Shield" end, parameters = {}, activate = function(self, eff) self:effectTemporaryValue(eff, "cancel_damage_chance", 100) @@ -185,14 +185,14 @@ newEffect{ -- type other because this is a core defensive mechanic in debuff form, it should not interact with saves newEffect{ name = "ABSORPTION_STRIKE", image = "talents/absorption_strike.png", - desc = "Absorption Strike", - long_desc = function(self, eff) return ("The target's light has been drained, reducing light resistance by %d%% and damage by %d%%."):format(eff.power, eff.numb) end, + desc = _t"Absorption Strike", + long_desc = function(self, eff) return ("The target's light has been drained, reducing light resistance by %d%% and damage by %d%%."):tformat(eff.power, eff.numb) end, type = "other", subtype = { sun=true, }, status = "detrimental", parameters = { power = 10, numb = 1 }, - on_gain = function(self, err) return "#Target# is drained from light!", "+Absorption Strike" end, - on_lose = function(self, err) return "#Target#'s light is back.", "-Absorption Strike" end, + on_gain = function(self, err) return _t"#Target# is drained from light!", _t"+Absorption Strike" end, + on_lose = function(self, err) return _t"#Target#'s light is back.", _t"-Absorption Strike" end, activate = function(self, eff) self:effectTemporaryValue(eff, "resists", {[DamageType.LIGHT]=-eff.power}) self:effectTemporaryValue(eff, "numbed", eff.numb) @@ -201,8 +201,8 @@ newEffect{ newEffect{ name = "ITEM_CHARM_PIERCING", image = "talents/intricate_tools.png", - desc = "Charm: Piercing", - long_desc = function(self, eff) return ("All damage penetration increased by %d%%."):format(eff.penetration) end, + desc = _t"Charm: Piercing", + long_desc = function(self, eff) return ("All damage penetration increased by %d%%."):tformat(eff.penetration) end, type = "other", subtype = { }, status = "beneficial", @@ -216,8 +216,8 @@ newEffect{ newEffect{ name = "ITEM_CHARM_POWERFUL", image = "talents/intricate_tools.png", - desc = "Charm: Damage", - long_desc = function(self, eff) return ("All damage increased by %d%%."):format(eff.damage) end, + desc = _t"Charm: Damage", + long_desc = function(self, eff) return ("All damage increased by %d%%."):tformat(eff.damage) end, type = "other", subtype = { }, status = "beneficial", @@ -231,8 +231,8 @@ newEffect{ newEffect{ name = "ITEM_CHARM_SAVIOR", image = "talents/intricate_tools.png", - desc = "Charm: Saves", - long_desc = function(self, eff) return ("All saves increased by %d."):format(eff.save) end, + desc = _t"Charm: Saves", + long_desc = function(self, eff) return ("All saves increased by %d."):tformat(eff.save) end, type = "other", subtype = { }, status = "beneficial", @@ -248,8 +248,8 @@ newEffect{ newEffect{ name = "ITEM_CHARM_EVASIVE", image = "talents/intricate_tools.png", - desc = "Charm: Evasion", - long_desc = function(self, eff) return ("%d%% chance to avoid weapon attacks"):format(eff.chance) end, + desc = _t"Charm: Evasion", + long_desc = function(self, eff) return ("%d%% chance to avoid weapon attacks"):tformat(eff.chance) end, type = "other", subtype = { }, status = "beneficial", @@ -263,8 +263,8 @@ newEffect{ newEffect{ name = "ITEM_CHARM_INNERVATING", image = "talents/intricate_tools.png", - desc = "Charm: Innervating", - long_desc = function(self, eff) return ("Fatigue reduced by %d%%."):format(eff.fatigue) end, + desc = _t"Charm: Innervating", + long_desc = function(self, eff) return ("Fatigue reduced by %d%%."):tformat(eff.fatigue) end, type = "other", subtype = { }, status = "beneficial", @@ -279,14 +279,14 @@ newEffect{ -- Design: Temporary immobility in exchange for a large stat buff. newEffect{ name = "TREE_OF_LIFE", image = "shockbolt/object/artifact/tree_of_life.png", - desc = "You have taken root!", + desc = _t"You have taken root!", long_desc = function(self, eff) return "You have taken root becoming one with nature. Or at least the ground. Your health, armor, and armor hardiness are improved but you cannot move." end, type = "other", subtype = { nature=true }, --status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#LIGHT_BLUE##Target# takes root.", "+Pinned" end, - on_lose = function(self, err) return "#LIGHT_BLUE##Target# is no longer a badass tree.", "-Pinned" end, + on_gain = function(self, err) return _t"#LIGHT_BLUE##Target# takes root.", _t"+Pinned" end, + on_lose = function(self, err) return _t"#LIGHT_BLUE##Target# is no longer a badass tree.", _t"-Pinned" end, activate = function(self, eff) self:effectTemporaryValue(eff, "never_move", 1) self:effectTemporaryValue(eff, "max_life", 300) @@ -313,8 +313,8 @@ newEffect{ newEffect{ name = "INFUSION_COOLDOWN", image = "effects/infusion_cooldown.png", - desc = "Infusion Saturation", - long_desc = function(self, eff) return ("The more you use infusions, the longer they will take to recharge (+%d cooldowns)."):format(eff.power) end, + desc = _t"Infusion Saturation", + long_desc = function(self, eff) return ("The more you use infusions, the longer they will take to recharge (+%d cooldowns)."):tformat(eff.power) end, charges = function(self, eff) return eff.power end, type = "other", subtype = { infusion=true }, @@ -330,8 +330,8 @@ newEffect{ newEffect{ name = "RUNE_COOLDOWN", image = "effects/rune_cooldown.png", - desc = "Runic Saturation", - long_desc = function(self, eff) return ("The more you use runes, the longer they will take to recharge (+%d cooldowns)."):format(eff.power) end, + desc = _t"Runic Saturation", + long_desc = function(self, eff) return ("The more you use runes, the longer they will take to recharge (+%d cooldowns)."):tformat(eff.power) end, charges = function(self, eff) return eff.power end, type = "other", subtype = { rune=true }, @@ -347,8 +347,8 @@ newEffect{ newEffect{ name = "TAINT_COOLDOWN", image = "effects/tainted_cooldown.png", - desc = "Tainted", - long_desc = function(self, eff) return ("The more you use taints, the longer they will take to recharge (+%d cooldowns)."):format(eff.power) end, + desc = _t"Tainted", + long_desc = function(self, eff) return ("The more you use taints, the longer they will take to recharge (+%d cooldowns)."):tformat(eff.power) end, type = "other", subtype = { taint=true }, status = "detrimental", @@ -363,8 +363,8 @@ newEffect{ newEffect{ name = "PATH_OF_THE_SUN", image = "talents/path_of_the_sun.png", - desc = "Path of the Sun", - long_desc = function(self, eff) return ("The target is able to instantly travel alongside Sun Paths."):format() end, + desc = _t"Path of the Sun", + long_desc = function(self, eff) return ("The target is able to instantly travel alongside Sun Paths."):tformat() end, type = "other", subtype = { sun=true, }, status = "beneficial", @@ -376,15 +376,15 @@ newEffect{ newEffect{ name = "TIME_PRISON", image = "talents/time_prison.png", - desc = "Time Prison", + desc = _t"Time Prison", long_desc = function(self, eff) return "The target is removed from the normal time stream, unable to act but unable to take any damage. Time does not pass for this creature." end, type = "other", subtype = { time=true }, status = "detrimental", tick_on_timeless = true, parameters = {}, - on_gain = function(self, err) return "#Target# is removed from time!", "+Out of Time" end, - on_lose = function(self, err) return "#Target# is returned to normal time.", "-Out of Time" end, + on_gain = function(self, err) return _t"#Target# is removed from time!", _t"+Out of Time" end, + on_lose = function(self, err) return _t"#Target# is returned to normal time.", _t"-Out of Time" end, activate = function(self, eff) eff.iid = self:addTemporaryValue("invulnerable", 1) eff.sid = self:addTemporaryValue("time_prison", 1) @@ -411,14 +411,14 @@ newEffect{ newEffect{ name = "TIME_SHIELD", image = "talents/time_shield.png", - desc = "Time Shield", - long_desc = function(self, eff) return ("The target is surrounded by a time distortion, absorbing %d/%d damage and sending it forward in time. While active all newly applied status effects durations are reduced by %d%%."):format(self.time_shield_absorb, eff.power, eff.time_reducer) end, + desc = _t"Time Shield", + long_desc = function(self, eff) return ("The target is surrounded by a time distortion, absorbing %d/%d damage and sending it forward in time. While active all newly applied status effects durations are reduced by %d%%."):tformat(self.time_shield_absorb, eff.power, eff.time_reducer) end, type = "other", subtype = { time=true, shield=true }, status = "beneficial", parameters = { power=10, dot_dur=5, time_reducer=20 }, - on_gain = function(self, err) return "The very fabric of time alters around #target#.", "+Time Shield" end, - on_lose = function(self, err) return "The fabric of time around #target# stabilizes to normal.", "-Time Shield" end, + on_gain = function(self, err) return _t"The very fabric of time alters around #target#.", _t"+Time Shield" end, + on_lose = function(self, err) return _t"The fabric of time around #target# stabilizes to normal.", _t"-Time Shield" end, on_aegis = function(self, eff, aegis) self.time_shield_absorb = self.time_shield_absorb + eff.power * aegis / 100 if core.shader.active(4) then @@ -468,14 +468,14 @@ newEffect{ newEffect{ name = "TIME_DOT", - desc = "Temporal Restoration Field", - long_desc = function(self, eff) return ("The time distortion has created a restoration field, healing the target for %d each turn."):format(eff.power) end, + desc = _t"Temporal Restoration Field", + long_desc = function(self, eff) return ("The time distortion has created a restoration field, healing the target for %d each turn."):tformat(eff.power) end, type = "other", subtype = { time=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "The powerful time-altering energies generate a restoration field on #target#.", "+Temporal Restoration Field" end, - on_lose = function(self, err) return "The fabric of time around #target# returns to normal.", "-Temporal Restoration Field" end, + on_gain = function(self, err) return _t"The powerful time-altering energies generate a restoration field on #target#.", _t"+Temporal Restoration Field" end, + on_lose = function(self, err) return _t"The fabric of time around #target# returns to normal.", _t"-Temporal Restoration Field" end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("time_shield", 1)) end, @@ -489,13 +489,13 @@ newEffect{ newEffect{ name = "GOLEM_OFS", - desc = "Golem out of sight", + desc = _t"Golem out of sight", long_desc = function(self, eff) return "The golem is out of sight of the alchemist; direct control will be lost!" end, type = "other", subtype = { miscellaneous=true }, status = "detrimental", parameters = { }, - on_gain = function(self, err) return "#LIGHT_RED##Target# is out of sight of its master; direct control will break!.", "+Out of sight" end, + on_gain = function(self, err) return _t"#LIGHT_RED##Target# is out of sight of its master; direct control will break!.", _t"+Out of sight" end, activate = function(self, eff) end, deactivate = function(self, eff) @@ -516,13 +516,13 @@ newEffect{ newEffect{ name = "AMBUSCADE_OFS", image = "talents/ambuscade.png", - desc = "Shadow out of sight", + desc = _t"Shadow out of sight", long_desc = function(self, eff) return "The shadow is out of sight of its host; direct control will be lost!" end, type = "other", subtype = { miscellaneous=true }, status = "detrimental", parameters = { }, - on_gain = function(self, err) return "#LIGHT_RED##Target# is out of sight of its master; direct control will break!.", "+Out of sight" end, + on_gain = function(self, err) return _t"#LIGHT_RED##Target# is out of sight of its master; direct control will break!.", _t"+Out of sight" end, activate = function(self, eff) end, deactivate = function(self, eff) @@ -543,13 +543,13 @@ newEffect{ newEffect{ name = "HUSK_OFS", image = "talents/animus_purge.png", - desc = "Husk out of sight", + desc = _t"Husk out of sight", long_desc = function(self, eff) return "The husk is out of sight of its host; direct control will be lost!" end, type = "other", subtype = { miscellaneous=true }, status = "detrimental", parameters = { }, - on_gain = function(self, err) return "#LIGHT_RED##Target# is out of sight of its master; direct control will break!.", "+Out of sight" end, + on_gain = function(self, err) return _t"#LIGHT_RED##Target# is out of sight of its master; direct control will break!.", _t"+Out of sight" end, activate = function(self, eff) end, deactivate = function(self, eff) @@ -571,14 +571,14 @@ newEffect{ newEffect{ name = "CONTINUUM_DESTABILIZATION", - desc = "Continuum Destabilization", - long_desc = function(self, eff) return ("The target has been affected by space or time manipulations and is becoming more resistant to them (+%d)."):format(eff.power) end, + desc = _t"Continuum Destabilization", + long_desc = function(self, eff) return ("The target has been affected by space or time manipulations and is becoming more resistant to them (+%d)."):tformat(eff.power) end, type = "other", subtype = { time=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# looks a little pale around the edges.", "+Destabilized" end, - on_lose = function(self, err) return "#Target# is firmly planted in reality.", "-Destabilized" end, + on_gain = function(self, err) return _t"#Target# looks a little pale around the edges.", _t"+Destabilized" end, + on_lose = function(self, err) return _t"#Target# is firmly planted in reality.", _t"-Destabilized" end, on_merge = function(self, old_eff, new_eff) -- Merge the continuum_destabilization local olddam = old_eff.power * old_eff.dur @@ -601,8 +601,8 @@ newEffect{ newEffect{ name = "SUMMON_DESTABILIZATION", - desc = "Summoning Destabilization", - long_desc = function(self, eff) return ("The more the target summons creatures the longer it will take to summon more (+%d turns)."):format(eff.power) end, + desc = _t"Summoning Destabilization", + long_desc = function(self, eff) return ("The more the target summons creatures the longer it will take to summon more (+%d turns)."):tformat(eff.power) end, type = "other", -- Type "other" so that nothing can dispel it subtype = { miscellaneous=true }, status = "detrimental", @@ -627,14 +627,14 @@ newEffect{ newEffect{ name = "DAMAGE_SMEARING", image = "talents/damage_smearing.png", - desc = "Damage Smearing", - long_desc = function(self, eff) return ("Damage received in the past is returned as %0.2f temporal damage per turn."):format(eff.dam) end, + desc = _t"Damage Smearing", + long_desc = function(self, eff) return ("Damage received in the past is returned as %0.2f temporal damage per turn."):tformat(eff.dam) end, type = "other", subtype = { time=true }, status = "detrimental", parameters = { dam=10 }, - on_gain = function(self, err) return "#Target# is taking damage received in the past!", "+Smeared" end, - on_lose = function(self, err) return "#Target# stops taking damage received in the past.", "-Smeared" end, + on_gain = function(self, err) return _t"#Target# is taking damage received in the past!", _t"+Smeared" end, + on_lose = function(self, err) return _t"#Target# stops taking damage received in the past.", _t"-Smeared" end, on_merge = function(self, old_eff, new_eff) -- Merge the flames! local olddam = old_eff.dam * old_eff.dur @@ -645,14 +645,14 @@ newEffect{ on_timeout = function(self, eff) local dead, val = self:takeHit(eff.dam, self, {special_death_msg="was smeared across all space and time"}) - game:delayedLogDamage(eff, self, val, ("%s%d %s#LAST#"):format(DamageType:get(DamageType.TEMPORAL).text_color or "#aaaaaa#", math.ceil(val), DamageType:get(DamageType.TEMPORAL).name), false) + game:delayedLogDamage(eff, self, val, ("%s%d %s#LAST#"):tformat(DamageType:get(DamageType.TEMPORAL).text_color or "#aaaaaa#", math.ceil(val), DamageType:get(DamageType.TEMPORAL).name), false) end, } newEffect{ name = "SEE_THREADS", image = "talents/see_the_threads.png", - desc = "See the Threads", - long_desc = function(self, eff) return ("You walk three different timelines, choosing the one you prefer at the end (current timeline: %d)."):format(eff.thread) end, + desc = _t"See the Threads", + long_desc = function(self, eff) return ("You walk three different timelines, choosing the one you prefer at the end (current timeline: %d)."):tformat(eff.thread) end, type = "other", subtype = { time=true }, status = "beneficial", @@ -715,7 +715,7 @@ newEffect{ newEffect{ name = "IMMINENT_PARADOX_CLONE", - desc = "Imminent Paradox Clone", + desc = _t"Imminent Paradox Clone", long_desc = function(self, eff) return "When the effect expires you'll be pulled into the past." end, type = "other", subtype = { time=true }, @@ -767,7 +767,7 @@ newEffect{ newEffect{ name = "PARADOX_CLONE", image = "talents/paradox_clone.png", - desc = "Paradox Clone", + desc = _t"Paradox Clone", long_desc = function(self, eff) return "You've been pulled into the past." end, type = "other", subtype = { time=true }, @@ -792,8 +792,8 @@ newEffect{ newEffect{ name = "MILITANT_MIND", image = "talents/militant_mind.png", - desc = "Militant Mind", - long_desc = function(self, eff) return ("Increases physical power, physical save, spellpower, spell save, mindpower, and mental save by %d."):format(eff.power) end, + desc = _t"Militant Mind", + long_desc = function(self, eff) return ("Increases physical power, physical save, spellpower, spell save, mindpower, and mental save by %d."):tformat(eff.power) end, type = "other", subtype = { miscellaneous=true }, status = "beneficial", @@ -818,13 +818,13 @@ newEffect{ newEffect{ name = "SEVER_LIFELINE", image = "talents/sever_lifeline.png", - desc = "Sever Lifeline", - long_desc = function(self, eff) return ("The target's lifeline is being cut. When the effect ends %d temporal damage will hit the target."):format(eff.power) end, + desc = _t"Sever Lifeline", + long_desc = function(self, eff) return ("The target's lifeline is being cut. When the effect ends %d temporal damage will hit the target."):tformat(eff.power) end, type = "other", subtype = { time=true }, status = "detrimental", parameters = {power=10000}, - on_gain = function(self, err) return "#Target#'s lifeline is being severed!", "+Sever Lifeline" end, + on_gain = function(self, err) return _t"#Target#'s lifeline is being severed!", _t"+Sever Lifeline" end, deactivate = function(self, eff) if not eff.src or eff.src.dead then return end if not eff.src:hasLOS(self.x, self.y) then return end @@ -835,15 +835,15 @@ newEffect{ newEffect{ name = "FADE_FROM_TIME", image = "talents/fade_from_time.png", - desc = "Fade From Time", + desc = _t"Fade From Time", long_desc = function(self, eff) return ("The target is partially removed from the timeline, reducing all damage dealt by %d%%, all damage received by %d%%, and the duration of all detrimental effects by %d%%."): - format(math.min(20,eff.dur * 2 + 2), eff.cur_power or eff.power, eff.cur_dur or eff.durred) end, + tformat(math.min(20,eff.dur * 2 + 2), eff.cur_power or eff.power, eff.cur_dur or eff.durred) end, type = "other", subtype = { time=true }, status = "beneficial", parameters = { power=10 ,durred = 15 }, - on_gain = function(self, err) return "#Target# has partially removed itself from the timeline.", "+Fade From Time" end, - on_lose = function(self, err) return "#Target# has returned fully to the timeline.", "-Fade From Time" end, + on_gain = function(self, err) return _t"#Target# has partially removed itself from the timeline.", _t"+Fade From Time" end, + on_lose = function(self, err) return _t"#Target# has returned fully to the timeline.", _t"-Fade From Time" end, on_merge = function(self, old_eff, new_eff) self:removeTemporaryValue("inc_damage", old_eff.dmgid) self:removeTemporaryValue("resists", old_eff.rstid) @@ -876,14 +876,14 @@ newEffect{ newEffect{ name = "SHADOW_VEIL", image = "talents/shadow_veil.png", - desc = "Shadow Veil", - long_desc = function(self, eff) return ("You veil yourself in shadows and let them control you. While in the veil you become immune to status effects, and gain %d%% all damage reduction. Each turn you blink to a nearby foe within range %d, hitting it for %d%% darkness weapon damage. While this goes on you cannot be stopped unless you are killed, and you cannot control your character."):format(eff.res, eff.range, eff.dam * 100) end, + desc = _t"Shadow Veil", + long_desc = function(self, eff) return ("You veil yourself in shadows and let them control you. While in the veil you become immune to status effects, and gain %d%% all damage reduction. Each turn you blink to a nearby foe within range %d, hitting it for %d%% darkness weapon damage. While this goes on you cannot be stopped unless you are killed, and you cannot control your character."):tformat(eff.res, eff.range, eff.dam * 100) end, type = "other", subtype = { darkness=true }, status = "beneficial", parameters = { res=10, dam=1.5, range=5, x=0, y=0}, - on_gain = function(self, err) return "#Target# is covered in a veil of shadows!", "+Assail" end, - on_lose = function(self, err) return "#Target# is no longer covered by shadows.", "-Assail" end, + on_gain = function(self, err) return _t"#Target# is covered in a veil of shadows!", _t"+Assail" end, + on_lose = function(self, err) return _t"#Target# is no longer covered by shadows.", _t"-Assail" end, activate = function(self, eff) eff.sefid = self:addTemporaryValue("negative_status_effect_immune", 1) eff.resid = self:addTemporaryValue("resists", {all=eff.res}) @@ -925,7 +925,7 @@ newEffect{ newEffect{ name = "ZERO_GRAVITY", image = "effects/zero_gravity.png", - desc = "Zero Gravity", + desc = _t"Zero Gravity", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("There is no gravity here; you float in the air. Movement is three times as slow, and any melee or archery blows have a chance to knockback. Maximum encumbrance is greatly increased.") end, decrease = 0, no_remove = true, @@ -950,8 +950,8 @@ newEffect{ newEffect{ name = "CURSE_OF_CORPSES", - desc = "Curse of Corpses", - short_desc = "Corpses", + desc = _t"Curse of Corpses", + short_desc = _t"Corpses", type = "other", subtype = { curse=true }, status = "beneficial", @@ -973,7 +973,7 @@ newEffect{ getRetchLevel = function(level) return math.max(1, level - 2) end, getRetchCD = function(level) return math.max(16, math.floor(30 - level * 2)) end, getReprieveChance = function(level) return Combat:combatLimit(level-4, 100, 35, 0, 50, 5) end, -- Limit < 100% - display_desc = function(self, eff) return ([[Curse of Corpses (power %0.1f)]]):format(eff.level) end, + display_desc = function(self, eff) return ([[Curse of Corpses (power %0.1f)]]):tformat(eff.level) end, long_desc = function(self, eff) local def, level, bonusLevel = self.tempeffect_def[self.EFF_CURSE_OF_CORPSES], eff.level, math.min(eff.unlockLevel, eff.level) return ([[An aura of death surrounds you. @@ -981,7 +981,7 @@ newEffect{ #CRIMSON#Power 1+: %sPower over Death: %+d%% damage against the undead. #CRIMSON#Power 2+: %s%+d Luck, %+d Strength, %+d Magic #CRIMSON#Power 3+: %sLiving Death: Ghoulish retch heals you. Once every %d turns, retch (level %d) when you fall below %d%% health -#CRIMSON#Power 4+: %sReprieve from Death: Humanoids you slay have a %d%% chance to rise to fight beside you as ghouls for 6 turns.]]):format( +#CRIMSON#Power 4+: %sReprieve from Death: Humanoids you slay have a %d%% chance to rise to fight beside you as ghouls for 6 turns.]]):tformat( def.getResistsUndead(eff, level), bonusLevel >= 1 and "#WHITE#" or "#GREY#", def.getIncDamageUndead(math.max(level, 1)), bonusLevel >= 2 and "#WHITE#" or "#GREY#", def.getLckChange(eff, math.max(level, 2)), def.getStrChange(math.max(level, 2)), def.getMagChange(math.max(level, 2)), @@ -1114,8 +1114,8 @@ newEffect{ newEffect{ name = "CURSE_OF_MADNESS", - desc = "Curse of Madness", - short_desc = "Madness", + desc = _t"Curse of Madness", + short_desc = _t"Madness", type = "other", subtype = { curse=true }, status = "beneficial", @@ -1138,7 +1138,7 @@ newEffect{ getManiaDamagePercent = function(level) return Combat:combatLimit(level - 4, 5, 15, 0, 8, 4) -- Limit > 5% end, - display_desc = function(self, eff) return ([[Curse of Madness (power %0.1f)]]):format(eff.level) end, + display_desc = function(self, eff) return ([[Curse of Madness (power %0.1f)]]):tformat(eff.level) end, long_desc = function(self, eff) local def, level, bonusLevel = self.tempeffect_def[self.EFF_CURSE_OF_MADNESS], eff.level, math.min(eff.unlockLevel, eff.level) return ([[You feel your grip on reality slipping. @@ -1146,7 +1146,7 @@ newEffect{ #CRIMSON#Power 1+: %sUnleashed: %+d%% critical damage, %+d%% off-hand weapon damage #CRIMSON#Power 2+: %s%+d Luck, %+d Dexterity #CRIMSON#Power 3+: %sConspirator: Your madness is contagious. Every time you critically damage a foe there is a %d%% chance to spread one of your current detrimental mental effect to them. -#CRIMSON#Power 4+: %sMania: Once per turn, when an attack does more than %0.1f%% of your life, the remaining cooldown of all your talents is reduced by 1.]]):format( +#CRIMSON#Power 4+: %sMania: Once per turn, when an attack does more than %0.1f%% of your life, the remaining cooldown of all your talents is reduced by 1.]]):tformat( def.getMindResistChange(eff, level), def.getConfusionImmuneChange(eff, level) * 100, bonusLevel >= 1 and "#WHITE#" or "#GREY#", def.getCombatCriticalPowerChange(math.max(level, 1)), def.getOffHandMultChange(math.max(level, 1)), bonusLevel >= 2 and "#WHITE#" or "#GREY#", def.getLckChange(eff, math.max(level, 2)), def.getDexChange(math.max(level, 2)), @@ -1324,8 +1324,8 @@ newEffect{ newEffect{ name = "CURSE_OF_SHROUDS", - desc = "Curse of Shrouds", - short_desc = "Shrouds", + desc = _t"Curse of Shrouds", + short_desc = _t"Shrouds", type = "other", subtype = { curse=true }, status = "beneficial", @@ -1344,7 +1344,7 @@ newEffect{ end, getConChange = function(level) return -1 + level * 2 end, getShroudResistsAllChange = function(level) return (level - 1) * 5 end, - display_desc = function(self, eff) return ([[Curse of Shrouds (power %0.1f)]]):format(eff.level) end, + display_desc = function(self, eff) return ([[Curse of Shrouds (power %0.1f)]]):tformat(eff.level) end, long_desc = function(self, eff) local def, level, bonusLevel = self.tempeffect_def[self.EFF_CURSE_OF_SHROUDS], eff.level, math.min(eff.unlockLevel, eff.level) return ([[A shroud of darkness seems to fall across your path. @@ -1352,7 +1352,7 @@ newEffect{ #CRIMSON#Power 1+: %sNightwalker: %+d Darkness Resistance, %+d%% Max Darkness Resistance, %+d See Invisible #CRIMSON#Power 2+: %s%+d Luck, %+d Constitution #CRIMSON#Power 3+: %sShroud of Passing: Your form seems to fade as you move, reducing all damage taken by %d%% for 1 turn after movement. -#CRIMSON#Power 4+: %sShroud of Death: The power of every kill seems to envelop you like a shroud, reducing all damage taken by %d%% for 3 turns.]]):format( +#CRIMSON#Power 4+: %sShroud of Death: The power of every kill seems to envelop you like a shroud, reducing all damage taken by %d%% for 3 turns.]]):tformat( -def.getShroudIncDamageChange(eff, level), bonusLevel >= 1 and "#WHITE#" or "#GREY#", def.getResistsDarknessChange(math.max(level, 1)), def.getResistsCapDarknessChange(math.max(level, 1)), def.getSeeInvisible(math.max(level, 1)), bonusLevel >= 2 and "#WHITE#" or "#GREY#", def.getLckChange(eff, math.max(level, 2)), def.getConChange(math.max(level, 2)), @@ -1419,8 +1419,8 @@ newEffect{ newEffect{ name = "SHROUD_OF_WEAKNESS", - desc = "Shroud of Weakness", - long_desc = function(self, eff) return ("The target is enveloped in a shroud that seems to hang upon it like a heavy burden. (Reduces damage dealt by %d%%)."):format(-eff.power) end, + desc = _t"Shroud of Weakness", + long_desc = function(self, eff) return ("The target is enveloped in a shroud that seems to hang upon it like a heavy burden. (Reduces damage dealt by %d%%)."):tformat(-eff.power) end, type = "other", subtype = { time=true }, status = "detrimental", @@ -1437,8 +1437,8 @@ newEffect{ newEffect{ name = "SHROUD_OF_PASSING", - desc = "Shroud of Passing", - long_desc = function(self, eff) return ("The target is enveloped in a shroud that seems to not only obscure it but also to fade its form (+%d%% resist all)."):format(eff.power) end, + desc = _t"Shroud of Passing", + long_desc = function(self, eff) return ("The target is enveloped in a shroud that seems to not only obscure it but also to fade its form (+%d%% resist all)."):tformat(eff.power) end, type = "other", subtype = { time=true }, status = "beneficial", @@ -1454,8 +1454,8 @@ newEffect{ newEffect{ name = "SHROUD_OF_DEATH", - desc = "Shroud of Death", - long_desc = function(self, eff) return ("The target is enveloped in a shroud that seems to not only obscure it but also to fade its form (+%d%% resist all)."):format(eff.power) end, + desc = _t"Shroud of Death", + long_desc = function(self, eff) return ("The target is enveloped in a shroud that seems to not only obscure it but also to fade its form (+%d%% resist all)."):tformat(eff.power) end, type = "other", subtype = { time=true }, status = "beneficial", @@ -1470,8 +1470,8 @@ newEffect{ newEffect{ name = "CURSE_OF_NIGHTMARES", - desc = "Curse of Nightmares", - short_desc = "Nightmares", + desc = _t"Curse of Nightmares", + short_desc = _t"Nightmares", type = "other", subtype = { curse=true }, status = "beneficial", @@ -1498,9 +1498,9 @@ newEffect{ getNightmareRadius = function(level) return 5 + (level - 4) * 2 end, display_desc = function(self, eff) if math.min(eff.unlockLevel, eff.level) >= 4 then - return ([[Curse of Nightmares (power %0.1f): %d%%]]):format(eff.level, eff.nightmareChance or 0) + return ([[Curse of Nightmares (power %0.1f): %d%%]]):tformat(eff.level, eff.nightmareChance or 0) else - return ([[Curse of Nightmares (power %0.1f)]]):format(eff.level) + return ([[Curse of Nightmares (power %0.1f)]]):tformat(eff.level) end end, long_desc = function(self, eff) @@ -1511,7 +1511,7 @@ newEffect{ #CRIMSON#Power 1+: %sRemoved from Reality: %+d Physical Resistance, %+d Maximum Physical Resistance #CRIMSON#Power 2+: %s%+d Luck, %+d Willpower #CRIMSON#Power 3+: %sHarrow: When a foe attempts to inflict a detrimental effect upon you, your harrowing aura retaliates against a random foe in range 10, dealing %d mind and %d darkness damage. -#CRIMSON#Power 4+: %sNightmare: Each time you are damaged by a foe there is a chance (currently %d%%) of triggering a radius %d nightmare (summon Terrors and chances to slow, deal %d Mind damage, and deal %d Darkness damage) for 8 turns. The chance grows each time you are struck but fades over time.]]):format( +#CRIMSON#Power 4+: %sNightmare: Each time you are damaged by a foe there is a chance (currently %d%%) of triggering a radius %d nightmare (summon Terrors and chances to slow, deal %d Mind damage, and deal %d Darkness damage) for 8 turns. The chance grows each time you are struck but fades over time.]]):tformat( def.getVisionsReduction(eff, level), bonusLevel >= 1 and "#WHITE#" or "#GREY#", def.getResistsPhysicalChange(math.max(level, 1)), def.getResistsCapPhysicalChange(math.max(level, 1)), bonusLevel >= 2 and "#WHITE#" or "#GREY#", def.getLckChange(eff, math.max(level, 2)), def.getWilChange(math.max(level, 2)), @@ -1598,7 +1598,7 @@ newEffect{ name = "terror", display = "h", color=colors.DARK_GREY, image="npc/horror_eldritch_nightmare_horror.png", blood_color = colors.BLUE, - desc = "A formless terror that seems to cut through the air, and its victims, like a knife.", + desc = _t"A formless terror that seems to cut through the air, and its victims, like a knife.", type = "horror", subtype = "eldritch", rank = 2, size_category = 2, @@ -1706,8 +1706,8 @@ newEffect{ newEffect{ name = "CURSE_OF_MISFORTUNE", - desc = "Curse of Misfortune", - short_desc = "Misfortune", + desc = _t"Curse of Misfortune", + short_desc = _t"Misfortune", type = "other", subtype = { curse=true }, status = "beneficial", @@ -1725,7 +1725,7 @@ newEffect{ getCunChange = function(level) return -1 + level * 2 end, getMissedOpportunities = function(level) return Combat:combatTalentLimit(math.max(1, level-2), 25, 10, 20) end, getUnfortunateEndIncrease = function(level) return Combat:combatTalentLimit(math.max(1, level-3), 100, 40, 60) end, -- Limit < 100% - display_desc = function(self, eff) return ([[Curse of Misfortune (power %0.1f)]]):format(eff.level) end, + display_desc = function(self, eff) return ([[Curse of Misfortune (power %0.1f)]]):tformat(eff.level) end, long_desc = function(self, eff) local def, level, bonusLevel = self.tempeffect_def[self.EFF_CURSE_OF_MISFORTUNE], eff.level, math.min(eff.unlockLevel, eff.level) @@ -1734,7 +1734,7 @@ newEffect{ #CRIMSON#Power 1+: %sMissplaced Endeavours: The endeavours of those around you begin to fail (+%d%% chance to avoid traps). #CRIMSON#Power 2+: %s%+d Luck, %+d Cunning #CRIMSON#Power 3+: %sMissed Opportunities: Opportunities are fleeting, and those close to you begin to miss them (+%d%% evasion). -#CRIMSON#Power 4+: %sUnfortunate End: The damage you deal will increase by %d%% if the increase would be enough to kill your opponent.]]):format( +#CRIMSON#Power 4+: %sUnfortunate End: The damage you deal will increase by %d%% if the increase would be enough to kill your opponent.]]):tformat( bonusLevel >= 1 and "#WHITE#" or "#GREY#", def.getMissplacedEndeavours(math.max(level, 1)), bonusLevel >= 2 and "#WHITE#" or "#GREY#", def.getLckChange(eff, math.max(level, 2)), def.getCunChange(math.max(level, 2)), bonusLevel >= 3 and "#WHITE#" or "#GREY#", def.getMissedOpportunities(math.max(level, 3)), @@ -1796,7 +1796,7 @@ newEffect{ newEffect{ name = "PROB_TRAVEL_UNSTABLE", image = "talents/probability_travel.png", - desc = "Unstable Probabilites", + desc = _t"Unstable Probabilites", long_desc = function(self, eff) return "The target has recently blinked through a wall using probability travel." end, type = "other", subtype = { time=true, space=true }, @@ -1812,7 +1812,7 @@ newEffect{ newEffect{ name = "CURSED_FORM", image = "talents/seethe.png", - desc = "Cursed Form", + desc = _t"Cursed Form", type = "other", subtype = { curse=true }, status = "beneficial", @@ -1821,12 +1821,12 @@ newEffect{ cancel_on_level_change = true, parameters = {}, long_desc = function(self, eff) - local desc = "The target's unnatural body has responded to damage taken." + local desc = _t"The target's unnatural body has responded to damage taken." if (eff.incDamageChange or 0) > 0 then - desc = desc..(" All damage that the target inflicts is increased by %d%%."):format(eff.incDamageChange) + desc = desc..(" All damage that the target inflicts is increased by %d%%."):tformat(eff.incDamageChange) end if (eff.statChange or 0) > 0 then - desc = desc..(" Strength and Willpower are increased by %d. Poisons and diseases have a %d%% chance of being neutralized each turn."):format(eff.statChange, eff.neutralizeChance) + desc = desc..(" Strength and Willpower are increased by %d. Poisons and diseases have a %d%% chance of being neutralized each turn."):tformat(eff.statChange, eff.neutralizeChance) end return desc end, @@ -1912,13 +1912,13 @@ newEffect{ -- Predator is purely for the player's information newEffect{ name = "PREDATOR", image = "talents/mark_prey.png", - desc = "Marked Prey", + desc = _t"Marked Prey", no_stop_enter_worlmap = true, decrease = 0, cancel_on_level_change = true, long_desc = function(self, eff) - local desc = "Hunting:" - local desc2 = ("\n%d%% Received damage reduction against:"):format(eff.power) + local desc = _t"Hunting:" + local desc2 = ("\n%d%% Received damage reduction against:"):tformat(eff.power) if not game.level then return desc..desc2 end local preys = {} @@ -1928,12 +1928,12 @@ newEffect{ table.sort(preys, "rank") for _, p in ripairs(preys) do local mprank, mpcolour = p:TextRank() - desc = desc..("\n- %s%s#LAST#"):format(mpcolour, p.name:capitalize()) + desc = desc..("\n- %s%s#LAST#"):tformat(mpcolour, p.name:capitalize()) end local subtypes_list = table.get(self, "mark_prey2", game.level.id) for st, _ in pairs(subtypes_list or {}) do - desc2 = desc2..("\n- #ffa0ff#%s#LAST#"):format(tostring(st):capitalize()) + desc2 = desc2..("\n- #ffa0ff#%s#LAST#"):tformat(tostring(st):capitalize()) end return desc..desc2 @@ -1947,12 +1947,12 @@ newEffect{ newEffect{ name = "FADED", image = "talents/shadow_fade.png", - desc = "Faded", + desc = _t"Faded", long_desc = function(self, eff) return "The target has faded and is no longer taking damage." end, type = "other", subtype = { }, status = "beneficial", - on_gain = function(self, err) return "#Target# fades!", "+Faded" end, + on_gain = function(self, err) return _t"#Target# fades!", _t"+Faded" end, parameters = {}, activate = function(self, eff) eff.iid = self:addTemporaryValue("invulnerable", 1) @@ -1971,7 +1971,7 @@ newEffect{ -- Borrowed Time and the Borrowed Time stun effect newEffect{ name = "HIGHBORN_S_BLOOM", image = "talents/highborn_s_bloom.png", - desc = "Highborn's Bloom", + desc = _t"Highborn's Bloom", long_desc = function(self, eff) return "The target is using talents without consuming resources." end, type = "other", subtype = { arcane=true }, @@ -1987,7 +1987,7 @@ newEffect{ newEffect{ name = "VICTORY_RUSH_ZIGUR", image = "talents/arcane_destruction.png", - desc = "Victory Rush", + desc = _t"Victory Rush", long_desc = function(self, eff) return "The thrill of victory makes this creature invulnerable." end, type = "other", subtype = { arcane=true }, @@ -2003,8 +2003,8 @@ newEffect{ newEffect{ name = "SOLIPSISM", image = "talents/solipsism.png", - desc = "Solipsism", - long_desc = function(self, eff) return ("This creature has fallen into a solipsistic state and is caught up in its own egoic thoughts (-%d%% global speed)."):format(eff.power * 100) end, + desc = _t"Solipsism", + long_desc = function(self, eff) return ("This creature has fallen into a solipsistic state and is caught up in its own egoic thoughts (-%d%% global speed)."):tformat(eff.power * 100) end, type = "other", subtype = { psionic=true }, status = "detrimental", @@ -2021,8 +2021,8 @@ newEffect{ newEffect{ name = "CLARITY", image = "talents/clarity.png", - desc = "Clarity", - long_desc = function(self, eff) return ("The creature has found a state of clarity and sees the world for what it is (+%d%% global speed)."):format(eff.power * 100) end, + desc = _t"Clarity", + long_desc = function(self, eff) return ("The creature has found a state of clarity and sees the world for what it is (+%d%% global speed)."):tformat(eff.power * 100) end, type = "other", subtype = { psionic=true }, status = "beneficial", @@ -2039,8 +2039,8 @@ newEffect{ newEffect{ name = "DREAMSCAPE", image = "talents/dreamscape.png", - desc = "Dreamscape", - long_desc = function(self, eff) return ("This target has invaded %s's dreams and has gained a %d%% bonus to all damage."):format(eff.target.name, eff.power) end, + desc = _t"Dreamscape", + long_desc = function(self, eff) return ("This target has invaded %s's dreams and has gained a %d%% bonus to all damage."):tformat(eff.target.name, eff.power) end, type = "other", subtype = { psionic=true }, status = "beneficial", @@ -2250,7 +2250,7 @@ newEffect{ newEffect{ name = "REVISIONIST_HISTORY", image = "talents/revisionist_history.png", - desc = "Revisionist History", + desc = _t"Revisionist History", long_desc = function(self, eff) return "While this effect holds you can decide recent history did not happen the way it did." end, type = "other", subtype = { time=true }, @@ -2303,7 +2303,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_FIRE", - desc = "Oil mist", + desc = _t"Oil mist", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: +10% fire damage, -10% fire resistance, -10% armour, -2 sight range.") end, decrease = 0, no_remove = true, @@ -2324,7 +2324,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_COLD", - desc = "Grave chill", + desc = _t"Grave chill", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: +10% cold damage, -10% cold resistance, -10% physical save, -20% confusion immunity.") end, decrease = 0, no_remove = true, @@ -2345,7 +2345,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_LIGHTNING", - desc = "Static discharge", + desc = _t"Static discharge", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: +10% lightning damage, -10% lightning resistance, -10% physical power, -20% stun immunity.") end, decrease = 0, no_remove = true, @@ -2366,7 +2366,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_ACID", - desc = "Noxious fumes", + desc = _t"Noxious fumes", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: +10% acid damage, -10% acid resistance, -10% defense, -20% disarm immunity.") end, decrease = 0, no_remove = true, @@ -2387,7 +2387,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_DARKNESS", - desc = "Echoes of the void", + desc = _t"Echoes of the void", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: +10% darkness damage, -10% darkness resistance, -10% mental save, -20% fear immunity.") end, decrease = 0, no_remove = true, @@ -2408,7 +2408,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_MIND", - desc = "Eerie silence", + desc = _t"Eerie silence", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: +10% mind damage, -10% mind resistance, -10% spellpower, -20% silence immunity.") end, decrease = 0, no_remove = true, @@ -2429,7 +2429,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_LIGHT", - desc = "Aura of light", + desc = _t"Aura of light", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: +10% light damage, -10% light resistance, -10% accuracy, -20% blind immunity.") end, decrease = 0, no_remove = true, @@ -2450,7 +2450,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_ARCANE", - desc = "Aether residue", + desc = _t"Aether residue", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: +10% arcane damage, -10% arcane resistance, -10% armour hardiness, -20% stoning immunity.") end, decrease = 0, no_remove = true, @@ -2471,7 +2471,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_TEMPORAL", - desc = "Impossible geometries", + desc = _t"Impossible geometries", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: +10% temporal damage, -10% temporal resistance, -10% spell save, -20% pinning immunity.") end, decrease = 0, no_remove = true, @@ -2492,7 +2492,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_PHYSICAL", - desc = "Uncontrolled anger", + desc = _t"Uncontrolled anger", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: +10% physical damage, -10% physical resistance, -10% mindpower, -20% knockback immunity.") end, decrease = 0, no_remove = true, @@ -2513,7 +2513,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_BLIGHT", - desc = "Miasma", + desc = _t"Miasma", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: +10% blight damage, -10% blight resistance, -20% healing mod, -20% disease immunity.") end, decrease = 0, no_remove = true, @@ -2534,7 +2534,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_NATURE", - desc = "Slimy floor", + desc = _t"Slimy floor", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: +10% nature damage, -10% nature resistance, -10% ranged defense, -20% poison immunity.") end, decrease = 0, no_remove = true, @@ -2555,7 +2555,7 @@ newEffect{ newEffect{ name = "VAULTED", image = "talents/time_prison.png", - desc = "In Vault", + desc = _t"In Vault", long_desc = function(self, eff) return "The target is part of a vault and cannot act until it has been openend." end, decrease = 0, no_remove = true, type = "other", @@ -2582,14 +2582,14 @@ newEffect{ newEffect{ name = "CAUTERIZE", image = "talents/cauterize.png", - desc = "Cauterize", - long_desc = function(self, eff) return ("Your body is cauterizing, burning for %0.2f damage each turn."):format(eff.dam) end, + desc = _t"Cauterize", + long_desc = function(self, eff) return ("Your body is cauterizing, burning for %0.2f damage each turn."):tformat(eff.dam) end, type = "other", subtype = { fire=true }, status = "detrimental", parameters = { dam=10 }, - on_gain = function(self, err) return "#CRIMSON##Target# is wreathed in flames on the brink of death!", "+Cauterize" end, - on_lose = function(self, err) return "#CRIMSON#The flames around #target# vanish.", "-Cauterize" end, + on_gain = function(self, err) return _t"#CRIMSON##Target# is wreathed in flames on the brink of death!", _t"+Cauterize" end, + on_lose = function(self, err) return _t"#CRIMSON#The flames around #target# vanish.", _t"-Cauterize" end, on_merge = function(self, old_eff, new_eff) old_eff.dur = new_eff.dur old_eff.dam = old_eff.dam + new_eff.dam @@ -2613,13 +2613,13 @@ newEffect{ local dead, val = self:takeHit(eff.dam, self, {special_death_msg="burnt to death by cauterize"}) local srcname = self.x and self.y and game.level.map.seens(self.x, self.y) and self.name:capitalize() or "Something" - game:delayedLogDamage(eff, self, val, ("%s%d %s#LAST#"):format(DamageType:get(DamageType.FIRE).text_color or "#aaaaaa#", math.ceil(val), DamageType:get(DamageType.FIRE).name), false) + game:delayedLogDamage(eff, self, val, ("%s%d %s#LAST#"):tformat(DamageType:get(DamageType.FIRE).text_color or "#aaaaaa#", math.ceil(val), DamageType:get(DamageType.FIRE).name), false) end, } newEffect{ name = "EIDOLON_PROTECT", image = "shockbolt/npc/unknown_unknown_the_eidolon.png", - desc = "Protected by the Eidolon", + desc = _t"Protected by the Eidolon", long_desc = function(self, eff) return "The target is protected by the Eidolon, no creature may harm it (except self-harm)." end, zone_wide_effect = true, decrease = 0, no_remove = true, @@ -2636,15 +2636,15 @@ newEffect{ newEffect{ name = "CLOAK_OF_DECEPTION", image = "shockbolt/object/artifact/black_cloak.png", - desc = "Cloak of Deception", + desc = _t"Cloak of Deception", long_desc = function(self, eff) return "The target is under the effect of the cloak of deception, making it look human." end, decrease = 0, no_remove = true, type = "other", subtype = { undead=true }, status = "neutral", parameters = {}, - on_gain = function(self, err) return ("#LIGHT_BLUE#An illusion appears around #Target# making %s appear human."):format(self:him_her()), "+CLOAK OF DECEPTION" end, - on_lose = function(self, err) return "#LIGHT_BLUE#The illusion covering #Target# disappears.", "-CLOAK OF DECEPTION" end, + on_gain = function(self, err) return ("#LIGHT_BLUE#An illusion appears around #Target# making %s appear human."):tformat(self:him_her()), "+CLOAK OF DECEPTION" end, + on_lose = function(self, err) return _t"#LIGHT_BLUE#The illusion covering #Target# disappears.", _t"-CLOAK OF DECEPTION" end, activate = function(self, eff) self.old_faction_cloak = self.faction self.faction = "allied-kingdoms" @@ -2663,15 +2663,15 @@ newEffect{ newEffect{ name = "SUFFOCATING", - desc = "Suffocating", - long_desc = function(self, eff) return ("You are suffocating! Each turn you lose an ever increasing percent of your total life (currently %d%%)"):format(eff.dam) end, + desc = _t"Suffocating", + long_desc = function(self, eff) return ("You are suffocating! Each turn you lose an ever increasing percent of your total life (currently %d%%)"):tformat(eff.dam) end, type = "other", subtype = { suffocating=true }, status = "detrimental", decrease = 0, no_remove = true, parameters = { dam=20 }, - on_gain = function(self, err) return "#Target# is suffocating.", "+SUFFOCATING" end, - on_lose = function(self, err) return "#Target# can breathe again.", "-Suffocating" end, + on_gain = function(self, err) return _t"#Target# is suffocating.", _t"+SUFFOCATING" end, + on_lose = function(self, err) return _t"#Target# can breathe again.", _t"-Suffocating" end, on_timeout = function(self, eff) if not self.is_suffocating then self:removeEffect(self.EFF_SUFFOCATING, false, true) @@ -2689,10 +2689,10 @@ newEffect{ newEffect{ name = "ANTIMAGIC_DISRUPTION", - desc = "Antimagic Disruption", + desc = _t"Antimagic Disruption", long_desc = function(self, eff) local chance = self:attr("spell_failure") or 0 - return ("Your arcane powers are disrupted by your antimagic equipment. Arcane talents fail %d%% of the time and arcane sustains have a %0.1f%% chance to deactivate each turn."):format(chance, chance/10) + return ("Your arcane powers are disrupted by your antimagic equipment. Arcane talents fail %d%% of the time and arcane sustains have a %0.1f%% chance to deactivate each turn."):tformat(chance, chance/10) end, type = "other", subtype = { antimagic=true }, @@ -2709,7 +2709,7 @@ newEffect{ newEffect{ name = "SWIFT_HANDS_CD", image = "talents/swift_hands.png", - desc = "Swift Hands", + desc = _t"Swift Hands", long_desc = function(self, eff) return "You swaped an item without taking time this turn." end, type = "other", subtype = { prodigy=true }, @@ -2722,7 +2722,7 @@ newEffect{ newEffect{ name = "HUNTER_PLAYER", image = "talents/hunted_player.png", - desc = "Hunter!", + desc = _t"Hunter!", long_desc = function(self, eff) return "Knows where you are!" end, type = "other", subtype = { madness=true }, @@ -2737,8 +2737,8 @@ newEffect{ newEffect{ name = "THROUGH_THE_CROWD", image = "talents/through_the_crowd.png", - desc = "Through The Crowd", - long_desc = function(self, eff) return ("Increases physical save, spell save, and mental save by %d. Global speed increased by %d%%."):format(eff.power * 10, util.bound(eff.power, 0, 5) * 3) end, + desc = _t"Through The Crowd", + long_desc = function(self, eff) return ("Increases physical save, spell save, and mental save by %d. Global speed increased by %d%%."):tformat(eff.power * 10, util.bound(eff.power, 0, 5) * 3) end, type = "other", subtype = { miscellaneous=true }, status = "beneficial", @@ -2759,14 +2759,14 @@ newEffect{ newEffect{ name = "RELOAD_DISARMED", image = "talents/disarm.png", - desc = "Reloading", + desc = _t"Reloading", long_desc = function(self, eff) return "The target has replenished some ammo." end, type = "other", subtype = { disarm=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is disarmed!", "+Disarmed" end, - on_lose = function(self, err) return "#Target# rearms.", "-Disarmed" end, + on_gain = function(self, err) return _t"#Target# is disarmed!", _t"+Disarmed" end, + on_lose = function(self, err) return _t"#Target# rearms.", _t"-Disarmed" end, activate = function(self, eff) self:removeEffect(self.EFF_COUNTER_ATTACKING) -- Cannot parry or counterattack while disarmed self:removeEffect(self.EFF_DUAL_WEAPON_DEFENSE) @@ -2779,13 +2779,13 @@ newEffect{ newEffect{ name = "SPACETIME_TUNING", image = "talents/spacetime_tuning.png", - desc = "Spacetime Tuning", - long_desc = function(self, eff) return ("Tuning Paradox at a rate of %+d per turn."):format(eff.power) end, + desc = _t"Spacetime Tuning", + long_desc = function(self, eff) return ("Tuning Paradox at a rate of %+d per turn."):tformat(eff.power) end, type = "other", subtype = { time=true }, status = "beneficial", parameters = { power=10}, - on_gain = function(self, err) return "#Target# retunes the fabric of spacetime.", "+Spacetime Tuning" end, + on_gain = function(self, err) return _t"#Target# retunes the fabric of spacetime.", _t"+Spacetime Tuning" end, on_timeout = function(self, eff) self:callTalent(self.T_SPACETIME_TUNING, "tuneParadox") -- adjusts paradox level end, @@ -2803,9 +2803,9 @@ newEffect{ newEffect{ name = "TIME_STOP", image = "talents/time_stop.png", - desc = "Time Stop", + desc = _t"Time Stop", long_desc = function(self, eff) - return ("The target has stopped time and is dealing %d%% less damage."):format(eff.power) + return ("The target has stopped time and is dealing %d%% less damage."):tformat(eff.power) end, charges = function(self, eff) local charges = math.floor(self.energy.value/1000) - 1 @@ -2843,8 +2843,8 @@ newEffect{ newEffect{ name = "TEMPORAL_REPRIEVE", image = "talents/temporal_reprieve.png", - desc = "Temporal Reprieve", - long_desc = function(self, eff) return ("This target has retreated to a safe place."):format() end, + desc = _t"Temporal Reprieve", + long_desc = function(self, eff) return ("This target has retreated to a safe place."):tformat() end, type = "other", subtype = { time=true }, status = "beneficial", @@ -2918,7 +2918,7 @@ newEffect{ newEffect{ name = "TEMPORAL_FUGUE", image = "talents/temporal_fugue.png", - desc = "Temporal Fugue", + desc = _t"Temporal Fugue", long_desc = function(self, eff) return "This target is splitting all damage with its fugue clones." end, type = "other", subtype = { time=true }, @@ -2957,7 +2957,7 @@ newEffect{ if target ~= self then target.turn_procs.temporal_fugue_damage_target = true target:takeHit(cb.value, src) - game:delayedLogDamage(src or self, self, 0, ("#STEEL_BLUE#(%d shared)#LAST#"):format(cb.value), nil) + game:delayedLogDamage(src or self, self, 0, ("#STEEL_BLUE#(%d shared)#LAST#"):tformat(cb.value), nil) target.turn_procs.temporal_fugue_damage_target = nil end end @@ -2997,13 +2997,13 @@ newEffect{ newEffect{ name = "DRACONIC_WILL", image = "talents/draconic_will.png", - desc = "Draconic Will", + desc = _t"Draconic Will", long_desc = function(self, eff) return "The target is immune to all detrimental effects." end, type = "other", subtype = { nature=true }, status = "beneficial", - on_gain = function(self, err) return "#Target#'s skin hardens.", "+Draconic Will" end, - on_lose = function(self, err) return "#Target#'s skin is back to normal.", "-Draconic Will" end, + on_gain = function(self, err) return _t"#Target#'s skin hardens.", _t"+Draconic Will" end, + on_lose = function(self, err) return _t"#Target#'s skin is back to normal.", _t"-Draconic Will" end, parameters = { }, activate = function(self, eff) self:effectTemporaryValue(eff, "negative_status_effect_immune", 1) @@ -3012,14 +3012,14 @@ newEffect{ newEffect{ name = "REALITY_SMEARING", image = "talents/reality_smearing.png", - desc = "Reality Smearing", - long_desc = function(self, eff) return ("Damage received in the past is returned as %0.2f paradox damage per turn."):format(eff.paradox) end, + desc = _t"Reality Smearing", + long_desc = function(self, eff) return ("Damage received in the past is returned as %0.2f paradox damage per turn."):tformat(eff.paradox) end, type = "other", subtype = { time=true }, status = "detrimental", parameters = { paradox=10 }, - on_gain = function(self, err) return "Reality smears around #Target#.", "+Smearing" end, - on_lose = function(self, err) return "Reality around #Target# is coherent again.", "-Smearing" end, + on_gain = function(self, err) return _t"Reality smears around #Target#.", _t"+Smearing" end, + on_lose = function(self, err) return _t"Reality around #Target# is coherent again.", _t"-Smearing" end, on_merge = function(self, old_eff, new_eff) -- Merge the flames! local oldparadox = old_eff.paradox * old_eff.dur @@ -3046,12 +3046,12 @@ newEffect{ newEffect{ name = "AEONS_STASIS", - desc = "Aeons Stasis", + desc = _t"Aeons Stasis", long_desc = function(self, eff) return "The target is in temporal stasis." end, type = "other", decrease = 0, no_remove = true, subtype = { temporal=true }, status = "beneficial", - on_lose = function(self, err) return "#Target#'s is back to the normal timeflow.", "-Aeons Stasis" end, + on_lose = function(self, err) return _t"#Target#'s is back to the normal timeflow.", _t"-Aeons Stasis" end, parameters = { }, activate = function(self, eff) self:effectTemporaryValue(eff, "status_effect_immune", 1) @@ -3095,8 +3095,8 @@ newEffect{ newEffect{ name = "UNSTOPPABLE", image = "talents/unstoppable.png", - desc = "Unstoppable", - long_desc = function(self, eff) return ("The target is unstoppable! It refuses to die and cannot heal. When the effect ends, it will heal %d Life (%d%% of maximum life per foe slain during the frenzy)."):format(eff.kills * eff.hp_per_kill * self.max_life / 100, eff.hp_per_kill) end, + desc = _t"Unstoppable", + long_desc = function(self, eff) return ("The target is unstoppable! It refuses to die and cannot heal. When the effect ends, it will heal %d Life (%d%% of maximum life per foe slain during the frenzy)."):tformat(eff.kills * eff.hp_per_kill * self.max_life / 100, eff.hp_per_kill) end, type = "other", subtype = { frenzy=true }, status = "beneficial", @@ -3117,8 +3117,8 @@ newEffect{ newEffect{ name = "2H_PENALTY", image = "talents/unstoppable.png", - desc = "Hit Penalty", - long_desc = function(self, eff) return ("The target is using a two handed weapon in a single hand, reducing accuracy, physical power, spellpower and mindpower by %d%% (based on size); also all damage procs from your offhand are reduced by 50%%."):format(20 - math.min(self.size_category - 4, 4) * 5) end, + desc = _t"Hit Penalty", + long_desc = function(self, eff) return ("The target is using a two handed weapon in a single hand, reducing accuracy, physical power, spellpower and mindpower by %d%% (based on size); also all damage procs from your offhand are reduced by 50%%."):tformat(20 - math.min(self.size_category - 4, 4) * 5) end, type = "other", decrease = 0, no_remove = true, subtype = { combat=true, penalty=true }, status = "detrimental", @@ -3131,20 +3131,20 @@ newEffect{ newEffect{ name = "TWIST_FATE", image = "talents/twist_fate.png", - desc = "Twist Fate", + desc = _t"Twist Fate", long_desc = function(self, eff) local t = self:getTalentFromId(eff.talent) return ([[Currently Twisted Anomlay: %s - %s]]):format(t.name or "none", t.info(self, t) or "none") + %s]]):tformat(t.name or "none", t.info(self, t) or "none") end, type = "other", subtype = { time=true }, status = "detrimental", parameters = { paradox=0, twisted=false }, - on_gain = function(self, err) return nil, "+Twist Fate" end, - on_lose = function(self, err) return nil, "-Twist Fate" end, + on_gain = function(self, err) return nil, _t"+Twist Fate" end, + on_lose = function(self, err) return nil, _t"-Twist Fate" end, activate = function(self, eff) if core.shader.allow("adv") then eff.particle1, eff.particle2 = self:addParticles3D("volumetric", {kind="fast_sphere", appear=10, radius=1.6, twist=30, density=30, growSpeed=0.004, scrollingSpeed=-0.004, img="continuum_01_3"}) @@ -3170,15 +3170,15 @@ newEffect{ -- Dummy effect for particles newEffect{ name = "WARDEN_S_TARGET", image = "talents/warden_s_focus.png", - desc = "Warden's Focus Target", - long_desc = function(self, eff) return ("%s is focusing on this target."):format(eff.src.name) end, + desc = _t"Warden's Focus Target", + long_desc = function(self, eff) return ("%s is focusing on this target."):tformat(eff.src.name) end, type = "other", subtype = { tactic=true }, status = "detrimental", parameters = {}, remove_on_clone = true, decrease = 0, - on_gain = function(self, err) return nil, "+Warden's Focus" end, - on_lose = function(self, err) return nil, "-Warden's Focus" end, + on_gain = function(self, err) return nil, _t"+Warden's Focus" end, + on_lose = function(self, err) return nil, _t"-Warden's Focus" end, on_timeout = function(self, eff) local p = eff.src:hasEffect(eff.src.EFF_WARDEN_S_FOCUS) if not p or p.target ~= self or eff.src.dead or not game.level:hasEntity(eff.src) or core.fov.distance(self.x, self.y, eff.src.x, eff.src.y) > 10 then @@ -3199,19 +3199,19 @@ newEffect{ newEffect{ name = "DEATH_DREAM", image = "talents/sleep.png", - desc = "Death in a Dream", + desc = _t"Death in a Dream", type = "other", subtype={mind=true}, status = "detrimental", - long_desc = function(self, eff) return ("The target had breathed in noxious sleep-induced fumes and is losing %d life per turn."):format(eff.power) end, + long_desc = function(self, eff) return ("The target had breathed in noxious sleep-induced fumes and is losing %d life per turn."):tformat(eff.power) end, on_timeout = function(self, eff) local dead, val = self:takeHit(eff.power, self, {special_death_msg="killed in a dream"}) - game:delayedLogDamage(eff, self, val, ("%s%d %s#LAST#"):format(DamageType:get(DamageType.MIND).text_color or "#aaaaaa#", math.ceil(val), "dream"), false) + game:delayedLogDamage(eff, self, val, ("%s%d %s#LAST#"):tformat(DamageType:get(DamageType.MIND).text_color or "#aaaaaa#", math.ceil(val), "dream"), false) end, } newEffect{ name = "ZONE_AURA_GORBAT", - desc = "Natural Aura", + desc = _t"Natural Aura", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: +20 mindpower, +2 life regen, -1 equilibrium per turn, -20% resistance penetration.") end, decrease = 0, no_remove = true, @@ -3232,7 +3232,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_VOR", - desc = "Sorcerous Aura", + desc = _t"Sorcerous Aura", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: +20 magic, +2 mana regen, -20 accuracy, -20 stealth power.") end, decrease = 0, no_remove = true, @@ -3253,7 +3253,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_GRUSHNAK", - desc = "Disciplined Aura", + desc = _t"Disciplined Aura", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: +20 defense, +20 all saves, -20 spell power.") end, decrease = 0, no_remove = true, @@ -3275,7 +3275,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_RAKSHOR", - desc = "Sinister Aura", + desc = _t"Sinister Aura", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: +10% critical chance, +20% critical damage, -20% nature and blight resistance.") end, decrease = 0, no_remove = true, @@ -3297,7 +3297,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_UNDERWATER", - desc = "Underwater Zone", + desc = _t"Underwater Zone", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: Air decreases over time. If you run out of air you will start losing life. Look for bubbles to recover air. The water also reduces stun resistance by 10% and fire damage is reduced by 10%, however cold damage is increased by 10%.") end, decrease = 0, no_remove = true, @@ -3316,7 +3316,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_FEARSCAPE", - desc = "Fearscape Zone", + desc = _t"Fearscape Zone", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: The flames of the Fearscape increase all fire and blight damage by 10%, but the weird gravity reduces knockback resistance by 20%.") end, decrease = 0, no_remove = true, @@ -3335,7 +3335,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_OUT_OF_TIME", - desc = "Out of Time Zone", + desc = _t"Out of Time Zone", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: You seem to be outside the normal spacetime continuum. +10% physical resistance, -10% temporal resistance and -20% teleport resistance.") end, decrease = 0, no_remove = true, @@ -3354,7 +3354,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_SPELLBLAZE", - desc = "Spellblaze Aura", + desc = _t"Spellblaze Aura", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: The power of the Spellblaze still burns here. -10% resistance to fire, arcane and blight damage, but +10% cold resistance. WARNING: The powerful magic here reflects teleportation magic!") end, decrease = 0, no_remove = true, @@ -3372,7 +3372,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_CALDERA", - desc = "Heady Scent", + desc = _t"Heady Scent", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: Strong scents fill the air and make you feel drowsy. If the timer reaches 0 you will fall into a dreaming sleep state. -10% mind resistance, -20% sleep resistance, +10% nature damage.") end, decrease = 0, no_remove = true, @@ -3392,7 +3392,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_THUNDERSTORM", - desc = "Thunderstorm", + desc = _t"Thunderstorm", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: A huge thunderstorm rages above you. +10 lightning damage, -10% stun resistance.") end, decrease = 0, no_remove = true, @@ -3411,7 +3411,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_ABASHED", - desc = "Abashed Expanse", + desc = _t"Abashed Expanse", no_stop_enter_worlmap = true, long_desc = function(self, eff) return ("Zone-wide effect: Your Phase Door spell is super easy to use here, allowing you to target it regardless of level. Any projectiles is slowed down by 80%.") end, decrease = 0, no_remove = true, @@ -3430,7 +3430,7 @@ newEffect{ newEffect{ name = "ZONE_AURA_CHALLENGE", - desc = "Challenge", + desc = _t"Challenge", no_stop_enter_worlmap = true, long_desc = function(self, eff) if not eff.id_challenge_quest or not self:hasQuest(eff.id_challenge_quest) then return "???" else return self:hasQuest(eff.id_challenge_quest).name end end, decrease = 0, no_remove = true, @@ -3461,9 +3461,9 @@ newEffect{ newEffect{ name = "THROWING_KNIVES", image = "talents/throwing_knives.png", - desc = "Throwing Knives", decrease = 0, + desc = _t"Throwing Knives", decrease = 0, display_desc = function(self, eff) return eff.stacks.." Knives" end, - long_desc = function(self, eff) return ("Has %d throwing knives prepared:\n\n%s"):format(eff.stacks, self:callTalent(self.T_THROWING_KNIVES, "knivesInfo")) end, + long_desc = function(self, eff) return ("Has %d throwing knives prepared:\n\n%s"):tformat(eff.stacks, self:callTalent(self.T_THROWING_KNIVES, "knivesInfo")) end, type = "other", subtype = { tactic=true }, status = "beneficial", @@ -3485,9 +3485,9 @@ newEffect{ newEffect{ name = "SCOUNDREL", image = "talents/scoundrel.png", - desc = "Scoundrel's Strategies", + desc = _t"Scoundrel's Strategies", long_desc = function(self, eff) return ("The target is suffering from disabling wounds, reducing their critical strike damage by %d%%."): - format( eff.power ) end, + tformat( eff.power ) end, type = "other", subtype = { tactic=true }, status = "detrimental", @@ -3501,9 +3501,9 @@ newEffect{ newEffect{ name = "FUMBLE", image = "talents/fumble.png", - desc = "Fumble", + desc = _t"Fumble", long_desc = function(self, eff) return ("The target is suffering from distracting wounds, and has a %d%% chance to fail to use a talent and injure itself for %d physical damage."): - format( eff.power*eff.stacks, eff.dam ) end, + tformat( eff.power*eff.stacks, eff.dam ) end, charges = function(self, eff) return eff.stacks end, type = "other", subtype = { tactic=true }, @@ -3547,14 +3547,14 @@ newEffect{ newEffect{ name = "TOUCH_OF_DEATH", image = "talents/touch_of_death.png", - desc = "Touch of Death", - long_desc = function(self, eff) return ("The target is taking %0.2f physical damage each turn. If they die while under this effect, they will explode!"):format(eff.dam) end, + desc = _t"Touch of Death", + long_desc = function(self, eff) return ("The target is taking %0.2f physical damage each turn. If they die while under this effect, they will explode!"):tformat(eff.dam) end, type = "other", --extending this would be very bad subtype = { }, status = "detrimental", parameters = { dur=4, dam=10, radius=1, combo=1 }, - on_gain = function(self, err) return "#Target# is mortally wounded!", "+Touch of Death!" end, - on_lose = function(self, err) return "#Target# overcomes the touch of death.", "-Touch of Death" end, + on_gain = function(self, err) return _t"#Target# is mortally wounded!", _t"+Touch of Death!" end, + on_lose = function(self, err) return _t"#Target# overcomes the touch of death.", _t"-Touch of Death" end, activate = function(self, eff) end, deactivate = function(self, eff) @@ -3578,13 +3578,13 @@ newEffect{ newEffect{ name = "MARKED", image = "talents/master_marksman.png", - desc = "Marked", - long_desc = function(self, eff) return ("Target is marked, leaving them vulnerable to marked shots."):format() end, + desc = _t"Marked", + long_desc = function(self, eff) return ("Target is marked, leaving them vulnerable to marked shots."):tformat() end, type = "other", subtype = { tactic=true }, status = "detrimental", - on_gain = function(self, err) return nil, "+Marked!" end, - on_lose = function(self, err) return nil, "-Marked" end, + on_gain = function(self, err) return nil, _t"+Marked!" end, + on_lose = function(self, err) return nil, _t"-Marked" end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("circle", 1, {base_rot=1, oversize=1.0, a=200, appear=8, speed=0, img="marked", radius=0})) self:effectTemporaryValue(eff, "marked", 1) @@ -3599,14 +3599,14 @@ newEffect{ newEffect{ name = "FLARE", - desc = "Flare", image = "talents/flare_raz.png", - long_desc = function(self, eff) return ("The target is lit up by a flare, reducing its stealth and invisibility power by %d, defense by %d and removing all evasion bonus from being unseen."):format(eff.power, eff.power) end, + desc = _t"Flare", image = "talents/flare_raz.png", + long_desc = function(self, eff) return ("The target is lit up by a flare, reducing its stealth and invisibility power by %d, defense by %d and removing all evasion bonus from being unseen."):tformat(eff.power, eff.power) end, type = "other", subtype = { sun=true }, status = "detrimental", parameters = { power=20 }, - on_gain = function(self, err) return nil, "+Illumination" end, - on_lose = function(self, err) return nil, "-Illumination" end, + on_gain = function(self, err) return nil, _t"+Illumination" end, + on_lose = function(self, err) return nil, _t"-Illumination" end, activate = function(self, eff) self:effectTemporaryValue(eff, "inc_stealth", -eff.power) if self:attr("invisible") then self:effectTemporaryValue(eff, "invisible", -eff.power) end @@ -3617,8 +3617,8 @@ newEffect{ newEffect{ name = "PIN_DOWN", - desc = "Pinned Down", image = "talents/pin_down.png", - long_desc = function(self, eff) return ("The next Steady Shot or Shoot has 100%% chance to be a critical hit and mark."):format() end, + desc = _t"Pinned Down", image = "talents/pin_down.png", + long_desc = function(self, eff) return ("The next Steady Shot or Shoot has 100%% chance to be a critical hit and mark."):tformat() end, type = "other", subtype = { tactic=true }, status = "detrimental", @@ -3631,8 +3631,8 @@ newEffect{ newEffect{ name = "DEMI_GODMODE", - desc = "Demigod Mode", image = "effects/darkgod.png", - long_desc = function(self, eff) return ("DEMI-GODMODE: Target has 10000 additional life and regenerates 2000 life per turn. It deals +500%% damage, and has full ESP."):format() end, + desc = _t"Demigod Mode", image = "effects/darkgod.png", + long_desc = function(self, eff) return ("DEMI-GODMODE: Target has 10000 additional life and regenerates 2000 life per turn. It deals +500%% damage, and has full ESP."):tformat() end, type = "other", subtype = { cheat=true }, status = "beneficial", @@ -3662,8 +3662,8 @@ newEffect{ newEffect{ name = "GODMODE", - desc = "God Mode", image = "effects/darkgod.png", - long_desc = function(self, eff) return ("GODMODE: Target is invulnerable to damage, immune to bad status effects, deals +10000%% damage (100%% penetration), does not need to breathe, and has full ESP."):format() end, + desc = _t"God Mode", image = "effects/darkgod.png", + long_desc = function(self, eff) return ("GODMODE: Target is invulnerable to damage, immune to bad status effects, deals +10000%% damage (100%% penetration), does not need to breathe, and has full ESP."):tformat() end, type = "other", subtype = { cheat=true }, status = "beneficial", @@ -3690,14 +3690,14 @@ newEffect{ newEffect{ name = "SLIPPERY_GROUND", image = "talents/freeze.png", - desc = "Slippery Ground", - long_desc = function(self, eff) return ("The target is having trouble keeping their balance. Each time it tries to use a talent there is %d%% chance of failure."):format(eff.fail) end, + desc = _t"Slippery Ground", + long_desc = function(self, eff) return ("The target is having trouble keeping their balance. Each time it tries to use a talent there is %d%% chance of failure."):tformat(eff.fail) end, type = "other", subtype = { nature=true }, status = "detrimental", parameters = {fail=20}, - on_gain = function(self, err) return "#Target# is struggling to keep his footing!", "+Slippery Ground" end, - on_lose = function(self, err) return "#Target# regains their balance.", "-Slippery Ground" end, + on_gain = function(self, err) return _t"#Target# is struggling to keep his footing!", _t"+Slippery Ground" end, + on_lose = function(self, err) return _t"#Target# regains their balance.", _t"-Slippery Ground" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("talent_fail_chance", eff.fail) end, @@ -3708,14 +3708,14 @@ newEffect{ newEffect{ name = "FROZEN_GROUND", image = "talents/freeze.png", - desc = "Frozen Ground", - long_desc = function(self, eff) return ("The target is energized by the cold while wearing the Frost Treads, gaining 20%% increased cold damage."):format(eff.fail) end, + desc = _t"Frozen Ground", + long_desc = function(self, eff) return ("The target is energized by the cold while wearing the Frost Treads, gaining 20%% increased cold damage."):tformat(eff.fail) end, type = "other", subtype = { nature=true }, status = "beneficial", parameters = {}, - on_gain = function(self, err) return "#Target# is energized by the cold!", "+Frozen Ground" end, - on_lose = function(self, err) return "#Target# regains balance.", "-Frozen Ground" end, + on_gain = function(self, err) return _t"#Target# is energized by the cold!", _t"+Frozen Ground" end, + on_lose = function(self, err) return _t"#Target# regains balance.", _t"-Frozen Ground" end, activate = function(self, eff) self:effectTemporaryValue(eff, "inc_damage", {[engine.DamageType.COLD] = 20}) end, @@ -3725,7 +3725,7 @@ newEffect{ newEffect{ name = "RECALL", image = "effects/recall.png", - desc = "Recalling", + desc = _t"Recalling", long_desc = function(self, eff) return "The target is waiting to be recalled back to the worldmap." end, type = "magical", subtype = { unknown=true }, @@ -3751,7 +3751,7 @@ newEffect{ newEffect{ name = "STEALTH_SKEPTICAL", image = "talents/stealth.png", - desc = "Skeptical", + desc = _t"Skeptical", long_desc = function(self, eff) return "The target doesn't believe its ally truly saw anything in the shadows." end, type = "other", subtype = { }, @@ -3770,8 +3770,8 @@ newEffect{ newEffect{ name = "UNLIT_HEART", image = "talents/armour_of_shadows.png", - desc = "Empowered by the shadows", - long_desc = function(self, eff) return ("Gain %d%% all damage and %d%% all res."):format(eff.dam, eff.res) end, + desc = _t"Empowered by the shadows", + long_desc = function(self, eff) return ("Gain %d%% all damage and %d%% all res."):tformat(eff.dam, eff.res) end, type = "other", subtype = { darkness = true }, status = "beneficial", @@ -3784,14 +3784,14 @@ newEffect{ newEffect{ name = "INTIMIDATED", - desc = "Intimidated", - long_desc = function(self, eff) return ("The target's morale is weakened, reducing its attack power, mind power, and spellpower by %d."):format(eff.power) end, + desc = _t"Intimidated", + long_desc = function(self, eff) return ("The target's morale is weakened, reducing its attack power, mind power, and spellpower by %d."):tformat(eff.power) end, charges = function(self, eff) return math.round(eff.power) end, type = "other", subtype = { }, status = "detrimental", - on_gain = function(self, err) return "#Target#'s morale has been lowered.", "+Intimidated" end, - on_lose = function(self, err) return "#Target# has regained its confidence.", "-Intimidated" end, + on_gain = function(self, err) return _t"#Target#'s morale has been lowered.", _t"+Intimidated" end, + on_lose = function(self, err) return _t"#Target# has regained its confidence.", _t"-Intimidated" end, parameters = { power=1 }, on_merge = function(self, old_eff, new_eff, e) self:removeTemporaryValue("combat_dam", old_eff.damid) @@ -3821,8 +3821,8 @@ newEffect{ newEffect{ name = "FEED", image = "talents/feed.png", - desc = "Feeding", - long_desc = function(self, eff) return ("%s is feeding from %s."):format(self.name:capitalize(), eff.target.name) end, + desc = _t"Feeding", + long_desc = function(self, eff) return ("%s is feeding from %s."):tformat(self.name:capitalize(), eff.target.name) end, type = "other", subtype = { psychic_drain=true }, status = "beneficial", @@ -3918,8 +3918,8 @@ newEffect{ newEffect{ name = "FED_UPON", image = "effects/fed_upon.png", - desc = "Fed Upon", - long_desc = function(self, eff) return ("%s is fed upon by %s."):format(self.name:capitalize(), eff.src.name) end, + desc = _t"Fed Upon", + long_desc = function(self, eff) return ("%s is fed upon by %s."):tformat(self.name:capitalize(), eff.src.name) end, type = "other", subtype = { psychic_drain=true }, status = "detrimental", @@ -3977,7 +3977,7 @@ newEffect{ newEffect{ name = "DOZING", image = "talents/sleep.png", - desc = "Dozing", + desc = _t"Dozing", long_desc = function(self, eff) return "The target is completely asleep, unable to act." end, type = "other", subtype = { sleep=true }, diff --git a/game/modules/tome/data/timed_effects/physical.lua b/game/modules/tome/data/timed_effects/physical.lua index 91c2604216702dd9a4c7644cf87edd78d264529c..f307ac091adf5b5517a7d1369f35f648b522824b 100644 --- a/game/modules/tome/data/timed_effects/physical.lua +++ b/game/modules/tome/data/timed_effects/physical.lua @@ -27,14 +27,14 @@ local Level = require "engine.Level" -- Item specific newEffect{ name = "ITEM_ANTIMAGIC_SCOURED", image = "talents/acidic_skin.png", - desc = "Scoured", - long_desc = function(self, eff) return ("Scoured by natural acid, reducing their offensive power ratings by %d%%."):format(eff.pct*100 or 0) end, + desc = _t"Scoured", + long_desc = function(self, eff) return ("Scoured by natural acid, reducing their offensive power ratings by %d%%."):tformat(eff.pct*100 or 0) end, type = "physical", subtype = { acid=true }, status = "detrimental", parameters = {pct = 0.3, spell = 0, mind = 0, phys = 0, power_str = ""}, - on_gain = function(self, err) return "#Target#'s power is greatly reduced!" end, - on_lose = function(self, err) return "#Target# power has recovered." end, + on_gain = function(self, err) return _t"#Target#'s power is greatly reduced!" end, + on_lose = function(self, err) return _t"#Target# power has recovered." end, on_timeout = function(self, eff) end, activate = function(self, eff) @@ -47,15 +47,15 @@ newEffect{ newEffect{ name = "RELENTLESS_TEMPO", image = "talents/sunder_mind.png", - desc = "Relentless Tempo", + desc = _t"Relentless Tempo", long_desc = function(self, eff) return ("Attuning to the flow of combat, increasing their combat stats. \nDefense: %d\nAll Damage: %d%%\nStamina Regeneration: %d\n%s"): - format( eff.cur_defense or 0, eff.cur_damage or 0, eff.cur_stamina or 0, eff.stacks >= 5 and "All Resistance: 20%" or "") end, + tformat( eff.cur_defense or 0, eff.cur_damage or 0, eff.cur_stamina or 0, eff.stacks >= 5 and "All Resistance: 20%" or "") end, charges = function(self, eff) return eff.stacks end, type = "physical", subtype = { tempo=true }, status = "beneficial", - on_gain = function(self, err) return "#Target# is gaining tempo.", "+Tempo" end, - on_lose = function(self, err) return "#Target# loses their tempo.", "-Tempo" end, + on_gain = function(self, err) return _t"#Target# is gaining tempo.", _t"+Tempo" end, + on_lose = function(self, err) return _t"#Target# loses their tempo.", _t"-Tempo" end, parameters = { stamina = 0, defense = 0, damage = 0, stacks = 0, resists = 0 }, on_merge = function(self, old_eff, new_eff) old_eff.dur =3 @@ -104,14 +104,14 @@ newEffect{ newEffect{ name = "DELIRIOUS_CONCUSSION", image = "talents/slippery_moss.png", - desc = "Concussion", - long_desc = function(self, eff) return ("The target can't think straight, causing their actions to fail."):format() end, + desc = _t"Concussion", + long_desc = function(self, eff) return ("The target can't think straight, causing their actions to fail."):tformat() end, type = "physical", subtype = { concussion=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target#'s brain isn't quite working right!", "+Concussion" end, - on_lose = function(self, err) return "#Target# regains their concentration.", "-Concussion" end, + on_gain = function(self, err) return _t"#Target#'s brain isn't quite working right!", _t"+Concussion" end, + on_lose = function(self, err) return _t"#Target# regains their concentration.", _t"-Concussion" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("talent_fail_chance", 100) end, @@ -122,15 +122,15 @@ newEffect{ newEffect{ name = "CUT", image = "effects/cut.png", - desc = "Bleeding", - long_desc = function(self, eff) return ("Huge cut that bleeds, doing %0.2f physical damage per turn."):format(eff.power) end, + desc = _t"Bleeding", + long_desc = function(self, eff) return ("Huge cut that bleeds, doing %0.2f physical damage per turn."):tformat(eff.power) end, charges = function(self, eff) return (math.floor(eff.power)) end, type = "physical", subtype = { wound=true, cut=true, bleed=true }, status = "detrimental", parameters = { power=1 }, - on_gain = function(self, err) return "#Target# starts to bleed.", "+Bleeds" end, - on_lose = function(self, err) return "#Target# stops bleeding.", "-Bleeds" end, + on_gain = function(self, err) return _t"#Target# starts to bleed.", _t"+Bleeds" end, + on_lose = function(self, err) return _t"#Target# stops bleeding.", _t"-Bleeds" end, on_merge = function(self, old_eff, new_eff) -- Merge the flames! local olddam = old_eff.power * old_eff.dur @@ -154,15 +154,15 @@ newEffect{ newEffect{ name = "DEEP_WOUND", image = "talents/bleeding_edge.png", - desc = "Deep Wound", - long_desc = function(self, eff) return ("Huge cut that bleeds, doing %0.2f physical damage per turn and decreasing all heals received by %d%%."):format(eff.power, eff.heal_factor) end, + desc = _t"Deep Wound", + long_desc = function(self, eff) return ("Huge cut that bleeds, doing %0.2f physical damage per turn and decreasing all heals received by %d%%."):tformat(eff.power, eff.heal_factor) end, charges = function(self, eff) return (math.floor(eff.power)) end, type = "physical", subtype = { wound=true, cut=true, bleed=true }, status = "detrimental", parameters = {power=10, heal_factor=30}, - on_gain = function(self, err) return "#Target# is cut deeply.", "+Deep Wounds" end, - on_lose = function(self, err) return "#Target#'s deep wound closes.", "-Deep Wounds" end, + on_gain = function(self, err) return _t"#Target# is cut deeply.", _t"+Deep Wounds" end, + on_lose = function(self, err) return _t"#Target#'s deep wound closes.", _t"-Deep Wounds" end, activate = function(self, eff) eff.healid = self:addTemporaryValue("healing_factor", -eff.heal_factor / 100) if eff.src and eff.src:knowTalent(self.T_BLOODY_BUTCHER) then @@ -181,14 +181,14 @@ newEffect{ newEffect{ name = "REGENERATION", image = "talents/infusion__regeneration.png", - desc = "Regeneration", - long_desc = function(self, eff) return ("A flow of life spins around the target, regenerating %0.2f life per turn."):format(eff.power) end, + desc = _t"Regeneration", + long_desc = function(self, eff) return ("A flow of life spins around the target, regenerating %0.2f life per turn."):tformat(eff.power) end, type = "physical", subtype = { nature=true, healing=true, regeneration=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# starts regenerating health quickly.", "+Regen" end, - on_lose = function(self, err) return "#Target# stops regenerating health quickly.", "-Regen" end, + on_gain = function(self, err) return _t"#Target# starts regenerating health quickly.", _t"+Regen" end, + on_lose = function(self, err) return _t"#Target# stops regenerating health quickly.", _t"-Regen" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("life_regen", eff.power) @@ -213,15 +213,15 @@ newEffect{ newEffect{ name = "POISONED", image = "effects/poisoned.png", - desc = "Poison", - long_desc = function(self, eff) return ("The target is poisoned, taking %0.2f nature damage per turn."):format(eff.power) end, + desc = _t"Poison", + long_desc = function(self, eff) return ("The target is poisoned, taking %0.2f nature damage per turn."):tformat(eff.power) end, charges = function(self, eff) return (math.floor(eff.power)) end, type = "physical", subtype = { poison=true, nature=true }, no_ct_effect = true, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is poisoned!", "+Poison" end, - on_lose = function(self, err) return "#Target# stops being poisoned.", "-Poison" end, + on_gain = function(self, err) return _t"#Target# is poisoned!", _t"+Poison" end, + on_lose = function(self, err) return _t"#Target# stops being poisoned.", _t"-Poison" end, on_merge = function(self, old_eff, new_eff) -- Merge the poison local olddam = old_eff.power * old_eff.dur @@ -243,14 +243,14 @@ newEffect{ newEffect{ name = "SPYDRIC_POISON", image = "effects/spydric_poison.png", - desc = "Spydric Poison", - long_desc = function(self, eff) return ("The target is poisoned, taking %0.2f nature damage per turn and unable to move (but can otherwise act freely)."):format(eff.power) end, + desc = _t"Spydric Poison", + long_desc = function(self, eff) return ("The target is poisoned, taking %0.2f nature damage per turn and unable to move (but can otherwise act freely)."):tformat(eff.power) end, type = "physical", subtype = { poison=true, pin=true, nature=true }, no_ct_effect = true, status = "detrimental", parameters = {power=10}, - on_gain = function(self, err) return "#Target# is poisoned and cannot move!", "+Spydric Poison" end, - on_lose = function(self, err) return "#Target# is no longer poisoned.", "-Spydric Poison" end, + on_gain = function(self, err) return _t"#Target# is poisoned and cannot move!", _t"+Spydric Poison" end, + on_lose = function(self, err) return _t"#Target# is no longer poisoned.", _t"-Spydric Poison" end, activate = function(self, eff) self:effectTemporaryValue(eff, "never_move", 1) end, @@ -270,15 +270,15 @@ newEffect{ newEffect{ name = "INSIDIOUS_POISON", image = "effects/insidious_poison.png", - desc = "Insidious Poison", - long_desc = function(self, eff) return ("The target is poisoned, taking %0.2f nature damage per turn and decreasing all heals received by %d%%."):format(eff.power, eff.heal_factor) end, + desc = _t"Insidious Poison", + long_desc = function(self, eff) return ("The target is poisoned, taking %0.2f nature damage per turn and decreasing all heals received by %d%%."):tformat(eff.power, eff.heal_factor) end, charges = function(self, eff) return (math.floor(eff.heal_factor).."%") end, type = "physical", subtype = { poison=true, nature=true }, no_ct_effect = true, status = "detrimental", parameters = {power=10, heal_factor=30}, - on_gain = function(self, err) return "#Target# is poisoned!", "+Insidious Poison" end, - on_lose = function(self, err) return "#Target# is no longer poisoned.", "-Insidious Poison" end, + on_gain = function(self, err) return _t"#Target# is poisoned!", _t"+Insidious Poison" end, + on_lose = function(self, err) return _t"#Target# is no longer poisoned.", _t"-Insidious Poison" end, activate = function(self, eff) self:effectTemporaryValue(eff, "healing_factor", -eff.heal_factor / 100) end, @@ -298,15 +298,15 @@ newEffect{ newEffect{ name = "CRIPPLING_POISON", image = "talents/crippling_poison.png", - desc = "Crippling Poison", - long_desc = function(self, eff) return ("The target is poisoned and sick, doing %0.2f nature damage per turn. Each time it tries to use a talent there is %d%% chance of failure."):format(eff.power, eff.fail) end, + desc = _t"Crippling Poison", + long_desc = function(self, eff) return ("The target is poisoned and sick, doing %0.2f nature damage per turn. Each time it tries to use a talent there is %d%% chance of failure."):tformat(eff.power, eff.fail) end, charges = function(self, eff) return (math.floor(eff.fail).."%") end, type = "physical", subtype = { poison=true, nature=true }, no_ct_effect = true, status = "detrimental", parameters = {power=10, fail=5}, - on_gain = function(self, err) return "#Target# is poisoned!", "+Crippling Poison" end, - on_lose = function(self, err) return "#Target# is no longer poisoned.", "-Crippling Poison" end, + on_gain = function(self, err) return _t"#Target# is poisoned!", _t"+Crippling Poison" end, + on_lose = function(self, err) return _t"#Target# is no longer poisoned.", _t"-Crippling Poison" end, -- Damage each turn on_timeout = function(self, eff) if self:attr("purify_poison") then self:heal(eff.power, eff.src) @@ -327,14 +327,14 @@ newEffect{ newEffect{ name = "NUMBING_POISON", image = "effects/numbing_poison.png", - desc = "Numbing Poison", - long_desc = function(self, eff) return ("The target is poisoned and sick, doing %0.2f nature damage per turn. All damage it does is reduced by %d%%."):format(eff.power, eff.reduce) end, + desc = _t"Numbing Poison", + long_desc = function(self, eff) return ("The target is poisoned and sick, doing %0.2f nature damage per turn. All damage it does is reduced by %d%%."):tformat(eff.power, eff.reduce) end, type = "physical", subtype = { poison=true, nature=true }, no_ct_effect = true, status = "detrimental", parameters = {power=10, reduce=5}, - on_gain = function(self, err) return "#Target# is poisoned!", "+Numbing Poison" end, - on_lose = function(self, err) return "#Target# is no longer poisoned.", "-Numbing Poison" end, + on_gain = function(self, err) return _t"#Target# is poisoned!", _t"+Numbing Poison" end, + on_lose = function(self, err) return _t"#Target# is no longer poisoned.", _t"-Numbing Poison" end, -- Damage each turn on_timeout = function(self, eff) if self:attr("purify_poison") then self:heal(eff.power, eff.src) @@ -355,17 +355,17 @@ newEffect{ newEffect{ name = "STONE_POISON", image = "talents/stoning_poison.png", - desc = "Stoning Poison", + desc = _t"Stoning Poison", long_desc = function(self, eff) local chance = util.bound((eff.turn_count + eff.dur)*100/eff.time_to_stone, 0, 100) - return ("The target is taking %0.2f nature damage per turn from a potent earth-based poison. In %d more turn(s), or when the poison has run its course (%d%% chance), the target will be turned to stone for %d turns."):format(eff.power, eff.time_to_stone - eff.turn_count, chance, eff.stone) + return ("The target is taking %0.2f nature damage per turn from a potent earth-based poison. In %d more turn(s), or when the poison has run its course (%d%% chance), the target will be turned to stone for %d turns."):tformat(eff.power, eff.time_to_stone - eff.turn_count, chance, eff.stone) end, type = "physical", subtype = { poison=true, earth=true }, no_ct_effect = true, status = "detrimental", parameters = {power=10, stone=1, time_to_stone=10, turn_count=0}, - on_gain = function(self, err) return "#Target# is infused with stone poison!", "+Stoning Poison" end, - on_lose = function(self, err) return "#Target# is free of the stone poison!", "-Stoning Poison" end, + on_gain = function(self, err) return _t"#Target# is infused with stone poison!", _t"+Stoning Poison" end, + on_lose = function(self, err) return _t"#Target# is free of the stone poison!", _t"-Stoning Poison" end, on_timeout = function(self, eff) -- Damage each turn, stone after enough time if self:attr("purify_poison") then self:heal(eff.power, eff.src) else DamageType:get(DamageType.NATURE).projector(eff.src, self.x, self.y, DamageType.NATURE, eff.power) @@ -416,15 +416,15 @@ newEffect{ newEffect{ name = "BURNING", image = "talents/flame.png", - desc = "Burning", - long_desc = function(self, eff) return ("The target is on fire, taking %0.2f fire damage per turn."):format(eff.power) end, + desc = _t"Burning", + long_desc = function(self, eff) return ("The target is on fire, taking %0.2f fire damage per turn."):tformat(eff.power) end, charges = function(self, eff) return (math.floor(eff.power)) end, type = "physical", subtype = { fire=true }, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is on fire!", "+Burn" end, - on_lose = function(self, err) return "#Target# stops burning.", "-Burn" end, + on_gain = function(self, err) return _t"#Target# is on fire!", _t"+Burn" end, + on_lose = function(self, err) return _t"#Target# stops burning.", _t"-Burn" end, on_merge = function(self, old_eff, new_eff) -- Merge the flames! local olddam = old_eff.power * old_eff.dur @@ -441,15 +441,15 @@ newEffect{ newEffect{ name = "BURNING_SHOCK", image = "talents/flameshock.png", - desc = "Burning Shock", - long_desc = function(self, eff) return ("The target is on fire, taking %0.2f fire damage per turn, reducing damage by 50%%, putting 4 random talents on cooldown and reducing movement speed by 50%%. While flameshocked talents cooldown twice as slow."):format(eff.power) end, + desc = _t"Burning Shock", + long_desc = function(self, eff) return ("The target is on fire, taking %0.2f fire damage per turn, reducing damage by 50%%, putting 4 random talents on cooldown and reducing movement speed by 50%%. While flameshocked talents cooldown twice as slow."):tformat(eff.power) end, charges = function(self, eff) return (math.floor(eff.power)) end, type = "physical", subtype = { fire=true, stun=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is stunned by the burning flame!", "+Burning Shock" end, - on_lose = function(self, err) return "#Target# is not stunned anymore.", "-Burning Shock" end, + on_gain = function(self, err) return _t"#Target# is stunned by the burning flame!", _t"+Burning Shock" end, + on_lose = function(self, err) return _t"#Target# is not stunned anymore.", _t"-Burning Shock" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("stunned", 1) eff.speedid = self:addTemporaryValue("movement_speed", -0.5) @@ -478,14 +478,14 @@ newEffect{ newEffect{ name = "STUNNED", image = "effects/stunned.png", - desc = "Stunned", - long_desc = function(self, eff) return ("The target is stunned, reducing damage by 50%%, putting 3 random talents on cooldown and reducing movement speed by 50%%. While stunned talents cooldown twice as slow."):format() end, + desc = _t"Stunned", + long_desc = function(self, eff) return ("The target is stunned, reducing damage by 50%%, putting 3 random talents on cooldown and reducing movement speed by 50%%. While stunned talents cooldown twice as slow."):tformat() end, type = "physical", subtype = { stun=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is stunned!", "+Stunned" end, - on_lose = function(self, err) return "#Target# is not stunned anymore.", "-Stunned" end, + on_gain = function(self, err) return _t"#Target# is stunned!", _t"+Stunned" end, + on_lose = function(self, err) return _t"#Target# is not stunned anymore.", _t"-Stunned" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("stunned", 1) eff.speedid = self:addTemporaryValue("movement_speed", -0.5) @@ -510,14 +510,14 @@ newEffect{ newEffect{ name = "DISARMED", image = "talents/disarm.png", - desc = "Disarmed", + desc = _t"Disarmed", long_desc = function(self, eff) return "The target is maimed, unable to correctly wield a weapon." end, type = "physical", subtype = { disarm=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is disarmed!", "+Disarmed" end, - on_lose = function(self, err) return "#Target# rearms.", "-Disarmed" end, + on_gain = function(self, err) return _t"#Target# is disarmed!", _t"+Disarmed" end, + on_lose = function(self, err) return _t"#Target# rearms.", _t"-Disarmed" end, activate = function(self, eff) self:removeEffect(self.EFF_COUNTER_ATTACKING) -- Cannot parry or counterattack while disarmed self:removeEffect(self.EFF_DUAL_WEAPON_DEFENSE) @@ -531,14 +531,14 @@ newEffect{ newEffect{ name = "CONSTRICTED", image = "talents/constrict.png", - desc = "Constricted", - long_desc = function(self, eff) return ("The target is constricted, preventing movement and making it suffocate (loses %0.2f air per turn)."):format(eff.power) end, + desc = _t"Constricted", + long_desc = function(self, eff) return ("The target is constricted, preventing movement and making it suffocate (loses %0.2f air per turn)."):tformat(eff.power) end, type = "physical", subtype = { grapple=true, pin=true }, status = "detrimental", parameters = {power=10}, - on_gain = function(self, err) return "#Target# is constricted!", "+Constricted" end, - on_lose = function(self, err) return "#Target# is free to breathe.", "-Constricted" end, + on_gain = function(self, err) return _t"#Target# is constricted!", _t"+Constricted" end, + on_lose = function(self, err) return _t"#Target# is free to breathe.", _t"-Constricted" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("never_move", 1) end, @@ -546,7 +546,7 @@ newEffect{ if core.fov.distance(self.x, self.y, eff.src.x, eff.src.y) > 1 or eff.src.dead or not game.level:hasEntity(eff.src) then return true end - self:suffocate(eff.power, eff.src, (" was constricted to death by %s."):format(eff.src.unique and eff.src.name or eff.src.name:a_an())) + self:suffocate(eff.power, eff.src, (" was constricted to death by %s."):tformat(eff.src.unique and eff.src.name or eff.src.name:a_an())) end, deactivate = function(self, eff) self:removeTemporaryValue("never_move", eff.tmpid) @@ -555,14 +555,14 @@ newEffect{ newEffect{ name = "DAZED", image = "effects/dazed.png", - desc = "Dazed", + desc = _t"Dazed", long_desc = function(self, eff) return "The target is dazed, rendering it unable to move, halving all damage done, defense, saves, accuracy, spell, mind and physical power. Any damage will remove the daze." end, type = "physical", subtype = { stun=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is dazed!", "+Dazed" end, - on_lose = function(self, err) return "#Target# is not dazed anymore.", "-Dazed" end, + on_gain = function(self, err) return _t"#Target# is dazed!", _t"+Dazed" end, + on_lose = function(self, err) return _t"#Target# is not dazed anymore.", _t"-Dazed" end, activate = function(self, eff) self:effectTemporaryValue(eff, "dazed", 1) self:effectTemporaryValue(eff, "never_move", 1) @@ -573,9 +573,9 @@ newEffect{ newEffect{ name = "EVASION", image = "talents/evasion.png", - desc = "Evasion", + desc = _t"Evasion", long_desc = function(self, eff) - return ("The target has %d%% chance to evade melee and ranged attacks"):format(eff.chance) .. ((eff.defense>0 and (" and gains %d defense"):format(eff.defense)) or "") .. "." + return ("The target has %d%% chance to evade melee and ranged attacks"):tformat(eff.chance) .. ((eff.defense>0 and (" and gains %d defense"):tformat(eff.defense)) or "") .. "." end, charges = function(self, eff) if self:attr("no_evasion") then return 0 end @@ -585,8 +585,8 @@ newEffect{ subtype = { evade=true }, status = "beneficial", parameters = { chance=10, defense=0 }, - on_gain = function(self, err) return "#Target# tries to evade attacks.", "+Evasion" end, - on_lose = function(self, err) return "#Target# is no longer evading attacks.", "-Evasion" end, + on_gain = function(self, err) return _t"#Target# tries to evade attacks.", _t"+Evasion" end, + on_lose = function(self, err) return _t"#Target# is no longer evading attacks.", _t"-Evasion" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("evasion", eff.chance) eff.pid = self:addTemporaryValue("projectile_evasion", eff.chance) @@ -604,14 +604,14 @@ newEffect{ newEffect{ name = "SPEED", image = "talents/shaloren_speed.png", - desc = "Speed", - long_desc = function(self, eff) return ("Increases global action speed by %d%%."):format(eff.power * 100) end, + desc = _t"Speed", + long_desc = function(self, eff) return ("Increases global action speed by %d%%."):tformat(eff.power * 100) end, type = "physical", subtype = { speed=true }, status = "beneficial", parameters = { power=0.1 }, - on_gain = function(self, err) return "#Target# speeds up.", "+Fast" end, - on_lose = function(self, err) return "#Target# slows down.", "-Fast" end, + on_gain = function(self, err) return _t"#Target# speeds up.", _t"+Fast" end, + on_lose = function(self, err) return _t"#Target# slows down.", _t"-Fast" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("global_speed_add", eff.power) end, @@ -622,15 +622,15 @@ newEffect{ newEffect{ name = "SLOW", image = "talents/slow.png", - desc = "Slow", - long_desc = function(self, eff) return ("Reduces global action speed by %d%%."):format(math.floor(eff.power * 100)) end, + desc = _t"Slow", + long_desc = function(self, eff) return ("Reduces global action speed by %d%%."):tformat(math.floor(eff.power * 100)) end, charges = function(self, eff) return (math.floor(eff.power * 100).."%") end, type = "physical", subtype = { slow=true }, status = "detrimental", parameters = { power=0.1 }, - on_gain = function(self, err) return "#Target# slows down.", "+Slow" end, - on_lose = function(self, err) return "#Target# speeds up.", "-Slow" end, + on_gain = function(self, err) return _t"#Target# slows down.", _t"+Slow" end, + on_lose = function(self, err) return _t"#Target# speeds up.", _t"-Slow" end, on_merge = function(self, old_eff, new_eff) if new_eff.power > old_eff.power then old_eff.power = new_eff.power @@ -648,14 +648,14 @@ newEffect{ newEffect{ name = "BLINDED", image = "effects/blinded.png", - desc = "Blinded", + desc = _t"Blinded", long_desc = function(self, eff) return "The target is blinded, unable to see anything." end, type = "physical", subtype = { blind=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# loses sight!", "+Blind" end, - on_lose = function(self, err) return "#Target# recovers sight.", "-Blind" end, + on_gain = function(self, err) return _t"#Target# loses sight!", _t"+Blind" end, + on_lose = function(self, err) return _t"#Target# recovers sight.", _t"-Blind" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("blind", 1) if game.level then @@ -674,14 +674,14 @@ newEffect{ newEffect{ name = "DWARVEN_RESILIENCE", image = "talents/dwarf_resilience.png", - desc = "Dwarven Resilience", - long_desc = function(self, eff) return ("The target's skin turns to stone, granting %d armour, %d physical save and %d spell save."):format(eff.armor, eff.physical, eff.spell) end, + desc = _t"Dwarven Resilience", + long_desc = function(self, eff) return ("The target's skin turns to stone, granting %d armour, %d physical save and %d spell save."):tformat(eff.armor, eff.physical, eff.spell) end, type = "physical", subtype = { earth=true }, status = "beneficial", parameters = { armor=10, spell=10, physical=10 }, - on_gain = function(self, err) return "#Target#'s skin turns to stone." end, - on_lose = function(self, err) return "#Target#'s skin returns to normal." end, + on_gain = function(self, err) return _t"#Target#'s skin turns to stone." end, + on_lose = function(self, err) return _t"#Target#'s skin returns to normal." end, activate = function(self, eff) eff.aid = self:addTemporaryValue("combat_armor", eff.armor) eff.pid = self:addTemporaryValue("combat_physresist", eff.physical) @@ -696,8 +696,8 @@ newEffect{ newEffect{ name = "STONE_SKIN", image = "talents/stoneskin.png", - desc = "Stoneskin", - long_desc = function(self, eff) return ("The target's skin reacts to damage, granting %d armour."):format(eff.power) end, + desc = _t"Stoneskin", + long_desc = function(self, eff) return ("The target's skin reacts to damage, granting %d armour."):tformat(eff.power) end, type = "physical", subtype = { earth=true }, status = "beneficial", @@ -712,14 +712,14 @@ newEffect{ newEffect{ name = "THORNY_SKIN", image = "talents/stoneskin.png", - desc = "Thorny Skin", - long_desc = function(self, eff) return ("The target's skin reacts to damage, granting %d armour and %d%% armour hardiness."):format(eff.ac, eff.hard) end, + desc = _t"Thorny Skin", + long_desc = function(self, eff) return ("The target's skin reacts to damage, granting %d armour and %d%% armour hardiness."):tformat(eff.ac, eff.hard) end, type = "physical", subtype = { nature=true }, status = "beneficial", parameters = { ac=10, hard=10 }, - on_gain = function(self, err) return "#Target#'s skin looks a bit thorny.", "+Thorny Skin" end, - on_lose = function(self, err) return "#Target# is less thorny now.", "-Thorny Skin" end, + on_gain = function(self, err) return _t"#Target#'s skin looks a bit thorny.", _t"+Thorny Skin" end, + on_lose = function(self, err) return _t"#Target# is less thorny now.", _t"-Thorny Skin" end, activate = function(self, eff) eff.aid = self:addTemporaryValue("combat_armor", eff.ac) eff.hid = self:addTemporaryValue("combat_armor_hardiness", eff.hard) @@ -732,14 +732,14 @@ newEffect{ newEffect{ name = "FROZEN_FEET", image = "talents/frozen_ground.png", - desc = "Frozen Feet", + desc = _t"Frozen Feet", long_desc = function(self, eff) return "The target is frozen on the ground, able to act freely but not move." end, type = "physical", subtype = { cold=true, pin=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is frozen to the ground!", "+Frozen" end, - on_lose = function(self, err) return "#Target# warms up.", "-Frozen" end, + on_gain = function(self, err) return _t"#Target# is frozen to the ground!", _t"+Frozen" end, + on_lose = function(self, err) return _t"#Target# warms up.", _t"-Frozen" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("never_move", 1) eff.frozid = self:addTemporaryValue("frozen", 1) @@ -752,15 +752,15 @@ newEffect{ newEffect{ name = "FROZEN", image = "talents/freeze.png", - desc = "Frozen", - long_desc = function(self, eff) return ("The target is encased in ice. All damage done to it will be split, 40%% absorbed by the ice and 60%% by the target. The target's defense is nullified while in the ice, and it may only attack the ice, but it is also immune to any new detrimental status effects (except Wet and Frozen Feet). The target cannot teleport or heal while frozen. %d HP on the iceblock remaining."):format(eff.hp) end, + desc = _t"Frozen", + long_desc = function(self, eff) return ("The target is encased in ice. All damage done to it will be split, 40%% absorbed by the ice and 60%% by the target. The target's defense is nullified while in the ice, and it may only attack the ice, but it is also immune to any new detrimental status effects (except Wet and Frozen Feet). The target cannot teleport or heal while frozen. %d HP on the iceblock remaining."):tformat(eff.hp) end, charges = function(self, eff) return math.floor(eff.hp) end, type = "physical", -- Frozen has some serious effects beyond just being frozen, no healing, no teleport, etc. But it can be applied by clearly non-magical sources i.e. Ice Breath subtype = { cold=true, stun=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is encased in ice!", "+Frozen" end, - on_lose = function(self, err) return "#Target# is free from the ice.", "-Frozen" end, + on_gain = function(self, err) return _t"#Target# is encased in ice!", _t"+Frozen" end, + on_lose = function(self, err) return _t"#Target# is free from the ice.", _t"-Frozen" end, activate = function(self, eff) -- Change color eff.old_r = self.color_r @@ -813,14 +813,14 @@ newEffect{ newEffect{ name = "ETERNAL_WRATH", image = "talents/thaloren_wrath.png", - desc = "Wrath of the Woods", - long_desc = function(self, eff) return ("The target calls upon its inner resources, improving all damage by %d%% and reducing all damage taken by %d%%."):format(eff.power, eff.power) end, + desc = _t"Wrath of the Woods", + long_desc = function(self, eff) return ("The target calls upon its inner resources, improving all damage by %d%% and reducing all damage taken by %d%%."):tformat(eff.power, eff.power) end, type = "physical", subtype = { nature=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# radiates power." end, - on_lose = function(self, err) return "#Target#'s aura of power vanishes." end, + on_gain = function(self, err) return _t"#Target# radiates power." end, + on_lose = function(self, err) return _t"#Target#'s aura of power vanishes." end, activate = function(self, eff) eff.pid1 = self:addTemporaryValue("inc_damage", {all=eff.power}) eff.pid2 = self:addTemporaryValue("resists", {all=eff.power}) @@ -833,14 +833,14 @@ newEffect{ newEffect{ name = "HIGHBORN_WRATH", image = "talents/higher_heal.png", - desc = "Wrath of the Highborn", - long_desc = function(self, eff) return ("The target calls upon its inner resources, improving all damage by %d%% and reducing all damage taken by %d%%."):format(eff.power, eff.power) end, + desc = _t"Wrath of the Highborn", + long_desc = function(self, eff) return ("The target calls upon its inner resources, improving all damage by %d%% and reducing all damage taken by %d%%."):tformat(eff.power, eff.power) end, type = "physical", subtype = { }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# radiates power." end, - on_lose = function(self, err) return "#Target#'s aura of power vanishes." end, + on_gain = function(self, err) return _t"#Target# radiates power." end, + on_lose = function(self, err) return _t"#Target#'s aura of power vanishes." end, activate = function(self, eff) eff.pid1 = self:addTemporaryValue("inc_damage", {all=eff.power}) eff.pid2 = self:addTemporaryValue("resists", {all=eff.power}) @@ -853,14 +853,14 @@ newEffect{ newEffect{ name = "SHELL_SHIELD", image = "talents/shell_shield.png", - desc = "Shell Shield", - long_desc = function(self, eff) return ("The target takes cover in its shell, gaining %d%% all resist."):format(eff.power) end, + desc = _t"Shell Shield", + long_desc = function(self, eff) return ("The target takes cover in its shell, gaining %d%% all resist."):tformat(eff.power) end, type = "physical", subtype = { nature=true }, status = "beneficial", parameters = { power=50 }, - on_gain = function(self, err) return "#Target# takes cover under its shell.", "+Shell Shield" end, - on_lose = function(self, err) return "#Target# leaves the cover of its shell.", "-Shell Shield" end, + on_gain = function(self, err) return _t"#Target# takes cover under its shell.", _t"+Shell Shield" end, + on_lose = function(self, err) return _t"#Target# leaves the cover of its shell.", _t"-Shell Shield" end, activate = function(self, eff) eff.pid = self:addTemporaryValue("resists", {all=eff.power}) end, @@ -871,8 +871,8 @@ newEffect{ newEffect{ name = "SERPENTINE_NATURE", image = "talents/hydra.png", - desc = "Serpentine Nature", - long_desc = function(self, eff) return ("The target takes on the properties of the hydra, gaining %d%% affinity to lightning, acid, and nature damage and regenerating %d life per turn."):format(eff.power, eff.regen) end, + desc = _t"Serpentine Nature", + long_desc = function(self, eff) return ("The target takes on the properties of the hydra, gaining %d%% affinity to lightning, acid, and nature damage and regenerating %d life per turn."):tformat(eff.power, eff.regen) end, type = "physical", subtype = { nature=true }, status = "beneficial", @@ -889,14 +889,14 @@ newEffect{ newEffect{ name = "PAIN_SUPPRESSION", image = "talents/infusion__wild.png", - desc = "Pain Suppression", - long_desc = function(self, eff) return ("The target ignores pain, reducing all damage taken by %d%%."):format(eff.power) end, + desc = _t"Pain Suppression", + long_desc = function(self, eff) return ("The target ignores pain, reducing all damage taken by %d%%."):tformat(eff.power) end, type = "physical", subtype = { nature=true }, status = "beneficial", parameters = { power=20 }, - on_gain = function(self, err) return "#Target# lessens the pain.", "+Pain Suppression" end, - on_lose = function(self, err) return "#Target# feels pain again.", "-Pain Suppression" end, + on_gain = function(self, err) return _t"#Target# lessens the pain.", _t"+Pain Suppression" end, + on_lose = function(self, err) return _t"#Target# feels pain again.", _t"-Pain Suppression" end, activate = function(self, eff) eff.pid = self:addTemporaryValue("resists", {all=eff.power}) end, @@ -907,14 +907,14 @@ newEffect{ newEffect{ name = "PRIMAL_ATTUNEMENT", image = "talents/infusion__wild.png", - desc = "Primal Attunement", - long_desc = function(self, eff) return ("The target is attuned to the wild, increasing all damage affinity by %d%% and reducing a random debuff duration by %d each turn."):format(eff.power, eff.reduce) end, + desc = _t"Primal Attunement", + long_desc = function(self, eff) return ("The target is attuned to the wild, increasing all damage affinity by %d%% and reducing a random debuff duration by %d each turn."):tformat(eff.power, eff.reduce) end, type = "physical", subtype = { nature=true }, status = "beneficial", parameters = { power=20, reduce = 3 }, - on_gain = function(self, err) return "#Target# attunes to the wild.", "+Primal" end, - on_lose = function(self, err) return "#Target# is no longer one with nature.", "-Primal" end, + on_gain = function(self, err) return _t"#Target# attunes to the wild.", _t"+Primal" end, + on_lose = function(self, err) return _t"#Target# is no longer one with nature.", _t"-Primal" end, activate = function(self, eff) eff.pid = self:addTemporaryValue("damage_affinity", {all=eff.power}) end, @@ -933,14 +933,14 @@ newEffect{ newEffect{ name = "PURGE_BLIGHT", image = "talents/infusion__wild.png", - desc = "Purge Blight", - long_desc = function(self, eff) return ("The target is infused with the power of nature, reducing all blight damage taken by %d%%, increasing spell saves by %d, and granting immunity to diseases."):format(eff.power, eff.power) end, + desc = _t"Purge Blight", + long_desc = function(self, eff) return ("The target is infused with the power of nature, reducing all blight damage taken by %d%%, increasing spell saves by %d, and granting immunity to diseases."):tformat(eff.power, eff.power) end, type = "physical", subtype = { nature=true }, status = "beneficial", parameters = { power=20 }, - on_gain = function(self, err) return "#Target# rejects blight!", "+Purge" end, - on_lose = function(self, err) return "#Target# is susceptible to blight again.", "-Purge" end, + on_gain = function(self, err) return _t"#Target# rejects blight!", _t"+Purge" end, + on_lose = function(self, err) return _t"#Target# is susceptible to blight again.", _t"-Purge" end, activate = function(self, eff) eff.pid = self:addTemporaryValue("resists", {[DamageType.BLIGHT]=eff.power}) eff.spell_save = self:addTemporaryValue("combat_spellresist", eff.power) @@ -955,7 +955,7 @@ newEffect{ newEffect{ name = "SENSE", image = "talents/track.png", - desc = "Sensing", + desc = _t"Sensing", long_desc = function(self, eff) return "Improves senses, allowing the detection of unseen things." end, type = "physical", subtype = { sense=true }, @@ -980,9 +980,9 @@ newEffect{ newEffect{ name = "HEROISM", image = "talents/infusion__heroism.png", - desc = "Heroism", + desc = _t"Heroism", long_desc = function(self, eff) - local xs = eff.die_at > 0 and ("Keeps you from dying even if your life drops to %+d"):format(-eff.die_at) or "" + local xs = eff.die_at > 0 and ("Keeps you from dying even if your life drops to %+d"):tformat(-eff.die_at) or "" return xs end, type = "physical", @@ -997,14 +997,14 @@ newEffect{ newEffect{ name = "SUNDER_ARMOUR", image = "talents/sunder_armour.png", - desc = "Sunder Armour", - long_desc = function(self, eff) return ("The target's armour and saves are broken, reducing them by %d."):format(eff.power) end, + desc = _t"Sunder Armour", + long_desc = function(self, eff) return ("The target's armour and saves are broken, reducing them by %d."):tformat(eff.power) end, type = "physical", subtype = { sunder=true }, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return "#Target#'s armour is damaged!", "+Sunder Armor" end, - on_lose = function(self, err) return "#Target#'s armour is more intact.", "-Sunder Armor" end, + on_gain = function(self, err) return _t"#Target#'s armour is damaged!", _t"+Sunder Armor" end, + on_lose = function(self, err) return _t"#Target#'s armour is more intact.", _t"-Sunder Armor" end, activate = function(self, eff) self:effectTemporaryValue(eff, "combat_armor", -eff.power) self:effectTemporaryValue(eff, "combat_physresist", -eff.power) @@ -1015,14 +1015,14 @@ newEffect{ newEffect{ name = "SUNDER_ARMS", image = "talents/sunder_arms.png", - desc = "Sunder Arms", - long_desc = function(self, eff) return ("The target's combat ability is reduced, reducing its attack by %d."):format(eff.power) end, + desc = _t"Sunder Arms", + long_desc = function(self, eff) return ("The target's combat ability is reduced, reducing its attack by %d."):tformat(eff.power) end, type = "physical", subtype = { sunder=true }, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return "#Target#'s fighting ability is impaired!", "+Sunder Arms" end, - on_lose = function(self, err) return "#Target#'s ability to fight has recovered.", "-Sunder Arms" end, + on_gain = function(self, err) return _t"#Target#'s fighting ability is impaired!", _t"+Sunder Arms" end, + on_lose = function(self, err) return _t"#Target#'s ability to fight has recovered.", _t"-Sunder Arms" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("combat_atk", -eff.power) end, @@ -1033,14 +1033,14 @@ newEffect{ newEffect{ name = "PINNED", image = "effects/pinned.png", - desc = "Pinned to the ground", + desc = _t"Pinned to the ground", long_desc = function(self, eff) return "The target is pinned to the ground, unable to move." end, type = "physical", subtype = { pin=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is pinned to the ground.", "+Pinned" end, - on_lose = function(self, err) return "#Target# is no longer pinned.", "-Pinned" end, + on_gain = function(self, err) return _t"#Target# is pinned to the ground.", _t"+Pinned" end, + on_lose = function(self, err) return _t"#Target# is no longer pinned.", _t"-Pinned" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("never_move", 1) end, @@ -1051,14 +1051,14 @@ newEffect{ newEffect{ name = "BONE_GRAB", image = "talents/bone_grab.png", - desc = "Pinned to the ground", + desc = _t"Pinned to the ground", long_desc = function(self, eff) return "The target is pinned to the ground, unable to move." end, type = "physical", subtype = { pin=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is pinned to the ground.", "+Bone Grab" end, - on_lose = function(self, err) return "#Target# is no longer pinned.", "-Bone Grab" end, + on_gain = function(self, err) return _t"#Target# is pinned to the ground.", _t"+Bone Grab" end, + on_lose = function(self, err) return _t"#Target# is no longer pinned.", _t"-Bone Grab" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("never_move", 1) @@ -1080,14 +1080,14 @@ newEffect{ newEffect{ name = "MIGHTY_BLOWS", image = "effects/mighty_blows.png", - desc = "Mighty Blows", - long_desc = function(self, eff) return ("The target's combat damage is improved by %d."):format(eff.power) end, + desc = _t"Mighty Blows", + long_desc = function(self, eff) return ("The target's combat damage is improved by %d."):tformat(eff.power) end, type = "physical", subtype = { golem=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# looks menacing." end, - on_lose = function(self, err) return "#Target# looks less menacing." end, + on_gain = function(self, err) return _t"#Target# looks menacing." end, + on_lose = function(self, err) return _t"#Target# looks less menacing." end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("combat_dam", eff.power) end, @@ -1098,14 +1098,14 @@ newEffect{ newEffect{ name = "CRIPPLE", image = "talents/cripple.png", - desc = "Cripple", - long_desc = function(self, eff) return ("The target is crippled, reducing melee, spellcasting and mind speed by %d%%."):format(eff.speed*100) end, + desc = _t"Cripple", + long_desc = function(self, eff) return ("The target is crippled, reducing melee, spellcasting and mind speed by %d%%."):tformat(eff.speed*100) end, type = "physical", subtype = { wound=true, cripple=true }, status = "detrimental", parameters = { speed=0.3 }, - on_gain = function(self, err) return "#Target# is crippled." end, - on_lose = function(self, err) return "#Target# is not crippled anymore." end, + on_gain = function(self, err) return _t"#Target# is crippled." end, + on_lose = function(self, err) return _t"#Target# is not crippled anymore." end, activate = function(self, eff) self:effectTemporaryValue(eff, "combat_physspeed", -eff.speed) self:effectTemporaryValue(eff, "combat_spellspeed", -eff.speed) @@ -1115,8 +1115,8 @@ newEffect{ newEffect{ name = "BURROW", image = "talents/burrow.png", - desc = "Burrow", - long_desc = function(self, eff) return ("The target is able to burrow into walls, and additionally has %d more APR and %d%% more physical resistance penetration."):format(eff.power, eff.power / 2) end, + desc = _t"Burrow", + long_desc = function(self, eff) return ("The target is able to burrow into walls, and additionally has %d more APR and %d%% more physical resistance penetration."):tformat(eff.power, eff.power / 2) end, type = "physical", subtype = { earth=true }, status = "beneficial", @@ -1136,14 +1136,14 @@ newEffect{ newEffect{ name = "DIM_VISION", image = "talents/sticky_smoke.png", - desc = "Reduced Vision", - long_desc = function(self, eff) return ("The target's vision range is decreased by %d."):format(eff.sight) end, + desc = _t"Reduced Vision", + long_desc = function(self, eff) return ("The target's vision range is decreased by %d."):tformat(eff.sight) end, type = "physical", subtype = { sense=true }, status = "detrimental", parameters = { sight=5 }, - on_gain = function(self, err) return "#Target# is surrounded by a thick smoke.", "+Dim Vision" end, - on_lose = function(self, err) return "The smoke around #target# dissipates.", "-Dim Vision" end, + on_gain = function(self, err) return _t"#Target# is surrounded by a thick smoke.", _t"+Dim Vision" end, + on_lose = function(self, err) return _t"The smoke around #target# dissipates.", _t"-Dim Vision" end, charges = function(self, eff) return -eff.sight end, activate = function(self, eff) if self.sight - eff.sight < 1 then eff.sight = self.sight - 1 end @@ -1159,7 +1159,7 @@ newEffect{ newEffect{ name = "RESOLVE", image = "talents/resolve.png", - desc = "Resolve", + desc = _t"Resolve", long_desc = function(self, eff) local list = table.keys(eff.types) for i = 1, #list do if DamageType.dam_def[list[i]] then @@ -1167,15 +1167,15 @@ newEffect{ end end local type_str if #list >= 1 then type_str = table.concatNice(list, ", ", " and ") else type_str = "" end - return ("You gain %d%% resistance against %s."):format(eff.res, type_str) + return ("You gain %d%% resistance against %s."):tformat(eff.res, type_str) end, charges = function(self, eff) return table.count(eff.types) end, type = "physical", subtype = { antimagic=true, nature=true }, status = "beneficial", parameters = { res=10, damtype=DamageType.ARCANE, max_types = 1}, - on_gain = function(self, err) return "#Target# attunes to the damage.", "+Resolve" end, - on_lose = function(self, err) return "#Target# is no longer attuned.", "-Resolve" end, + on_gain = function(self, err) return _t"#Target# attunes to the damage.", _t"+Resolve" end, + on_lose = function(self, err) return _t"#Target# is no longer attuned.", _t"-Resolve" end, activate = function(self, eff) eff.types = {} self:effectTemporaryValue(eff, "resists", {[eff.damtype] = eff.res}) @@ -1198,15 +1198,15 @@ newEffect{ newEffect{ name = "WILD_SPEED", image = "talents/infusion__movement.png", - desc = "Wild Speed", + desc = _t"Wild Speed", long_desc = function(self, eff) return ("Moving at extreme speed (%d%% faster) and gains 100%% stun, daze and pinning immunity. Any action other than movement will cancel it.") - :format(eff.power) end, + :tformat(eff.power) end, type = "physical", subtype = { nature=true, speed=true }, status = "beneficial", parameters = {power=100, no_talents=1}, - on_gain = function(self, err) return "#Target# is moving at extreme speed!", "+Wild Speed" end, - on_lose = function(self, err) return "#Target# slows down.", "-Wild Speed" end, + on_gain = function(self, err) return _t"#Target# is moving at extreme speed!", _t"+Wild Speed" end, + on_lose = function(self, err) return _t"#Target# slows down.", _t"-Wild Speed" end, get_fractional_percent = function(self, eff) local d = game.turn - eff.start_turn return util.bound(360 - d / eff.possible_end_turns * 360, 0, 360) @@ -1238,14 +1238,14 @@ newEffect{ newEffect{ name = "HUNTER_SPEED", image = "talents/infusion__movement.png", - desc = "Hunter", - long_desc = function(self, eff) return ("Movement is %d%% faster. Any action other than movement will end this effect."):format(eff.power) end, + desc = _t"Hunter", + long_desc = function(self, eff) return ("Movement is %d%% faster. Any action other than movement will end this effect."):tformat(eff.power) end, type = "physical", subtype = { nature=true, speed=true }, status = "beneficial", parameters = {power=1000}, - on_gain = function(self, err) return ("#Target# prepares %s!"):format(not self.player and self.ai_state.tactic == "escape" and "to escape" or "for the next kill"), "+Hunter" end, - on_lose = function(self, err) return "#Target# slows down.", "-Hunter" end, + on_gain = function(self, err) return ("#Target# prepares %s!"):tformat(not self.player and self.ai_state.tactic == "escape" and "to escape" or "for the next kill"), "+Hunter" end, + on_lose = function(self, err) return _t"#Target# slows down.", _t"-Hunter" end, on_timeout = function(self, eff)--make sure that NPC's that catch their target (or can't get away) can fight if eff.aiid then @@ -1281,14 +1281,14 @@ newEffect{ newEffect{ name = "STEP_UP", image = "talents/step_up.png", - desc = "Step Up", - long_desc = function(self, eff) return ("Movement is %d%% faster."):format(eff.power) end, + desc = _t"Step Up", + long_desc = function(self, eff) return ("Movement is %d%% faster."):tformat(eff.power) end, type = "physical", subtype = { speed=true, tactic=true }, status = "beneficial", parameters = {power=1000}, - on_gain = function(self, err) return "#Target# prepares for the next kill!.", "+Step Up" end, - on_lose = function(self, err) return "#Target# slows down.", "-Step Up" end, + on_gain = function(self, err) return _t"#Target# prepares for the next kill!.", _t"+Step Up" end, + on_lose = function(self, err) return _t"#Target# slows down.", _t"-Step Up" end, get_fractional_percent = function(self, eff) local d = game.turn - eff.start_turn return util.bound(360 - d / eff.possible_end_turns * 360, 0, 360) @@ -1311,14 +1311,14 @@ newEffect{ newEffect{ name = "LIGHTNING_SPEED", image = "talents/lightning_speed.png", - desc = "Lightning Speed", - long_desc = function(self, eff) return ("Turn into pure lightning, moving %d%% faster. It also increases your lightning resistance by 100%% and your physical resistance by 30%%."):format(eff.power) end, + desc = _t"Lightning Speed", + long_desc = function(self, eff) return ("Turn into pure lightning, moving %d%% faster. It also increases your lightning resistance by 100%% and your physical resistance by 30%%."):tformat(eff.power) end, type = "physical", subtype = { lightning=true, speed=true }, status = "beneficial", parameters = {}, - on_gain = function(self, err) return "#Target# turns into pure lightning!.", "+Lightning Speed" end, - on_lose = function(self, err) return "#Target# is back to normal.", "-Lightning Speed" end, + on_gain = function(self, err) return _t"#Target# turns into pure lightning!.", _t"+Lightning Speed" end, + on_lose = function(self, err) return _t"#Target# is back to normal.", _t"-Lightning Speed" end, get_fractional_percent = function(self, eff) local d = game.turn - eff.start_turn return util.bound(360 - d / eff.possible_end_turns * 360, 0, 360) @@ -1351,14 +1351,14 @@ newEffect{ newEffect{ name = "DRAGONS_FIRE", image = "talents/fire_breath.png", - desc = "Dragon's Fire", - long_desc = function(self, eff) return ("Dragon blood runs through your veins. You can breathe fire (or have it improved if you already could)."):format() end, + desc = _t"Dragon's Fire", + long_desc = function(self, eff) return ("Dragon blood runs through your veins. You can breathe fire (or have it improved if you already could)."):tformat() end, type = "physical", subtype = { fire=true }, status = "beneficial", parameters = {power=1}, - on_gain = function(self, err) return "#Target#'s throat seems to be burning.", "+Dragon's fire" end, - on_lose = function(self, err) return "#Target#'s throat seems to cool down.", "-Dragon's fire" end, + on_gain = function(self, err) return _t"#Target#'s throat seems to be burning.", _t"+Dragon's fire" end, + on_lose = function(self, err) return _t"#Target#'s throat seems to cool down.", _t"-Dragon's fire" end, activate = function(self, eff) local t_id = self.T_FIRE_BREATH if not self.talents[t_id] then @@ -1391,8 +1391,8 @@ newEffect{ newEffect{ name = "GREATER_WEAPON_FOCUS", image = "talents/greater_weapon_focus.png", - desc = "Greater Weapon Focus", - long_desc = function(self, eff) return ("Each melee blow landed has a %d%% chance to trigger an additional melee blow (up to once per turn for each weapon)."):format(eff.chance) end, + desc = _t"Greater Weapon Focus", + long_desc = function(self, eff) return ("Each melee blow landed has a %d%% chance to trigger an additional melee blow (up to once per turn for each weapon)."):tformat(eff.chance) end, type = "physical", subtype = { tactic=true }, status = "beneficial", @@ -1423,14 +1423,14 @@ newEffect{ -- Grappling stuff newEffect{ name = "GRAPPLING", image = "talents/clinch.png", - desc = "Grappling", - long_desc = function(self, eff) return ("Engaged in a grapple draining %d stamina per turn and redirecting %d%% of damage taken to %s. Any movement will break the effect as will some unarmed talents."):format(eff.drain, eff.sharePct*100, eff.trgt.name or "unknown") end, + desc = _t"Grappling", + long_desc = function(self, eff) return ("Engaged in a grapple draining %d stamina per turn and redirecting %d%% of damage taken to %s. Any movement will break the effect as will some unarmed talents."):tformat(eff.drain, eff.sharePct*100, eff.trgt.name or "unknown") end, type = "physical", subtype = { grapple=true, }, status = "beneficial", parameters = {trgt, sharePct = 0.1, drain = 0}, - on_gain = function(self, err) return "#Target# is engaged in a grapple!", "+Grappling" end, - on_lose = function(self, err) return "#Target# has released the hold.", "-Grappling" end, + on_gain = function(self, err) return _t"#Target# is engaged in a grapple!", _t"+Grappling" end, + on_lose = function(self, err) return _t"#Target# has released the hold.", _t"-Grappling" end, on_timeout = function(self, eff) local p = eff.trgt:hasEffect(eff.trgt.EFF_GRAPPLED) if not p or p.src ~= self or core.fov.distance(self.x, self.y, eff.trgt.x, eff.trgt.y) > 1 or eff.trgt.dead or not game.level:hasEntity(eff.trgt) then @@ -1460,15 +1460,15 @@ newEffect{ newEffect{ name = "GRAPPLED", image = "talents/grab.png", - desc = "Grappled", - long_desc = function(self, eff) return ("The target is grappled, unable to move, and limited in its offensive capabilities.\n#RED#%sPinned\n%s\n%s\n%s#LAST#"):format(eff.silence > 0 and "Silenced\n" or "", "Physical power reduced by " .. math.ceil(eff.reduce), "Slowed by " .. math.floor(eff.slow * 100).."%", "Damage per turn " .. math.ceil(eff.power) ) end, + desc = _t"Grappled", + long_desc = function(self, eff) return ("The target is grappled, unable to move, and limited in its offensive capabilities.\n#RED#%sPinned\n%s\n%s\n%s#LAST#"):tformat(eff.silence > 0 and "Silenced\n" or "", "Physical power reduced by " .. math.ceil(eff.reduce), "Slowed by " .. math.floor(eff.slow * 100).."%", "Damage per turn " .. math.ceil(eff.power) ) end, type = "physical", subtype = { grapple=true, pin=true }, status = "detrimental", parameters = {silence = 0, slow = 0, reduce = 1, power = 1}, remove_on_clone = true, - on_gain = function(self, err) return "#Target# is grappled!", "+Grappled" end, - on_lose = function(self, err) return "#Target# is free from the grapple.", "-Grappled" end, + on_gain = function(self, err) return _t"#Target# is grappled!", _t"+Grappled" end, + on_lose = function(self, err) return _t"#Target# is free from the grapple.", _t"-Grappled" end, activate = function(self, eff) if self:attr("never_move") then self:effectTemporaryValue(eff, "never_move_before_grapple", 1) end -- Flag for Hurricane Throw self:effectTemporaryValue(eff, "never_move", 1) @@ -1497,14 +1497,14 @@ newEffect{ newEffect{ name = "CRUSHING_HOLD", image = "talents/crushing_hold.png", - desc = "Crushing Hold", - long_desc = function(self, eff) return ("The target is being crushed and suffers %d damage each turn"):format(eff.power) end, + desc = _t"Crushing Hold", + long_desc = function(self, eff) return ("The target is being crushed and suffers %d damage each turn"):tformat(eff.power) end, type = "physical", subtype = { grapple=true, pin=true }, status = "detrimental", parameters = { power=1 }, - on_gain = function(self, err) return "#Target# is being crushed.", "+Crushing Hold" end, - on_lose = function(self, err) return "#Target# has escaped the crushing hold.", "-Crushing Hold" end, + on_gain = function(self, err) return _t"#Target# is being crushed.", _t"+Crushing Hold" end, + on_lose = function(self, err) return _t"#Target# has escaped the crushing hold.", _t"-Crushing Hold" end, on_timeout = function(self, eff) if core.fov.distance(self.x, self.y, eff.src.x, eff.src.y) > 1 or eff.src.dead or not game.level:hasEntity(eff.src) then self:removeEffect(self.EFF_CRUSHING_HOLD) @@ -1522,14 +1522,14 @@ newEffect{ newEffect{ name = "STRANGLE_HOLD", image = "talents/clinch.png", - desc = "Strangle Hold", - long_desc = function(self, eff) return ("The target is being strangled and may not cast spells and suffers %d damage each turn."):format(eff.power) end, + desc = _t"Strangle Hold", + long_desc = function(self, eff) return ("The target is being strangled and may not cast spells and suffers %d damage each turn."):tformat(eff.power) end, type = "physical", subtype = { grapple=true, pin=true, silence=true }, status = "detrimental", parameters = { power=1 }, - on_gain = function(self, err) return "#Target# is being strangled.", "+Strangle Hold" end, - on_lose = function(self, err) return "#Target# has escaped the strangle hold.", "-Strangle Hold" end, + on_gain = function(self, err) return _t"#Target# is being strangled.", _t"+Strangle Hold" end, + on_lose = function(self, err) return _t"#Target# has escaped the strangle hold.", _t"-Strangle Hold" end, on_timeout = function(self, eff) if core.fov.distance(self.x, self.y, eff.src.x, eff.src.y) > 1 or eff.src.dead or not game.level:hasEntity(eff.src) then self:removeEffect(self.EFF_STRANGLE_HOLD) @@ -1550,14 +1550,14 @@ newEffect{ newEffect{ name = "MAIMED", image = "talents/maim.png", - desc = "Maimed", - long_desc = function(self, eff) return ("The target is maimed, reducing damage by %d and global speed by 30%%."):format(eff.power) end, + desc = _t"Maimed", + long_desc = function(self, eff) return ("The target is maimed, reducing damage by %d and global speed by 30%%."):tformat(eff.power) end, type = "physical", subtype = { wound=true, slow=true }, status = "detrimental", parameters = { atk=10, dam=10 }, - on_gain = function(self, err) return "#Target# is maimed.", "+Maimed" end, - on_lose = function(self, err) return "#Target# has recovered from the maiming.", "-Maimed" end, + on_gain = function(self, err) return _t"#Target# is maimed.", _t"+Maimed" end, + on_lose = function(self, err) return _t"#Target# has recovered from the maiming.", _t"-Maimed" end, activate = function(self, eff) eff.damid = self:addTemporaryValue("combat_dam", -eff.dam) eff.tmpid = self:addTemporaryValue("global_speed_add", -0.3) @@ -1570,14 +1570,14 @@ newEffect{ newEffect{ name = "EXPOSE_WEAKNESS", image = "talents/expose_weakness.png", - desc = "Expose Weakness", - long_desc = function(self, eff) return ("The target is focused on penetrating defenses, increasing armor penetration by %d, accuracy by %d, and all damage penetration by %d%%."):format(eff.apr, eff.accuracy, eff.penetration) end, + desc = _t"Expose Weakness", + long_desc = function(self, eff) return ("The target is focused on penetrating defenses, increasing armor penetration by %d, accuracy by %d, and all damage penetration by %d%%."):tformat(eff.apr, eff.accuracy, eff.penetration) end, type = "physical", subtype = { }, status = "beneficial", parameters = { accuracy=0, apr=0, penetration=0 }, - on_gain = function(self, err) return "#Target# is focusing on penetrating defenses.", "+Expose Weakness" end, - on_lose = function(self, err) return "#Target# is no longer focused on penetrating defenses.", "-Expose Weakness" end, + on_gain = function(self, err) return _t"#Target# is focusing on penetrating defenses.", _t"+Expose Weakness" end, + on_lose = function(self, err) return _t"#Target# is no longer focused on penetrating defenses.", _t"-Expose Weakness" end, activate = function(self, eff) self:effectTemporaryValue(eff, "combat_apr", eff.apr) self:effectTemporaryValue(eff, "combat_atk", eff.accuracy) @@ -1589,9 +1589,9 @@ newEffect{ newEffect{ name = "COMBO", image = "talents/combo_string.png", - desc = "Combo", + desc = _t"Combo", display_desc = function(self, eff) return eff.cur_power.." Combo" end, - long_desc = function(self, eff) return ("The target is in the middle of a combo chain and has earned %d combo points."):format(eff.cur_power) end, + long_desc = function(self, eff) return ("The target is in the middle of a combo chain and has earned %d combo points."):tformat(eff.cur_power) end, type = "physical", subtype = { tactic=true }, status = "beneficial", @@ -1616,14 +1616,14 @@ newEffect{ newEffect{ name = "DEFENSIVE_MANEUVER", image = "talents/set_up.png", - desc = "Defensive Maneuver", - long_desc = function(self, eff) return ("The target's defense is increased by %d."):format(eff.power) end, + desc = _t"Defensive Maneuver", + long_desc = function(self, eff) return ("The target's defense is increased by %d."):tformat(eff.power) end, type = "physical", subtype = { evade=true }, status = "beneficial", parameters = {power = 1}, - on_gain = function(self, err) return "#Target# is moving defensively!", "+Defensive Maneuver" end, - on_lose = function(self, err) return "#Target# isn't moving as defensively anymore.", "-Defensive Maneuver" end, + on_gain = function(self, err) return _t"#Target# is moving defensively!", _t"+Defensive Maneuver" end, + on_lose = function(self, err) return _t"#Target# isn't moving as defensively anymore.", _t"-Defensive Maneuver" end, activate = function(self, eff) eff.defense = self:addTemporaryValue("combat_def", eff.power) end, @@ -1634,14 +1634,14 @@ newEffect{ newEffect{ name = "SET_UP", image = "talents/set_up.png", - desc = "Set Up", - long_desc = function(self, eff) return ("The target is off balance and is %d%% more likely to be crit by the target that set it up. In addition all its saves are reduced by %d."):format(eff.power, eff.power) end, + desc = _t"Set Up", + long_desc = function(self, eff) return ("The target is off balance and is %d%% more likely to be crit by the target that set it up. In addition all its saves are reduced by %d."):tformat(eff.power, eff.power) end, type = "physical", subtype = { tactic=true }, status = "detrimental", parameters = {power = 1}, - on_gain = function(self, err) return "#Target# has been set up!", "+Set Up" end, - on_lose = function(self, err) return "#Target# has survived the set up.", "-Set Up" end, + on_gain = function(self, err) return _t"#Target# has been set up!", _t"+Set Up" end, + on_lose = function(self, err) return _t"#Target# has survived the set up.", _t"-Set Up" end, activate = function(self, eff) eff.mental = self:addTemporaryValue("combat_mentalresist", -eff.power) eff.spell = self:addTemporaryValue("combat_spellresist", -eff.power) @@ -1657,14 +1657,14 @@ newEffect{ newEffect{ name = "Recovery", - desc = "Recovery", - long_desc = function(self, eff) return ("The target has %d increased life regeneration."):format(eff.regen) end, + desc = _t"Recovery", + long_desc = function(self, eff) return ("The target has %d increased life regeneration."):tformat(eff.regen) end, type = "physical", subtype = { heal=true, regeneration=true }, status = "beneficial", parameters = { regen=10 }, - on_gain = function(self, err) return "#Target# is recovering from the damage!", "+Recovery" end, - on_lose = function(self, err) return "#Target# has finished recovering.", "-Recovery" end, + on_gain = function(self, err) return _t"#Target# is recovering from the damage!", _t"+Recovery" end, + on_lose = function(self, err) return _t"#Target# has finished recovering.", _t"-Recovery" end, activate = function(self, eff) eff.regenid = self:addTemporaryValue("life_regen", eff.regen) if core.shader.active(4) then @@ -1681,14 +1681,14 @@ newEffect{ newEffect{ name = "REFLEXIVE_DODGING", image = "talents/heightened_reflexes.png", - desc = "Reflexive Dodging", - long_desc = function(self, eff) return ("Increases global action speed by %d%%."):format(eff.power * 100) end, + desc = _t"Reflexive Dodging", + long_desc = function(self, eff) return ("Increases global action speed by %d%%."):tformat(eff.power * 100) end, type = "physical", subtype = { evade=true, speed=true }, status = "beneficial", parameters = { power=0.1 }, - on_gain = function(self, err) return "#Target# speeds up.", "+Reflexive Dodging" end, - on_lose = function(self, err) return "#Target# slows down.", "-Reflexive Dodging" end, + on_gain = function(self, err) return _t"#Target# speeds up.", _t"+Reflexive Dodging" end, + on_lose = function(self, err) return _t"#Target# slows down.", _t"-Reflexive Dodging" end, lists = 'break_with_step_up', activate = function(self, eff) eff.tmpid = self:addTemporaryValue("global_speed_add", eff.power) @@ -1700,8 +1700,8 @@ newEffect{ newEffect{ name = "WEAKENED_DEFENSES", image = "talents/exploit_weakness.png", - desc = "Weakened Defenses", - long_desc = function(self, eff) return ("The target's physical resistance has been reduced by %d%%."):format(eff.cur_inc) end, + desc = _t"Weakened Defenses", + long_desc = function(self, eff) return ("The target's physical resistance has been reduced by %d%%."):tformat(eff.cur_inc) end, type = "physical", subtype = { sunder=true }, status = "detrimental", @@ -1728,7 +1728,7 @@ newEffect{ newEffect{ name = "WATERS_OF_LIFE", image = "talents/waters_of_life.png", - desc = "Waters of Life", + desc = _t"Waters of Life", long_desc = function(self, eff) return ("The target purifies all diseases and poisons, turning them into healing effects.") end, type = "physical", subtype = { nature=true, heal=true }, @@ -1746,13 +1746,13 @@ newEffect{ newEffect{ name = "ELEMENTAL_HARMONY", image = "effects/elemental_harmony.png", - desc = "Elemental Harmony", + desc = _t"Elemental Harmony", long_desc = function(self, eff) - if eff.type == DamageType.FIRE then return ("Increases global speed by %d%%."):format(100 * self:callTalent(self.T_ELEMENTAL_HARMONY, "fireSpeed")) - elseif eff.type == DamageType.COLD then return ("Increases armour by %d."):format(self:callTalent(self.T_ELEMENTAL_HARMONY, "coldArmor")) - elseif eff.type == DamageType.LIGHTNING then return ("Increases all stats by %d."):format(self:callTalent(self.T_ELEMENTAL_HARMONY, "lightningStats")) - elseif eff.type == DamageType.ACID then return ("Increases life regen by %0.2f."):format(self:callTalent(self.T_ELEMENTAL_HARMONY, "acidRegen")) - elseif eff.type == DamageType.NATURE then return ("Increases all resists by %d%%."):format(self:callTalent(self.T_ELEMENTAL_HARMONY, "natureRes")) + if eff.type == DamageType.FIRE then return ("Increases global speed by %d%%."):tformat(100 * self:callTalent(self.T_ELEMENTAL_HARMONY, "fireSpeed")) + elseif eff.type == DamageType.COLD then return ("Increases armour by %d."):tformat(self:callTalent(self.T_ELEMENTAL_HARMONY, "coldArmor")) + elseif eff.type == DamageType.LIGHTNING then return ("Increases all stats by %d."):tformat(self:callTalent(self.T_ELEMENTAL_HARMONY, "lightningStats")) + elseif eff.type == DamageType.ACID then return ("Increases life regen by %0.2f."):tformat(self:callTalent(self.T_ELEMENTAL_HARMONY, "acidRegen")) + elseif eff.type == DamageType.NATURE then return ("Increases all resists by %d%%."):tformat(self:callTalent(self.T_ELEMENTAL_HARMONY, "natureRes")) end end, type = "physical", @@ -1799,9 +1799,9 @@ newEffect{ newEffect{ name = "HEALING_NEXUS", image = "talents/healing_nexus.png", - desc = "Healing Nexus Redirection", + desc = _t"Healing Nexus Redirection", long_desc = function(self, eff) - return ("All direct healing done to the target fails, and is instead redirected to %s at %d%% effectiveness."):format(eff.src.name, eff.pct * 100, eff.src.name) + return ("All direct healing done to the target fails, and is instead redirected to %s at %d%% effectiveness."):tformat(eff.src.name, eff.pct * 100, eff.src.name) end, type = "physical", subtype = { nature=true, heal=true }, @@ -1829,9 +1829,9 @@ newEffect{ newEffect{ name = "HEALING_NEXUS_BUFF", image = "talents/healing_nexus.png", - desc = "Healing Nexus", + desc = _t"Healing Nexus", long_desc = function(self, eff) - return ("All direct healing done to the target is increased by %d%% and each heal restores %0.1f equilibrium."):format(eff.pct * 100, eff.eq) + return ("All direct healing done to the target is increased by %d%% and each heal restores %0.1f equilibrium."):tformat(eff.pct * 100, eff.eq) end, type = "physical", subtype = { nature=true, heal=true }, @@ -1852,14 +1852,14 @@ newEffect{ newEffect{ name = "PSIONIC_BIND", image = "effects/psionic_bind.png", - desc = "Immobilized", + desc = _t"Immobilized", long_desc = function(self, eff) return "Immobilized by telekinetic forces." end, type = "physical", subtype = { telekinesis=true, pin=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#F53CBE##Target# is bound by telekinetic forces!", "+Paralyzed" end, - on_lose = function(self, err) return "#Target# shakes free of the telekinetic binding", "-Paralyzed" end, + on_gain = function(self, err) return _t"#F53CBE##Target# is bound by telekinetic forces!", _t"+Paralyzed" end, + on_lose = function(self, err) return _t"#Target# shakes free of the telekinetic binding", _t"-Paralyzed" end, activate = function(self, eff) --eff.particle = self:addParticles(Particles.new("gloom_stunned", 1)) eff.tmpid = self:addTemporaryValue("never_move", 1) @@ -1872,14 +1872,14 @@ newEffect{ newEffect{ name = "IMPLODING", image = "talents/implode.png", - desc = "Imploding (slow)", - long_desc = function(self, eff) return ("Slowed by 50%% and taking %d crushing damage per turn."):format( eff.power) end, + desc = _t"Imploding (slow)", + long_desc = function(self, eff) return ("Slowed by 50%% and taking %d crushing damage per turn."):tformat( eff.power) end, type = "physical", subtype = { telekinesis=true, slow=true }, status = "detrimental", parameters = {}, - on_gain = function(self, err) return "#Target# is being crushed.", "+Imploding" end, - on_lose = function(self, err) return "#Target# shakes off the crushing forces.", "-Imploding" end, + on_gain = function(self, err) return _t"#Target# is being crushed.", _t"+Imploding" end, + on_lose = function(self, err) return _t"#Target# shakes off the crushing forces.", _t"-Imploding" end, activate = function(self, eff) if core.shader.allow("distort") then eff.particle = self:addParticles(Particles.new("gravity_well2", 1, {radius=1})) end eff.tmpid = self:addTemporaryValue("global_speed_add", -0.5) @@ -1895,14 +1895,14 @@ newEffect{ newEffect{ name = "FREE_ACTION", image = "effects/free_action.png", - desc = "Free Action", - long_desc = function(self, eff) return ("The target gains %d%% stun, daze and pinning immunity."):format(eff.power * 100) end, + desc = _t"Free Action", + long_desc = function(self, eff) return ("The target gains %d%% stun, daze and pinning immunity."):tformat(eff.power * 100) end, type = "physical", subtype = { nature=true }, status = "beneficial", parameters = { power=1 }, - on_gain = function(self, err) return "#Target# is moving freely.", "+Free Action" end, - on_lose = function(self, err) return "#Target# is moving less freely.", "-Free Action" end, + on_gain = function(self, err) return _t"#Target# is moving freely.", _t"+Free Action" end, + on_lose = function(self, err) return _t"#Target# is moving less freely.", _t"-Free Action" end, activate = function(self, eff) eff.stun = self:addTemporaryValue("stun_immune", eff.power) eff.daze = self:addTemporaryValue("daze_immune", eff.power) @@ -1917,14 +1917,14 @@ newEffect{ newEffect{ name = "ADRENALINE_SURGE", image = "talents/adrenaline_surge.png", - desc = "Adrenaline Surge", - long_desc = function(self, eff) return ("The target's combat damage is improved by %d and it an continue to fight past the point of exhaustion, supplementing life for stamina."):format(eff.power) end, + desc = _t"Adrenaline Surge", + long_desc = function(self, eff) return ("The target's combat damage is improved by %d and it an continue to fight past the point of exhaustion, supplementing life for stamina."):tformat(eff.power) end, type = "physical", subtype = { frenzy=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# feels a surge of adrenaline." end, - on_lose = function(self, err) return "#Target#'s adrenaline surge has come to an end." end, + on_gain = function(self, err) return _t"#Target# feels a surge of adrenaline." end, + on_lose = function(self, err) return _t"#Target#'s adrenaline surge has come to an end." end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("combat_dam", eff.power) end, @@ -1935,8 +1935,8 @@ newEffect{ newEffect{ name = "BLINDSIDE_BONUS", image = "talents/blindside.png", - desc = "Blindside Bonus", - long_desc = function(self, eff) return ("The target has appeared out of nowhere! It's defense is boosted by %d."):format(eff.defenseChange) end, + desc = _t"Blindside Bonus", + long_desc = function(self, eff) return ("The target has appeared out of nowhere! It's defense is boosted by %d."):tformat(eff.defenseChange) end, type = "physical", subtype = { evade=true }, status = "beneficial", @@ -1951,14 +1951,14 @@ newEffect{ newEffect{ name = "OFFBALANCE", - desc = "Off-balance", + desc = _t"Off-balance", long_desc = function(self, eff) return ("Badly off balance. Global damage is reduced by 15%.") end, type = "physical", subtype = { ["cross tier"]=true }, status = "detrimental", parameters = {power = 1}, - on_gain = function(self, err) return nil, "+Off-balance" end, - on_lose = function(self, err) return nil, "-Off-balance" end, + on_gain = function(self, err) return nil, _t"+Off-balance" end, + on_lose = function(self, err) return nil, _t"-Off-balance" end, activate = function(self, eff) eff.speedid = self:addTemporaryValue("numbed", 15) end, @@ -1969,14 +1969,14 @@ newEffect{ newEffect{ name = "OFFGUARD", - desc = "Off-guard", image = "talents/precise_strikes.png", + desc = _t"Off-guard", image = "talents/precise_strikes.png", long_desc = function(self, eff) return ("Badly off guard. Attackers gain a 10% bonus to physical critical strike chance and physical critcal strike power.") end, type = "physical", subtype = { ["cross tier"]=true }, status = "detrimental", parameters = {power = 1}, - on_gain = function(self, err) return nil, "+Off-guard" end, - on_lose = function(self, err) return nil, "-Off-guard" end, + on_gain = function(self, err) return nil, _t"+Off-guard" end, + on_lose = function(self, err) return nil, _t"-Off-guard" end, activate = function(self, eff) eff.crit_vuln = self:addTemporaryValue("combat_crit_vulnerable", 10) -- increases chance to be crit end, @@ -1987,14 +1987,14 @@ newEffect{ newEffect{ name = "SLOW_MOVE", - desc = "Slow movement", image = "talents/slow.png", - long_desc = function(self, eff) return ("Movement speed is reduced by %d%%."):format(eff.power*100) end, + desc = _t"Slow movement", image = "talents/slow.png", + long_desc = function(self, eff) return ("Movement speed is reduced by %d%%."):tformat(eff.power*100) end, type = "physical", subtype = { nature=true }, status = "detrimental", parameters = {power = 1}, - on_gain = function(self, err) return nil, "+Slow movement" end, - on_lose = function(self, err) return nil, "-Slow movement" end, + on_gain = function(self, err) return nil, _t"+Slow movement" end, + on_lose = function(self, err) return nil, _t"-Slow movement" end, activate = function(self, eff) eff.speedid = self:addTemporaryValue("movement_speed", -eff.power) end, @@ -2005,15 +2005,15 @@ newEffect{ newEffect{ name = "WEAKENED", - desc = "Weakened", image = "talents/ruined_earth.png", - long_desc = function(self, eff) return ("The target has been weakened, reducing all damage inflicted by %d%%."):format(eff.power) end, + desc = _t"Weakened", image = "talents/ruined_earth.png", + long_desc = function(self, eff) return ("The target has been weakened, reducing all damage inflicted by %d%%."):tformat(eff.power) end, charges = function(self, eff) return (math.floor(eff.power)).."%" end, type = "physical", subtype = { curse=true }, status = "detrimental", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# has been weakened." end, - on_lose = function(self, err) return "#Target#'s is no longer weakened." end, + on_gain = function(self, err) return _t"#Target# has been weakened." end, + on_lose = function(self, err) return _t"#Target#'s is no longer weakened." end, activate = function(self, eff) eff.incDamageId = self:addTemporaryValue("inc_damage", {all=-eff.power}) end, @@ -2024,14 +2024,14 @@ newEffect{ newEffect{ name = "LOWER_FIRE_RESIST", - desc = "Lowered fire resistance", - long_desc = function(self, eff) return ("The target fire resistance is reduced by %d%%."):format(eff.power) end, + desc = _t"Lowered fire resistance", + long_desc = function(self, eff) return ("The target fire resistance is reduced by %d%%."):tformat(eff.power) end, type = "physical", subtype = { nature=true }, status = "detrimental", parameters = { power=20 }, - on_gain = function(self, err) return "#Target# becomes more vulnerable to fire.", "+Low. fire resist" end, - on_lose = function(self, err) return "#Target# is less vulnerable to fire.", "-Low. fire resist" end, + on_gain = function(self, err) return _t"#Target# becomes more vulnerable to fire.", _t"+Low. fire resist" end, + on_lose = function(self, err) return _t"#Target# is less vulnerable to fire.", _t"-Low. fire resist" end, activate = function(self, eff) eff.pid = self:addTemporaryValue("resists", {[DamageType.FIRE]=-eff.power}) end, @@ -2041,14 +2041,14 @@ newEffect{ } newEffect{ name = "LOWER_COLD_RESIST", - desc = "Lowered cold resistance", - long_desc = function(self, eff) return ("The target cold resistance is reduced by %d%%."):format(eff.power) end, + desc = _t"Lowered cold resistance", + long_desc = function(self, eff) return ("The target cold resistance is reduced by %d%%."):tformat(eff.power) end, type = "physical", subtype = { nature=true }, status = "detrimental", parameters = { power=20 }, - on_gain = function(self, err) return "#Target# becomes more vulnerable to cold.", "+Low. cold resist" end, - on_lose = function(self, err) return "#Target# is less vulnerable to cold.", "-Low. cold resist" end, + on_gain = function(self, err) return _t"#Target# becomes more vulnerable to cold.", _t"+Low. cold resist" end, + on_lose = function(self, err) return _t"#Target# is less vulnerable to cold.", _t"-Low. cold resist" end, activate = function(self, eff) eff.pid = self:addTemporaryValue("resists", {[DamageType.COLD]=-eff.power}) end, @@ -2058,14 +2058,14 @@ newEffect{ } newEffect{ name = "LOWER_NATURE_RESIST", - desc = "Lowered nature resistance", - long_desc = function(self, eff) return ("The target nature resistance is reduced by %d%%."):format(eff.power) end, + desc = _t"Lowered nature resistance", + long_desc = function(self, eff) return ("The target nature resistance is reduced by %d%%."):tformat(eff.power) end, type = "physical", subtype = { nature=true }, status = "detrimental", parameters = { power=20 }, - on_gain = function(self, err) return "#Target# becomes more vulnerable to nature.", "+Low. nature resist" end, - on_lose = function(self, err) return "#Target# is less vulnerable to nature.", "-Low. nature resist" end, + on_gain = function(self, err) return _t"#Target# becomes more vulnerable to nature.", _t"+Low. nature resist" end, + on_lose = function(self, err) return _t"#Target# is less vulnerable to nature.", _t"-Low. nature resist" end, activate = function(self, eff) eff.pid = self:addTemporaryValue("resists", {[DamageType.NATURE]=-eff.power}) end, @@ -2075,14 +2075,14 @@ newEffect{ } newEffect{ name = "LOWER_PHYSICAL_RESIST", - desc = "Lowered physical resistance", - long_desc = function(self, eff) return ("The target physical resistance is reduced by %d%%."):format(eff.power) end, + desc = _t"Lowered physical resistance", + long_desc = function(self, eff) return ("The target physical resistance is reduced by %d%%."):tformat(eff.power) end, type = "physical", subtype = { nature=true }, status = "detrimental", parameters = { power=20 }, - on_gain = function(self, err) return "#Target# becomes more vulnerable to physical.", "+Low. physical resist" end, - on_lose = function(self, err) return "#Target# is less vulnerable to physical.", "-Low. physical resist" end, + on_gain = function(self, err) return _t"#Target# becomes more vulnerable to physical.", _t"+Low. physical resist" end, + on_lose = function(self, err) return _t"#Target# is less vulnerable to physical.", _t"-Low. physical resist" end, activate = function(self, eff) eff.pid = self:addTemporaryValue("resists", {[DamageType.PHYSICAL]=-eff.power}) end, @@ -2093,14 +2093,14 @@ newEffect{ newEffect{ name = "CURSED_WOUND", image = "talents/slash.png", - desc = "Cursed Wound", - long_desc = function(self, eff) return ("The target's has a cursed wound, reducing healing by %d%%."):format(-eff.healFactorChange * 100) end, + desc = _t"Cursed Wound", + long_desc = function(self, eff) return ("The target's has a cursed wound, reducing healing by %d%%."):tformat(-eff.healFactorChange * 100) end, type = "physical", subtype = { wound=true }, no_ct_effect = true, status = "detrimental", parameters = { healFactorChange=-0.1 }, - on_gain = function(self, err) return "#Target# has a cursed wound!", "+Cursed Wound" end, - on_lose = function(self, err) return "#Target# no longer has a cursed wound.", "-Cursed Wound" end, + on_gain = function(self, err) return _t"#Target# has a cursed wound!", _t"+Cursed Wound" end, + on_lose = function(self, err) return _t"#Target# no longer has a cursed wound.", _t"-Cursed Wound" end, activate = function(self, eff) eff.healFactorId = self:addTemporaryValue("healing_factor", eff.healFactorChange) end, @@ -2122,14 +2122,14 @@ newEffect{ newEffect{ name = "LUMINESCENCE", - desc = "Luminescence ", image = "talents/infusion__sun.png", - long_desc = function(self, eff) return ("The target has been revealed, reducing its stealth power by %d."):format(eff.power) end, + desc = _t"Luminescence ", image = "talents/infusion__sun.png", + long_desc = function(self, eff) return ("The target has been revealed, reducing its stealth power by %d."):tformat(eff.power) end, type = "physical", subtype = { nature=true, light=true }, status = "detrimental", parameters = { power=20 }, - on_gain = function(self, err) return "#Target# has been illuminated.", "+Luminescence" end, - on_lose = function(self, err) return "#Target# is no longer illuminated.", "-Luminescence" end, + on_gain = function(self, err) return _t"#Target# has been illuminated.", _t"+Luminescence" end, + on_lose = function(self, err) return _t"#Target# is no longer illuminated.", _t"-Luminescence" end, activate = function(self, eff) eff.stealthid = self:addTemporaryValue("inc_stealth", -eff.power) end, @@ -2140,15 +2140,15 @@ newEffect{ newEffect{ name = "SPELL_DISRUPTION", image = "talents/mana_clash.png", - desc = "Spell Disruption", - long_desc = function(self, eff) return ("The target has a %d%% chance to fail any spell it casts and a chance each turn to lose spell sustains."):format(eff.cur_power) end, + desc = _t"Spell Disruption", + long_desc = function(self, eff) return ("The target has a %d%% chance to fail any spell it casts and a chance each turn to lose spell sustains."):tformat(eff.cur_power) end, charges = function(self, eff) return eff.cur_power end, type = "physical", subtype = { antimagic=true, nature=true }, status = "detrimental", parameters = { power=10, max=50 }, - on_gain = function(self, err) return "#Target#'s magic has been disrupted." end, - on_lose = function(self, err) return "#Target#'s is no longer disrupted." end, + on_gain = function(self, err) return _t"#Target#'s magic has been disrupted." end, + on_lose = function(self, err) return _t"#Target#'s is no longer disrupted." end, on_merge = function(self, old_eff, new_eff) self:removeTemporaryValue("spell_failure", old_eff.tmpid) old_eff.cur_power = math.min(old_eff.cur_power + new_eff.power, new_eff.max) @@ -2168,14 +2168,14 @@ newEffect{ newEffect{ name = "RESONANCE", image = "talents/alchemist_protection.png", - desc = "Resonance", - long_desc = function(self, eff) return ("+%d%% %s damage."):format(eff.dam, DamageType:get(eff.damtype).name) end, + desc = _t"Resonance", + long_desc = function(self, eff) return ("+%d%% %s damage."):tformat(eff.dam, DamageType:get(eff.damtype).name) end, type = "physical", subtype = { nature=true }, status = "beneficial", parameters = { dam=10, damtype=DamageType.ARCANE }, - on_gain = function(self, err) return "#Target# resonates with the damage.", "+Resonance" end, - on_lose = function(self, err) return "#Target# is no longer resonating.", "-Resonance" end, + on_gain = function(self, err) return _t"#Target# resonates with the damage.", _t"+Resonance" end, + on_lose = function(self, err) return _t"#Target# is no longer resonating.", _t"-Resonance" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("inc_damage", {[eff.damtype]=eff.dam}) end, @@ -2186,8 +2186,8 @@ newEffect{ newEffect{ name = "THORN_GRAB", image = "talents/thorn_grab.png", - desc = "Thorn Grab", - long_desc = function(self, eff) return ("The target is encased in thorny vines, dealing %d nature damage each turn and reducing its speed by %d%%."):format(eff.dam, eff.speed*100) end, + desc = _t"Thorn Grab", + long_desc = function(self, eff) return ("The target is encased in thorny vines, dealing %d nature damage each turn and reducing its speed by %d%%."):tformat(eff.dam, eff.speed*100) end, type = "physical", subtype = { nature=true }, status = "detrimental", @@ -2205,14 +2205,14 @@ newEffect{ newEffect{ name = "LEAVES_COVER", image = "talents/leaves_tide.png", - desc = "Leaves Cover", - long_desc = function(self, eff) return ("%d%% chance to fully absorb any damaging actions."):format(eff.power) end, + desc = _t"Leaves Cover", + long_desc = function(self, eff) return ("%d%% chance to fully absorb any damaging actions."):tformat(eff.power) end, type = "physical", subtype = { nature=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# is protected by a layer of thick leaves.", "+Leaves Cover" end, - on_lose = function(self, err) return "#Target# cover of leaves falls apart.", "-Leaves Cover" end, + on_gain = function(self, err) return _t"#Target# is protected by a layer of thick leaves.", _t"+Leaves Cover" end, + on_lose = function(self, err) return _t"#Target# cover of leaves falls apart.", _t"-Leaves Cover" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("cancel_damage_chance", eff.power) end, @@ -2224,13 +2224,13 @@ newEffect{ -- left in for backwards compatibility newEffect{ -- Note: This effect is cancelled by EFF_DISARMED name = "DUAL_WEAPON_DEFENSE", image = "talents/dual_weapon_defense.png", - desc = "Parrying", + desc = _t"Parrying", deflectchance = function(self, eff) -- The last partial deflect has a reduced chance to happen if self:attr("encased_in_ice") or self:attr("disarmed") then return 0 end return util.bound(eff.deflects>=1 and eff.chance or eff.chance*math.mod(eff.deflects,1),0,100) end, long_desc = function(self, eff) - return ("Parrying melee attacks: Has a %d%% chance to deflect up to %d damage from the next %0.1f attack(s)."):format(self.tempeffect_def.EFF_DUAL_WEAPON_DEFENSE.deflectchance(self, eff),eff.dam, math.max(eff.deflects,1)) + return ("Parrying melee attacks: Has a %d%% chance to deflect up to %d damage from the next %0.1f attack(s)."):tformat(self.tempeffect_def.EFF_DUAL_WEAPON_DEFENSE.deflectchance(self, eff),eff.dam, math.max(eff.deflects,1)) end, charges = function(self, eff) return math.ceil(eff.deflects) end, type = "physical", @@ -2254,14 +2254,14 @@ newEffect{ -- Note: This effect is cancelled by EFF_DISARMED newEffect{ -- Note: This effect is cancelled by EFF_DISARMED name = "PARRY", image = "talents/dual_weapon_mastery.png", - desc = "Parrying", + desc = _t"Parrying", deflectchance = function(self, eff, adj) -- The last partial deflect has a reduced chance to happen adj = adj or 1 if self:attr("encased_in_ice") or self:attr("disarmed") then return 0 end return util.bound(adj*(eff.deflects >=1 and eff.chance or eff.chance*math.mod(eff.deflects, 1)), 0, 100) end, long_desc = function(self, eff) - return ("Parrying melee%s attacks: Has a %d%% chance to deflect up to %d damage from the next %0.1f attack(s). Parried attacks cannot crit."):format(eff.parry_ranged and " and ranged" or "", math.floor(self:callEffect(self.EFF_PARRY, "deflectchance")), eff.dam, math.max(eff.deflects, 1)) + return ("Parrying melee%s attacks: Has a %d%% chance to deflect up to %d damage from the next %0.1f attack(s). Parried attacks cannot crit."):tformat(eff.parry_ranged and " and ranged" or "", math.floor(self:callEffect(self.EFF_PARRY, "deflectchance")), eff.dam, math.max(eff.deflects, 1)) end, charges = function(self, eff) return math.ceil(eff.deflects) end, type = "physical", @@ -2308,8 +2308,8 @@ newEffect{ -- Note: This effect is cancelled by EFF_DISARMED newEffect{ name = "BLOCKING", image = "talents/block.png", - desc = "Blocking", - long_desc = function(self, eff) return ("Reduces all damage taken by %d."):format(eff.power) end, + desc = _t"Blocking", + long_desc = function(self, eff) return ("Reduces all damage taken by %d."):tformat(eff.power) end, type = "physical", subtype = { tactic=true }, status = "beneficial", @@ -2392,14 +2392,14 @@ newEffect{ newEffect{ name = "COUNTERSTRIKE", image = "effects/counterstrike.png", - desc = "Counterstrike", + desc = _t"Counterstrike", long_desc = function(self, eff) return "Vulnerable to deadly counterstrikes. Next melee attack will inflict double damage." end, type = "physical", subtype = { tactic=true }, status = "detrimental", parameters = { nb=1 }, - on_gain = function(self, eff) return nil, "+Counter" end, - on_lose = function(self, eff) return nil, "-Counter" end, + on_gain = function(self, eff) return nil, _t"+Counter" end, + on_lose = function(self, eff) return nil, _t"-Counter" end, onStrike = function(self, eff, dam, src) eff.nb = eff.nb - 1 if eff.nb <= 0 then self:removeEffect(self.EFF_COUNTERSTRIKE) end @@ -2429,13 +2429,13 @@ newEffect{ newEffect{ name = "COUNTER_ATTACKING", image = "talents/counter_attack.png", - desc = "Counter Attacking", + desc = _t"Counter Attacking", counterchance = function(self, eff) --The last partial counter attack has a reduced chance to happen if self:attr("encased_in_ice") or self:attr("disarmed") then return 0 end return util.bound(eff.counterattacks>=1 and eff.chance or eff.chance*math.mod(eff.counterattacks,1),0,100) end, long_desc = function(self, eff) - return ("Countering melee attacks: Has a %d%% chance to get an automatic counter attack when avoiding a melee attack. (%0.1f counters remaining)"):format(self.tempeffect_def.EFF_COUNTER_ATTACKING.counterchance(self, eff), math.max(eff.counterattacks,1)) + return ("Countering melee attacks: Has a %d%% chance to get an automatic counter attack when avoiding a melee attack. (%0.1f counters remaining)"):tformat(self.tempeffect_def.EFF_COUNTER_ATTACKING.counterchance(self, eff), math.max(eff.counterattacks,1)) end, charges = function(self, eff) return math.ceil(eff.counterattacks) end, type = "physical", @@ -2456,10 +2456,10 @@ newEffect{ newEffect{ name = "BRAWLER_BLOCK", image = "talents/block.png", - desc = "Blocking", + desc = _t"Blocking", long_desc = function(self, eff) return ("Blocking up to %d total damage."): - format(self.brawler_block or 0) + tformat(self.brawler_block or 0) end, type = "physical", subtype = {tactic=true}, @@ -2479,7 +2479,7 @@ newEffect{ print("[PALM CALLBACK] dam start", value) local dam = value - game:delayedLogDamage(src, self, 0, ("#STEEL_BLUE#(%d blocked)#LAST#"):format(math.min(dam, self.brawler_block)), false) + game:delayedLogDamage(src, self, 0, ("#STEEL_BLUE#(%d blocked)#LAST#"):tformat(math.min(dam, self.brawler_block)), false) if dam < self.brawler_block then self.brawler_block = self.brawler_block - dam dam = 0 @@ -2502,13 +2502,13 @@ newEffect{ newEffect{ name = "DEFENSIVE_GRAPPLING", image = "talents/defensive_throw.png", - desc = "Grappling Defensively", + desc = _t"Grappling Defensively", throwchance = function(self, eff) -- the last partial defensive throw has a reduced chance to happen if not self:isUnarmed() or self:attr("encased_in_ice") then return 0 end -- Must be unarmed return util.bound(eff.throws>=1 and eff.chance or eff.chance*math.mod(eff.throws,1),0,100) end, long_desc = function(self, eff) - return ("Has a %d%% chance to counter attack with a defensive throw when avoiding a melee attack, possibly throwing the target to the ground and stunning it. (%0.1f throws remaining)"):format(self.tempeffect_def.EFF_DEFENSIVE_GRAPPLING.throwchance(self, eff), math.max(eff.throws,1)) + return ("Has a %d%% chance to counter attack with a defensive throw when avoiding a melee attack, possibly throwing the target to the ground and stunning it. (%0.1f throws remaining)"):tformat(self.tempeffect_def.EFF_DEFENSIVE_GRAPPLING.throwchance(self, eff), math.max(eff.throws,1)) end, charges = function(self, eff) return math.ceil(eff.throws) end, type = "physical", @@ -2530,11 +2530,11 @@ newEffect{ newEffect{ name = "RAVAGE", image = "talents/ravage.png", - desc = "Ravage", + desc = _t"Ravage", long_desc = function(self, eff) local ravaged = "each turn." if eff.ravage then ravaged = "and is losing one physical effect turn." end - return ("The target is being ravaged by distortion, taking %0.2f physical damage %s"):format(eff.dam, ravaged) + return ("The target is being ravaged by distortion, taking %0.2f physical damage %s"):tformat(eff.dam, ravaged) end, type = "physical", subtype = { distortion=true }, @@ -2590,8 +2590,8 @@ newEffect{ newEffect{ name = "DISTORTION", image = "talents/maelstrom.png", - desc = "Distortion", - long_desc = function(self, eff) return ("The target has recently taken distortion damage, is vulnerable to distortion effects, and has its physical resistance decreased by %d%%."):format(eff.power) end, + desc = _t"Distortion", + long_desc = function(self, eff) return ("The target has recently taken distortion damage, is vulnerable to distortion effects, and has its physical resistance decreased by %d%%."):tformat(eff.power) end, type = "physical", subtype = { distortion=true }, status = "detrimental", @@ -2606,14 +2606,14 @@ newEffect{ newEffect{ name = "DISABLE", image = "talents/cripple.png", - desc = "Disable", - long_desc = function(self, eff) return ("The target is disabled, reducing movement speed by %d%% and accuracy by %d."):format(eff.speed * 100, eff.atk) end, + desc = _t"Disable", + long_desc = function(self, eff) return ("The target is disabled, reducing movement speed by %d%% and accuracy by %d."):tformat(eff.speed * 100, eff.atk) end, type = "physical", subtype = { wound=true }, status = "detrimental", parameters = { speed=0.15, atk=10 }, - on_gain = function(self, err) return "#Target# is disabled.", "+Disabled" end, - on_lose = function(self, err) return "#Target# is not disabled anymore.", "-Disabled" end, + on_gain = function(self, err) return _t"#Target# is disabled.", _t"+Disabled" end, + on_lose = function(self, err) return _t"#Target# is not disabled anymore.", _t"-Disabled" end, activate = function(self, eff) eff.speedid = self:addTemporaryValue("movement_speed", -eff.speed) eff.atkid = self:addTemporaryValue("combat_atk", -eff.atk) @@ -2626,14 +2626,14 @@ newEffect{ newEffect{ name = "ANGUISH", image = "talents/agony.png", - desc = "Anguish", - long_desc = function(self, eff) return ("The target is in extreme anguish, preventing them from making tactical decisions, and reducing Willpower by %d and Cunning by %d."):format(eff.will, eff.cun) end, + desc = _t"Anguish", + long_desc = function(self, eff) return ("The target is in extreme anguish, preventing them from making tactical decisions, and reducing Willpower by %d and Cunning by %d."):tformat(eff.will, eff.cun) end, type = "physical", subtype = { wound=true }, status = "detrimental", parameters = { will=5, cun=5 }, - on_gain = function(self, err) return "#Target# is in anguish.", "+Anguish" end, - on_lose = function(self, err) return "#Target# is no longer in anguish.", "-Anguish" end, + on_gain = function(self, err) return _t"#Target# is in anguish.", _t"+Anguish" end, + on_lose = function(self, err) return _t"#Target# is no longer in anguish.", _t"-Anguish" end, activate = function(self, eff) eff.sid = self:addTemporaryValue("inc_stats", {[Stats.STAT_WIL]=-eff.will, [Stats.STAT_CUN]=-eff.cun}) -- if self.ai_state then eff.ai = self:addTemporaryValue("ai_state", {forbid_tactical=1}) end @@ -2646,8 +2646,8 @@ newEffect{ newEffect{ name = "FAST_AS_LIGHTNING", image = "talents/fast_as_lightning.png", - desc = "Fast As Lightning", - long_desc = function(self, eff) return ("The target is so fast it may blink throught obstacles if moving in the same direction for over two turns."):format() end, + desc = _t"Fast As Lightning", + long_desc = function(self, eff) return ("The target is so fast it may blink throught obstacles if moving in the same direction for over two turns."):tformat() end, type = "physical", subtype = { speed=true }, status = "beneficial", @@ -2655,8 +2655,8 @@ newEffect{ on_merge = function(self, old_eff, new_eff) return old_eff end, - on_gain = function(self, err) return "#Target# is speeding up.", "+Fast As Lightning" end, - on_lose = function(self, err) return "#Target# is slowing down.", "-Fast As Lightning" end, + on_gain = function(self, err) return _t"#Target# is speeding up.", _t"+Fast As Lightning" end, + on_lose = function(self, err) return _t"#Target# is slowing down.", _t"-Fast As Lightning" end, activate = function(self, eff) self:effectTemporaryValue(eff, "phase_shift", 0.5) end, @@ -2669,7 +2669,7 @@ newEffect{ newEffect{ name = "STEAMROLLER", image = "talents/steamroller.png", - desc = "Steamroller", + desc = _t"Steamroller", long_desc = function(self, eff) return ("Resets Rush cooldown if killed.") end, type = "physical", subtype = { status=true }, @@ -2686,8 +2686,8 @@ newEffect{ newEffect{ name = "STEAMROLLER_USER", image = "talents/steamroller.png", - desc = "Steamroller", - long_desc = function(self, eff) return ("Grants a +%d%% damage bonus."):format(eff.buff) end, + desc = _t"Steamroller", + long_desc = function(self, eff) return ("Grants a +%d%% damage bonus."):tformat(eff.buff) end, type = "physical", subtype = { status=true }, status = "beneficial", @@ -2708,14 +2708,14 @@ newEffect{ newEffect{ name = "SPINE_OF_THE_WORLD", image = "talents/spine_of_the_world.png", - desc = "Spine of the World", + desc = _t"Spine of the World", long_desc = function(self, eff) return ("Immune to physical effects.") end, type = "physical", subtype = { status=true }, status = "beneficial", parameters = { }, - on_gain = function(self, err) return "#Target# become impervious to physical effects.", "+Spine of the World" end, - on_lose = function(self, err) return "#Target# is less impervious to physical effects.", "-Spine of the World" end, + on_gain = function(self, err) return _t"#Target# become impervious to physical effects.", _t"+Spine of the World" end, + on_lose = function(self, err) return _t"#Target# is less impervious to physical effects.", _t"-Spine of the World" end, activate = function(self, eff) self:effectTemporaryValue(eff, "physical_negative_status_effect_immune", 1) end, @@ -2723,14 +2723,14 @@ newEffect{ newEffect{ name = "FUNGAL_BLOOD", image = "talents/fungal_blood.png", - desc = "Fungal Blood", - long_desc = function(self, eff) return ("You have %d fungal energies stored. Release them to heal by using the Fungal Blood prodigy."):format(eff.power) end, + desc = _t"Fungal Blood", + long_desc = function(self, eff) return ("You have %d fungal energies stored. Release them to heal by using the Fungal Blood prodigy."):tformat(eff.power) end, type = "physical", subtype = { heal=true }, status = "beneficial", parameters = { power = 10 }, - on_gain = function(self, err) return nil, "+Fungal Blood" end, - on_lose = function(self, err) return nil, "-Fungal Blood" end, + on_gain = function(self, err) return nil, _t"+Fungal Blood" end, + on_lose = function(self, err) return nil, _t"-Fungal Blood" end, on_merge = function(self, old_eff, new_eff) new_eff.power = new_eff.power + old_eff.power return new_eff @@ -2742,14 +2742,14 @@ newEffect{ newEffect{ name = "MUCUS", image = "talents/mucus.png", - desc = "Mucus", - long_desc = function(self, eff) return ("You lay mucus where you walk."):format() end, + desc = _t"Mucus", + long_desc = function(self, eff) return ("You lay mucus where you walk."):tformat() end, type = "physical", subtype = { mucus=true }, status = "beneficial", parameters = {}, - on_gain = function(self, err) return nil, "+Mucus" end, - on_lose = function(self, err) return nil, "-Mucus" end, + on_gain = function(self, err) return nil, _t"+Mucus" end, + on_lose = function(self, err) return nil, _t"-Mucus" end, on_timeout = function(self, eff) self:callTalent(self.T_MUCUS, nil, self.x, self.y, self:getTalentLevel(self.T_MUCUS) >=4 and 1 or 0, eff) end, @@ -2757,15 +2757,15 @@ newEffect{ newEffect{ name = "CORROSIVE_NATURE", image = "talents/corrosive_nature.png", - desc = "Corrosive Nature", - long_desc = function(self, eff) return ("Acid damage increased by %d%%."):format(eff.power) end, + desc = _t"Corrosive Nature", + long_desc = function(self, eff) return ("Acid damage increased by %d%%."):tformat(eff.power) end, type = "physical", subtype = { nature=true, acid=true }, status = "beneficial", parameters = { power=1, bonus_level=1}, charges = function(self, eff) return math.round(eff.power) end, - on_gain = function(self, err) return "#Target#'s acid damage is more potent.", "+Corrosive Nature" end, - on_lose = function(self, err) return "#Target#'s acid damage is no longer so potent.", "-Corrosive Nature" end, + on_gain = function(self, err) return _t"#Target#'s acid damage is more potent.", _t"+Corrosive Nature" end, + on_lose = function(self, err) return _t"#Target#'s acid damage is no longer so potent.", _t"-Corrosive Nature" end, on_merge = function(self, eff, new_eff) if game.turn < eff.last_update + 10 then return eff end -- update once a turn local t = self:getTalentFromId(self.T_CORROSIVE_NATURE) @@ -2791,15 +2791,15 @@ newEffect{ newEffect{ name = "NATURAL_ACID", image = "talents/natural_acid.png", - desc = "Natural Acid", - long_desc = function(self, eff) return ("Nature damage increased by %d%%."):format(eff.power) end, + desc = _t"Natural Acid", + long_desc = function(self, eff) return ("Nature damage increased by %d%%."):tformat(eff.power) end, type = "physical", subtype = { nature=true, acid=true }, status = "beneficial", parameters = { power=1, bonus_level=1}, charges = function(self, eff) return math.round(eff.power) end, - on_gain = function(self, err) return "#Target#'s nature damage is more potent.", "+Natural Acid" end, - on_lose = function(self, err) return "#Target#'s nature damage is no longer so potent.", "-Nature Acid" end, + on_gain = function(self, err) return _t"#Target#'s nature damage is more potent.", _t"+Natural Acid" end, + on_lose = function(self, err) return _t"#Target#'s nature damage is no longer so potent.", _t"-Nature Acid" end, on_merge = function(self, eff, new_eff) if game.turn < eff.last_update + 10 then return eff end -- update once a turn local t = self:getTalentFromId(self.T_NATURAL_ACID) @@ -2825,14 +2825,14 @@ newEffect{ newEffect{ name = "CORRODE", image = "talents/blightzone.png", - desc = "Corrode", - long_desc = function(self, eff) return ("The target is corroded, reducing their accuracy by %d, their armor by %d, and their defense by %d."):format(eff.atk, eff.armor, eff.defense) end, + desc = _t"Corrode", + long_desc = function(self, eff) return ("The target is corroded, reducing their accuracy by %d, their armor by %d, and their defense by %d."):tformat(eff.atk, eff.armor, eff.defense) end, type = "physical", subtype = { acid=true }, status = "detrimental", parameters = { atk=5, armor=5, defense=10 }, no_ct_effect = true, - on_gain = function(self, err) return "#Target# is corroded." end, - on_lose = function(self, err) return "#Target# has shook off the effects of their corrosion." end, + on_gain = function(self, err) return _t"#Target# is corroded." end, + on_lose = function(self, err) return _t"#Target# has shook off the effects of their corrosion." end, activate = function(self, eff) self:effectTemporaryValue(eff, "combat_atk", -eff.atk) self:effectTemporaryValue(eff, "combat_armor", -eff.armor) @@ -2842,14 +2842,14 @@ newEffect{ newEffect{ name = "SLIPPERY_MOSS", image = "talents/slippery_moss.png", - desc = "Slippery Moss", - long_desc = function(self, eff) return ("The target is covered in slippery moss. Each time it tries to use a talent there is %d%% chance of failure."):format(eff.fail) end, + desc = _t"Slippery Moss", + long_desc = function(self, eff) return ("The target is covered in slippery moss. Each time it tries to use a talent there is %d%% chance of failure."):tformat(eff.fail) end, type = "physical", subtype = { moss=true, nature=true }, status = "detrimental", parameters = {fail=5}, - on_gain = function(self, err) return "#Target# is covered in slippery moss!", "+Slippery Moss" end, - on_lose = function(self, err) return "#Target# is free from the slippery moss.", "-Slippery Moss" end, + on_gain = function(self, err) return _t"#Target# is covered in slippery moss!", _t"+Slippery Moss" end, + on_lose = function(self, err) return _t"#Target# is free from the slippery moss.", _t"-Slippery Moss" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("talent_fail_chance", eff.fail) end, @@ -2860,14 +2860,14 @@ newEffect{ newEffect{ name = "JUGGERNAUT", image = "talents/juggernaut.png", - desc = "Juggernaut", - long_desc = function(self, eff) return ("Reduces physical damage received by %d%% and provides a %d%% chance to ignore critical hits."):format(eff.power, eff.crits) end, + desc = _t"Juggernaut", + long_desc = function(self, eff) return ("Reduces physical damage received by %d%% and provides a %d%% chance to ignore critical hits."):tformat(eff.power, eff.crits) end, type = "physical", subtype = { superiority=true }, status = "beneficial", parameters = { power=10 }, - on_gain = function(self, err) return "#Target# hardens its skin.", "+Juggernaut" end, - on_lose = function(self, err) return "#Target#'s skin returns to normal.", "-Juggernaut" end, + on_gain = function(self, err) return _t"#Target# hardens its skin.", _t"+Juggernaut" end, + on_lose = function(self, err) return _t"#Target#'s skin returns to normal.", _t"-Juggernaut" end, activate = function(self, eff) eff.particle = self:addParticles(Particles.new("stone_skin", 1, {density=4})) self:effectTemporaryValue(eff, "resists", {[DamageType.PHYSICAL]=eff.power}) @@ -2880,14 +2880,14 @@ newEffect{ newEffect{ name = "NATURE_REPLENISHMENT", image = "talents/meditation.png", - desc = "Natural Replenishment", - long_desc = function(self, eff) return ("The target has been directly exposed to arcane energies and has responded by reasserting it's connection to nature, restoring %0.1f Equilibrium per turn."):format(eff.power) end, + desc = _t"Natural Replenishment", + long_desc = function(self, eff) return ("The target has been directly exposed to arcane energies and has responded by reasserting it's connection to nature, restoring %0.1f Equilibrium per turn."):tformat(eff.power) end, type = "physical", subtype = { nature=true }, status = "beneficial", parameters = {power=1}, - on_gain = function(self, err) return ("#Target# defiantly reasserts %s connection to nature!"):format(string.his_her(self)), "+Nature Replenishment" end, - on_lose = function(self, err) return "#Target# stops restoring Equilibrium.", "-Nature Replenishment" end, + on_gain = function(self, err) return ("#Target# defiantly reasserts %s connection to nature!"):tformat(string.his_her(self)), "+Nature Replenishment" end, + on_lose = function(self, err) return _t"#Target# stops restoring Equilibrium.", _t"-Nature Replenishment" end, on_timeout = function(self, eff) self:incEquilibrium(-eff.power) end, @@ -2896,14 +2896,14 @@ newEffect{ newEffect{ name = "BERSERKER_RAGE", image = "talents/berserker.png", - desc = "Berserker Rage", - long_desc = function(self, eff) return ("Increases critical hit chance by %d%%."):format(eff.power) end, + desc = _t"Berserker Rage", + long_desc = function(self, eff) return ("Increases critical hit chance by %d%%."):tformat(eff.power) end, type = "physical", subtype = { tactic=true }, status = "beneficial", decrease = 0, no_remove = true, parameters = {power=1}, - charges = function(self, eff) return ("%0.1f%%"):format(eff.power) end, + charges = function(self, eff) return ("%0.1f%%"):tformat(eff.power) end, on_merge = function(self, old_eff, new_eff) self:removeTemporaryValue("combat_physcrit", old_eff.tmpid) old_eff.tmpid = self:addTemporaryValue("combat_physcrit", new_eff.power) @@ -2925,8 +2925,8 @@ newEffect{ newEffect{ name = "RELENTLESS_FURY", image = "talents/relentless_fury.png", - desc = "Relentless Fury", - long_desc = function(self, eff) return ("Increases stamina regeneration by %d, movement and attack speed by %d%%."):format(eff.stamina, eff.speed) end, + desc = _t"Relentless Fury", + long_desc = function(self, eff) return ("Increases stamina regeneration by %d, movement and attack speed by %d%%."):tformat(eff.stamina, eff.speed) end, type = "physical", subtype = { tactic=true }, status = "beneficial", @@ -2952,7 +2952,7 @@ end newEffect { name = "SKIRMISHER_DIRECTED_SPEED", - desc = "Directed Speed", + desc = _t"Directed Speed", type = "physical", subtype = {speed = true}, parameters = { @@ -3002,7 +3002,7 @@ newEffect { end, long_desc = function(self, eff) return ([[Target is currently moving with %d%% additional speed in a single direction (%s). Stopping or changing directions will remove this effect.]]) - :format(eff.move_speed_bonus * 100, eff.compass or "unknown") + :tformat(eff.move_speed_bonus * 100, eff.compass or "unknown") end, } @@ -3010,7 +3010,7 @@ newEffect { -- duration. newEffect { name = "SKIRMISHER_STUN_INCREASE", - desc = "Stun Lengthen", + desc = _t"Stun Lengthen", long_desc = function(self, eff) return ([[This should not be shown, oops.]]) end, type = "physical", subtype = {stun = true}, @@ -3018,7 +3018,7 @@ newEffect { on_gain = function(self, eff) local stun = self:hasEffect(self.EFF_STUNNED) if stun and stun.dur and stun.dur > 1 then - return ("#Target# is stunned further! (now %d turns)"):format(stun.dur), "Stun Lengthened" + return ("#Target# is stunned further! (now %d turns)"):tformat(stun.dur), "Stun Lengthened" end end, activate = function(self, eff) @@ -3034,7 +3034,7 @@ newEffect { newEffect { name = "SKIRMISHER_ETERNAL_WARRIOR", - desc = "Eternal Warrior", + desc = _t"Eternal Warrior", image = "talents/skirmisher_the_eternal_warrior.png", type = "mental", subtype = { morale=true }, @@ -3047,11 +3047,11 @@ newEffect { -- Maximum stacking applications max=5 }, - on_gain = function(self, err) return nil, "+Eternal Warrior" end, - on_lose = function(self, err) return nil, "-Eternal Warrior" end, + on_gain = function(self, err) return nil, _t"+Eternal Warrior" end, + on_lose = function(self, err) return nil, _t"-Eternal Warrior" end, long_desc = function(self, eff) return ("The target stands strong, increasing all resistances by %0.1f%% and resistance caps by %0.1f%%."): - format(eff.res, eff.cap) + tformat(eff.res, eff.cap) end, activate = function(self, eff) eff.res_id = self:addTemporaryValue("resists", {all = eff.res}) @@ -3074,14 +3074,14 @@ newEffect { newEffect { name = "SKIRMISHER_TACTICAL_POSITION", - desc = "Tactical Position", + desc = _t"Tactical Position", type = "physical", subtype = {tactic = true}, status = "beneficial", parameters = {combat_physcrit = 10}, long_desc = function(self, eff) return ([[The target has relocated to a favorable position, giving them +%d%% physical critical chance.]]) - :format(eff.combat_physcrit) + :tformat(eff.combat_physcrit) end, on_gain = function(self, eff) return "#Target# is poised to strike!" end, activate = function(self, eff) @@ -3091,7 +3091,7 @@ newEffect { newEffect { name = "SKIRMISHER_DEFENSIVE_ROLL", - desc = "Defensive Roll", + desc = _t"Defensive Roll", type = "physical", subtype = {tactic = true}, status = "beneficial", @@ -3105,13 +3105,13 @@ newEffect { end, long_desc = function(self, eff) return ([[The target is in an extreme defensive posture, avoiding %d%% of all incoming damage.]]) - :format(eff.reduce) + :tformat(eff.reduce) end, } newEffect { name = "SKIRMISHER_TRAINED_REACTIONS_COOLDOWN", - desc = "Trained Reactions Cooldown", + desc = _t"Trained Reactions Cooldown", type = "other", subtype = {cooldown = true}, status = "detrimental", @@ -3124,7 +3124,7 @@ newEffect { newEffect { name = "SKIRMISHER_SUPERB_AGILITY", - desc = "Superb Agility", + desc = _t"Superb Agility", image = "talents/skirmisher_superb_agility.png", type = "physical", subtype = {speed = true}, @@ -3138,19 +3138,19 @@ newEffect { end, long_desc = function(self, eff) return ([[The target's reactions have quickened, giving +%d%% global speed.]]) - :format(eff.global_speed_add * 100) + :tformat(eff.global_speed_add * 100) end, } newEffect{ name = "ANTI_GRAVITY", image = "talents/gravity_locus.png", - desc = "Anti-Gravity", - long_desc = function(self, eff) return ("Target is caught in an anti-gravity field, halving its knockback resistance."):format() end, + desc = _t"Anti-Gravity", + long_desc = function(self, eff) return ("Target is caught in an anti-gravity field, halving its knockback resistance."):tformat() end, type = "physical", subtype = { spacetime=true }, status = "detrimental", - on_gain = function(self, err) return nil, "+Anti-Gravity" end, - on_lose = function(self, err) return nil, "-Anti-Gravity" end, + on_gain = function(self, err) return nil, _t"+Anti-Gravity" end, + on_lose = function(self, err) return nil, _t"-Anti-Gravity" end, on_merge = function(self, old_eff, new_eff) old_eff.dur = new_eff.dur return old_eff @@ -3164,11 +3164,11 @@ newEffect{ newEffect{ name = "PARASITIC_LEECHES", image = "talents/blood_suckers.png", - desc = "Parasitic Leeches", + desc = _t"Parasitic Leeches", display_desc = function(self, eff) return "Parasitic Leeches: "..eff.nb.." masses" end, long_desc = function(self, eff) local source = eff.src or self - return ("The target is being fed upon by %d masses of parasitic leeches for %0.2f physical and %0.2f acid damage each turn. After a %d turn feeding period, one mass will drop off and multiply."):format(eff.nb, + return ("The target is being fed upon by %d masses of parasitic leeches for %0.2f physical and %0.2f acid damage each turn. After a %d turn feeding period, one mass will drop off and multiply."):tformat(eff.nb, source:damDesc("PHYSICAL", eff.dam*eff.nb/2), source:damDesc("ACID", eff.dam*eff.nb/2), eff.gestation) end, type = "physical", @@ -3184,7 +3184,7 @@ newEffect{ end, charges = function(self, eff) return eff.nb end, parameters = {dam=10, nb=1, gestation=5, turns=0 }, - on_gain = function(self, err) return "#Target# is #GREEN#INFESTED#LAST# with parasitic leeches!", "+Parasitic Leeches" end, + on_gain = function(self, err) return _t"#Target# is #GREEN#INFESTED#LAST# with parasitic leeches!", _t"+Parasitic Leeches" end, on_timeout = function(self, eff) eff.turns = eff.turns + 1 -- Creepy, so the player tries to get rid of it as soon as possible... @@ -3235,18 +3235,18 @@ newEffect{ newEffect{ name = "GARROTE", image = "talents/grab.png", - desc = "Garrote", + desc = _t"Garrote", long_desc = function(self, eff) - local silence = eff.silence > 0 and eff.silenceid and (" It is silenced for the next %d turn(s), preventing it from casting spells and using some vocal talents."):format(eff.silence) or "" - return ("The target is being garrotted by %s, rendering it unable to move and subject to an automatic unarmed attack (at %d%% damage) each turn.%s"):format(eff.src and eff.src.name or "something", eff.power*100, silence) + local silence = eff.silence > 0 and eff.silenceid and (" It is silenced for the next %d turn(s), preventing it from casting spells and using some vocal talents."):tformat(eff.silence) or "" + return ("The target is being garrotted by %s, rendering it unable to move and subject to an automatic unarmed attack (at %d%% damage) each turn.%s"):tformat(eff.src and eff.src.name or "something", eff.power*100, silence) end, type = "physical", subtype = { grapple=true, pin=true }, status = "detrimental", parameters = { power = 0.6, silence=0}, remove_on_clone = true, - on_gain = function(self, eff) return ("%s has garroted #Target#!"):format(eff.src and eff.src.name or "Something"), "+Garrote" end, - on_lose = function(self, eff) return ("#Target# is free from %s's garrote."):format(eff.src and eff.src.name or "something"), "-Garrote" end, + on_gain = function(self, eff) return ("%s has garroted #Target#!"):tformat(eff.src and eff.src.name or "Something"), "+Garrote" end, + on_lose = function(self, eff) return ("#Target# is free from %s's garrote."):tformat(eff.src and eff.src.name or "something"), "-Garrote" end, activate = function(self, eff) self:effectTemporaryValue(eff, "never_move", 1) if eff.silence > 0 then eff.silenceid = self:addTemporaryValue("silence", 1) end @@ -3278,14 +3278,14 @@ newEffect{ newEffect{ name = "MARKED_FOR_DEATH", image = "talents/marked_for_death.png", - desc = "Marked for Death", - long_desc = function(self, eff) return ("The target takes %d%% increased damage from all sources. If this effect runs its full course, the target will take an additional %0.1f physical damage (increased by %d%% of all damage taken while this effect is active)."):format(eff.power, eff.dam, eff.perc*100) end, + desc = _t"Marked for Death", + long_desc = function(self, eff) return ("The target takes %d%% increased damage from all sources. If this effect runs its full course, the target will take an additional %0.1f physical damage (increased by %d%% of all damage taken while this effect is active)."):tformat(eff.power, eff.dam, eff.perc*100) end, type = "physical", subtype = { }, status = "detrimental", parameters = { power=20, perc=20, stam=0, turns = 0, max_dur=6}, - on_gain = function(self, err) return "#Target# is marked for death!", "+Marked for Death!" end, - on_lose = function(self, err) return "#Target# is free from the deathmark.", "-Marked for Death" end, + on_gain = function(self, err) return _t"#Target# is marked for death!", _t"+Marked for Death!" end, + on_lose = function(self, err) return _t"#Target# is free from the deathmark.", _t"-Marked for Death" end, activate = function(self, eff) self:effectTemporaryValue(eff, "resists", {all=-eff.power}) self:effectParticles(eff, {type="circle", args={toback=true, oversize=1.8, base_rot=180, a=255, shader=true, appear=12, img="marked_death_aura", speed=0, radius=0}}) @@ -3313,22 +3313,22 @@ newEffect{ newEffect{ name = "DEADLY_POISON", image = "talents/apply_poison.png", - desc = "Deadly Poison", + desc = _t"Deadly Poison", long_desc = function(self, eff) - local insidious = eff.insidious > 0 and (" Healing received is reduced by %d%%."):format(eff.insidious) or "" - local numbing = eff.numbing > 0 and (" Damage dealt is reduced by %d%%."):format(eff.numbing) or "" - local crippling = eff.crippling > 0 and (" %d%% chance to fail talents."):format(eff.crippling) or "" - local volatile = eff.volatile > 0 and (" Poison damage also hits adjacent targets for 50%%."):format() or "" - local leeching = eff.leeching > 0 and (" The source of this effect receives healing equal to %d%% of the damage it deals to the target."):format(eff.leeching) or "" - return ("The target is poisoned, taking %0.2f nature damage per turn.%s%s%s%s%s"):format(eff.power, insidious, numbing, crippling, volatile, leeching) + local insidious = eff.insidious > 0 and (" Healing received is reduced by %d%%."):tformat(eff.insidious) or "" + local numbing = eff.numbing > 0 and (" Damage dealt is reduced by %d%%."):tformat(eff.numbing) or "" + local crippling = eff.crippling > 0 and (" %d%% chance to fail talents."):tformat(eff.crippling) or "" + local volatile = eff.volatile > 0 and (" Poison damage also hits adjacent targets for 50%%."):tformat() or "" + local leeching = eff.leeching > 0 and (" The source of this effect receives healing equal to %d%% of the damage it deals to the target."):tformat(eff.leeching) or "" + return ("The target is poisoned, taking %0.2f nature damage per turn.%s%s%s%s%s"):tformat(eff.power, insidious, numbing, crippling, volatile, leeching) end, charges = function(self, eff) return (math.floor(eff.power)) end, type = "physical", subtype = { poison=true, nature=true }, no_ct_effect = true, status = "detrimental", parameters = {power=10, reduce=5}, - on_gain = function(self, err) return "#Target# is poisoned!", "+Deadly Poison" end, - on_lose = function(self, err) return "#Target# is no longer poisoned.", "-Deadly Poison" end, + on_gain = function(self, err) return _t"#Target# is poisoned!", _t"+Deadly Poison" end, + on_lose = function(self, err) return _t"#Target# is no longer poisoned.", _t"-Deadly Poison" end, -- Damage each turn on_timeout = function(self, eff, p, ed) if self:attr("purify_poison") then @@ -3389,14 +3389,14 @@ newEffect{ newEffect{ name = "RAZORWIRE", image = "talents/springrazor_trap.png", - desc = "Razorwire", - long_desc = function(self, eff) return ("The target's equipment has been shredded by razorwire, reducing its accuracy by %d, armour by %d, and defense by %d."):format(eff.power, eff.power, eff.power) end, + desc = _t"Razorwire", + long_desc = function(self, eff) return ("The target's equipment has been shredded by razorwire, reducing its accuracy by %d, armour by %d, and defense by %d."):tformat(eff.power, eff.power, eff.power) end, type = "physical", subtype = { physical=true }, status = "detrimental", parameters = { power=10 }, no_ct_effect = true, - on_gain = function(self, err) return "#Target# is entangled in razorwire!" end, - on_lose = function(self, err) return "#Target# has shook off the razorwire." end, + on_gain = function(self, err) return _t"#Target# is entangled in razorwire!" end, + on_lose = function(self, err) return _t"#Target# has shook off the razorwire." end, activate = function(self, eff) self:effectTemporaryValue(eff, "combat_atk", -eff.power) self:effectTemporaryValue(eff, "combat_armor", -eff.power) @@ -3406,14 +3406,14 @@ newEffect{ newEffect{ name = "DIRTY_FIGHTING", image = "talents/dirty_fighting.png", - desc = "Dirty Fighting", - long_desc = function(self, eff) return ("The target is reeling in pain. Stun, pin, blindness, and confusion immunity are halved and physical save is reduced by %d."):format(eff.power) end, + desc = _t"Dirty Fighting", + long_desc = function(self, eff) return ("The target is reeling in pain. Stun, pin, blindness, and confusion immunity are halved and physical save is reduced by %d."):tformat(eff.power) end, type = "physical", subtype = { wound=true }, status = "detrimental", parameters = { power=5 }, - on_gain = function(self, err) return nil, "+Dirty Fighting" end, - on_lose = function(self, err) return nil, "-Dirty Fighting" end, + on_gain = function(self, err) return nil, _t"+Dirty Fighting" end, + on_lose = function(self, err) return nil, _t"-Dirty Fighting" end, on_merge = function(self, old_eff, new_eff) old_eff.dur = new_eff.dur return old_eff @@ -3439,13 +3439,13 @@ newEffect{ newEffect{ name = "SOOTHING_DARKNESS", image = "talents/soothing_darkness.png", - desc = "Soothing Darkness", + desc = _t"Soothing Darkness", long_desc = function(self, eff) - local desc = ("The target is wreathed in shadows, increasing life regeneration by %0.1f"):format(eff.life) + local desc = ("The target is wreathed in shadows, increasing life regeneration by %0.1f"):tformat(eff.life) if eff.shadowguard > 0 then - desc = desc..(", stamina regeneration by %0.1f and all damage resistance by %d%%."):format(eff.stamina, eff.shadowguard) + desc = desc..(", stamina regeneration by %0.1f and all damage resistance by %d%%."):tformat(eff.stamina, eff.shadowguard) else - desc = desc..(" and stamina regeneration by %0.1f."):format(eff.stamina) end + desc = desc..(" and stamina regeneration by %0.1f."):tformat(eff.stamina) end return desc end, type = "physical", @@ -3465,8 +3465,8 @@ newEffect{ newEffect{ name = "SHADOW_DANCE", image = "talents/shadow_dance.png", - desc = "Shadow Dance", - long_desc = function(self, eff) return ("The target is able to make actions and attacks while remaining stealthed."):format() end, + desc = _t"Shadow Dance", + long_desc = function(self, eff) return ("The target is able to make actions and attacks while remaining stealthed."):tformat() end, type = "physical", subtype = { tactical=true, darkness=true }, status = "beneficial", @@ -3484,8 +3484,8 @@ newEffect{ newEffect{ name = "SEDATED", image = "talents/dart_launcher.png", - desc = "Sedated", - long_desc = function(self, eff) return ("The target is in a deep sleep and unable to act. Every %d damage it takes will reduce the duration of the effect by one turn."):format(eff.power) end, + desc = _t"Sedated", + long_desc = function(self, eff) return ("The target is in a deep sleep and unable to act. Every %d damage it takes will reduce the duration of the effect by one turn."):tformat(eff.power) end, type = "physical", subtype = { sleep=true, poison=true }, status = "detrimental", @@ -3525,8 +3525,8 @@ newEffect{ newEffect{ name = "ROGUE_S_BREW", image = "talents/rogue_s_brew_mastery.png", - desc = "Rogue's Brew", - long_desc = function(self, eff) return ("The target will not die until falling below -%d life."):format(eff.power) end, + desc = _t"Rogue's Brew", + long_desc = function(self, eff) return ("The target will not die until falling below -%d life."):tformat(eff.power) end, charges = function(self, eff) return math.floor(eff.power) end, type = "physical", subtype = { nature=true }, @@ -3542,20 +3542,20 @@ newEffect{ newEffect{ name = "BEAR_TRAP", image = "talents/bear_trap.png", - desc = "Bear Trap", + desc = _t"Bear Trap", long_desc = function(self, eff) local desc = {} if eff.pinid then desc[#desc+1] = "pinned" end - if eff.slowid then desc[#desc+1] = ("slowed (%d%%)"):format(eff.power*100) end - if eff.dam > 0 then desc[#desc+1] = ("taking %0.2f physical damage each turn"):format(eff.dam) end + if eff.slowid then desc[#desc+1] = ("slowed (%d%%)"):tformat(eff.power*100) end + if eff.dam > 0 then desc[#desc+1] = ("taking %0.2f physical damage each turn"):tformat(eff.dam) end return "Caught in a bear trap: "..table.concat(desc, ", ") end, type = "physical", subtype = { slow=true, pin=true, wound=true, cut=true, bleed=true }, status = "detrimental", parameters = { power=0.1, dam=10 }, - on_gain = function(self, err) return "A bear trap snaps onto #Target#!", "+Bear Trap" end, - on_lose = function(self, err) return "#Target# is freed from a bear trap.", "-Bear Trap" end, + on_gain = function(self, err) return _t"A bear trap snaps onto #Target#!", _t"+Bear Trap" end, + on_lose = function(self, err) return _t"#Target# is freed from a bear trap.", _t"-Bear Trap" end, activate = function(self, eff) local pin, cut = self:canBe("pin"), self:canBe("cut") if pin then @@ -3587,14 +3587,14 @@ newEffect{ newEffect{ name = "STONE_VINE", - desc = "Stone Vine", - long_desc = function(self, eff) return ("A living stone vine holds the target in place, inflicting %0.1f Nature%s damage per turn."):format(eff.dam, eff.arcanedam and (" and %0.1f Arcane"):format(eff.arcanedam) or "") end, + desc = _t"Stone Vine", + long_desc = function(self, eff) return ("A living stone vine holds the target in place, inflicting %0.1f Nature%s damage per turn."):tformat(eff.dam, eff.arcanedam and (" and %0.1f Arcane"):tformat(eff.arcanedam) or "") end, type = "physical", subtype = { earth=true, pin=true }, status = "detrimental", parameters = { dam=10 }, - on_gain = function(self, err) return "#Target# is seized by a stone vine.", "+Stone Vine" end, - on_lose = function(self, err) return "#Target# is free from the stone vine.", "-Stone Vine" end, + on_gain = function(self, err) return _t"#Target# is seized by a stone vine.", _t"+Stone Vine" end, + on_lose = function(self, err) return _t"#Target# is free from the stone vine.", _t"-Stone Vine" end, activate = function(self, eff) eff.last_x = eff.src.x eff.last_y = eff.src.y @@ -3632,20 +3632,20 @@ newEffect{ newEffect{ name = "DWARVEN_RESILIENCE", image = "talents/dwarf_resilience.png", - desc = "Dwarven Resilience", + desc = _t"Dwarven Resilience", long_desc = function(self, eff) if eff.mid_ac then - return ("The target's skin turns to stone, granting %d armour, %d physical save and %d spell save. Also applies %d armour to all non-physical damage."):format(eff.armor, eff.physical, eff.spell, eff.mid_ac) + return ("The target's skin turns to stone, granting %d armour, %d physical save and %d spell save. Also applies %d armour to all non-physical damage."):tformat(eff.armor, eff.physical, eff.spell, eff.mid_ac) else - return ("The target's skin turns to stone, granting %d armour, %d physical save and %d spell save."):format(eff.armor, eff.physical, eff.spell) + return ("The target's skin turns to stone, granting %d armour, %d physical save and %d spell save."):tformat(eff.armor, eff.physical, eff.spell) end end, type = "physical", subtype = { earth=true }, status = "beneficial", parameters = { armor=10, spell=10, physical=10 }, - on_gain = function(self, err) return "#Target#'s skin turns to stone." end, - on_lose = function(self, err) return "#Target#'s skin returns to normal." end, + on_gain = function(self, err) return _t"#Target#'s skin turns to stone." end, + on_lose = function(self, err) return _t"#Target#'s skin returns to normal." end, activate = function(self, eff) eff.aid = self:addTemporaryValue("combat_armor", eff.armor) eff.hid = self:addTemporaryValue("combat_armor_hardiness", eff.armor_hardiness) @@ -3668,14 +3668,14 @@ newEffect{ newEffect{ name = "STONE_LINK_SOURCE", image = "talents/stone_link.png", - desc = "Stone Link", - long_desc = function(self, eff) return ("The target protects all those around it in radius %d by redirecting all damage against them to itself."):format(eff.rad) end, + desc = _t"Stone Link", + long_desc = function(self, eff) return ("The target protects all those around it in radius %d by redirecting all damage against them to itself."):tformat(eff.rad) end, type = "physical", subtype = { earth=true, shield=true }, status = "beneficial", parameters = { rad=3 }, - on_gain = function(self, err) return ("#Target# begins protecting %s friends with a stone shield."):format(string.his_her(self)), "+Stone Link" end, - on_lose = function(self, err) return "#Target# is no longer protecting anyone.", "-Stone Link" end, + on_gain = function(self, err) return ("#Target# begins protecting %s friends with a stone shield."):tformat(string.his_her(self)), "+Stone Link" end, + on_lose = function(self, err) return _t"#Target# is no longer protecting anyone.", _t"-Stone Link" end, activate = function(self, eff) if core.shader.active() then eff.particle = self:addParticles(Particles.new("shader_shield", 1, {size_factor=eff.rad}, {type="shield", time_factor=4000, color={0.7, 0.4, 0.3}})) @@ -3697,14 +3697,14 @@ newEffect{ newEffect{ name = "STONE_LINK", image = "talents/stone_link.png", - desc = "Stone Link", - long_desc = function(self, eff) return ("The target is protected by %s, redirecting all damage to it."):format(eff.src.name) end, + desc = _t"Stone Link", + long_desc = function(self, eff) return ("The target is protected by %s, redirecting all damage to it."):tformat(eff.src.name) end, type = "physical", subtype = { earth=true, shield=true }, status = "beneficial", parameters = { }, - on_gain = function(self, err) return "#Target# is protected by a stone shield.", "+Stone Link" end, - on_lose = function(self, err) return "#Target# is less protected.", "-Stone Link" end, + on_gain = function(self, err) return _t"#Target# is protected by a stone shield.", _t"+Stone Link" end, + on_lose = function(self, err) return _t"#Target# is less protected.", _t"-Stone Link" end, activate = function(self, eff) end, deactivate = function(self, eff) @@ -3713,8 +3713,8 @@ newEffect{ newEffect{ name = "EXHAUSTION", image = "talents/slumber.png", - desc = "Exhaustion", - long_desc = function(self, eff) return ("The target has recently performed an extreme feat of agility and is exhausted. The stamina cost of activated Mobility talents is increased by %d%%."):format(eff.fatigue) end, + desc = _t"Exhaustion", + long_desc = function(self, eff) return ("The target has recently performed an extreme feat of agility and is exhausted. The stamina cost of activated Mobility talents is increased by %d%%."):tformat(eff.fatigue) end, type = "other", subtype = {tactic = true}, status = "detrimental", no_stop_enter_worlmap = true, @@ -3737,10 +3737,10 @@ newEffect{ newEffect{ name = "MOBILE_DEFENCE", image = "talents/light_armour_training.png", - desc = "Mobile Defense", + desc = _t"Mobile Defense", long_desc = function(self, eff) - local stam = eff.stamina > 0 and ("stamina regeneration by %0.1f and "):format(eff.stamina) or "" - return ("Increases %sdefense by %d."):format(stam, eff.power) + local stam = eff.stamina > 0 and ("stamina regeneration by %0.1f and "):tformat(eff.stamina) or "" + return ("Increases %sdefense by %d."):tformat(stam, eff.power) end, type = "physical", subtype = { tactic=true }, @@ -3754,14 +3754,14 @@ newEffect{ newEffect{ name = "GHOULISH_LEAP", image = "talents/ghoulish_leap.png", - desc = "Ghoulish Leap", - long_desc = function(self, eff) return ("The target's global speed is increased by %d%%."):format(eff.speed * 100) end, + desc = _t"Ghoulish Leap", + long_desc = function(self, eff) return ("The target's global speed is increased by %d%%."):tformat(eff.speed * 100) end, type = "physical", subtype = { speed=true }, status = "beneficial", parameters = { speed=0.1 }, - on_gain = function(self, err) return "#Target# speeds up.", "+Fast" end, - on_lose = function(self, err) return "#Target# slows down.", "-Fast" end, + on_gain = function(self, err) return _t"#Target# speeds up.", _t"+Fast" end, + on_lose = function(self, err) return _t"#Target# slows down.", _t"-Fast" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("global_speed_add", eff.speed) end, @@ -3772,8 +3772,8 @@ newEffect{ newEffect{ name = "FEINT", image = "talents/feint.png", - desc = "Feint", - long_desc = function(self, eff) return ("The target gains 1 extra parry opportunity each turn, and its chance to fail each parry is reduced by %d%%."):format(eff.parry_efficiency*100) end, + desc = _t"Feint", + long_desc = function(self, eff) return ("The target gains 1 extra parry opportunity each turn, and its chance to fail each parry is reduced by %d%%."):tformat(eff.parry_efficiency*100) end, type = "physical", subtype = { tactical=true }, status = "beneficial", @@ -3786,8 +3786,8 @@ newEffect{ newEffect{ name = "MANA_CLASH", image = "talents/mana_clash.png", - desc = "Mana Clash", - long_desc = function(self, eff) return ("All damage you do also trigget a manaburn for %d%% of the damage done."):format(eff.power * 100) end, + desc = _t"Mana Clash", + long_desc = function(self, eff) return ("All damage you do also trigget a manaburn for %d%% of the damage done."):tformat(eff.power * 100) end, type = "physical", subtype = { antimagic=true }, status = "beneficial", @@ -3805,8 +3805,8 @@ newEffect{ newEffect{ name = "BULLSEYE", image = "talents/bullseye.png", - desc = "Bullseye", - long_desc = function(self, eff) return ("Increases attack speed by %d%%."):format(eff.power*100) end, + desc = _t"Bullseye", + long_desc = function(self, eff) return ("Increases attack speed by %d%%."):tformat(eff.power*100) end, type = "physical", subtype = { tactic=true }, status = "beneficial", @@ -3818,8 +3818,8 @@ newEffect{ newEffect{ name = "TRUESHOT", image = "talents/trueshot.png", - desc = "Trueshot", - long_desc = function(self, eff) return ("Increases attack speed by %d%%, grants infinite ammo, and causes all marking shots to have a 100%% increased chance to mark."):format(eff.power*100) end, + desc = _t"Trueshot", + long_desc = function(self, eff) return ("Increases attack speed by %d%%, grants infinite ammo, and causes all marking shots to have a 100%% increased chance to mark."):tformat(eff.power*100) end, type = "physical", subtype = { tactic=true }, status = "beneficial", @@ -3835,14 +3835,14 @@ newEffect{ newEffect{ name = "ESCAPE", image = "talents/escape.png", - desc = "Escape", - long_desc = function(self, eff) return ("Focusing on defense and mobility, reducing all damage taken by %d%%, stamina regeneration by %0.1f and movement speed by %d%%. Melee and ranged attacks will break this effect."):format(eff.power, eff.stamina, eff.speed) end, + desc = _t"Escape", + long_desc = function(self, eff) return ("Focusing on defense and mobility, reducing all damage taken by %d%%, stamina regeneration by %0.1f and movement speed by %d%%. Melee and ranged attacks will break this effect."):tformat(eff.power, eff.stamina, eff.speed) end, type = "physical", subtype = { tactic=true, speed=true }, status = "beneficial", parameters = {power=1000}, - on_gain = function(self, err) return "#Target# enters an evasive stance!.", "+Escape!" end, - on_lose = function(self, err) return "#Target# slows down.", "-Escape" end, + on_gain = function(self, err) return _t"#Target# enters an evasive stance!.", _t"+Escape!" end, + on_lose = function(self, err) return _t"#Target# slows down.", _t"-Escape" end, get_fractional_percent = function(self, eff) local d = game.turn - eff.start_turn return util.bound(360 - d / eff.possible_end_turns * 360, 0, 360) @@ -3875,13 +3875,13 @@ newEffect{ newEffect{ name = "SENTINEL", image = "talents/sentinel.png", - desc = "Sentinel", - long_desc = function(self, eff) return ("Target is watched, causing the next talent used to fail and trigger a counterattack."):format() end, + desc = _t"Sentinel", + long_desc = function(self, eff) return ("Target is watched, causing the next talent used to fail and trigger a counterattack."):tformat() end, type = "physical", subtype = { tactic=true }, status = "detrimental", - on_gain = function(self, err) return nil, "+Sentinel!" end, - on_lose = function(self, err) return nil, "-Sentinel" end, + on_gain = function(self, err) return nil, _t"+Sentinel!" end, + on_lose = function(self, err) return nil, _t"-Sentinel" end, do_proc = function(self, eff) eff.src:callTalent(eff.src.T_SENTINEL, "doShoot", eff) end, @@ -3899,8 +3899,8 @@ newEffect{ newEffect{ name = "RAPID_MOVEMENT", image = "talents/rapid_shot.png", - desc = "Rapid Movement", - long_desc = function(self, eff) return ("Increases movement speed by %d%%."):format(eff.power*100) end, + desc = _t"Rapid Movement", + long_desc = function(self, eff) return ("Increases movement speed by %d%%."):tformat(eff.power*100) end, type = "physical", subtype = { tactic=true }, status = "beneficial", @@ -3912,14 +3912,14 @@ newEffect{ newEffect{ name = "STICKY_PITCH", image = "talents/sticky_smoke.png", - desc = "Sticky Pitch", - long_desc = function(self, eff) return ("The target's global speed is reduced by %d%% and fire resistance by %d%%."):format(eff.slow, eff.resist) end, + desc = _t"Sticky Pitch", + long_desc = function(self, eff) return ("The target's global speed is reduced by %d%% and fire resistance by %d%%."):tformat(eff.slow, eff.resist) end, type = "physical", subtype = { slow=true }, status = "detrimental", parameters = { slow=0.1, resist=10 }, - on_gain = function(self, err) return "#Target# is covered in sticky, flammable pitch.", "+Pitch" end, - on_lose = function(self, err) return "#Target# is free from the pitch.", "-Pitch" end, + on_gain = function(self, err) return _t"#Target# is covered in sticky, flammable pitch.", _t"+Pitch" end, + on_lose = function(self, err) return _t"#Target# is free from the pitch.", _t"-Pitch" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("global_speed_add", -eff.slow) eff.resid = self:addTemporaryValue("resists", {[DamageType.FIRE] = -eff.resist}) @@ -3936,14 +3936,14 @@ newEffect{ newEffect{ name = "PUNCTURED_ARMOUR", image = "talents/piercing_ammunition.png", - desc = "Punctured Armour", - long_desc = function(self, eff) return ("Armour has been punctured, increasing all damage taken by %d%%."):format(eff.power) end, + desc = _t"Punctured Armour", + long_desc = function(self, eff) return ("Armour has been punctured, increasing all damage taken by %d%%."):tformat(eff.power) end, type = "physical", subtype = { sunder=true }, status = "detrimental", parameters = { power=20, }, - on_gain = function(self, err) return "#Target#'s armour is punctured!", "+Punctured Armour!" end, - on_lose = function(self, err) return "#Target#'s armour is more intact.", "-Punctured Armour" end, + on_gain = function(self, err) return _t"#Target#'s armour is punctured!", _t"+Punctured Armour!" end, + on_lose = function(self, err) return _t"#Target#'s armour is more intact.", _t"-Punctured Armour" end, activate = function(self, eff) self:effectTemporaryValue(eff, "resists", {all=-eff.power}) self:effectParticles(eff, {type="circle", args={oversize=1, a=220, base_rot=180, shader=true, appear=12, img="pierced_armour_debuff_aura", speed=0, radius=0}}) @@ -3952,14 +3952,14 @@ newEffect{ newEffect{ name = "LEECHING_POISON", image = "talents/leeching_poison.png", - desc = "Leeching Poison", - long_desc = function(self, eff) return ("The target is poisoned, doing %0.2f nature damage per turn and restoring life to the attacker equal to the damage dealt."):format(eff.power) end, + desc = _t"Leeching Poison", + long_desc = function(self, eff) return ("The target is poisoned, doing %0.2f nature damage per turn and restoring life to the attacker equal to the damage dealt."):tformat(eff.power) end, type = "physical", subtype = { poison=true, nature=true }, no_ct_effect = true, status = "detrimental", parameters = {power=10, heal=5}, - on_gain = function(self, err) return "#Target# is poisoned!", "+Leeching Poison" end, - on_lose = function(self, err) return "#Target# is no longer poisoned.", "-Leeching Poison" end, + on_gain = function(self, err) return _t"#Target# is poisoned!", _t"+Leeching Poison" end, + on_lose = function(self, err) return _t"#Target# is no longer poisoned.", _t"-Leeching Poison" end, -- Damage each turn on_timeout = function(self, eff) if self:attr("purify_poison") then @@ -3974,14 +3974,14 @@ newEffect{ newEffect{ name = "MAIM", image = "effects/deep_wound.png", - desc = "Maim", - long_desc = function(self, eff) return ("The target is maimed, doing %0.2f physical damage per turn. All damage it does is reduced by %d%%."):format(eff.power, eff.reduce) end, + desc = _t"Maim", + long_desc = function(self, eff) return ("The target is maimed, doing %0.2f physical damage per turn. All damage it does is reduced by %d%%."):tformat(eff.power, eff.reduce) end, type = "physical", subtype = { cut=true }, no_ct_effect = true, status = "detrimental", parameters = {power=10, reduce=5}, - on_gain = function(self, err) return "#Target# is maimed!", "+Maim" end, - on_lose = function(self, err) return "#Target# is no longer maimed.", "-Maim" end, + on_gain = function(self, err) return _t"#Target# is maimed!", _t"+Maim" end, + on_lose = function(self, err) return _t"#Target# is no longer maimed.", _t"-Maim" end, -- Damage each turn on_timeout = function(self, eff) if self:canBe("cut") then DamageType:get(DamageType.PHYSICAL).projector(eff.src, self.x, self.y, DamageType.PHYSICAL, eff.power) end @@ -4001,14 +4001,14 @@ newEffect{ newEffect{ name = "SNIPE", image = "talents/snipe.png", - desc = "Snipe", - long_desc = function(self, eff) return ("The target is preparing a deadly sniper shot."):format() end, + desc = _t"Snipe", + long_desc = function(self, eff) return ("The target is preparing a deadly sniper shot."):tformat() end, type = "physical", subtype = { tactic=true }, status = "beneficial", parameters = { power=50 }, - on_gain = function(self, err) return "#Target# takes aim...", "+Snipe" end, - on_lose = function(self, err) return "#Target# is no longer aiming.", "-Snipe" end, + on_gain = function(self, err) return _t"#Target# takes aim...", _t"+Snipe" end, + on_lose = function(self, err) return _t"#Target# is no longer aiming.", _t"-Snipe" end, activate = function(self, eff) self:effectTemporaryValue(eff, "negative_status_effect_immune", 1) self:effectTemporaryValue(eff, "incoming_reduce", eff.power) @@ -4043,8 +4043,8 @@ newEffect{ newEffect{ name = "CONCEALMENT", image = "talents/concealment.png", - desc = "Concealment", - long_desc = function(self, eff) return ("The target is concealed, increasing sight and attack range by %d and chance to avoid damage by %d%%."):format(eff.sight, eff.power*eff.charges) end, + desc = _t"Concealment", + long_desc = function(self, eff) return ("The target is concealed, increasing sight and attack range by %d and chance to avoid damage by %d%%."):tformat(eff.sight, eff.power*eff.charges) end, type = "physical", subtype = { tactic=true }, status = "beneficial", @@ -4072,14 +4072,14 @@ newEffect{ newEffect{ name = "SHADOW_SMOKE", image = "talents/shadow_shot.png", - desc = "Shadow Smoke", - long_desc = function(self, eff) return ("The target is wrapped in disorientating smoke, reducing vision range by %d."):format(eff.sight) end, + desc = _t"Shadow Smoke", + long_desc = function(self, eff) return ("The target is wrapped in disorientating smoke, reducing vision range by %d."):tformat(eff.sight) end, type = "physical", subtype = { blind=true }, status = "detrimental", parameters = { sight=5 }, - on_gain = function(self, err) return "#Target# is surrounded by a thick smoke.", "+Shadow Smoke" end, - on_lose = function(self, err) return "The smoke around #target# dissipate.", "-Shadow Smoke" end, + on_gain = function(self, err) return _t"#Target# is surrounded by a thick smoke.", _t"+Shadow Smoke" end, + on_lose = function(self, err) return _t"The smoke around #target# dissipate.", _t"-Shadow Smoke" end, charges = function(self, eff) return -eff.sight end, activate = function(self, eff) if self:canBe("blind") then @@ -4101,8 +4101,8 @@ newEffect{ newEffect{ name = "SHADOWSTRIKE", image = "talents/shadowstrike.png", - desc = "Shadowstrike", - long_desc = function(self, eff) return ("The target's critical strike damage bonus is increased by %d%%."):format(eff.power) end, + desc = _t"Shadowstrike", + long_desc = function(self, eff) return ("The target's critical strike damage bonus is increased by %d%%."):tformat(eff.power) end, type = "physical", subtype = { darkness=true }, status = "beneficial", @@ -4117,10 +4117,10 @@ newEffect{ -- Premptive Chromatic resistance newEffect{ name = "CHROMATIC_RESONANCE", image = "shockbolt/object/artifact/ureslaks_molted_scales.png", - desc = "Chromatic Resonance", + desc = _t"Chromatic Resonance", long_desc = function(self, eff) local dt_descs = table.concatNice(eff.type_descs, ", ", ", or ") - return ("Preemptively reacts to %s damage, increasing the appropriate resistance by %d for 5 turns."):format(dt_descs, eff.power) + return ("Preemptively reacts to %s damage, increasing the appropriate resistance by %d for 5 turns."):tformat(dt_descs, eff.power) end, type = "physical", subtype = { nature=true, resist=true }, @@ -4156,11 +4156,11 @@ newEffect{ newEffect{ name = "CHROMATIC_RESISTANCE", image = "shockbolt/object/artifact/ureslaks_molted_scales.png", - desc = "Chromatic Resistance", + desc = _t"Chromatic Resistance", long_desc = function(self, eff) local dt = DamageType[eff.type] and DamageType:get(eff.type) local type_desc = dt and ((dt.text_color or "#aaaaaa#")..dt.name:capitalize().."#LAST# ") or "" - return ("%sresistance increased by %d%%."):format(type_desc, eff.power) + return ("%sresistance increased by %d%%."):tformat(type_desc, eff.power) end, type = "physical", subtype = { nature=true, resist=true }, @@ -4191,8 +4191,8 @@ newEffect{ newEffect{ name = "SWIFT_SHOT", image = "talents/skirmisher_swift_shot.png", - desc = "Swift Shot", - long_desc = function(self, eff) return ("Increases attack speed by %d%%."):format(eff.speed * 100) end, + desc = _t"Swift Shot", + long_desc = function(self, eff) return ("Increases attack speed by %d%%."):tformat(eff.speed * 100) end, type = "physical", subtype = { tactic=true }, status = "beneficial", @@ -4203,8 +4203,8 @@ newEffect{ } newEffect{ name = "CROOKED", image = "shockbolt/object/artifact/weapon_crooked_club.png", - desc = "Crooked", - long_desc = function(self, eff) return ("The target becomes more and more primitive, reducing accuracy and powers by %d"):format(eff.power*eff.stacks) end, + desc = _t"Crooked", + long_desc = function(self, eff) return ("The target becomes more and more primitive, reducing accuracy and powers by %d"):tformat(eff.power*eff.stacks) end, type = "physical", subtype = { }, status = "detrimental", @@ -4242,14 +4242,14 @@ newEffect{ name = "CROOKED", image = "shockbolt/object/artifact/weapon_crooked_c newEffect{ name = "ELDORAL", image = "talents/uncanny_reload.png", - desc = "Eldoral", - long_desc = function(self, eff) return ("Firing slings does not consume shots."):format() end, + desc = _t"Eldoral", + long_desc = function(self, eff) return ("Firing slings does not consume shots."):tformat() end, type = "physical", subtype = { }, status = "beneficial", parameters = { speed = 20, fatigue = 100}, - on_gain = function(self, err) return "#Target# is focused on firing.", "+Eldoral" end, - on_lose = function(self, err) return "#Target# is less focused.", "-Eldoral" end, + on_gain = function(self, err) return _t"#Target# is focused on firing.", _t"+Eldoral" end, + on_lose = function(self, err) return _t"#Target# is less focused.", _t"-Eldoral" end, activate = function(self, eff) self:effectTemporaryValue(eff, "infinite_ammo", 1) self:effectTemporaryValue(eff, "combat_physspeed", eff.speed/100) @@ -4259,14 +4259,14 @@ newEffect{ newEffect{ name = "SILENT_STEALTH", image = "talents/stealth.png", - desc = "Stealthed", - long_desc = function(self, eff) return ("Gain %d stealth power"):format(eff.power) end, + desc = _t"Stealthed", + long_desc = function(self, eff) return ("Gain %d stealth power"):tformat(eff.power) end, type = "physical", subtype = { }, status = "beneficial", parameters = { power = 30 }, - on_gain = function(self, err) return "#Target# is more stealthy.", "+Silent stealth" end, - on_lose = function(self, err) return "#Target# is visible again.", "-Silent stealth" end, + on_gain = function(self, err) return _t"#Target# is more stealthy.", _t"+Silent stealth" end, + on_lose = function(self, err) return _t"#Target# is visible again.", _t"-Silent stealth" end, activate = function(self, eff) self:effectTemporaryValue(eff, "stealth", eff.power) end, @@ -4274,13 +4274,13 @@ newEffect{ newEffect{ name = "FORGONE_VISION", image = "effects/blinded.png", - desc = "Blinded", + desc = _t"Blinded", long_desc = function(self, eff) return "The target is blinded, unable to see anything." end, type = "other", subtype = {}, status = "detrimental", parameters = {power = 2}, - on_lose = function(self, err) return "#Target# recovers sight.", "-Blind" end, + on_lose = function(self, err) return _t"#Target# recovers sight.", _t"-Blind" end, activate = function(self, eff) eff.tmpid = self:addTemporaryValue("blind", 1) eff.blind = self:addTemporaryValue("blind_immune", eff.power) --Lets the player control blinds for the duration-- @@ -4306,8 +4306,8 @@ newEffect{ newEffect{ name = "GIFT_WOODS", image = "talents/thaloren_wrath.png", - desc = "Gift of the Woods", - long_desc = function(self, eff) return ("Increases the effectiveness of all healing the target receives by %d%%."):format(eff.power * 100) end, + desc = _t"Gift of the Woods", + long_desc = function(self, eff) return ("Increases the effectiveness of all healing the target receives by %d%%."):tformat(eff.power * 100) end, type = "physical", subtype = { nature=true }, status = "beneficial",