mirror of
https://github.com/minetest-mods/nether.git
synced 2025-12-16 12:45:31 +01:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
69be9adb9c |
@@ -80,5 +80,6 @@ SOFTWARE.
|
|||||||
* `nether_portal.png`: [Extex101](https://github.com/Extex101), 2020
|
* `nether_portal.png`: [Extex101](https://github.com/Extex101), 2020
|
||||||
* `nether_rack`* (files starting with "nether_rack"): Zeg9
|
* `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_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.
|
All other media: Copyright © 2013 PilzAdam, licensed under CC BY-SA 3.0 by PilzAdam.
|
||||||
|
|||||||
15
crafts.lua
15
crafts.lua
@@ -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
|
-- See tools.lua for tools related crafting
|
||||||
|
|
||||||
|
|||||||
@@ -318,6 +318,14 @@ minetest.register_node("nether:brick_deep", {
|
|||||||
sounds = default.node_sound_stone_defaults()
|
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
|
-- Register fence and rails
|
||||||
|
|
||||||
local fence_texture =
|
local fence_texture =
|
||||||
|
|||||||
BIN
textures/nether_nether_block.png
Normal file
BIN
textures/nether_nether_block.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 593 B |
Reference in New Issue
Block a user