Quartz + Create Stone Support (#2005)
+ Blackstone uniform model Signed-off-by: Adrien Vidal <vidal.adrien2@gmail.com>
This commit is contained in:
parent
3b9906ed6b
commit
65edc16a92
5 changed files with 444 additions and 248 deletions
|
|
@ -23,89 +23,6 @@ global.CREATE_DISABLED_ITEMS = [
|
|||
'create:wheat_flour',
|
||||
'create:wheat_flour',
|
||||
|
||||
// Vergilium Blocks
|
||||
'create:veridium',
|
||||
'create:cut_veridium',
|
||||
'create:cut_veridium_stairs',
|
||||
'create:cut_veridium_slab',
|
||||
'create:cut_veridium_wall',
|
||||
'create:polished_cut_veridium',
|
||||
'create:polished_cut_veridium_stairs',
|
||||
'create:polished_cut_veridium_slab',
|
||||
'create:polished_cut_veridium_wall',
|
||||
'create:cut_veridium_bricks',
|
||||
'create:cut_veridium_brick_stairs',
|
||||
'create:cut_veridium_brick_slab',
|
||||
'create:cut_veridium_brick_wall',
|
||||
'create:small_veridium_bricks',
|
||||
'create:small_veridium_brick_stairs',
|
||||
'create:small_veridium_brick_slab',
|
||||
'create:small_veridium_brick_wall',
|
||||
'create:layered_veridium',
|
||||
'create:veridium_pillar',
|
||||
|
||||
// Scoria
|
||||
'create:scoria',
|
||||
'create:cut_scoria',
|
||||
'create:cut_scoria_stairs',
|
||||
'create:cut_scoria_slab',
|
||||
'create:cut_scoria_wall',
|
||||
'create:polished_cut_scoria',
|
||||
'create:polished_cut_scoria_stairs',
|
||||
'create:polished_cut_scoria_slab',
|
||||
'create:polished_cut_scoria_wall',
|
||||
'create:cut_scoria_bricks',
|
||||
'create:cut_scoria_brick_stairs',
|
||||
'create:cut_scoria_brick_slab',
|
||||
'create:cut_scoria_brick_wall',
|
||||
'create:small_scoria_bricks',
|
||||
'create:small_scoria_brick_stairs',
|
||||
'create:small_scoria_brick_slab',
|
||||
'create:small_scoria_brick_wall',
|
||||
'create:layered_scoria',
|
||||
'create:scoria_pillar',
|
||||
|
||||
// Cringite
|
||||
'create:crimsite',
|
||||
'create:cut_crimsite',
|
||||
'create:cut_crimsite_stairs',
|
||||
'create:cut_crimsite_slab',
|
||||
'create:cut_crimsite_wall',
|
||||
'create:polished_cut_crimsite',
|
||||
'create:polished_cut_crimsite_stairs',
|
||||
'create:polished_cut_crimsite_slab',
|
||||
'create:polished_cut_crimsite_wall',
|
||||
'create:cut_crimsite_bricks',
|
||||
'create:cut_crimsite_brick_stairs',
|
||||
'create:cut_crimsite_brick_slab',
|
||||
'create:cut_crimsite_brick_wall',
|
||||
'create:small_crimsite_bricks',
|
||||
'create:small_crimsite_brick_stairs',
|
||||
'create:small_crimsite_brick_slab',
|
||||
'create:small_crimsite_brick_wall',
|
||||
'create:layered_crimsite',
|
||||
'create:crimsite_pillar',
|
||||
|
||||
// Tuff
|
||||
'create:cut_tuff',
|
||||
'create:cut_tuff_stairs',
|
||||
'create:cut_tuff_slab',
|
||||
'create:cut_tuff_wall',
|
||||
'create:polished_cut_tuff',
|
||||
'create:polished_cut_tuff_stairs',
|
||||
'create:polished_cut_tuff_slab',
|
||||
'create:polished_cut_tuff_wall',
|
||||
'create:cut_tuff_bricks',
|
||||
'create:cut_tuff_brick_stairs',
|
||||
'create:cut_tuff_brick_slab',
|
||||
'create:cut_tuff_brick_wall',
|
||||
'create:small_tuff_bricks',
|
||||
'create:small_tuff_brick_stairs',
|
||||
'create:small_tuff_brick_slab',
|
||||
'create:small_tuff_brick_wall',
|
||||
'create:layered_tuff',
|
||||
'create:tuff_pillar',
|
||||
|
||||
// Blocks
|
||||
'create:andesite_alloy_block',
|
||||
'create:experience_block',
|
||||
|
|
|
|||
|
|
@ -364,5 +364,23 @@ const registerTFGBlocks = (event) => {
|
|||
.opaque(true)
|
||||
})
|
||||
|
||||
event.create('tfg:rock/quartz_wall', 'wall')
|
||||
.soundType('stone')
|
||||
.textureAll('minecraft:block/quartz_block_side')
|
||||
.tagBoth('tfg:rock_wall')
|
||||
.mapColor('snow')
|
||||
.tagBlock('minecraft:mineable/pickaxe')
|
||||
.fullBlock(true)
|
||||
.opaque(true)
|
||||
|
||||
event.create('tfg:rock/smooth_quartz_wall', 'wall')
|
||||
.soundType('stone')
|
||||
.textureAll('minecraft:block/quartz_block_bottom')
|
||||
.tagBoth('tfg:rock_wall')
|
||||
.mapColor('snow')
|
||||
.tagBlock('minecraft:mineable/pickaxe')
|
||||
.fullBlock(true)
|
||||
.opaque(true)
|
||||
|
||||
// #endregion Reconstituted Stone
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue