diff --git a/game/modules/tome/data/gfx/shockbolt/npc/humanoid_orc_orc_assassin.png b/game/modules/tome/data/gfx/shockbolt/npc/humanoid_orc_orc_assassin.png index 4006e5762dace7a4485f2d56708fe2c4bd5f876b..5504c11c2394ed4e2056419afb9ce05287974e01 100644 Binary files a/game/modules/tome/data/gfx/shockbolt/npc/humanoid_orc_orc_assassin.png and b/game/modules/tome/data/gfx/shockbolt/npc/humanoid_orc_orc_assassin.png differ diff --git a/game/modules/tome/data/gfx/shockbolt/npc/humanoid_orc_orc_grand_master_assassin.png b/game/modules/tome/data/gfx/shockbolt/npc/humanoid_orc_orc_grand_master_assassin.png new file mode 100644 index 0000000000000000000000000000000000000000..1824f30749758a41f162d53479bb5fb4d44252b5 Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/npc/humanoid_orc_orc_grand_master_assassin.png differ diff --git a/game/modules/tome/data/gfx/shockbolt/npc/humanoid_orc_orc_grand_summoner.png b/game/modules/tome/data/gfx/shockbolt/npc/humanoid_orc_orc_grand_summoner.png new file mode 100644 index 0000000000000000000000000000000000000000..d39266a3f533275bdab5ea0f52d87c146800bb3a Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/npc/humanoid_orc_orc_grand_summoner.png differ diff --git a/game/modules/tome/data/gfx/shockbolt/npc/humanoid_orc_orc_summoner.png b/game/modules/tome/data/gfx/shockbolt/npc/humanoid_orc_orc_summoner.png new file mode 100644 index 0000000000000000000000000000000000000000..f61f7d231067df0a756c6ecfda78a22e89916f48 Binary files /dev/null and b/game/modules/tome/data/gfx/shockbolt/npc/humanoid_orc_orc_summoner.png differ diff --git a/game/modules/tome/data/quests/start-archmage.lua b/game/modules/tome/data/quests/start-archmage.lua index 1c6013367c02ce041b42f107767f5c0dc2b0c99f..afb4ea7f12f68e66a15731bbfc5b53ee9d42f59d 100644 --- a/game/modules/tome/data/quests/start-archmage.lua +++ b/game/modules/tome/data/quests/start-archmage.lua @@ -42,6 +42,22 @@ on_status_change = function(self, who, status, sub) end end +on_grant = function(self, who) + local npc + for uid, e in pairs(game.level.entities) do + if e.define_as and e.define_as == "TARELION" then npc = e break end + end + if not npc then return end + local x, y = util.findFreeGrid(npc.x, npc.y, 10, true, {[Map.ACTOR]=true}) + if not x or not y then return end + + who:move(x, y, true) + + local Chat = require"engine.Chat" + local chat = Chat.new("tarelion-start-archmage", npc, who) + chat:invoke() +end + stabilized = function(self) self.stables = self.stables + 1 end