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

Added gloves of iron grip that increase strength and provide disarming resistance

git-svn-id: http://svn.net-core.org/repos/t-engine4@1441 51575b47-30f0-44d4-a5cc-537603b46e54
parent 4df35313
No related branches found
No related tags found
No related merge requests found
......@@ -26,3 +26,5 @@ if jit then
else
print("LuaVM:", _VERSION)
end
math.randomseed(os.time())
......@@ -169,3 +169,14 @@ newEntity{
inc_stats = { [Stats.STAT_MAG] = resolvers.mbonus_material(4, 2, function(e, v) return v * 3 end) },
},
}
newEntity{
name = " of iron grip", suffix=true,
level_range = {20, 50},
rarity = 9,
cost = 15,
wielder = {
inc_stats = { [Stats.STAT_STR] = resolvers.mbonus_material(2, 2, function(e, v) return v * 3 end) },
disarm_immune = 0.7,,
},
}
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