Add mcl_copper_stuff folder, init.lua, mod.conf, tools.lua

This commit is contained in:
SmokeyDope 2023-02-08 04:49:46 +00:00
parent c906207304
commit 8daa880a25
3 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,5 @@
local modname = minetest.get_current_modname()
local modpath = minetest.get_modpath(modname)
--dofile(modpath.."/armor.lua")
dofile(modpath.."/tools.lua")

View File

@ -0,0 +1,3 @@
name = mcl_copper_stuff
depends = mcl_core, mcl_sounds, mcl_armor
description = Adds copper tools and armor to Mineclone 2

View File

@ -0,0 +1,35 @@
local modname = minetest.get_current_modname()
local modpath = minetest.get_modpath(modname)
local S = minetest.get_translator(modname)
-- Help texts (from mcl_tools)
local pickaxe_longdesc = S("Pickaxes are mining tools to mine hard blocks, such as stone. A pickaxe can also be used as weapon, but it is rather inefficient.")
local axe_longdesc = S("An axe is your tool of choice to cut down trees, wood-based blocks and other blocks. Axes deal a lot of damage as well, but they are rather slow.")
local sword_longdesc = S("Swords are great in melee combat, as they are fast, deal high damage and can endure countless battles. Swords can also be used to cut down a few particular blocks, such as cobwebs.")
local shovel_longdesc = S("Shovels are tools for digging coarse blocks, such as dirt, sand and gravel. They can also be used to turn grass blocks to grass paths. Shovels can be used as weapons, but they are very weak.")
local shovel_use = S("To turn a grass block into a grass path, hold the shovel in your hand, then use (rightclick) the top or side of a grass block. This only works when there's air above the grass block.")
local wield_scale = mcl_vars.tool_wield_scale
-- Registering tools
-- Copper Pickaxe
minetest.register_tool("mcl_copper_stuff:pick", {
description = S("Copper Pickaxe"),
_doc_items_longdesc = pickaxe_longdesc,
inventory_image = "default_tool_copperpick.png",
wield_scale = wield_scale,
groups = { tool=1, pickaxe=1, dig_speed_class=3, enchantability=9 },
tool_capabilities = {
-- 1/1.2
full_punch_interval = 0.83333333,
max_drop_level=3,
damage_groups = {fleshy=3},
punch_attack_uses = 96,
},
sound = { breaks = "default_tool_breaks" },
_repair_material = "mcl_core:copper_ingot",
_mcl_toollike_wield = true,
_mcl_diggroups = {
pickaxey = { speed = 5, level = 3, uses = 192 }
},
})