Skip to content
Snippets Groups Projects
Commit 746b0869 authored by dg's avatar dg
Browse files

New lore inthe caverns leading to the valley of the moon

git-svn-id: http://svn.net-core.org/repos/t-engine4@6321 51575b47-30f0-44d4-a5cc-537603b46e54
parent 00557945
No related branches found
No related tags found
No related merge requests found
...@@ -296,6 +296,48 @@ newLore{ ...@@ -296,6 +296,48 @@ newLore{
Come, Death, try to lay your bony fingers on me! I will vanish before your very eyes and slice you apart! You and your agents are no threat to me. I am immortal!]], Come, Death, try to lay your bony fingers on me! I will vanish before your very eyes and slice you apart! You and your agents are no threat to me. I am immortal!]],
} }
--------------------------------------------------------------
-- Valley of the Moon
--------------------------------------------------------------
newLore{
id = "valley-moon-1",
category = "valley of the moon",
name = "Rassir's journal part 1",
lore = [[I have come to see the moonstone again. My younger brother Limmir understands a little of my obsession with it, yet the others do not care. I have tried to explain how it is of importance to Aeryn, but she simply asked if she could make a sword from it. Bah! Such stupidity from that grunt fighter.
Our ancestors found their powers from the intense study of the stars, yet the people these days seem only to care about their applications in battle. I know our position with the orcs is grim, but we must not forget our roots in the celestial sphere! Only by sun, moon and stars do we find knowledge and power in life.
Ah well, I shall at least be able to study here in peace. The ring of invisibility I have crafted affords me cover from any orc patrols, and the caves around the moonstone are quiet enough. I have set up my telescope in the open air of the Valley of the Moon itself.
Last night I spotted a red star in the early dawn. How very peculiar... Could this be a new celestial body to study?]],
}
newLore{
id = "valley-moon-2",
category = "valley of the moon",
name = "Rassir's journal part 2",
lore = [[Oh, what terrible horrors! Demons, clawed creatures, dark smog, clouds of acid, skins of lava! Where did they all come from?!
It was when I was studying the moonstone, and as the red star was rising again before the dawn. The stone glowed blood-red and suddenly portals awakened in the rock of the valley. From them poured forth all manner of demonic creatures! I put my ring of invisibility on and fled into the caves. But now the creatures are everywhere! The caves are infested with them, prowling about like hungry animals.
And there is something... something terrible. In the shadows, in the darkness, I can sense it looking for me. It stalks me, an invisible hunter after invisible prey. Now and then I hear the cracking of a terrible whip. I must stay hidden...]],
}
newLore{
id = "valley-moon-3",
category = "valley of the moon",
name = "Rassir's journal part 3",
lore = [[I fell asleep in a dark hollow, but my sleep was troubled by terrible dreams. The dreams are so vivid in my mind!
I saw the red star, and it became a land of fire floating in the night sky, full of black creatures with yellow eyes and hungry red mouths. And beyond the red star, far beyond was a dim world, but fractured and split all about its surface. As the world spun the split continents crushed against each other, and lava spilled up, and lands sunk into the ground. Demonic mouths screamed up as they disappeared into fiery death. It was if the world was tearing itself apart, but some force of will was desperately trying to keep it held together.
And I saw then in the centre of the world, as it spun and crumpled and crunched, a vast figure with a horned head and outstretched limbs and shining white eyes. It held tight to the innards of the world, holding it together against forces threatening to pull the whole planet apart. The giant face contorted and screamed in pain and fury.
“Urh'Rok,” a deep voice spoke within my head. “Our god, our saviour, holder of our world. In the name of Urh'Rok we seek vengeance against Amakthel and the Sher'Tul. The petty world of Eyal shall fall!” And then I woke up, and I felt sure something was nearby, looking for me. I fled instantly.
Am I going mad? The name “Urh'Rok” still rebounds through my skull and my vision is dimmed. Perhaps I have been wearing this ring too long...
Yes, yes, this is all clearly an illusion! A strange nightmare that I shall wake up from. I shall take the ring off, and go visit the lovely moonstone again. Once I see the stars all shall be well...]],
}
-------------------------------------------------------------- --------------------------------------------------------------
-- Race analysis -- Race analysis
......
...@@ -19,3 +19,13 @@ ...@@ -19,3 +19,13 @@
load("/data/general/objects/objects-far-east.lua") load("/data/general/objects/objects-far-east.lua")
load("/data/general/objects/lore/sunwall.lua") load("/data/general/objects/lore/sunwall.lua")
for i = 1, 3 do
newEntity{ base = "BASE_LORE",
define_as = "NOTE"..i,
name = "tattered paper scrap", lore="valley-moon-"..i,
desc = [[A paper scrap, left by somebody named Rassir.]],
rarity = false,
encumberance = 0,
}
end
...@@ -72,4 +72,12 @@ return { ...@@ -72,4 +72,12 @@ return {
}, }, }, },
}, },
}, },
post_process = function(level)
if level.level == 1 then
game:placeRandomLoreObject("NOTE1")
game:placeRandomLoreObject("NOTE2")
elseif level.level == 2 then
game:placeRandomLoreObject("NOTE3")
end
end,
} }
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