mirror of
https://github.com/minetest-mods/quartz.git
synced 2024-11-17 15:58:16 +01:00
commit
624103d0b2
12
init.lua
12
init.lua
@ -10,6 +10,10 @@ minetest.register_craftitem("quartz:quartz_crystal", {
|
||||
description = "Quartz Crystal",
|
||||
inventory_image = "quartz_crystal_full.png",
|
||||
})
|
||||
minetest.register_craftitem("quartz:quartz_crystal_piece", {
|
||||
description = "Quartz Crystal Piece",
|
||||
inventory_image = "quartz_crystal_piece.png",
|
||||
})
|
||||
|
||||
--Ore
|
||||
minetest.register_node("quartz:quartz_ore", {
|
||||
@ -88,6 +92,14 @@ stairs.register_slab("quartzstair", "quartz:pillar",
|
||||
|
||||
--Crafting
|
||||
|
||||
--Quartz Crystal Piece
|
||||
minetest.register_craft({
|
||||
output = '"quartz:quartz_crystal_piece" 3',
|
||||
recipe = {
|
||||
{'quartz:quartz_crystal'}
|
||||
}
|
||||
})
|
||||
|
||||
--Quartz Block
|
||||
minetest.register_craft({
|
||||
output = 'quartz:block',
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 206 B |
Loading…
Reference in New Issue
Block a user