Commit 37ad9b295c8002b9af9e0b8a283cd4cb04a6b574

Authored by dg
1 parent 4df35313

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
@@ -26,3 +26,5 @@ if jit then @@ -26,3 +26,5 @@ if jit then
26 else 26 else
27 print("LuaVM:", _VERSION) 27 print("LuaVM:", _VERSION)
28 end 28 end
  29 +
  30 +math.randomseed(os.time())
@@ -169,3 +169,14 @@ newEntity{ @@ -169,3 +169,14 @@ newEntity{
169 inc_stats = { [Stats.STAT_MAG] = resolvers.mbonus_material(4, 2, function(e, v) return v * 3 end) }, 169 inc_stats = { [Stats.STAT_MAG] = resolvers.mbonus_material(4, 2, function(e, v) return v * 3 end) },
170 }, 170 },
171 } 171 }
  172 +
  173 +newEntity{
  174 + name = " of iron grip", suffix=true,
  175 + level_range = {20, 50},
  176 + rarity = 9,
  177 + cost = 15,
  178 + wielder = {
  179 + inc_stats = { [Stats.STAT_STR] = resolvers.mbonus_material(2, 2, function(e, v) return v * 3 end) },
  180 + disarm_immune = 0.7,,
  181 + },
  182 +}