diff --git a/game/modules/tome/data/maps/vaults/grushnak-armory.lua b/game/modules/tome/data/maps/vaults/grushnak-armory.lua new file mode 100644 index 0000000000000000000000000000000000000000..5141131e142c20b87c8bccb3f4ea945f8bd2d473 --- /dev/null +++ b/game/modules/tome/data/maps/vaults/grushnak-armory.lua @@ -0,0 +1,66 @@ +-- ToME - Tales of Maj'Eyal +-- Copyright (C) 2009 - 2019 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 + +specialList("actor", { + "/data/general/npcs/orc-grushnak.lua", + "/data/general/npcs/orc.lua", + "/data/general/npcs/bear.lua", +}) + +specialList("terrain", { + "/data/general/grids/basic.lua", + "/data/zones/grushnak-pride/grids.lua", +}) + +setStatusAll{no_teleport=true, vault_only_door_open=true, room_map = {can_open=true}} +rotates = {"default", "90", "180", "270", "flipx", "flipy"} + +defineTile('.', "FLOOR") +defineTile('+', "DOOR") +defineTile('!', "DOOR_VAULT") +defineTile('#', "HARDWALL") + +defineTile('G', "FLOOR", {random_filter={add_levels=5, tome_mod="uvault"}}, {random_filter={add_levels=15, name = "orc archer", random_boss={name_scheme="#rng# the Archer", nb_classes=0, loot_quality="store", loot_quantity=1, no_loot_randart=true, loot_unique=true, ai_move="move_complex", rank=3.5, force_classes={Archer=true}}}} ) +defineTile('B', "FLOOR", {random_filter={add_levels=5, tome_mod="uvault"}}, {random_filter={add_levels=12, name = "war bear", random_boss={name_scheme="Warbear #rng#", nb_classes=0, loot_quality="store", loot_quantity=1, no_loot_randart=true, ai_move="move_complex", rank=3.5, force_classes={Brawler=true}}}} ) +defineTile('o', "FLOOR", nil, nil, {random_filter={name="sliding rock"}}) +defineTile('T', "FLOOR", {random_filter={add_levels=15, tome_mod="uvault"}}, {random_filter={add_levels=16, name = "orc elite fighter", random_boss={name_scheme="Elite Combat Trainer #rng#", force_classes={Bulwark=true}, nb_classes=2, class_filter=function(d) return d.power_source and d.power_source.technique and not d.power_source.arcane and d.name ~= "Bulwark" end, loot_quality="store", loot_quantity=1, loot_unique=true, no_loot_randart=true, rank=4}}}) +defineTile('t', "FLOOR", {random_filter={add_levels=20, type="money"}}, {random_filter={add_levels=5, name = "orc elite fighter"}}) +defineTile('C', "FLOOR", {random_filter={add_levels=15, tome_mod="uvault"}}, {random_filter={add_levels=16, name = "orc elite berserker", random_boss={name_scheme="Elite Combat Trainer #rng#", force_classes={Berserker=true}, nb_classes=2, class_filter=function(d) return d.power_source and d.power_source.technique and not d.power_source.arcane and d.name ~= "Berserker" end, loot_quality="store", loot_quantity=1, loot_unique=true, no_loot_randart=true, rank=4}}}) +defineTile('c', "FLOOR", {random_filter={add_levels=20, type="money"}}, {random_filter={add_levels=5, name = "orc elite berserker"}}) +defineTile('D', "TRAINING_DUMMY") +defineTile('w', "FLOOR", {random_filter={type='weapon', add_levels=16, tome_mod="gvault"}}) +defineTile('W', "FLOOR", {random_filter={type='weapon', add_levels=25, tome_mod="uvault"}}) +defineTile('a', "FLOOR", {random_filter={type='armor', add_levels=16, tome_mod="gvault"}}) +defineTile('A', "FLOOR", {random_filter={type='armor', add_levels=25, tome_mod="uvault"}}) +defineTile('b', "FLOOR", {random_filter={add_levels=20, type="money"}}, {random_filter={add_levels=20, name = "orc elite berserker"}}) +defineTile('f', "FLOOR", {random_filter={add_levels=10, type="jewelry", tome_mod="gvault"}}, {random_filter={add_levels=20, name = "orc elite fighter"}}) + +return { +[[#########################]], +[[##.G#DB.+wW#AAaa#B.D#DfD#]], +[[##..#C..#wW###Aa+..T#bfb#]], +[[##..#D.t#wwWW#Aa#c.D#f.b#]], +[[##.###+###########+###+##]], +[[!o..+...................#]], +[[##.###+###########+###+##]], +[[##..#D.c#wwWW#Aa#B.D#b.f#]], +[[##..#T..#wW###Aa+..C#bfb#]], +[[##.G#DB.+wW#AAaa#t.D#DfD#]], +[[#########################]], +} diff --git a/game/modules/tome/data/maps/vaults/renegade-wyrmics.lua b/game/modules/tome/data/maps/vaults/renegade-wyrmics.lua index b3002f296fc24d48be86c667b64285a4e517de40..b7a5ba2a990dcd20b01130eb235e90ac7f504ab9 100644 --- a/game/modules/tome/data/maps/vaults/renegade-wyrmics.lua +++ b/game/modules/tome/data/maps/vaults/renegade-wyrmics.lua @@ -17,8 +17,6 @@ -- Nicolas Casalini "DarkGod" -- darkgod@te4.org -setStatusAll{no_teleport=true, room_map = {can_open=true}} - specialList("actor", { "/data/general/npcs/fire-drake.lua", "/data/general/npcs/storm-drake.lua", diff --git a/game/modules/tome/data/zones/grushnak-pride/mapscripts/main.lua b/game/modules/tome/data/zones/grushnak-pride/mapscripts/main.lua index 0880faa85c1aa550efffdcd0f7adc59e11096851..9f5a016ef0e675822a069de3430cf14fbbf7bc61 100644 --- a/game/modules/tome/data/zones/grushnak-pride/mapscripts/main.lua +++ b/game/modules/tome/data/zones/grushnak-pride/mapscripts/main.lua @@ -76,6 +76,11 @@ tm:applyOnGroups(bsp.rooms, function(room, idx) end end, true) +if rng.percent(22) and not game.state:doneEvent("grushnak-armory") then + game.state:doneEvent("grushnak-armory",1) -- special vault! can only show once per game and only in grushnak pride; contains exceptionally difficult foes and exceptional loot + game.level.data.generator.map.greater_vaults_list = {"grushnak-armory"} +end + -- Ensure enough size if tm:eliminateByFloodfill{'#', '"', 'T'} < 350 then return self:redo() end