mithril string, minotaur bow improved, tweak caracteristics, recipes, etc... for the hunter

This commit is contained in:
Ombridride 2015-07-22 02:34:31 +02:00
parent 24976670d3
commit 0e9ba218d2
28 changed files with 15 additions and 10 deletions

0
mods/mff/README.md Normal file → Executable file
View File

0
mods/mff/mff_core/init.lua Normal file → Executable file
View File

0
mods/mff/mff_introspect/UPCOMING Normal file → Executable file
View File

0
mods/mff/mff_introspect/init.lua Normal file → Executable file
View File

0
mods/mff/mff_quests/depends.txt Normal file → Executable file
View File

0
mods/mff/mff_quests/init.lua Normal file → Executable file
View File

0
mods/mff/modpack.txt Normal file → Executable file
View File

0
mods/quests/README Normal file → Executable file
View File

0
mods/quests/central_message.lua Normal file → Executable file
View File

0
mods/quests/core.lua Normal file → Executable file
View File

0
mods/quests/depends.txt Normal file → Executable file
View File

0
mods/quests/formspecs.lua Normal file → Executable file
View File

0
mods/quests/hud.lua Normal file → Executable file
View File

0
mods/quests/init.lua Normal file → Executable file
View File

0
mods/quests/inventory_plus.lua Normal file → Executable file
View File

0
mods/quests/locale/de.txt Normal file → Executable file
View File

0
mods/quests/locale/template.txt Normal file → Executable file
View File

0
mods/quests/sounds/quests_failed.ogg Normal file → Executable file
View File

0
mods/quests/sounds/quests_new.ogg Normal file → Executable file
View File

0
mods/quests/sounds/quests_success.ogg Normal file → Executable file
View File

0
mods/quests/textures/inventory_plus_quests.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

0
mods/quests/textures/quests_questbar.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 155 B

After

Width:  |  Height:  |  Size: 155 B

0
mods/quests/textures/quests_questbar_background.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 337 B

After

Width:  |  Height:  |  Size: 337 B

0
mods/quests/unified_inventory.lua Normal file → Executable file
View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 368 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 474 B

View File

@ -22,7 +22,7 @@ DISABLE_BUILD_ARROW = false
DISABLE_TNT_ARROW = true -- Desactivated because too dangerous
DISABLE_FIRE_ARROW = true -- Desactivated because too dangerous
DISABLE_TORCH_ARROW = false
DISABLE_SHELL_ARROW = false -- /!\ Need test it /!\
DISABLE_SHELL_ARROW = true -- Desactivated because haven't the dependencie
-- Fireworks arrows
DISABLE_FIREWORKS_BLUE_ARROW = false

View File

@ -31,7 +31,7 @@ if not DISABLE_STEEL_BOW then
end
if not DISABLE_ROYAL_BOW then
throwing_register_bow ('bow_royal', 'Royal bow', {x=1, y=1.5, z=0.5}, 18, 1.4, 750, false, {
throwing_register_bow ('bow_royal', 'Royal bow', {x=1, y=1.5, z=0.5}, 25, 1.4, 750, false, {
{'farming:string', 'group:wood', 'default:diamond'},
{'farming:string', '', 'default:gold_ingot'},
{'farming:string', 'group:wood', 'default:diamond'},
@ -40,21 +40,19 @@ end
--function throwing_register_bow (name, desc, scale, stiffness, reload_time, toughness, is_cross, craft)
if not DISABLE_MINOTAUR_HORN_BOW then
throwing_register_bow ('bow_minotaur_horn', 'Minotaur Horn Bow', {x=1, y=1.5, z=0.5}, 30, 1, 1000, false, {
throwing_register_bow ('bow_minotaur_horn', 'Minotaur Horn Bow', {x=1, y=1.5, z=0.5}, 35, 1.5, 1000, false, {
{'farming:string', 'mobs:minotaur_horn', 'mobs:minotaur_horn'},
{'farming:string', '', 'moreores:mithril_ingot'},
{'farming:string', 'mobs:minotaur_horn', 'mobs:minotaur_horn'},
})
end
-- NOT YET CHOOSEN, material ? craft ? name ?
--[[if not DISABLE_xxx_BOW then
throwing_register_bow ('bow_xxx', 'xxx Bow', {x=1, y=1.5, z=0.5}, 35, 0.8, 1250, false, {
{'farming:string', 'group:wood', 'default:diamond'},
{'farming:string', '', 'default:gold_ingot'},
{'farming:string', 'group:wood', 'default:diamond'},
--function throwing_register_bow (name, desc, scale, stiffness, reload_time, toughness, is_cross, craft)
if not DISABLE_MINOTAUR_HORN_IMPROVED_BOW then
throwing_register_bow ('bow_minotaur_horn_improved', 'Minotaur Horn Improved Bow', {x=1, y=1.5, z=0.5}, 50, 1.5, 2000, false, {
{'throwing:bow_minotaur_horn', 'throwing:string_mithril'},
})
end--]]
end
if not DISABLE_CROSSBOW then
throwing_register_bow ('crossbow', 'Crossbow', {x=1, y=1.3, z=0.5}, 28, 5, 80, true, {
@ -71,3 +69,10 @@ if not DISABLE_ARBALEST then
{'default:steel_ingot', 'farming:string', 'default:stick'},
})
end
-- Craft recipe of the "Mithril String"
minetest.register_craft({
output = "throwing:string_mithril",
type = "shapeless",
recipe = {"moreores:mithril_ingot", "farming:string"},
})