mirror of
https://github.com/minetest-mods/throwing_arrows.git
synced 2025-01-10 10:10:26 +01:00
Make the diamond arrow a little less strong and more expensive to craft
This commit is contained in:
parent
33165dc0a4
commit
a82f857f5d
4
init.lua
4
init.lua
@ -97,7 +97,7 @@ end
|
|||||||
if get_setting("diamond_arrow") then
|
if get_setting("diamond_arrow") then
|
||||||
throwing.register_arrow("throwing:arrow_diamond", {
|
throwing.register_arrow("throwing:arrow_diamond", {
|
||||||
itemcraft = "default:diamond",
|
itemcraft = "default:diamond",
|
||||||
craft_quantity = 16,
|
craft_quantity = 4,
|
||||||
description = "Diamond Arrow",
|
description = "Diamond Arrow",
|
||||||
tiles = {"throwing_arrow_diamond.png", "throwing_arrow_diamond.png", "throwing_arrow_diamond_back.png", "throwing_arrow_diamond_front.png", "throwing_arrow_diamond_2.png", "throwing_arrow_diamond.png"},
|
tiles = {"throwing_arrow_diamond.png", "throwing_arrow_diamond.png", "throwing_arrow_diamond_back.png", "throwing_arrow_diamond_front.png", "throwing_arrow_diamond_2.png", "throwing_arrow_diamond.png"},
|
||||||
target = throwing.target_object,
|
target = throwing.target_object,
|
||||||
@ -107,7 +107,7 @@ if get_setting("diamond_arrow") then
|
|||||||
object:punch(hitter, 1, {
|
object:punch(hitter, 1, {
|
||||||
full_punch_interval = 1,
|
full_punch_interval = 1,
|
||||||
max_drop_level = 1,
|
max_drop_level = 1,
|
||||||
damage_groups = {fleshy = 8}
|
damage_groups = {fleshy = 7}
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user