Add stone bricks mod! :D

master
ROllerozxa 2021-04-25 19:23:42 +02:00
parent 847a31cede
commit b77baa1567
6 changed files with 43 additions and 0 deletions

View File

@ -1,2 +1,3 @@
name = Minecraftn't-contrib
description = Modpack containing various mods, intended to be as close in line with the style of old Alpha versions of Minecraft, intended to be used with Minecraftn't.
depends = minecraft

41
stonebricks/init.lua Normal file
View File

@ -0,0 +1,41 @@
--- stone bricks! :)
minetest.register_node("stonebricks:stone_bricks", {
description = "Stone Bricks",
tiles = {"stonebrick.png"},
groups = {cracky=3}
})
minetest.register_node("stonebricks:cracked_stone_bricks", {
description = "Cracked Stone Bricks",
tiles = {"stonebrick_cracked.png"},
groups = {cracky=3}
})
minetest.register_node("stonebricks:mossy_stone_bricks", {
description = "Mossy Stone Bricks",
tiles = {"stonebrick_mossy.png"},
groups = {cracky=3}
})
minetest.register_craft({
output = "stonebricks:stone_bricks",
recipe = {
{"minecraft:stone", "minecraft:stone"},
{"minecraft:stone", "minecraft:stone"},
}
})
minetest.register_craft({
output = "stonebricks:mossy_stone_bricks",
recipe = {
{"stonebricks:stone_bricks", "minecraft:water_bucket"},
}
})
minetest.register_craft({
type = "cooking",
output = "stonebricks:cracked_stone_bricks",
recipe = "stonebricks:stone_bricks",
cooktime = 10,
})

1
stonebricks/mod.conf Normal file
View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 469 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B