Created base mod
This commit is contained in:
parent
cde31887e0
commit
8fcacd42c4
3
README.md
Normal file
3
README.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Minetest - Compressed Netherrack
|
||||||
|
|
||||||
|
Create Compressed Netherrack for the minetest nether mod
|
51
init.lua
51
init.lua
@ -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"
|
||||||
|
},
|
||||||
|
})
|
7
mod.conf
7
mod.conf
@ -1,4 +1,5 @@
|
|||||||
name = minetestboilerplate
|
name = compressednether
|
||||||
description = Basis for minetest mods
|
description = Add recipes and nodes for minetest nether mod.
|
||||||
author = jasonl8446
|
author = jasonl8446
|
||||||
title = BoilerPlate
|
title = Compressed Netherrack
|
||||||
|
depends = nether
|
BIN
textures/nether_compressed_rack.png
Normal file
BIN
textures/nether_compressed_rack.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.7 KiB |
BIN
textures/nether_compressed_rack_deep.png
Normal file
BIN
textures/nether_compressed_rack_deep.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.4 KiB |
Loading…
x
Reference in New Issue
Block a user