Version MFF.
0
README.txt
Normal file → Executable file
0
depends.txt
Normal file → Executable file
51
init.lua
Normal file → Executable file
@ -20,7 +20,7 @@ minetest.register_node("quartz:quartz_ore", {
|
|||||||
drop = 'quartz:quartz_crystal',
|
drop = 'quartz:quartz_crystal',
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_ore({
|
minetest.register_ore({
|
||||||
ore_type = "scatter",
|
ore_type = "scatter",
|
||||||
ore = "quartz:quartz_ore",
|
ore = "quartz:quartz_ore",
|
||||||
@ -28,8 +28,19 @@ minetest.register_ore({
|
|||||||
clust_scarcity = 10*10*10,
|
clust_scarcity = 10*10*10,
|
||||||
clust_num_ores = 6,
|
clust_num_ores = 6,
|
||||||
clust_size = 5,
|
clust_size = 5,
|
||||||
y_min = -31000,
|
y_min = -31000,
|
||||||
y_max = -5,
|
y_max = -5,
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_ore({
|
||||||
|
ore_type = "scatter",
|
||||||
|
ore = "quartz:quartz_ore",
|
||||||
|
wherein = "default:stone",
|
||||||
|
clust_scarcity = 30*30*30,
|
||||||
|
clust_num_ores = 64,
|
||||||
|
clust_size = 5,
|
||||||
|
y_min = -10240,
|
||||||
|
y_max = -8192,
|
||||||
})
|
})
|
||||||
|
|
||||||
--Quartz Block
|
--Quartz Block
|
||||||
@ -72,19 +83,19 @@ stairs.register_slab("quartzstair", "quartz:pillar",
|
|||||||
{"quartz_pillar_top.png", "quartz_pillar_top.png", "quartz_pillar_side.png"},
|
{"quartz_pillar_top.png", "quartz_pillar_top.png", "quartz_pillar_side.png"},
|
||||||
"Quartz Pillar stair",
|
"Quartz Pillar stair",
|
||||||
"Quartz Pillar slab",
|
"Quartz Pillar slab",
|
||||||
default.node_sound_glass_defaults())
|
default.node_sound_glass_defaults())
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--Crafting
|
--Crafting
|
||||||
|
|
||||||
--Quartz Crystal Piece
|
--Quartz Crystal Piece
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = '"quartz:quartz_crystal_piece" 3',
|
output = "quartz:quartz_crystal_piece 3",
|
||||||
recipe = {
|
recipe = {
|
||||||
{'quartz:quartz_crystal'}
|
{'quartz:quartz_crystal'}
|
||||||
}
|
}
|
||||||
@ -92,17 +103,17 @@ minetest.register_craft({
|
|||||||
|
|
||||||
--Quartz Block
|
--Quartz Block
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = '"quartz:block" 4',
|
output = "quartz:block 4",
|
||||||
recipe = {
|
recipe = {
|
||||||
{'quartz:quartz_crystal', 'quartz:quartz_crystal', ''},
|
{'quartz:quartz_crystal', 'quartz:quartz_crystal', ''},
|
||||||
{'quartz:quartz_crystal', 'quartz:quartz_crystal', ''},
|
{'quartz:quartz_crystal', 'quartz:quartz_crystal', ''},
|
||||||
{'', '', ''}
|
{'', '', ''}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
--Chiseled Quartz
|
--Chiseled Quartz
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'quartz:chiseled 2',
|
output = "quartz:chiseled 2",
|
||||||
recipe = {
|
recipe = {
|
||||||
{'stairs:slab_quartzblock', '', ''},
|
{'stairs:slab_quartzblock', '', ''},
|
||||||
{'stairs:slab_quartzblock', '', ''},
|
{'stairs:slab_quartzblock', '', ''},
|
||||||
@ -111,14 +122,14 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
--Chiseled Quartz(for stairsplus)
|
--Chiseled Quartz(for stairsplus)
|
||||||
minetest.register_craft({
|
--[[minetest.register_craft({
|
||||||
output = 'quartz:chiseled 2',
|
output = 'quartz:chiseled 2',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'quartz:slab_block', '', ''},
|
{'quartz:slab_block', '', ''},
|
||||||
{'quartz:slab_block', '', ''},
|
{'quartz:slab_block', '', ''},
|
||||||
{'', '', ''},
|
{'', '', ''},
|
||||||
}
|
}
|
||||||
})
|
}) ]]-- Disabled. Item "quartz:slab_block" is unknown //MFF(Mg|08/09/15)
|
||||||
|
|
||||||
--Quartz Pillar
|
--Quartz Pillar
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
@ -169,22 +180,22 @@ if minetest.get_modpath("moreblocks") and enable_stairsplus then
|
|||||||
"Quartz Block",
|
"Quartz Block",
|
||||||
"block",
|
"block",
|
||||||
0)
|
0)
|
||||||
|
|
||||||
register_stair_slab_panel_micro("quartz", "chiseled", "quartz:chiseled",
|
register_stair_slab_panel_micro("quartz", "chiseled", "quartz:chiseled",
|
||||||
{cracky=3},
|
{cracky=3},
|
||||||
{"quartz_chiseled.png"},
|
{"quartz_chiseled.png"},
|
||||||
"Chiseled Quartz",
|
"Chiseled Quartz",
|
||||||
"chiseled",
|
"chiseled",
|
||||||
0)
|
0)
|
||||||
|
|
||||||
register_stair_slab_panel_micro("quartz", "pillar", "quartz:pillar",
|
register_stair_slab_panel_micro("quartz", "pillar", "quartz:pillar",
|
||||||
{cracky=3},
|
{cracky=3},
|
||||||
{"quartz_pillar_top.png", "quartz_pillar_top.png", "quartz_pillar_side.png"},
|
{"quartz_pillar_top.png", "quartz_pillar_top.png", "quartz_pillar_side.png"},
|
||||||
"Quartz Pillar",
|
"Quartz Pillar",
|
||||||
"pillar",
|
"pillar",
|
||||||
0)
|
0)
|
||||||
|
|
||||||
table.insert(circular_saw.known_stairs, "quartz:block")
|
table.insert(circular_saw.known_stairs, "quartz:block")
|
||||||
table.insert(circular_saw.known_stairs, "quartz:chiseled")
|
table.insert(circular_saw.known_stairs, "quartz:chiseled")
|
||||||
table.insert(circular_saw.known_stairs, "quartz:pillar")
|
table.insert(circular_saw.known_stairs, "quartz:pillar")
|
||||||
end
|
end
|
||||||
|
0
settings.txt
Normal file → Executable file
BIN
textures/quartz_block.png
Normal file → Executable file
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 264 B |
BIN
textures/quartz_chiseled.png
Normal file → Executable file
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 361 B |
BIN
textures/quartz_crystal_full.png
Normal file → Executable file
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 193 B |
BIN
textures/quartz_crystal_piece.png
Normal file → Executable file
Before Width: | Height: | Size: 206 B After Width: | Height: | Size: 138 B |
Before Width: | Height: | Size: 291 B After Width: | Height: | Size: 166 B |
BIN
textures/quartz_pillar_side.png
Normal file → Executable file
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 384 B |
BIN
textures/quartz_pillar_side_horizontal.png
Normal file → Executable file
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 261 B |
BIN
textures/quartz_pillar_top.png
Normal file → Executable file
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 369 B |