Created base mod

This commit is contained in:
jason 2023-08-11 16:42:25 -04:00
parent cde31887e0
commit 8fcacd42c4
5 changed files with 58 additions and 3 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Minetest - Compressed Netherrack
Create Compressed Netherrack for the minetest nether mod

View File

@ -0,0 +1,51 @@
minetest.register_node("compressednether:rack", {
description = S("Compressed Netherrack"),
tiles = {"nether_compressed_rack.png"},
is_ground_content = true,
groups = {cracky = 3, level = 2, workable_with_nether_tools = 3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("compressednether:rack_deep", {
description = S("Compressed Deep Netherrack"),
tiles = {"nether_compressed_rack_deep.png"},
is_ground_content = true,
groups = {cracky = 3, level = 2, workable_with_nether_tools = 3},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_craft({
type = "shaped",
output = "compressednether:rack",
recipe = {
{"nether:rack", "nether:rack", "nether:rack"},
{"nether:rack", "nether:rack", "nether:rack"},
{"nether:rack", "nether:rack", "nether:rack"}
}
})
minetest.register_craft({
type = "shapeless",
output = "nether:rack 9",
recipe = {
"compressednether:rack"
},
})
minetest.register_craft({
type = "shaped",
output = "compressednether:rack_deep",
recipe = {
{"nether:rack_deep", "nether:rack_deep", "nether:rack_deep"},
{"nether:rack_deep", "nether:rack_deep", "nether:rack_deep"},
{"nether:rack_deep", "nether:rack_deep", "nether:rack_deep"}
}
})
minetest.register_craft({
type = "shapeless",
output = "nether:rack_deep 9",
recipe = {
"compressednether:rack_deep"
},
})

View File

@ -1,4 +1,5 @@
name = minetestboilerplate
description = Basis for minetest mods
name = compressednether
description = Add recipes and nodes for minetest nether mod.
author = jasonl8446
title = BoilerPlate
title = Compressed Netherrack
depends = nether

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB