Skip to content
Snippets Groups Projects
Commit 9582f27d authored by dg's avatar dg
Browse files

Orc babies & youth in the breeding pits can be female or male

git-svn-id: http://svn.net-core.org/repos/t-engine4@5032 51575b47-30f0-44d4-a5cc-537603b46e54
parent fbb6f381
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,7 @@ newEntity{ base = "BASE_NPC_ORC",
name = "orc baby", color=colors.GREEN,
desc = [[Crawling on all fours, this green-skinned creature is far from cute, with vicious little sharp teeth and nails, and mucusy slime still sticking to its skin.]],
level_range = {25, nil}, exp_worth = 0,
resolvers.generic(function(e) if rng.percent(50) then e.female = true end end),
rarity = 3,
max_life = resolvers.rngavg(30,50), life_rating = 4,
rank = 2,
......@@ -37,6 +38,7 @@ newEntity{ base = "BASE_NPC_ORC",
newEntity{ base = "BASE_NPC_ORC",
name = "orc child", color=colors.LIGHT_GREEN,
desc = [[This small orc has a malicious and greedy look in its eyes. Its veins pulse with new life and it moves with surprising speed. Though not fully developed you can still see the muscles forming on its long limbs, leading to clawed fingers and toes.]],
resolvers.generic(function(e) if rng.percent(50) then e.female = true end end),
level_range = {25, nil}, exp_worth = 0,
rarity = 3,
max_life = resolvers.rngavg(30,50), life_rating = 9, life_regen = 7,
......@@ -53,6 +55,7 @@ newEntity{ base = "BASE_NPC_ORC",
newEntity{ base = "BASE_NPC_ORC",
name = "young orc", color=colors.TEAL,
desc = [[This young orc is almost fully formed, with hard muscles prominently visible beneath its thick skin. Whilst it has lost some of the wild energy of its younger siblings you can see the gleams of intelligence and cold calculation behind its dark eyes.]],
resolvers.generic(function(e) if rng.percent(50) then e.female = true end end),
level_range = {25, nil}, exp_worth = 0,
rarity = 3,
......
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