Node
Node | Block |
Breakable? | By hand (3) |
Folders
1. Make a folders, one with your mod name and inside it folder named textures and add some of your 16x16 or other size version testures.
Files
2. Now create files, called mod.conf and init.lua.

And type in them your own values, like I did...

name = colorsnodes descriptions = 'my test nodes'

minetest.register_node("colorsnodes:red", { description = "red", tiles = { "red.png" }, groups = {oddly_breakable_by_hand = 3} })
Remember that you can register more nodes by copying the text.

3. Save the files.
Now save the files and move them into your Minetest data folder, make mods folder if there's no such and paste the folder inside.

Add your mod to the world and start game. Enjoy your mod :D

