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

Fixed Forgery of Haze

git-svn-id: http://svn.net-core.org/repos/t-engine4@4378 51575b47-30f0-44d4-a5cc-537603b46e54
parent b2c0b149
No related branches found
No related tags found
No related merge requests found
......@@ -178,7 +178,7 @@ newTalent{
return
end
local m = self:clone{
local m = require("mod.class.NPC").new(self:clone{
shader = "shadow_simulacrum",
no_drops = true,
faction = self.faction,
......@@ -188,7 +188,7 @@ newTalent{
ai = "summoned", ai_real = "tactical",
name = "Forgery of Haze ("..self.name..")",
desc = [[A dark shadowy shape whose form resembles you.]],
}
})
m:removeAllMOs()
m.make_escort = nil
m.on_added_to_level = nil
......@@ -198,10 +198,12 @@ newTalent{
m.max_life = m.max_life * t.getHealth(self, t)
m.life = util.bound(m.life, 0, m.max_life)
m.forceLevelup = function() end
m.die = nil
m.on_die = nil
m.on_acquire_target = nil
m.seen_by = nil
m.can_talk = nil
m.no_inventory_access = true
m.clone_on_hit = nil
m.talents.T_CREATE_MINIONS = nil
m.talents.T_FORGERY_OF_HAZE = nil
......
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