diff --git a/game/modules/tome/class/Player.lua b/game/modules/tome/class/Player.lua index 0fed3d3a3ebb9f309c09a6809a7fa3ed727b2441..3ea70ce589c96059055ec2085816b9b0b3374a22 100644 --- a/game/modules/tome/class/Player.lua +++ b/game/modules/tome/class/Player.lua @@ -331,15 +331,6 @@ function _M:playerFOV() end, true, true, true) end - -- For each entity, generate lite - local uid, e = next(game.level.entities) - while uid do - if e ~= self and e.lite and e.lite > 0 and e.computeFOV then - e:computeFOV(e.lite, "block_sight", function(x, y, dx, dy, sqdist) game.level.map:applyExtraLite(x, y, fovdist[sqdist]) end, true, true) - end - uid, e = next(game.level.entities, uid) - end - if not self:attr("blind") then -- Handle dark vision; same as infravision, but also sees past creeping dark -- this is treated as a sense, but is filtered by custom LOS code @@ -385,6 +376,15 @@ function _M:playerFOV() end, true, false, true) if self.lite <= 0 then game.level.map:applyLite(self.x, self.y) else self:computeFOV(self.lite, "block_sight", function(x, y, dx, dy, sqdist) game.level.map:applyLite(x, y) end, true, true, true) end + + -- For each entity, generate lite + local uid, e = next(game.level.entities) + while uid do + if e ~= self and e.lite and e.lite > 0 and e.computeFOV then + e:computeFOV(e.lite, "block_sight", function(x, y, dx, dy, sqdist) game.level.map:applyExtraLite(x, y, fovdist[sqdist]) end, true, true) + end + uid, e = next(game.level.entities, uid) + end end end diff --git a/game/modules/tome/data/birth/races/elf.lua b/game/modules/tome/data/birth/races/elf.lua index 14c425d3f71059d3891124dbb5f475056ea021c0..80f5e3c8e5faa495e8f98da46eac7158bacbbc78 100644 --- a/game/modules/tome/data/birth/races/elf.lua +++ b/game/modules/tome/data/birth/races/elf.lua @@ -76,6 +76,9 @@ newBirthDescriptor experience = 1.3, talents = { [ActorTalents.T_SHALOREN_SPEED]=1 }, copy = { + default_wilderness = {17, 42}, + starting_zone = "scintillating-caves", + starting_quest = "start-shaloren", faction = "shalore", starting_intro = "shalore", life_rating = 9, diff --git a/game/modules/tome/data/chats/eidolon-plane.lua b/game/modules/tome/data/chats/eidolon-plane.lua index 3c6bc7afd0ca0cb95e8f25def56f3d71d7a33df1..1f6489f7b61388fa60b8e86067248593f432b7e3 100644 --- a/game/modules/tome/data/chats/eidolon-plane.lua +++ b/game/modules/tome/data/chats/eidolon-plane.lua @@ -20,7 +20,7 @@ newChat{ id="welcome", text = [[#LIGHT_GREEN#*Before you stands an humanoid shape filled with 'nothing'. It seems to stare at you.*#WHITE# I have brought you here on the instant of your death. I am the Eidolon. -I have deemed you worthy of my 'interrest', I will watch your future steps with interrest +I have deemed you worthy of my 'interest', I will watch your future steps with interest. You may rest here, when you are ready I will send you back to the material plane. But do not abuse my help, I am not your servant, someday I might just let you die. As for your probable many questions, they will stay unanswered, I may help, but I am not here to explain why.]], diff --git a/game/modules/tome/data/general/npcs/crystal.lua b/game/modules/tome/data/general/npcs/crystal.lua index fa69145792a821f277af0adefb322831b7c18de6..aa25c243c3963b58fc052267260d7c17e6ab875c 100644 --- a/game/modules/tome/data/general/npcs/crystal.lua +++ b/game/modules/tome/data/general/npcs/crystal.lua @@ -9,7 +9,9 @@ newEntity{ body = { INVEN = 10 }, autolevel = "caster", ai = "dumb_talented_simple", ai_state = { talent_in=1, }, - resolvers.drops{chance=25, nb=1, {type="jewelry", ego_chance = 100}}, + + resolvers.drops{chance=15, nb=1, {type="jewelry"}}, + max_life = resolvers.rngavg(12,34), stats = { str=1, dex=5, mag=20, con=1 }, energy = { mod=0.5 }, @@ -29,7 +31,9 @@ newEntity{ see_invisible = 25, resolvers.talents{ [Talents.T_PHASE_DOOR]=1, - } + }, + + lite = 2, } @@ -58,7 +62,7 @@ newEntity{ base = "BASE_NPC_CRYSTAL", newEntity{ base = "BASE_NPC_CRYSTAL", name = "black crystal", color=colors.BLACK, desc = "A formation of black crystal. It absorbs all light around it.", - level_range = {1, nil}, exp_worth = 1, + level_range = {3, nil}, exp_worth = 1, rarity = 2, resists = { [DamageType.LIGHT] = 100 ,[DamageType.DARKNESS] = -100 }, resolvers.talents{ @@ -69,7 +73,7 @@ newEntity{ base = "BASE_NPC_CRYSTAL", newEntity{ base = "BASE_NPC_CRYSTAL", name = "crimson crystal", color=colors.DARK_RED, desc = "A formation of crimson crystal. It emits a crimson light reminiscent of blood.", - level_range = {1, nil}, exp_worth = 1, + level_range = {3, nil}, exp_worth = 1, rarity = 3, resists = { [DamageType.LIGHT] = -100 }, resolvers.talents{ @@ -80,7 +84,7 @@ newEntity{ base = "BASE_NPC_CRYSTAL", newEntity{ base = "BASE_NPC_CRYSTAL", name = "blue crystal", color=colors.BLUE, desc = "A formation of blue crystal. Its light shines like the ocean's waves.", - level_range = {1, nil}, exp_worth = 1, + level_range = {3, nil}, exp_worth = 1, rarity = 4, resists = { [DamageType.ICE] = -100 }, resolvers.talents{ @@ -92,7 +96,7 @@ newEntity{ base = "BASE_NPC_CRYSTAL", name = "multi-hued crystal", color=colors.VIOLET, shader = "quad_hue", desc = "A formation of multi-hued crystal. It shines with all the colors of the rainbow.", - level_range = {1, nil}, exp_worth = 1, + level_range = {10, nil}, exp_worth = 1, rarity = 4, resists = { [DamageType.LIGHT] = 100 }, resolvers.talents{ @@ -107,7 +111,7 @@ newEntity{ base = "BASE_NPC_CRYSTAL", name = "shimmering crystal", color=colors.GREEN, shader = "quad_hue", desc = "A formation of shimmering crystal. Orbs of light circle around it.", - level_range = {1, nil}, exp_worth = 1, + level_range = {10, nil}, exp_worth = 1, rarity = 5, resists = { [DamageType.LIGHT] = 100 }, summon = {{name = "wisp", number=3, hasxp=false}}, diff --git a/game/modules/tome/data/maps/wilderness/eyal.lua b/game/modules/tome/data/maps/wilderness/eyal.lua index 699c7a2818069a8cd597801d0fe96c6aa00e7df7..484f36d760676e1d298196a3d248a70af6066647 100644 --- a/game/modules/tome/data/maps/wilderness/eyal.lua +++ b/game/modules/tome/data/maps/wilderness/eyal.lua @@ -63,6 +63,7 @@ quickEntity('dreadfell', {always_remember = true, show_tooltip=true, name="The e quickEntity('daikara', {always_remember = true, show_tooltip=true, name="Passageway into Daikara",display='>', color=colors.UMBER, notice = true, change_level=1, change_zone="daikara"}) quickEntity('charred-scar', {always_remember = true, show_tooltip=true, name='Charred Scar Volcano', display='>', color=colors.RED, back_color=colors.LIGHT_DARK, image="terrain/volcano1.png", notice = true, change_level=1, change_zone="charred-scar"}) quickEntity('halfling-ruins', {always_remember = true, show_tooltip=true, name="Very old halfling ruins", display='>', color=colors.RED, notice = true, change_level=1, change_zone="halfling-ruins"}) +quickEntity('scintillating-caves', {always_remember = true, show_tooltip=true, name="Entrance to the Scintillating Caves", display='>', color={r=0, g=255, b=0}, notice = true, change_level=1, change_zone="scintillating-caves"}) quickEntity('derth', {always_remember = true, show_tooltip=true, name="Derth (Town)", desc="A quiet town at the crossroads of the north", display='*', color={r=255, g=255, b=255}, back_color=colors.DARK_GREEN, image="terrain/town1.png", notice = true, change_level=1, change_zone="town-derth"}) quickEntity('last-hope', {always_remember = true, show_tooltip=true, name="Last Hope (Town)", desc="Capital city of the Allied Kingdoms ruled by King Tolak", display='*', color={r=255, g=255, b=255}, back_color=colors.DARK_GREEN, image="terrain/town1.png", notice = true, change_level=1, change_zone="town-last-hope"}) @@ -230,9 +231,9 @@ return { {[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[-]],[[-]],[[.]],[[.]],[[.]],[[.]],[[-]],[[.]],[[.]],[[.]],[[~]],[[~]],[[.]],[[.]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[!]],[[!]],[[.]],[[.]],[[.]],[[.]],[[T]],[[T]],[[T]],[[T]],[[-]],[[-]],[[^]],[[^]],[[!]],[[!]],[[.]],[[.]],[[.]],[[-]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[-]],[[-]],[[.]],[[.]],[[.]],[[.]],[[.]],[[!]],[[!]],[[!]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[T]],[[T]],[[T]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[!]],[[!]],[[^]],[[^]],[[^]],[[^]],[[!]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[!]],[[w]],[[!]],[[!]],[[!]],[[!]],[[!]],[[!]],[[.]],[[~]],[[~]],}, {[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[-]],[[T]],[[T]],[[T]],[[.]],[[.]],[[-]],[[-]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[!]],[[!]],[[!]],[[!]],[[!]],[[!]],[[!]],[[!]],[[^]],[[!]],[[!]],[[.]],[[.]],[[.]],[[T]],[[T]],[[T]],[[T]],[[T]],[[-]],[[.]],[[!]],[[^]],[[^]],[[!]],[[.]],[[.]],[[.]],[[~]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[-]],[[-]],[[.]],[[.]],[[.]],[[.]],[[!]],[[!]],[[!]],[[!]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[T]],[[.]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[.]],[[.]],[[.]],[[!]],[[^]],[[^]],[[^]],[[!]],[[!]],[[!]],[[!]],[[!]],[[!]],[[!]],[[!]],[[!]],[[!]],[[!]],[[!]],[[!]],[[!]],[[!]],[[.]],[[~]],[[~]],}, {[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[T]],[[T]],[[T]],[[T]],[[T]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[.]],[[.]],[[.]],[[.]],[[.]],[[!]],[[!]],[[.]],[[.]],[[.]],[[.]],[[!]],[[!]],[[.]],[[.]],[[.]],[[T]],[[_]],[[_]],[[_]],[[_]],[[T]],[[spellmurk-lake]],[[spellmurk-lake]],[[spellmurk-lake]],[[!]],[[!]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[.]],[[.]],[[.]],[[.]],[[last-hope]],[[-]],[[.]],[[.]],[[.]],[[.]],[[!]],[[!]],[[!]],[[!]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[|]],[[|]],[[.]],[[.]],[[.]],[[.]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[!]],[[!]],[[!]],[[!]],[[!]],[[!]],[[!]],[[^]],[[!]],[[.]],[[.]],[[~]],}, -{[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[T]],[[T]],[[T]],[[T]],[[T]],[[T]],[[T]],[[~]],[[~]],[[~]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[~]],[[.]],[[T]],[[_]],[[{]],[[{]],[[_]],[[_]],[[spellmurk-lake]],[[spellmurk-lake]],[[spellmurk-lake]],[[spellmurk-lake]],[[.]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[.]],[[.]],[[-]],[[-]],[[-]],[[-]],[[.]],[[.]],[[.]],[[.]],[[!]],[[!]],[[!]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[|]],[[|]],[[.]],[[.]],[[.]],[[.]],[[!]],[[!]],[[!]],[[^]],[[^]],[[^]],[[^]],[[!]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[!]],[[!]],[[!]],[[!]],[[^]],[[^]],[[.]],[[.]],[[~]],}, -{[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[.]],[[&]],[[&]],[[T]],[[T]],[[T]],[[T]],[[T]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[T]],[[_]],[[{]],[[{]],[[{]],[[_]],[[spellmurk-lake]],[[spellmurk-lake]],[[spellmurk-lake]],[[spellmurk-lake]],[[.]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[-]],[[.]],[[.]],[[.]],[[.]],[[!]],[[!]],[[!]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[T]],[[!]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[|]],[[|]],[[|]],[[.]],[[.]],[[.]],[[.]],[[.]],[[!]],[[^]],[[!]],[[^]],[[^]],[[!]],[[!]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[!]],[[!]],[[!]],[[^]],[[^]],[[.]],[[^]],[[~]],}, -{[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[.]],[[&]],[[&]],[[-]],[[.]],[[.]],[[T]],[[T]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[_]],[[_]],[[{]],[[{]],[[{]],[[spellmurk-lake]],[[spellmurk-lake]],[[.]],[[.]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[-]],[[.]],[[.]],[[.]],[[.]],[[!]],[[!]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[T]],[[!]],[[!]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[~]],[[~]],[[~]],[[|]],[[|]],[[|]],[[|]],[[.]],[[.]],[[.]],[[.]],[[.]],[[^]],[[^]],[[^]],[[!]],[[!]],[[^]],[[^]],[[^]],[[^]],[[|]],[[|]],[[|]],[[^]],[[^]],[[^]],[[!]],[[!]],[[^]],[[^]],[[^]],[[^]],[[~]],}, +{[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[T]],[[T]],[[T]],[[T]],[[.]],[[T]],[[T]],[[~]],[[~]],[[~]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[.]],[[~]],[[.]],[[T]],[[_]],[[{]],[[{]],[[_]],[[_]],[[spellmurk-lake]],[[spellmurk-lake]],[[spellmurk-lake]],[[spellmurk-lake]],[[.]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[.]],[[.]],[[-]],[[-]],[[-]],[[-]],[[.]],[[.]],[[.]],[[.]],[[!]],[[!]],[[!]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[|]],[[|]],[[.]],[[.]],[[.]],[[.]],[[!]],[[!]],[[!]],[[^]],[[^]],[[^]],[[^]],[[!]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[!]],[[!]],[[!]],[[!]],[[^]],[[^]],[[.]],[[.]],[[~]],}, +{[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[.]],[[&]],[[&]],[[T]],[[T]],[[T]],[[.]],[[T]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[T]],[[_]],[[{]],[[{]],[[{]],[[_]],[[spellmurk-lake]],[[spellmurk-lake]],[[spellmurk-lake]],[[spellmurk-lake]],[[.]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[-]],[[.]],[[.]],[[.]],[[.]],[[!]],[[!]],[[!]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[T]],[[!]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[|]],[[|]],[[|]],[[.]],[[.]],[[.]],[[.]],[[.]],[[!]],[[^]],[[!]],[[^]],[[^]],[[!]],[[!]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[!]],[[!]],[[!]],[[^]],[[^]],[[.]],[[^]],[[~]],}, +{[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[.]],[[&]],[[&]],[[-]],[[.]],[[scintillating-caves]],[[T]],[[T]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[_]],[[_]],[[{]],[[{]],[[{]],[[spellmurk-lake]],[[spellmurk-lake]],[[.]],[[.]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[-]],[[.]],[[.]],[[.]],[[.]],[[!]],[[!]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[T]],[[!]],[[!]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[~]],[[~]],[[~]],[[|]],[[|]],[[|]],[[|]],[[.]],[[.]],[[.]],[[.]],[[.]],[[^]],[[^]],[[^]],[[!]],[[!]],[[^]],[[^]],[[^]],[[^]],[[|]],[[|]],[[|]],[[^]],[[^]],[[^]],[[!]],[[!]],[[^]],[[^]],[[^]],[[^]],[[~]],}, {[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[T]],[[~]],[[~]],[[.]],[[.]],[[&]],[[&]],[[-]],[[-]],[[!]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[_]],[[_]],[[_]],[[{]],[[{]],[[.]],[[.]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[-]],[[-]],[[-]],[[.]],[[.]],[[!]],[[!]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[T]],[[T]],[[!]],[[!]],[[!]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[~]],[[~]],[[~]],[[~]],[[|]],[[|]],[[|]],[[p]],[[|]],[[|]],[[.]],[[.]],[[.]],[[.]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[|]],[[p]],[[|]],[[|]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[~]],}, {[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[T]],[[T]],[[T]],[[T]],[[.]],[[&]],[[&]],[[-]],[[elvala]],[[!]],[[!]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[T]],[[_]],[[{]],[[{]],[[{]],[[{]],[[~]],[[~]],[[dreadfell]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[-]],[[.]],[[-]],[[.]],[[.]],[[!]],[[!]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[#]],[[#]],[[T]],[[.]],[[!]],[[!]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[|]],[[|]],[[|]],[[|]],[[p]],[[|]],[[|]],[[|]],[[|]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[|]],[[|]],[[|]],[[|]],[[|]],[[|]],[[|]],[[|]],[[|]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[~]],}, {[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[T]],[[T]],[[T]],[[T]],[[.]],[[&]],[[&]],[[-]],[[!]],[[!]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[T]],[[T]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[.]],[[{]],[[{]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[.]],[[-]],[[.]],[[.]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[#]],[[T]],[[T]],[[.]],[[!]],[[.]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[|]],[[|]],[[|]],[[|]],[[p]],[[|]],[[p]],[[|]],[[^]],[[^]],[[|]],[[|]],[[|]],[[|]],[[|]],[[|]],[[|]],[[|]],[[^]],[[|]],[[|]],[[^]],[[^]],[[^]],[[^]],[[^]],[[^]],[[!]],[[^]],[[^]],[[~]],[[~]],}, @@ -289,4 +290,4 @@ return { {[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],}, {[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],}, {[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],}, -{[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],},} +{[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],[[~]],},} \ No newline at end of file diff --git a/game/modules/tome/data/quests/start-shaloren.lua b/game/modules/tome/data/quests/start-shaloren.lua new file mode 100644 index 0000000000000000000000000000000000000000..e68fbd4c1828ad4161a0cf5155219cedc21604c2 --- /dev/null +++ b/game/modules/tome/data/quests/start-shaloren.lua @@ -0,0 +1,39 @@ +-- ToME - Tales of Maj'Eyal +-- Copyright (C) 2009, 2010 Nicolas Casalini +-- +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation, either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see <http://www.gnu.org/licenses/>. +-- +-- Nicolas Casalini "DarkGod" +-- darkgod@te4.org + +name = "Echoes of the Spellblaze" +desc = function(self, who) + local desc = {} + desc[#desc+1] = "You have heard that within the scintillating caves lie strange crystals imbued with spellblaze energies.\n" + if self:isCompleted("spellblaze") then + desc[#desc+1] = "#LIGHT_GREEN#* You have explored the scintillating caves and destroyed the Spellblaze Crystal.#WHITE#" + else + desc[#desc+1] = "#SLATE#* You must explore the scintillating caves.#WHITE#" + end + return table.concat(desc, "\n") +end + +on_status_change = function(self, who, status, sub) + if sub then + if self:isCompleted("spellblaze") then + who:setQuestStatus(self.id, engine.Quest.DONE) + who:grantQuest("start-allied") + end + end +end diff --git a/game/modules/tome/data/talents/techniques/battle-tactics.lua b/game/modules/tome/data/talents/techniques/battle-tactics.lua index d41d90cdeb1eed2ee476a6ff4e2f62196686b276..b7948528e67a88913703856fc79be3ed48cc879d 100644 --- a/game/modules/tome/data/talents/techniques/battle-tactics.lua +++ b/game/modules/tome/data/talents/techniques/battle-tactics.lua @@ -34,7 +34,7 @@ newTalent{ info = function(self, t) return ([[Concentrate on your blows, each strike has %d%% chance to deal an other similar blow for %d turns. This works for all blows, even ones form other talents and shield bashes. - The chance increaseswith your Dexterity.]]):format(self:combatTalentStatDamage(t, "dex", 10, 90), math.floor(4 + self:getTalentLevel(t) * 1.3)) + The chance increases with your Dexterity.]]):format(self:combatTalentStatDamage(t, "dex", 10, 90), math.floor(4 + self:getTalentLevel(t) * 1.3)) end, } diff --git a/game/modules/tome/data/zones/scintillating-caves/grids.lua b/game/modules/tome/data/zones/scintillating-caves/grids.lua new file mode 100644 index 0000000000000000000000000000000000000000..39b9e6d2f503a21c938fd8452808e2f12021f05f --- /dev/null +++ b/game/modules/tome/data/zones/scintillating-caves/grids.lua @@ -0,0 +1,22 @@ +-- ToME - Tales of Maj'Eyal +-- Copyright (C) 2009, 2010 Nicolas Casalini +-- +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation, either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see <http://www.gnu.org/licenses/>. +-- +-- Nicolas Casalini "DarkGod" +-- darkgod@te4.org + +load("/data/general/grids/basic.lua") +load("/data/general/grids/underground.lua") +load("/data/general/grids/water.lua") diff --git a/game/modules/tome/data/zones/scintillating-caves/npcs.lua b/game/modules/tome/data/zones/scintillating-caves/npcs.lua new file mode 100644 index 0000000000000000000000000000000000000000..f0510324067ad7c10c3ad1b997fd785e506ef837 --- /dev/null +++ b/game/modules/tome/data/zones/scintillating-caves/npcs.lua @@ -0,0 +1,65 @@ +-- ToME - Tales of Maj'Eyal +-- Copyright (C) 2009, 2010 Nicolas Casalini +-- +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation, either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see <http://www.gnu.org/licenses/>. +-- +-- Nicolas Casalini "DarkGod" +-- darkgod@te4.org + +load("/data/general/npcs/rodent.lua", rarity(5)) +load("/data/general/npcs/vermin.lua", rarity(2)) +load("/data/general/npcs/snake.lua", rarity(3)) +load("/data/general/npcs/bear.lua", rarity(2)) +load("/data/general/npcs/crystal.lua", rarity(1)) + +load("/data/general/npcs/all.lua", rarity(4, 35)) + +local Talents = require("engine.interface.ActorTalents") + +newEntity{ base="BASE_NPC_CRYSTAL", define_as = "SPELLBLAZE_CRYSTAL", + allow_infinite_dungeon = true, + unique = true, + name = "Spellblaze Crystal", + color=colors.VIOLET, + desc = [[A formation of purple crystal. It seems strangely aware.]], + level_range = {7, nil}, exp_worth = 2, + max_life = 150, life_rating = 12, fixed_rating = true, + stats = { str=10, dex=10, cun=12, mag=20, con=10 }, + rank = 4, + size_category = 4, + infravision = 20, + instakill_immune = 1, + + body = { INVEN = 10, MAINHAND=1, OFFHAND=1, BODY=1 }, + resolvers.drops{chance=100, nb=1, {defined=""} }, + resolvers.drops{chance=100, nb=3, {ego_chance=100} }, + + resolvers.talents{ + [Talents.T_FLAME]=1, + [Talents.T_ICE_SHARDS]=1, + [Talents.T_SOUL_ROT]=1, + [Talents.T_ELEMENTAL_BOLT]=1, + }, + resolvers.inscriptions(1, {"manasurge rune"}), + inc_damage = { all = -35 }, + + autolevel = "caster", + ai = "tactical", ai_state = { talent_in=1, ai_move="move_astar", }, + ai_tactic = resolvers.tactic"ranged", + + on_die = function(self, who) + game.player:resolveSource():grantQuest("start-shaloren") + game.player:resolveSource():setQuestStatus("start-shaloren", engine.Quest.COMPLETED, "spellblaze") + end, +} diff --git a/game/modules/tome/data/zones/scintillating-caves/objects.lua b/game/modules/tome/data/zones/scintillating-caves/objects.lua new file mode 100644 index 0000000000000000000000000000000000000000..64f68bd7d938cac4db63631bd93520ef8524bff7 --- /dev/null +++ b/game/modules/tome/data/zones/scintillating-caves/objects.lua @@ -0,0 +1,31 @@ +-- ToME - Tales of Maj'Eyal +-- Copyright (C) 2009, 2010 Nicolas Casalini +-- +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation, either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see <http://www.gnu.org/licenses/>. +-- +-- Nicolas Casalini "DarkGod" +-- darkgod@te4.org + +load("/data/general/objects/objects.lua") + +for i = 1, 5 do +newEntity{ base = "BASE_LORE", + define_as = "NOTE"..i, + name = "tattered paper scrap", lore="trollmire-note-"..i, + desc = [[A paper scrap, left by an adventurer.]], + rarity = false, + is_magic_device = false, + encumberance = 0, +} +end diff --git a/game/modules/tome/data/zones/scintillating-caves/traps.lua b/game/modules/tome/data/zones/scintillating-caves/traps.lua new file mode 100644 index 0000000000000000000000000000000000000000..578363287a5ed6c725ad560b116eebc2cab48273 --- /dev/null +++ b/game/modules/tome/data/zones/scintillating-caves/traps.lua @@ -0,0 +1,20 @@ +-- ToME - Tales of Maj'Eyal +-- Copyright (C) 2009, 2010 Nicolas Casalini +-- +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation, either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see <http://www.gnu.org/licenses/>. +-- +-- Nicolas Casalini "DarkGod" +-- darkgod@te4.org + +load("/data/general/traps/natural_forest.lua") diff --git a/game/modules/tome/data/zones/scintillating-caves/zone.lua b/game/modules/tome/data/zones/scintillating-caves/zone.lua new file mode 100644 index 0000000000000000000000000000000000000000..19baf1d1179703b0f9126de55805117ca1860c88 --- /dev/null +++ b/game/modules/tome/data/zones/scintillating-caves/zone.lua @@ -0,0 +1,66 @@ +-- ToME - Tales of Maj'Eyal +-- Copyright (C) 2009, 2010 Nicolas Casalini +-- +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation, either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see <http://www.gnu.org/licenses/>. +-- +-- Nicolas Casalini "DarkGod" +-- darkgod@te4.org + +return { + name = "Scintillating Caves", + level_range = {1, 5}, + level_scheme = "player", + max_level = 5, + decay = {300, 800}, + actor_adjust_level = function(zone, level, e) return zone.base_level + e:getRankLevelAdjust() + level.level-1 + rng.range(-1,2) end, + width = 50, height = 50, +-- all_remembered = true, + all_lited = true, + persistent = "zone", + ambient_music = "World of Ice.ogg", + generator = { + map = { + class = "engine.generator.map.Cavern", + zoom = 14, + min_floor = 700, + floor = "UNDERGROUND_FLOOR", + wall = {"UNDERGROUND_TREE","UNDERGROUND_TREE2","UNDERGROUND_TREE3","UNDERGROUND_TREE4","UNDERGROUND_TREE5","UNDERGROUND_TREE6","UNDERGROUND_TREE7","UNDERGROUND_TREE8","UNDERGROUND_TREE9","UNDERGROUND_TREE10","UNDERGROUND_TREE11","UNDERGROUND_TREE12","UNDERGROUND_TREE13","UNDERGROUND_TREE14","UNDERGROUND_TREE15","UNDERGROUND_TREE16","UNDERGROUND_TREE17","UNDERGROUND_TREE18","UNDERGROUND_TREE19","UNDERGROUND_TREE20",}, + up = "UNDERGROUND_LADDER_UP", + down = "UNDERGROUND_LADDER_DOWN", + door = "UNDERGROUND_FLOOR", + }, + actor = { + class = "engine.generator.actor.Random", + nb_npc = {20, 30}, + filters = { {max_ood=2}, }, + guardian = "SPELLBLAZE_CRYSTAL", + }, + object = { + class = "engine.generator.object.Random", + nb_object = {6, 9}, + }, + trap = { + class = "engine.generator.trap.Random", + nb_trap = {6, 9}, + }, + }, + levels = + { + [1] = { + generator = { map = { + up = "UNDERGROUND_LADDER_UP_WILDERNESS", + }, }, + }, + }, +} diff --git a/ideas/technics.ods b/ideas/technics.ods index e41deaa18c4d60dbed0f7b30f9500e22039ef7c2..d39070e4cc27025407bc4434cd21b88b6bdaef5d 100644 Binary files a/ideas/technics.ods and b/ideas/technics.ods differ diff --git a/ideas/zones.ods b/ideas/zones.ods index 1b9e32eac0e14aae812efe773fae9b37efca1162..e08c10b348cbbf076c47694480a0053b8d1259b4 100644 Binary files a/ideas/zones.ods and b/ideas/zones.ods differ diff --git a/tiled-maps/eyal2.tmx b/tiled-maps/eyal2.tmx index 9b95f662bd9e4211fa2447539eadc41c5f284931..07468bcc5fad177249851da68e603c85a1802247 100644 --- a/tiled-maps/eyal2.tmx +++ b/tiled-maps/eyal2.tmx @@ -257,10 +257,15 @@ <property name="display" value="ritch-tunnels"/> </properties> </tile> + <tile id="22"> + <properties> + <property name="display" value="scintillating-caves"/> + </properties> + </tile> </tileset> <layer name="Terrain" width="170" height="100"> <data encoding="base64" compression="zlib"> - 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 </data> </layer> <objectgroup name="addSpot#pops" width="170" height="100">