Skip to content
Snippets Groups Projects
Commit 0afe640b authored by dg's avatar dg
Browse files

Added lore to each of the orc prides

git-svn-id: http://svn.net-core.org/repos/t-engine4@2139 51575b47-30f0-44d4-a5cc-537603b46e54
parent 212d7d11
No related branches found
No related tags found
No related merge requests found
......@@ -30,3 +30,4 @@ load("/data/lore/iron-throne.lua")
load("/data/lore/sunwall.lua")
load("/data/lore/spellhunt.lua")
load("/data/lore/spellblaze.lua")
load("/data/lore/orc-prides.lua")
-- 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
--------------------------------------------------------------------------
-- Various Orc Prides
--------------------------------------------------------------------------
newLore{
id = "grushnak-pride-note",
category = "orc prides",
name = "Grushnak's Note",
lore = [[Treachery! During a patrol around the outskirts of the High Peak I witnessed two orcs - the envoys from our supposed "master" - talking in secret. Remaining to watch them, I beheld as their orcish features sloughed from their bodies, revealing a pair of human wizards! Humans! To think that our great pride has been decieved in such a manner! I should have crushed their skulls there and then. However, mages can be crafty, so I left them to their scheming.
Even now the blood runs hot! What would Garkul, our mighty berserker king, think if he saw our great race bending before humans?! Many times I have entertained the idea of taking a group of my finest warriors and ending this folly, but... loathsome as it is, I must use tact. A rebellion would leave my pride weakened, easy prey. That bone-picker Rak'Shor and his unnatural creations have dreamed of my death (and subsequent dominion) for years, I know this to be true. This conundrum frustrates and confuses! ... At least we are agreed on one matter - the total destruction of those sun-worshipping dogs of the Gates of Morning...]],
}
newLore{
id = "rak-shor-pride-note",
category = "orc prides",
name = "Rak'Shor's Note",
lore = [[The eyes of the dead bring interesting news to me. Our masters are not what they appear; they are human, simply masquerading as orcs in our presence. I might have suspected this... it is difficult to disguise the basic weakness and frailty of a human soul, even with complex spells. Their goals elude me, yet I sense strange energies in the vicinity of the High Peak - the voices of spirits long departed from this world... some not from this world at all.
But this is foolishness compared to my current trials. Gorbat remains as obstinate as ever, the dragon-loving, scale-shining buffoon. He thinks that dragons are special, different, not suitable for my craft. I care not for his prattling, I desire the corpses of dragons! Mountains of them! How can his heart not beat a little faster at the prospect of a dracozombie?! The mere thought of it is enough to send delightful shivers down my spine...]],
}
newLore{
id = "gorbat-pride-note",
category = "orc prides",
name = "Gorbat's Note",
lore = [[My dragons bring news. They witnessed humans upon the High Peak, speaking of their mastery over our prides. They did not heed my dragons, unwitting of their ability to communicate with me. Now I possess this information, I must think deeply on how to proceed regarding our "masters". Many of my finest wyrmics wish to rise up against our deceivers, see them consumed in wyrmfire. Even some of my dragons have divulged this wish to me. Sadly, this must wait.
Vor's insolence will be tolerated no longer! His claims that his pride's mastery over the elements surpasses that of the dragons is insult enough, but this...! Some of my finest dragons, my glorious multi-hued wyrms, have been captured and held within their armouries in the hopes that they can further their twisted mockeries of fire and ice! This will not stand! I must ignore the plots of our human deceivers for the moment, for Vor requires my full attention.]],
}
newLore{
id = "vor-pride-note",
category = "orc prides",
name = "Vor's Note",
lore = [[Strange lights play atop the High Peak. Torches? Nay. The fire of dragons? Not so. A volcanic eruption, perchance? Alas, no. It is unmistakably the fire of the arcane, the fire of mages, and seeing as every pyromancer within our pride is under my dominion, I can only assume that these lights come from one not affiliated with us. The lights are fascinating, I wish to study them; they put me in mind of the fires of the Spellblaze, burning so very long ago...
Sadly, such desires are denied to me at this moment. Plans are in motion, and we are scant weeks away from finally crushing the accursed sun paladins and their tin-plated harlot ruler. Even once the Sunwall lies in ruins I must be careful - the horde of sub-orc savages Grushnak calls a pride are ever at my door, claiming we do not follow Garkul's "true path". He is a fool, but dangerous, and I must be vigilant.]],
}
......@@ -54,6 +54,7 @@ newEntity{ base="BASE_NPC_ORC_GORBAT", define_as = "GORBAT",
},
resolvers.drops{chance=100, nb=1, {defined="ORB_DRAGON"} },
resolvers.drops{chance=100, nb=5, {ego_chance=100} },
resolvers.drops{chance=100, nb=1, {defined="NOTE_LORE"} },
talent_cd_reduction={[Talents.T_ICE_BREATH]=3, [Talents.T_FIRE_BREATH]=3, [Talents.T_SAND_BREATH]=3, },
equilibrium_regen = -8,
......
......@@ -19,3 +19,12 @@
load("/data/general/objects/objects-far-east.lua")
load("/data/general/objects/lore/sunwall.lua")
newEntity{ base = "BASE_LORE",
define_as = "NOTE_LORE",
name = "draft note", lore="gorbat-pride-note",
desc = [[A note.]],
rarity = false,
is_magic_device = false,
encumberance = 0,
}
......@@ -60,6 +60,7 @@ newEntity{ base="BASE_NPC_ORC_GRUSHNAK", define_as = "GRUSHNAK",
},
resolvers.drops{chance=100, nb=1, {defined="ORB_DESTRUCTION"} },
resolvers.drops{chance=100, nb=5, {ego_chance=100} },
resolvers.drops{chance=100, nb=1, {defined="NOTE_LORE"} },
make_escort = {
{type="orc", no_subescort=true, number=resolvers.mbonus(6, 5)},
......
......@@ -19,3 +19,12 @@
load("/data/general/objects/objects-far-east.lua")
load("/data/general/objects/lore/sunwall.lua")
newEntity{ base = "BASE_LORE",
define_as = "NOTE_LORE",
name = "draft note", lore="grushnak-pride-note",
desc = [[A note.]],
rarity = false,
is_magic_device = false,
encumberance = 0,
}
......@@ -57,6 +57,7 @@ newEntity{ base="BASE_NPC_ORC_RAK_SHOR", define_as = "RAK_SHOR",
},
resolvers.drops{chance=20, nb=1, {defined="JEWELER_TOME"} },
resolvers.drops{chance=100, nb=1, {defined="ORB_UNDEATH"} },
resolvers.drops{chance=100, nb=1, {defined="NOTE_LORE"} },
resolvers.drops{chance=100, nb=5, {ego_chance=100} },
summon = {
......
......@@ -19,3 +19,12 @@
load("/data/general/objects/objects-far-east.lua")
load("/data/general/objects/lore/sunwall.lua")
newEntity{ base = "BASE_LORE",
define_as = "NOTE_LORE",
name = "draft note", lore="rak-shor-pride-note",
desc = [[A note.]],
rarity = false,
is_magic_device = false,
encumberance = 0,
}
......@@ -52,6 +52,7 @@ newEntity{ base="BASE_NPC_ORC_VOR", define_as = "VOR",
},
resolvers.drops{chance=100, nb=1, {defined="ORB_ELEMENTS"} },
resolvers.drops{chance=20, nb=1, {defined="JEWELER_TOME"} },
resolvers.drops{chance=1020, nb=1, {defined="NOTE_LORE"} },
resolvers.drops{chance=100, nb=5, {ego_chance=100} },
resolvers.talents{
......
......@@ -65,3 +65,12 @@ newEntity{ base = "BASE_SCROLL", subtype="tome",
return "destroy", true
end}
}
newEntity{ base = "BASE_LORE",
define_as = "NOTE_LORE",
name = "draft note", lore="vor-pride-note",
desc = [[A note.]],
rarity = false,
is_magic_device = false,
encumberance = 0,
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment