diff --git a/game/modules/tome/class/NPC.lua b/game/modules/tome/class/NPC.lua index b995c728c8b1bbba9a405f74511b89b2c460c2a0..e784cd55745d85e98a4529aa4d17486d4e814156 100644 --- a/game/modules/tome/class/NPC.lua +++ b/game/modules/tome/class/NPC.lua @@ -281,6 +281,11 @@ function _M:die(src, death_note) if rod then game.zone:addEntity(game.level, rod, "object", self.x, self.y) game.state:allowRodRecall(false) + if self.define_as == "THE_MASTER" then world:gainAchievement("FIRST_BOSS_MASTER", src) + elseif self.define_as == "GRAND_CORRUPTOR" then world:gainAchievement("FIRST_BOSS_GRAND_CORRUPTOR", src) + elseif self.define_as == "PROTECTOR_MYSSIL" then world:gainAchievement("FIRST_BOSS_MYSSIL", src) + elseif self.define_as == "URKIS" then world:gainAchievement("FIRST_BOSS_URKIS", src) + end end end -- Ok the player managed to kill a boss dont bother him with tutorial anymore diff --git a/game/modules/tome/data/achievements/kills.lua b/game/modules/tome/data/achievements/kills.lua index 722d92ede5de9a0a60f7b882c5816fffbabf6640..7ede41ebd31abc9faff523f141bfd47bd56b338b 100644 --- a/game/modules/tome/data/achievements/kills.lua +++ b/game/modules/tome/data/achievements/kills.lua @@ -178,3 +178,35 @@ newAchievement{ desc = [[Saved Derth without a single inhabitant dying.]], mode = "player", } + +newAchievement{ + name = "Kickin' it old-school", id = "FIRST_BOSS_URKIS", + image = "npc/humanoid_human_urkis__the_high_tempest.png", + show = "full", + desc = [[Kill Urkis, the Tempest, causing him to drop the Rod of Recall.]], + mode = "player", +} + +newAchievement{ + name = "Leave the big boys alone", id = "FIRST_BOSS_MASTER", + image = "npc/the_master.png", + show = "full", + desc = [[Kill The Master, causing him to drop the Rod of Recall.]], + mode = "player", +} + +newAchievement{ + name = "You know who's to blame", id = "FIRST_BOSS_GRAND_CORRUPTOR", + image = "npc/humanoid_shalore_grand_corruptor.png", + show = "full", + desc = [[Kill the Grand Corruptor, causing him to drop the Rod of Recall.]], + mode = "player", +} + +newAchievement{ + name = "You know who's to blame (reprise)", id = "FIRST_BOSS_MYSSIL", + image = "npc/humanoid_halfling_protector_myssil.png", + show = "full", + desc = [[Kill Myssil, causing her to drop the Rod of Recall.]], + mode = "player", +}