From ebefa099ca690422f597717039619a6085be3c45 Mon Sep 17 00:00:00 2001 From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54> Date: Tue, 6 Dec 2011 10:40:03 +0000 Subject: [PATCH] Mummified Egg-sac of Ungole summons are now working with Summoner's talents, summon control can affect them, they gain passives from the user and such git-svn-id: http://svn.net-core.org/repos/t-engine4@4717 51575b47-30f0-44d4-a5cc-537603b46e54 --- .../data/general/objects/world-artifacts.lua | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/game/modules/tome/data/general/objects/world-artifacts.lua b/game/modules/tome/data/general/objects/world-artifacts.lua index dbf54f6aee..bdcf5aa007 100644 --- a/game/modules/tome/data/general/objects/world-artifacts.lua +++ b/game/modules/tome/data/general/objects/world-artifacts.lua @@ -796,25 +796,16 @@ newEntity{ until not e.unique and e.rarity local spider = game.zone:finishEntity(game.level, "actor", e) + spider.make_escort = nil + spider.silent_levelup = true spider.faction = who.faction spider.ai = "summoned" spider.ai_real = "dumb_talented_simple" spider.summoner = who spider.summon_time = 10 - -- Add to the party - if self.player then - spider.remove_from_party_on_death = true - game.party:addMember(spider, { - control="no", - type="summon", - title="Summon", - orders = {target=true, leash=true, anchor=true, talents=true}, - }) - end - - game.zone:addEntity(game.level, spider, "actor", x, y) - game.level.map:particleEmitter(x, y, 1, "slime") + local setupSummon = getfenv(who:getTalentFromId(who.T_SPIDER).action).setupSummon + setupSummon(who, spider, x, y) game:playSoundNear(who, "talents/slime") end -- GitLab