Initial Commit

master
LoneWolfHT 2020-02-12 09:00:01 -08:00
parent 5fa3e0b7aa
commit c6ab8b7178
5 changed files with 25 additions and 1 deletions

22
init.lua Normal file
View File

@ -0,0 +1,22 @@
minetest.register_tool("wonderpick:pick", {
description = "Wonderpick",
inventory_image = "wonderpick_wonderpick.png",
range = 10,
groups = {not_in_creative_inventory = 1},
tool_capabilities = {
full_punch_interval = 0.1,
max_drop_level = 3,
groupcaps = {
bendy = {times = {[1] = 0, [2] = 0, [3] = 0}, uses = 0, maxlevel = 3},
snappy = {times = {[1] = 0, [2] = 0, [3] = 0}, uses = 0, maxlevel = 3},
fleshy = {times = {[1] = 0, [2] = 0, [3] = 0}, uses = 0, maxlevel = 3},
cracky = {times = {[1] = 0, [2] = 0, [3] = 0}, uses = 0, maxlevel = 3},
choppy = {times = {[1] = 0, [2] = 0, [3] = 0}, uses = 0, maxlevel = 3},
crumbly = {times = {[1] = 0, [2] = 0, [3] = 0}, uses = 0, maxlevel = 3},
unbreakable = {times = {[1] = 0, [2] = 0, [3] = 0}, uses = 0, maxlevel = 3},
dig_immediate = {times = {[1] = 0, [2] = 0, [3] = 0}, uses = 0, maxlevel = 3},
},
damage_groups = {groupname = 1000},
punch_attack_uses = 0,
},
})

1
mod.conf Normal file
View File

@ -0,0 +1 @@
name = wonderpick

View File

@ -1,2 +1,3 @@
# wonderpick
# Wonderpick
Adds a pickaxe to Minetest that can dig almost any block

Binary file not shown.

After

Width:  |  Height:  |  Size: 306 B