Commit 37ad9b295c8002b9af9e0b8a283cd4cb04a6b574
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
Showing
2 changed files
with
13 additions
and
0 deletions
... | ... | @@ -169,3 +169,14 @@ newEntity{ |
169 | 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 | +} | ... | ... |
-
Please register or login to post a comment