From 71204b84b5869f70121c61f8e4f1cd582b5efba2 Mon Sep 17 00:00:00 2001 From: Quentin BUISSON-DEBON Date: Mon, 14 Mar 2016 21:14:13 +0100 Subject: [PATCH] Static damages +3 for all kind of arrows --- mods/throwing/standard_arrows.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mods/throwing/standard_arrows.lua b/mods/throwing/standard_arrows.lua index 28fdfed6..6dc24894 100755 --- a/mods/throwing/standard_arrows.lua +++ b/mods/throwing/standard_arrows.lua @@ -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