Epic/mods/epic/moreblocks.lua

125 lines
4.0 KiB
Lua

----ASTEROID
stairsplus:register_all('asteroid', 'stone', 'asteroid:stone', {
description='Asteroid Stone',
groups={cracky = 2, not_in_creative_inventory=1},
tiles={'asteroid_stone.png'},
})
stairsplus:register_all('asteroid', 'stone_brick', 'asteroid:stone_brick', {
description='Asteroid Stone Brick',
groups={cracky = 2, not_in_creative_inventory=1},
tiles={'asteroid_stone_brick.png'},
})
----EPIC
stairsplus:register_all('epic', 'burnt_wood', 'epic:wood_ash', {
description='Burnt Wood',
groups = {choppy = 3, oddly_breakable_by_hand = 3, not_in_creative_inventory=1},
tiles={'epic_wood_ash.png'},
})
stairsplus:register_all('epic', 'acacia_bark', 'epic:acacia_bark', {
description='Acacia',
groups={choppy = 2, oddly_breakable_by_hand = 1, not_in_creative_inventory=1},
tiles={'default_acacia_tree.png'},
})
stairsplus:register_all('epic', 'aspen_bark', 'epic:aspen_bark', {
description='Aspen',
groups={choppy = 2, oddly_breakable_by_hand = 1, not_in_creative_inventory=1},
tiles={'default_aspen_tree.png'},
})
stairsplus:register_all('epic', 'jungle_bark', 'epic:jungle_bark', {
description='Jungle',
groups={choppy = 2, oddly_breakable_by_hand = 1, not_in_creative_inventory=1},
tiles={'default_jungletree.png'},
})
stairsplus:register_all('epic', 'pine_bark', 'epic:pine_bark', {
description='Pine',
groups={choppy = 2, oddly_breakable_by_hand = 1, not_in_creative_inventory=1},
tiles={'default_pine_tree.png'},
})
stairsplus:register_all('epic', 'tree_bark', 'epic:tree_bark', {
description='Tree',
groups={choppy = 2, oddly_breakable_by_hand = 1, not_in_creative_inventory=1},
tiles={'default_tree.png'},
})
stairsplus:register_all('epic', 'wood_ash', 'epic:wood_ash', {
description='Burnt wood',
groups={choppy = 2, oddly_breakable_by_hand = 1, not_in_creative_inventory=1},
tiles={'epic_wood_ash.png'},
})
stairsplus:register_all('epic', 'tree_ash', 'epic:tree_ash', {
description='Burnt tree',
groups={choppy = 2, oddly_breakable_by_hand = 1, not_in_creative_inventory=1},
tiles={'epic_tree_ash_top.png', 'epic_tree_ash_side.png'},
})
----CAVEREALSM
stairsplus:register_all('caverealms', 'glow_amethyst', 'caverealms:glow_amethyst', {
description='Glow Amethyst',
groups={cracky = 2, not_in_creative_inventory=1},
tiles={'caverealms_glow_amethyst.png'},
use_texture_alpha = 'opaque',
light_source = 10
})
stairsplus:register_all('caverealms', 'glow_crystal', 'caverealms:glow_crystal', {
description='Glow Crystal',
groups={cracky = 2, not_in_creative_inventory=1},
tiles={'caverealms_glow_crystal.png'},
use_texture_alpha = 'opaque',
light_source = 10
})
stairsplus:register_all('caverealms', 'glow_emerald', 'caverealms:glow_emerald', {
description='Glow Emerald',
groups={cracky = 2, not_in_creative_inventory=1},
tiles={'caverealms_glow_emerald.png'},
use_texture_alpha = 'opaque',
light_source = 10
})
stairsplus:register_all('caverealms', 'glow_ruby', 'caverealms:glow_ruby', {
description='Glow Ruby',
groups={cracky = 2, not_in_creative_inventory=1},
tiles={'caverealms_glow_ruby.png'},
use_texture_alpha = 'opaque',
light_source = 10
})
--NETHER
stairsplus:register_all('nether', 'basalt', 'nether:basalt', {
description='Burnt tree',
groups={cracky = 2, not_in_creative_inventory=1},
tiles={'nether_basalt.png', 'nether_basalt_side.png'},
})
----OCEAN
stairsplus:register_all('ocean', 'prismarine', 'ocean:prismarine', {
description='Prismarine',
groups={cracky=1, not_in_creative_inventory=1},
tiles={'prismarine.png'},
})
stairsplus:register_all('ocean', 'dark_prismarine', 'ocean:dark_prismarine', {
description='Dark Prismarine',
groups={cracky=1, not_in_creative_inventory=1},
tiles={'prismarine_dark.png'},
})
stairsplus:register_all('ocean', 'prismarine_bricks', 'ocean:prismarine_bricks', {
description='Prismarine Brick',
groups={cracky=1, not_in_creative_inventory=1},
tiles={'prismarine_bricks.png'},
})