Skip to content
Snippets Groups Projects
Commit 8cacd876 authored by magicfelix's avatar magicfelix
Browse files

Add example mod

parent 48b78904
No related branches found
No related tags found
No related merge requests found
init.lua 0 → 100644
-- Minetest Mod
minetest.register_node("cltmod:tux", {
description = "CLT-Tux",
tiles = {"cltmod_tux.png"},
groups = {cracky = 1}
})
minetest.register_craft({
type = "shaped",
output = "cltmod:tux 1",
recipe = {
{"", "default:goldblock", "" },
{"default:obsidian", "default:steelblock", "default:obsidian" },
{"default:goldblock", "", "default:goldblock" }
}
})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment