New blocks of metal. (by ObKo)
This commit is contained in:
parent
e9d1476db9
commit
e4e0f718aa
@ -16,12 +16,6 @@ minetest.register_craftitem( ":technic:chromium_ingot", {
|
||||
on_place_on_ground = minetest.craftitem_place_item,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'cooking',
|
||||
output = "technic:chromium_ingot",
|
||||
recipe = "technic:chromium_lump"
|
||||
})
|
||||
|
||||
minetest.register_craftitem( ":technic:zinc_lump", {
|
||||
description = "Zinc Lump",
|
||||
inventory_image = "technic_zinc_lump.png",
|
||||
@ -42,8 +36,74 @@ minetest.register_craftitem( ":technic:brass_ingot", {
|
||||
inventory_image = "technic_brass_ingot.png",
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "node technic:uranium_block",
|
||||
recipe = {{"technic:uranium", "technic:uranium", "technic:uranium"},
|
||||
{"technic:uranium", "technic:uranium", "technic:uranium"},
|
||||
{"technic:uranium", "technic:uranium", "technic:uranium"}}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "craft technic:uranium 9",
|
||||
recipe = {{"technic:uranium_block"}}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "node technic:chromium_block",
|
||||
recipe = {{"technic:chromium_ingot", "technic:chromium_ingot", "technic:chromium_ingot"},
|
||||
{"technic:chromium_ingot", "technic:chromium_ingot", "technic:chromium_ingot"},
|
||||
{"technic:chromium_ingot", "technic:chromium_ingot", "technic:chromium_ingot"}}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "craft technic:chromium_ingot 9",
|
||||
recipe = {{"technic:chromium_block"}}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "node technic:zinc_block",
|
||||
recipe = {{"technic:zinc_ingot", "technic:zinc_ingot", "technic:zinc_ingot"},
|
||||
{"technic:zinc_ingot", "technic:zinc_ingot", "technic:zinc_ingot"},
|
||||
{"technic:zinc_ingot", "technic:zinc_ingot", "technic:zinc_ingot"}}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "craft technic:zinc_ingot 9",
|
||||
recipe = {{"technic:zinc_block"}}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "node technic:stainless_steel_block",
|
||||
recipe = {{"technic:stainless_steel_ingot", "technic:stainless_steel_ingot", "technic:stainless_steel_ingot"},
|
||||
{"technic:stainless_steel_ingot", "technic:stainless_steel_ingot", "technic:stainless_steel_ingot"},
|
||||
{"technic:stainless_steel_ingot", "technic:stainless_steel_ingot", "technic:stainless_steel_ingot"}}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "craft technic:stainless_steel_ingot 9",
|
||||
recipe = {{"technic:stainless_steel_block"}}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "node technic:brass_block",
|
||||
recipe = {{"technic:brass_ingot", "technic:brass_ingot", "technic:brass_ingot"},
|
||||
{"technic:brass_ingot", "technic:brass_ingot", "technic:brass_ingot"},
|
||||
{"technic:brass_ingot", "technic:brass_ingot", "technic:brass_ingot"}}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "craft technic:brass_ingot 9",
|
||||
recipe = {{"technic:brass_block"}}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'cooking',
|
||||
output = "technic:zinc_ingot",
|
||||
recipe = "technic:zinc_lump"
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'cooking',
|
||||
output = "technic:chromium_ingot",
|
||||
recipe = "technic:chromium_lump"
|
||||
})
|
@ -1,2 +1 @@
|
||||
default
|
||||
technic
|
||||
|
@ -49,6 +49,46 @@ minetest.register_node( ":technic:marble_bricks", {
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node(":technic:uranium_block", {
|
||||
description = "Uranium Block",
|
||||
tiles = { "technic_uranium_block.png" },
|
||||
is_ground_content = true,
|
||||
groups = {cracky=1, level=2},
|
||||
sounds = default.node_sound_stone_defaults()
|
||||
})
|
||||
|
||||
minetest.register_node(":technic:chromium_block", {
|
||||
description = "Chromium Block",
|
||||
tiles = { "technic_chromium_block.png" },
|
||||
is_ground_content = true,
|
||||
groups = {cracky=1, level=2},
|
||||
sounds = default.node_sound_stone_defaults()
|
||||
})
|
||||
|
||||
minetest.register_node(":technic:zinc_block", {
|
||||
description = "Zinc Block",
|
||||
tiles = { "technic_zinc_block.png" },
|
||||
is_ground_content = true,
|
||||
groups = {cracky=1, level=2},
|
||||
sounds = default.node_sound_stone_defaults()
|
||||
})
|
||||
|
||||
minetest.register_node(":technic:stainless_steel_block", {
|
||||
description = "Stainless Steel Block",
|
||||
tiles = { "technic_stainless_steel_block.png" },
|
||||
is_ground_content = true,
|
||||
groups = {cracky=1, level=2},
|
||||
sounds = default.node_sound_stone_defaults()
|
||||
})
|
||||
|
||||
minetest.register_node(":technic:brass_block", {
|
||||
description = "Brass Block",
|
||||
tiles = { "technic_brass_block.png" },
|
||||
is_ground_content = true,
|
||||
groups = {cracky=1, level=2},
|
||||
sounds = default.node_sound_stone_defaults()
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic:marble_bricks 4',
|
||||
recipe = {
|
||||
@ -56,5 +96,3 @@ minetest.register_craft({
|
||||
{'technic:marble','technic:marble'}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_alias("technic:diamond_block", "default:diamondblock")
|
||||
|
@ -28,7 +28,6 @@ minetest.register_ore({
|
||||
height_min = -31000,
|
||||
height_max = 2,
|
||||
})
|
||||
if technic.config:getBool("enable_marble_generation") then
|
||||
minetest.register_ore({
|
||||
ore_type = "sheet",
|
||||
ore = "technic:marble",
|
||||
@ -41,8 +40,6 @@ minetest.register_ore({
|
||||
noise_threshhold = 0.4,
|
||||
noise_params = {offset=0, scale=15, spread={x=150, y=150, z=150}, seed=23, octaves=3, persist=0.70}
|
||||
})
|
||||
end
|
||||
if technic.config:getBool("enable_granite_generation") then
|
||||
minetest.register_ore({
|
||||
ore_type = "sheet",
|
||||
ore = "technic:granite",
|
||||
@ -55,5 +52,4 @@ minetest.register_ore({
|
||||
noise_threshhold = 0.4,
|
||||
noise_params = {offset=0, scale=15, spread={x=130, y=130, z=130}, seed=24, octaves=3, persist=0.70}
|
||||
})
|
||||
end
|
||||
|
||||
|
BIN
mods/technic_worldgen/textures/technic_brass_block.png
Normal file
BIN
mods/technic_worldgen/textures/technic_brass_block.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 649 B |
BIN
mods/technic_worldgen/textures/technic_chromium_block.png
Normal file
BIN
mods/technic_worldgen/textures/technic_chromium_block.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 611 B |
BIN
mods/technic_worldgen/textures/technic_stainless_steel_block.png
Normal file
BIN
mods/technic_worldgen/textures/technic_stainless_steel_block.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 589 B |
BIN
mods/technic_worldgen/textures/technic_uranium_block.png
Normal file
BIN
mods/technic_worldgen/textures/technic_uranium_block.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 649 B |
BIN
mods/technic_worldgen/textures/technic_zinc_block.png
Normal file
BIN
mods/technic_worldgen/textures/technic_zinc_block.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 681 B |
Loading…
x
Reference in New Issue
Block a user