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

Fix uruk-hai berserkers, they are now craeted wit ha 2h axe instead of a one hand axe. beware!

git-svn-id: http://svn.net-core.org/repos/t-engine4@1462 51575b47-30f0-44d4-a5cc-537603b46e54
parent ac22af9a
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ newEntity{
}
newEntity{ base = "BASE_NPC_ORC_GRUSHNAK",
name = "uruk-hai figther", color=colors.UMBER,
name = "uruk-hai fighter", 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,
......@@ -71,7 +71,7 @@ newEntity{ base = "BASE_NPC_ORC_GRUSHNAK",
}
newEntity{ base = "BASE_NPC_ORC_GRUSHNAK",
name = "uruk-hai elite figther", color=colors.UMBER,
name = "uruk-hai elite fighter", 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 = 3,
......@@ -105,8 +105,7 @@ newEntity{ base = "BASE_NPC_ORC_GRUSHNAK",
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="weapon", subtype="battleaxe", autoreq=true},
{type="armor", subtype="massive", autoreq=true},
},
combat_armor = 0, combat_def = 5,
......@@ -129,8 +128,7 @@ newEntity{ base = "BASE_NPC_ORC_GRUSHNAK",
rank = 3,
max_life = resolvers.rngavg(170,180), life_rating = 14,
resolvers.equip{
{type="weapon", subtype="waraxe", autoreq=true},
{type="armor", subtype="shield", autoreq=true},
{type="weapon", subtype="battleaxe", autoreq=true},
{type="armor", subtype="massive", autoreq=true},
},
combat_armor = 0, combat_def = 5,
......
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