Static damages +3 for all kind of arrows

This commit is contained in:
Quentin BUISSON-DEBON 2016-03-14 21:14:13 +01:00
parent 69aa19689f
commit 71204b84b5
1 changed files with 5 additions and 5 deletions

View File

@ -109,21 +109,21 @@ function throwing_register_arrow_standard (kind, desc, eq, toughness, craft)
end
if not DISABLE_STONE_ARROW then
throwing_register_arrow_standard ('stone', 'Stone', 1, 0.25, 'group:stone')
throwing_register_arrow_standard ('stone', 'Stone', 4, 0.25, 'group:stone')
end
if not DISABLE_STEEL_ARROW then
throwing_register_arrow_standard ('steel', 'Steel', 2, 0.33, 'default:steel_ingot')
throwing_register_arrow_standard ('steel', 'Steel', 5, 0.33, 'default:steel_ingot')
end
if not DISABLE_OBSIDIAN_ARROW then
throwing_register_arrow_standard ('obsidian', 'Obsidian', 3, 0.50, 'default:obsidian')
throwing_register_arrow_standard ('obsidian', 'Obsidian', 6, 0.50, 'default:obsidian')
end
if not DISABLE_DIAMOND_ARROW then
throwing_register_arrow_standard ('diamond', 'Diamond', 4, 0.57, 'default:diamond')
throwing_register_arrow_standard ('diamond', 'Diamond', 7, 0.57, 'default:diamond')
end
if not DISABLE_MITHRIL_ARROW then
throwing_register_arrow_standard ('mithril', 'Mithril (Hunter)', 5, 0.66, 'moreores:mithril_ingot')
throwing_register_arrow_standard ('mithril', 'Mithril (Hunter)', 8, 0.66, 'moreores:mithril_ingot')
end