From 5eb532833f1b75daf9ba28ad699ac2ea86bafec3 Mon Sep 17 00:00:00 2001 From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54> Date: Mon, 11 Oct 2010 22:11:55 +0000 Subject: [PATCH] Added music to Ardhungol Fixed Gloom confusion power Improved the artifact Gwai's Burninator git-svn-id: http://svn.net-core.org/repos/t-engine4@1497 51575b47-30f0-44d4-a5cc-537603b46e54 --- game/modules/tome/data/general/objects/world-artifacts.lua | 4 ++-- game/modules/tome/data/talents/cursed/gloom.lua | 2 +- game/modules/tome/data/zones/ardhungol/zone.lua | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/game/modules/tome/data/general/objects/world-artifacts.lua b/game/modules/tome/data/general/objects/world-artifacts.lua index a6099e4530..94b40e26a5 100644 --- a/game/modules/tome/data/general/objects/world-artifacts.lua +++ b/game/modules/tome/data/general/objects/world-artifacts.lua @@ -724,10 +724,10 @@ newEntity{ base = "BASE_WAND", max_power = 75, power_regen = 1, use_power = { name = "shoot a cone of fire", power = 30, use = function(self, who) - local tg = {type="cone", range=0, radius=4} + local tg = {type="cone", range=0, radius=5} local x, y = who:getTarget(tg) if not x or not y then return nil end - who:project(tg, x, y, engine.DamageType.FIRE, 80 + who:getMag(), {type="flame"}) + who:project(tg, x, y, engine.DamageType.FIRE, 80 + who:getMag() * 1.2, {type="flame"}) end }, } diff --git a/game/modules/tome/data/talents/cursed/gloom.lua b/game/modules/tome/data/talents/cursed/gloom.lua index bf52f7018a..aa2e57f208 100644 --- a/game/modules/tome/data/talents/cursed/gloom.lua +++ b/game/modules/tome/data/talents/cursed/gloom.lua @@ -109,7 +109,7 @@ newTalent{ if effect == 1 then -- confusion if target:canBe("confusion") and not target:hasEffect(target.EFF_GLOOM_CONFUSED) then - target:setEffect(target.EFF_GLOOM_CONFUSED, 2, {power=0.75}) + target:setEffect(target.EFF_GLOOM_CONFUSED, 2, {power=70}) --game:playSoundNear(self, "talents/fire") hit = true end diff --git a/game/modules/tome/data/zones/ardhungol/zone.lua b/game/modules/tome/data/zones/ardhungol/zone.lua index ef6ec1acc1..f3a8945282 100644 --- a/game/modules/tome/data/zones/ardhungol/zone.lua +++ b/game/modules/tome/data/zones/ardhungol/zone.lua @@ -31,6 +31,7 @@ return { -- Apply a greenish tint to all the map color_shown = {0.3, 1, 0.5, 1}, color_obscure = {0.3*0.6, 1*0.6, 0.5*0.6, 1}, + ambiant_music = "The Ancients.ogg", generator = { map = { class = "engine.generator.map.Cavern", -- GitLab