1 Commits

Author SHA1 Message Date
Aleri Kaisattera
69be9adb9c Add Nether Block (#92) 2025-12-14 20:49:46 +01:00
4 changed files with 24 additions and 0 deletions

View File

@@ -80,5 +80,6 @@ SOFTWARE.
* `nether_portal.png`: [Extex101](https://github.com/Extex101), 2020
* `nether_rack`* (files starting with "nether_rack"): Zeg9
* `nether_tool_`* (files starting with "nether_tool_"): color adjusted versions from "[default](https://github.com/minetest/minetest_game/tree/master/mods/default)" mod, originals by BlockMen
* `nether_nether_block.png`: color adjusted from "[default](https://github.com/minetest/minetest_game/tree/master/mods/default)" mod, original by kilbith
All other media: Copyright © 2013 PilzAdam, licensed under CC BY-SA 3.0 by PilzAdam.

View File

@@ -69,4 +69,19 @@ minetest.register_craft({
}
})
minetest.register_craft({
output = "nether:nether_block",
recipe = {
{"nether:nether_ingot", "nether:nether_ingot", "nether:nether_ingot"},
{"nether:nether_ingot", "nether:nether_ingot", "nether:nether_ingot"},
{"nether:nether_ingot", "nether:nether_ingot", "nether:nether_ingot"},
}
})
minetest.register_craft({
output = "nether:nether_ingot 9",
recipe = {{"nether:nether_block"}}
})
-- See tools.lua for tools related crafting

View File

@@ -318,6 +318,14 @@ minetest.register_node("nether:brick_deep", {
sounds = default.node_sound_stone_defaults()
})
minetest.register_node("nether:nether_block", {
description = S("Nether Block"),
tiles = {"nether_nether_block.png"},
is_ground_content = false,
groups = {cracky = 1, level = 2, workable_with_nether_tools = 2},
sounds = default.node_sound_metal_defaults()
})
-- Register fence and rails
local fence_texture =

Binary file not shown.

After

Width:  |  Height:  |  Size: 593 B