Skip to content
Snippets Groups Projects
Commit 17976f07 authored by dg's avatar dg
Browse files

New fun lore about halflings

New lore: The Legend of Garkul, in the Gurshnak pride. This is a very long and epic tale. You *want* to read it


git-svn-id: http://svn.net-core.org/repos/t-engine4@3035 51575b47-30f0-44d4-a5cc-537603b46e54
parent 9186cdb1
No related branches found
No related tags found
No related merge requests found
......@@ -58,3 +58,11 @@ newEntity{ base = "BASE_LORE",
bloodstains = (i == 5) and 2 or nil,
}
end
newEntity{ base = "BASE_LORE",
name = "of halfling feet", lore="halfling-feet", unique=true,
desc = [[Notes about .. halfling feet ??]],
level_range = {10, 30},
rarity = 40,
encumber = 0,
}
......@@ -18,15 +18,3 @@
-- darkgod@te4.org
-- Randomly found only in the prides
for i = 1, 5 do
newEntity{ base = "BASE_LORE",
define_as = "ORC_HISTORY"..i,
name = "Records of Lorekeeper Hadak", lore="orc-history-"..i, unique="Records of Lorekeeper Hadak "..i,
desc = [[Part of the long history of the Orc race.]],
level_range = {1, 50},
rarity = 40,
is_magic_device = false,
encumber = 0,
}
end
......@@ -148,3 +148,14 @@ The greatest enemy of the necromancer is other necromancers. Well, apart from th
No further aid awaits you, for we do not tolerate the dependent. All that remains is for you to prove yourself worthy of practising this glorious art...]]
}
newLore{
id = "halfling-feet",
category = "misc",
name = "of halfling feet",
lore = [[Some men have said that the feet of halflings can nay be harmed, not by fire, blade nor magic. And they do say that this is a truly astounding thing. And some men consider the foot of a halfling to be an item of great luck and protection, and many have one hung above their door or mantle. Though these days 'tis frowned upon to go hunt for one, so 'tis considered a prized heirloom to be passed from father to son.
But women do look upon men and declare them fools. "For how," say they, "Can the foot of a halfling be a lucky thing, when with their large uncomely feet they are not able to wear shoes and footwear of elegant crafts and beauteous materials? And especially 'tis a great misfortune unto them, as with their short stature they could really do with a decent pair of heels..."
And lo, 'tis little mystery why halflings do look upon humans and say "The Big Folk really are very dumb."]]
}
This diff is collapsed.
......@@ -29,3 +29,12 @@ newEntity{ base = "BASE_LORE",
is_magic_device = false,
encumberance = 0,
}
for i = 1, 5 do
newEntity{ base = "BASE_LORE",
define_as = "GARKUL_HISTORY"..i,
name = "The Legend of Garkul", lore="garkul-history-"..i,
desc = [[The Legend of Garkul the Devourer, mightiest of all orcs.]],
rarity = false,
}
end
......@@ -56,6 +56,9 @@ return {
},
},
post_process = function(level)
-- Place a lore note on each level
game:placeRandomLoreObject("GARKUL_HISTORY"..level.level)
for uid, e in pairs(level.entities) do e.faction="orc-pride" end
end,
levels =
......
......@@ -76,6 +76,13 @@ newEntity{ base = "BASE_LORE",
name = "draft note", lore="vor-pride-note",
desc = [[A note.]],
rarity = false,
is_magic_device = false,
encumberance = 0,
}
for i = 1, 5 do
newEntity{ base = "BASE_LORE",
define_as = "ORC_HISTORY"..i,
name = "Records of Lorekeeper Hadak", lore="orc-history-"..i, unique="Records of Lorekeeper Hadak "..i,
desc = [[Part of the long history of the Orc race.]],
rarity = false,
}
end
......@@ -61,6 +61,9 @@ return {
},
},
post_process = function(level)
-- Place a lore note on each level
game:placeRandomLoreObject("ORC_HISTORY"..level.level)
for uid, e in pairs(level.entities) do e.faction="orc-pride" end
end,
levels =
......
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