Skip to content
Snippets Groups Projects
Commit 586f43fe authored by dg's avatar dg
Browse files

fix

git-svn-id: http://svn.net-core.org/repos/t-engine4@4319 51575b47-30f0-44d4-a5cc-537603b46e54
parent fae861a8
No related merge requests found
......@@ -2060,7 +2060,7 @@ newEntity{ base = "BASE_LONGSWORD", define_as = "ART_PAIR_TWSWORD",
on_set_complete = function(self, who)
self.combat.special_on_hit = {desc="10% chance to reduce the target's resistances to all damage", fct=function(combat, who, target)
if not rng.percent(10) then return end
target:setEffect(target.FLAWED_DESIGN, 3, {power=20})
target:setEffect(target.EFF_FLAWED_DESIGN, 3, {power=20})
end}
self:specialSetAdd({"wielder","inc_damage"}, {[engine.DamageType.TEMPORAL]=5, [engine.DamageType.PHYSICAL]=10,})
game.logSeen(who, "#CRIMSON#The echoes of time resound as the blades are reunited once more.")
......@@ -2098,7 +2098,7 @@ newEntity{ base = "BASE_KNIFE", define_as = "ART_PAIR_TWDAG",
on_set_complete = function(self, who)
self.combat.special_on_hit = {desc="10% chance to return the target to a much youger state", fct=function(combat, who, target)
if not rng.percent(10) then return end
target:setEffect(target.TURN_BACK_THE_CLOCK, 3, {power=10})
target:setEffect(target.EFF_TURN_BACK_THE_CLOCK, 3, {power=10})
end}
self:specialSetAdd({"wielder","inc_damage"}, {[engine.DamageType.TEMPORAL]=5, [engine.DamageType.PHYSICAL]=10,})
self:specialSetAdd({"wielder","resists_pen"}, {[engine.DamageType.TEMPORAL]=15,})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment