Version MFF.
0
README.txt
Normal file → Executable file
0
depends.txt
Normal file → Executable file
21
init.lua
Normal file → Executable file
@ -32,6 +32,17 @@ minetest.register_ore({
|
||||
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
|
||||
minetest.register_node("quartz:block", {
|
||||
description = "Quartz Block",
|
||||
@ -84,7 +95,7 @@ stairs.register_slab("quartzstair", "quartz:pillar",
|
||||
|
||||
--Quartz Crystal Piece
|
||||
minetest.register_craft({
|
||||
output = '"quartz:quartz_crystal_piece" 3',
|
||||
output = "quartz:quartz_crystal_piece 3",
|
||||
recipe = {
|
||||
{'quartz:quartz_crystal'}
|
||||
}
|
||||
@ -92,7 +103,7 @@ minetest.register_craft({
|
||||
|
||||
--Quartz Block
|
||||
minetest.register_craft({
|
||||
output = '"quartz:block" 4',
|
||||
output = "quartz:block 4",
|
||||
recipe = {
|
||||
{'quartz:quartz_crystal', 'quartz:quartz_crystal', ''},
|
||||
{'quartz:quartz_crystal', 'quartz:quartz_crystal', ''},
|
||||
@ -102,7 +113,7 @@ minetest.register_craft({
|
||||
|
||||
--Chiseled Quartz
|
||||
minetest.register_craft({
|
||||
output = 'quartz:chiseled 2',
|
||||
output = "quartz:chiseled 2",
|
||||
recipe = {
|
||||
{'stairs:slab_quartzblock', '', ''},
|
||||
{'stairs:slab_quartzblock', '', ''},
|
||||
@ -111,14 +122,14 @@ minetest.register_craft({
|
||||
})
|
||||
|
||||
--Chiseled Quartz(for stairsplus)
|
||||
minetest.register_craft({
|
||||
--[[minetest.register_craft({
|
||||
output = 'quartz:chiseled 2',
|
||||
recipe = {
|
||||
{'quartz:slab_block', '', ''},
|
||||
{'quartz:slab_block', '', ''},
|
||||
{'', '', ''},
|
||||
}
|
||||
})
|
||||
}) ]]-- Disabled. Item "quartz:slab_block" is unknown //MFF(Mg|08/09/15)
|
||||
|
||||
--Quartz Pillar
|
||||
minetest.register_craft({
|
||||
|
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 |