From 8daa880a251f3e2842ce9275e60bc912d5e5a083 Mon Sep 17 00:00:00 2001 From: SmokeyDope Date: Wed, 8 Feb 2023 04:49:46 +0000 Subject: [PATCH] Add mcl_copper_stuff folder, init.lua, mod.conf, tools.lua --- mcl_copper_stuff/init.lua | 5 +++++ mcl_copper_stuff/mod.conf | 3 +++ mcl_copper_stuff/tools.lua | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 43 insertions(+) create mode 100644 mcl_copper_stuff/init.lua create mode 100644 mcl_copper_stuff/mod.conf create mode 100644 mcl_copper_stuff/tools.lua diff --git a/mcl_copper_stuff/init.lua b/mcl_copper_stuff/init.lua new file mode 100644 index 0000000..b77a1da --- /dev/null +++ b/mcl_copper_stuff/init.lua @@ -0,0 +1,5 @@ +local modname = minetest.get_current_modname() +local modpath = minetest.get_modpath(modname) + +--dofile(modpath.."/armor.lua") +dofile(modpath.."/tools.lua") diff --git a/mcl_copper_stuff/mod.conf b/mcl_copper_stuff/mod.conf new file mode 100644 index 0000000..d85ae02 --- /dev/null +++ b/mcl_copper_stuff/mod.conf @@ -0,0 +1,3 @@ +name = mcl_copper_stuff +depends = mcl_core, mcl_sounds, mcl_armor +description = Adds copper tools and armor to Mineclone 2 diff --git a/mcl_copper_stuff/tools.lua b/mcl_copper_stuff/tools.lua new file mode 100644 index 0000000..f277075 --- /dev/null +++ b/mcl_copper_stuff/tools.lua @@ -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 } + }, +})