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

Added some more orcs

git-svn-id: http://svn.net-core.org/repos/t-engine4@967 51575b47-30f0-44d4-a5cc-537603b46e54
parent b9782350
No related branches found
No related tags found
No related merge requests found
......@@ -46,11 +46,34 @@ newEntity{
stats = { str=20, dex=8, mag=6, con=16 },
}
newEntity{ base = "BASE_NPC_ORC_GRUSHNAK",
name = "uruk-hai figther", color=colors.UMBER,
desc = [[An orc clad in a massive armour, wielding a shield and a deadly axe.]],
level_range = {30, nil}, exp_worth = 1,
rarity = 1,
max_life = resolvers.rngavg(110,120), life_rating = 14,
resolvers.equip{
{type="weapon", subtype="waraxe", autoreq=true},
{type="armor", subtype="shield", autoreq=true},
{type="armor", subtype="massive", autoreq=true},
},
combat_armor = 0, combat_def = 5,
resolvers.talents{
[Talents.T_MASSIVE_ARMOUR_TRAINING]=1,
[Talents.T_WEAPON_COMBAT]=4,
[Talents.T_AXE_MASTERY]=4,
[Talents.T_RUSH]=3,
[Talents.T_SHIELD_PUMMEL]=3,
[Talents.T_OVERPOWER]=3,
},
}
newEntity{ base = "BASE_NPC_ORC_GRUSHNAK",
name = "uruk-hai elite figther", color=colors.UMBER,
desc = [[An orc clad in a massive armour, wielding a shield and a deadly axe.]],
level_range = {35, nil}, exp_worth = 1,
rarity = 1,
rarity = 3,
rank = 3,
max_life = resolvers.rngavg(170,180), life_rating = 14,
resolvers.equip{
......@@ -75,10 +98,33 @@ newEntity{ base = "BASE_NPC_ORC_GRUSHNAK",
}
newEntity{ base = "BASE_NPC_ORC_GRUSHNAK",
name = "uruk-hai elite berserker", color=colors.UMBER,
name = "uruk-hai berserker", color=colors.UMBER,
desc = [[An orc clad in a massive armour, wielding a huge axe.]],
level_range = {35, nil}, exp_worth = 1,
rarity = 1,
max_life = resolvers.rngavg(110,120), life_rating = 14,
resolvers.equip{
{type="weapon", subtype="waraxe", autoreq=true},
{type="armor", subtype="shield", autoreq=true},
{type="armor", subtype="massive", autoreq=true},
},
combat_armor = 0, combat_def = 5,
resolvers.talents{
[Talents.T_MASSIVE_ARMOUR_TRAINING]=1,
[Talents.T_WEAPON_COMBAT]=4,
[Talents.T_AXE_MASTERY]=4,
[Talents.T_RUSH]=3,
[Talents.T_STUNNING_BLOW]=3,
[Talents.T_BERSERKER]=3,
},
}
newEntity{ base = "BASE_NPC_ORC_GRUSHNAK",
name = "uruk-hai elite berserker", color=colors.UMBER,
desc = [[An orc clad in a massive armour, wielding a huge axe.]],
level_range = {35, nil}, exp_worth = 1,
rarity = 3,
rank = 3,
max_life = resolvers.rngavg(170,180), life_rating = 14,
resolvers.equip{
......
......@@ -139,3 +139,77 @@ newEntity{ base = "BASE_NPC_ORC",
[Talents.T_ICE_BREATH]=2,
},
}
newEntity{ base = "BASE_NPC_ORC",
name = "orc assassin", color_r=0, color_g=0, color_b=resolvers.rngrange(175, 195),
desc = [[An orc trained in the secret ways of assasination, as stealthy as deadly.]],
level_range = {5, nil}, exp_worth = 1,
rarity = 3,
infravision = 10,
combat_armor = 2, combat_def = 12,
resolvers.equip{
{type="weapon", subtype="dagger", autoreq=true},
{type="weapon", subtype="dagger", autoreq=true},
{type="armor", subtype="light", autoreq=true}
},
resolvers.talents{
[Talents.T_STEALTH]=5,
[Talents.T_LETHALITY]=4,
[Talents.T_SHADOWSTRIKE]=3,
},
max_life = resolvers.rngavg(80,100),
resolvers.sustains_at_birth(),
autolevel = "rogue",
}
newEntity{ base = "BASE_NPC_ORC",
name = "orc master assassin", color_r=0, color_g=70, color_b=resolvers.rngrange(175, 195),
desc = [[An orc trained in the secret ways of assasination, as stealthy as deadly.]],
level_range = {15, nil}, exp_worth = 1,
rarity = 4,
rank = 3,
infravision = 10,
combat_armor = 2, combat_def = 18,
resolvers.equip{
{type="weapon", subtype="dagger", ego_chance=20, autoreq=true},
{type="weapon", subtype="dagger", ego_chance=20, autoreq=true},
{type="armor", subtype="light", autoreq=true}
},
resolvers.talents{
[Talents.T_STEALTH]=5,
[Talents.T_LETHALITY]=4,
[Talents.T_SHADOWSTRIKE]=5,
[Talents.T_HIDE_IN_PLAIN_SIGHT]=2,
},
max_life = resolvers.rngavg(80,100),
resolvers.sustains_at_birth(),
autolevel = "rogue",
}
newEntity{ base = "BASE_NPC_ORC",
name = "orc master assassin", color_r=0, color_g=70, color_b=resolvers.rngrange(175, 195),
desc = [[An orc trained in the secret ways of assasination, as stealthy as deadly.]],
level_range = {15, nil}, exp_worth = 1,
rarity = 5,
rank = 3,
infravision = 10,
combat_armor = 2, combat_def = 18,
resolvers.equip{
{type="weapon", subtype="dagger", ego_chance=20, autoreq=true},
{type="weapon", subtype="dagger", ego_chance=20, autoreq=true},
{type="armor", subtype="light", autoreq=true}
},
resolvers.talents{
[Talents.T_STEALTH]=5,
[Talents.T_LETHALITY]=4,
[Talents.T_SHADOWSTRIKE]=5,
[Talents.T_HIDE_IN_PLAIN_SIGHT]=3,
[Talents.T_UNSEEN_ACTIONS]=3,
},
max_life = resolvers.rngavg(80,100),
resolvers.sustains_at_birth(),
autolevel = "rogue",
}
......@@ -123,4 +123,7 @@ newEntity{ base = "BASE_NPC_THIEF", define_as = "THIEF_ASSASSIN",
combat_armor = 3, combat_def = 10,
resolvers.talents{ [Talents.T_STEALTH]=3, [Talents.T_PRECISION]=3, [Talents.T_DUAL_WEAPON_TRAINING]=2, [Talents.T_DUAL_WEAPON_DEFENSE]=2, [Talents.T_DUAL_STRIKE]=1, [Talents.T_SWEEP]=1, [Talents.T_SHADOWSTRIKE]=2, [Talents.T_LETHALITY]=5, },
max_life = resolvers.rngavg(70,90),
resolvers.sustains_at_birth(),
autolevel = "rogue",
}
File added
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