Upload files to "/"

This commit is contained in:
Unix Meow 2024-03-12 14:12:03 +00:00
parent 720edbf03a
commit fe22f2eac0
2 changed files with 25 additions and 0 deletions

23
init.lua Normal file
View File

@ -0,0 +1,23 @@
minetest.register_node("color:pink", {
description = "pink",
tiles = {
"pink.png"
},
groups = {oddly_breakable_by_hand = 3}
})
minetest.register_node("color:charm", {
description = "charm",
tiles = {
"charm.png"
},
groups = {oddly_breakable_by_hand = 3}
})
minetest.register_node("color:white", {
description = "white",
tiles = {
"white.png"
},
groups = {oddly_breakable_by_hand = 3}
})

2
mod.conf Normal file
View File

@ -0,0 +1,2 @@
name = color
descriptions = 'my favorite colors'