Version MFF.

This commit is contained in:
sys4-fr 2018-09-08 15:23:58 +02:00
parent 03d08a62f4
commit 51a8f46e1c
12 changed files with 31 additions and 20 deletions

0
README.txt Normal file → Executable file
View File

0
depends.txt Normal file → Executable file
View File

51
init.lua Normal file → Executable file
View File

@ -20,7 +20,7 @@ minetest.register_node("quartz:quartz_ore", {
drop = 'quartz:quartz_crystal',
sounds = default.node_sound_stone_defaults(),
})
minetest.register_ore({
ore_type = "scatter",
ore = "quartz:quartz_ore",
@ -28,8 +28,19 @@ minetest.register_ore({
clust_scarcity = 10*10*10,
clust_num_ores = 6,
clust_size = 5,
y_min = -31000,
y_max = -5,
y_min = -31000,
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
@ -72,19 +83,19 @@ stairs.register_slab("quartzstair", "quartz:pillar",
{"quartz_pillar_top.png", "quartz_pillar_top.png", "quartz_pillar_side.png"},
"Quartz Pillar stair",
"Quartz Pillar slab",
default.node_sound_glass_defaults())
default.node_sound_glass_defaults())
--Crafting
--Quartz Crystal Piece
minetest.register_craft({
output = '"quartz:quartz_crystal_piece" 3',
output = "quartz:quartz_crystal_piece 3",
recipe = {
{'quartz:quartz_crystal'}
}
@ -92,17 +103,17 @@ 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', ''},
{'', '', ''}
}
})
--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({
@ -169,22 +180,22 @@ if minetest.get_modpath("moreblocks") and enable_stairsplus then
"Quartz Block",
"block",
0)
register_stair_slab_panel_micro("quartz", "chiseled", "quartz:chiseled",
{cracky=3},
{"quartz_chiseled.png"},
"Chiseled Quartz",
"chiseled",
0)
register_stair_slab_panel_micro("quartz", "pillar", "quartz:pillar",
{cracky=3},
{"quartz_pillar_top.png", "quartz_pillar_top.png", "quartz_pillar_side.png"},
"Quartz Pillar",
"pillar",
0)
table.insert(circular_saw.known_stairs, "quartz:block")
table.insert(circular_saw.known_stairs, "quartz:chiseled")
table.insert(circular_saw.known_stairs, "quartz:pillar")
end
end

0
settings.txt Normal file → Executable file
View File

BIN
textures/quartz_block.png Normal file → Executable file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 264 B

BIN
textures/quartz_chiseled.png Normal file → Executable file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 361 B

BIN
textures/quartz_crystal_full.png Normal file → Executable file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 193 B

BIN
textures/quartz_crystal_piece.png Normal file → Executable file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 206 B

After

Width:  |  Height:  |  Size: 138 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 291 B

After

Width:  |  Height:  |  Size: 166 B

BIN
textures/quartz_pillar_side.png Normal file → Executable file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 384 B

BIN
textures/quartz_pillar_side_horizontal.png Normal file → Executable file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 261 B

BIN
textures/quartz_pillar_top.png Normal file → Executable file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 369 B