Initial commit

master
Eric Rustrum 2022-02-02 15:09:15 -08:00
commit dc2fc1d05b
4 changed files with 23 additions and 0 deletions

2
.gitattributes vendored Normal file
View File

@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto

2
README.md Normal file
View File

@ -0,0 +1,2 @@
# xenozapper
The Xeno-Zapper from Satisfactory, but it's a Minetest weapon.

19
init.lua Normal file
View File

@ -0,0 +1,19 @@
minetest.register_tool(":default:xenozapper", {
description = "Zapper",
inventory_image = "zapper.png",
wield_image = "zapper.png^[transformR90",
tool_capabilities = {
full_punch_interval = 0.5,
max_drop_level=1,
damage_groups = {fleshy=3},
}
})
minetest.register_craft({
output = "default:xenozapper",
recipe = {
{"default:steel_ingot", "", "default:steel_ingot"},
{"", "default:copper_ingot", ""},
{"", "default:steelblock", ""}
}
})

BIN
textures/zapper.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 293 B