Init
This commit is contained in:
parent
03a8b0eb59
commit
aebf5cba24
3
depends.txt
Normal file
3
depends.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
default
|
||||||
|
ethereal
|
||||||
|
stairs
|
136
init.lua
Normal file
136
init.lua
Normal file
@ -0,0 +1,136 @@
|
|||||||
|
-- Glostone Brick
|
||||||
|
minetest.register_node(
|
||||||
|
'yl_glostone_building_blocks:glostone_brick',
|
||||||
|
{
|
||||||
|
description = 'Glo Stone Brick',
|
||||||
|
tiles = {
|
||||||
|
'ethereal_glostone.png^yl_glostone_building_blocks_brick_overlay.png'
|
||||||
|
},
|
||||||
|
groups = {
|
||||||
|
cracky = 2
|
||||||
|
},
|
||||||
|
light_source = 10,
|
||||||
|
drop = 'yl_glostone_building_blocks:glostone_brick',
|
||||||
|
sounds = default.node_sound_stone_defaults()
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
minetest.register_craft(
|
||||||
|
{
|
||||||
|
output = 'yl_glostone_building_blocks:glostone_brick 4',
|
||||||
|
recipe = {
|
||||||
|
{'ethereal:glostone', 'ethereal:glostone'},
|
||||||
|
{'ethereal:glostone', 'ethereal:glostone'}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
-- Glostone Block
|
||||||
|
minetest.register_node(
|
||||||
|
'yl_glostone_building_blocks:glostone_block',
|
||||||
|
{
|
||||||
|
description = 'Glo Stone Block',
|
||||||
|
tiles = {
|
||||||
|
'ethereal_glostone.png^yl_glostone_building_blocks_block_overlay.png'
|
||||||
|
},
|
||||||
|
groups = {
|
||||||
|
cracky = 2
|
||||||
|
},
|
||||||
|
light_source = 12,
|
||||||
|
drop = 'yl_glostone_building_blocks:glostone_block',
|
||||||
|
sounds = default.node_sound_stone_defaults()
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
minetest.register_craft(
|
||||||
|
{
|
||||||
|
output = 'yl_glostone_building_blocks:glostone_block 9',
|
||||||
|
recipe = {
|
||||||
|
{'ethereal:glostone', 'ethereal:glostone', 'ethereal:glostone'},
|
||||||
|
{'ethereal:glostone', 'ethereal:glostone', 'ethereal:glostone'},
|
||||||
|
{'ethereal:glostone', 'ethereal:glostone', 'ethereal:glostone'}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
-- Glostone Brick stairs
|
||||||
|
|
||||||
|
stairs.register_stair_and_slab(
|
||||||
|
'glostone_brick',
|
||||||
|
'yl_glostone_building_blocks:glostone_brick',
|
||||||
|
{
|
||||||
|
cracky = 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'ethereal_glostone.png^yl_glostone_building_blocks_brick_overlay.png'
|
||||||
|
},
|
||||||
|
'Glostone Brick Stair',
|
||||||
|
'Glostone Brick Slab',
|
||||||
|
default.node_sound_stone_defaults()
|
||||||
|
)
|
||||||
|
|
||||||
|
minetest.override_item(
|
||||||
|
'stairs:stair_glostone_brick',
|
||||||
|
{
|
||||||
|
light_source = 10
|
||||||
|
}
|
||||||
|
)
|
||||||
|
minetest.override_item(
|
||||||
|
'stairs:stair_outer_glostone_brick',
|
||||||
|
{
|
||||||
|
light_source = 10
|
||||||
|
}
|
||||||
|
)
|
||||||
|
minetest.override_item(
|
||||||
|
'stairs:stair_inner_glostone_brick',
|
||||||
|
{
|
||||||
|
light_source = 10
|
||||||
|
}
|
||||||
|
)
|
||||||
|
minetest.override_item(
|
||||||
|
'stairs:slab_glostone_brick',
|
||||||
|
{
|
||||||
|
light_source = 10
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
-- Glostone Block stairs
|
||||||
|
|
||||||
|
stairs.register_stair_and_slab(
|
||||||
|
'glostone_block',
|
||||||
|
'yl_glostone_building_blocks:glostone_block',
|
||||||
|
{
|
||||||
|
cracky = 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'ethereal_glostone.png^yl_glostone_building_blocks_block_overlay.png'
|
||||||
|
},
|
||||||
|
'Glostone Block Stair',
|
||||||
|
'Glostone Block Slab',
|
||||||
|
default.node_sound_stone_defaults()
|
||||||
|
)
|
||||||
|
|
||||||
|
minetest.override_item(
|
||||||
|
'stairs:stair_glostone_block',
|
||||||
|
{
|
||||||
|
light_source = 10
|
||||||
|
}
|
||||||
|
)
|
||||||
|
minetest.override_item(
|
||||||
|
'stairs:stair_outer_glostone_block',
|
||||||
|
{
|
||||||
|
light_source = 10
|
||||||
|
}
|
||||||
|
)
|
||||||
|
minetest.override_item(
|
||||||
|
'stairs:stair_inner_glostone_block',
|
||||||
|
{
|
||||||
|
light_source = 10
|
||||||
|
}
|
||||||
|
)
|
||||||
|
minetest.override_item(
|
||||||
|
'stairs:slab_glostone_block',
|
||||||
|
{
|
||||||
|
light_source = 10
|
||||||
|
}
|
||||||
|
)
|
2
mod.conf
Normal file
2
mod.conf
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
name = yl_glostone_building_blocks
|
||||||
|
description = Adds basic glostone-based building materials
|
BIN
screenshot.png
Normal file
BIN
screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 55 KiB |
BIN
textures/yl_glostone_building_blocks_block_overlay.png
Normal file
BIN
textures/yl_glostone_building_blocks_block_overlay.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 537 B |
BIN
textures/yl_glostone_building_blocks_brick_overlay.png
Normal file
BIN
textures/yl_glostone_building_blocks_brick_overlay.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
Loading…
Reference in New Issue
Block a user