new clay/kaolin clay blocks
This commit is contained in:
parent
d15290b9de
commit
c8d20c30ae
34 changed files with 435 additions and 15 deletions
|
|
@ -331,6 +331,94 @@ function registerTFGSpaceBlocks(event) {
|
|||
|
||||
// #endregion
|
||||
|
||||
// #region Mars Blocks
|
||||
|
||||
event.create('tfg:spice', 'tfg:particle_emitter')
|
||||
.textureAll('tfg:block/sand_spice')
|
||||
.soundType('sand')
|
||||
.hardness(1)
|
||||
.resistance(1)
|
||||
.unbreakable()
|
||||
.lightLevel(0.1)
|
||||
.mapColor('color_white')
|
||||
.particleOffset(0, 2, 0)
|
||||
.particleVelocity(0.05, 0, 0.05)
|
||||
.particle('electric_spark')
|
||||
.particleCount(3)
|
||||
.particleForced(false)
|
||||
|
||||
event.create('tfg:grass/amber_clay_mycelium')
|
||||
.property(BlockProperties.SNOWY)
|
||||
.soundType('wart_block')
|
||||
.requiresTool(false)
|
||||
.mapColor('terracotta_yellow')
|
||||
.tagBlock('minecraft:mineable/shovel')
|
||||
.tagBoth('forge:dirt')
|
||||
.fullBlock(true)
|
||||
.opaque(true)
|
||||
|
||||
event.create('tfg:grass/amber_kaolin_mycelium')
|
||||
.property(BlockProperties.SNOWY)
|
||||
.soundType('wart_block')
|
||||
.requiresTool(false)
|
||||
.mapColor('terracotta_yellow')
|
||||
.tagBlock('minecraft:mineable/shovel')
|
||||
.tagBoth('forge:dirt')
|
||||
.fullBlock(true)
|
||||
.opaque(true)
|
||||
|
||||
event.create('tfg:grass/rusticus_clay_mycelium')
|
||||
.property(BlockProperties.SNOWY)
|
||||
.soundType('wart_block')
|
||||
.requiresTool(false)
|
||||
.mapColor('terracotta_orange')
|
||||
.tagBlock('minecraft:mineable/shovel')
|
||||
.tagBoth('forge:dirt')
|
||||
.fullBlock(true)
|
||||
.opaque(true)
|
||||
|
||||
event.create('tfg:grass/rusticus_kaolin_mycelium')
|
||||
.property(BlockProperties.SNOWY)
|
||||
.soundType('wart_block')
|
||||
.requiresTool(false)
|
||||
.mapColor('terracotta_orange')
|
||||
.tagBlock('minecraft:mineable/shovel')
|
||||
.tagBoth('forge:dirt')
|
||||
.fullBlock(true)
|
||||
.opaque(true)
|
||||
|
||||
event.create('tfg:grass/sangnum_clay_mycelium')
|
||||
.property(BlockProperties.SNOWY)
|
||||
.soundType('wart_block')
|
||||
.requiresTool(false)
|
||||
.mapColor('terracotta_red')
|
||||
.tagBlock('minecraft:mineable/shovel')
|
||||
.tagBoth('forge:dirt')
|
||||
.fullBlock(true)
|
||||
.opaque(true)
|
||||
|
||||
event.create('tfg:grass/sangnum_kaolin_mycelium')
|
||||
.property(BlockProperties.SNOWY)
|
||||
.soundType('wart_block')
|
||||
.requiresTool(false)
|
||||
.mapColor('terracotta_red')
|
||||
.tagBlock('minecraft:mineable/shovel')
|
||||
.tagBoth('forge:dirt')
|
||||
.fullBlock(true)
|
||||
.opaque(true)
|
||||
|
||||
event.create('tfg:grass/mars_clay_dirt')
|
||||
.property(BlockProperties.SNOWY)
|
||||
.soundType('gravel')
|
||||
.requiresTool(false)
|
||||
.mapColor('dirt')
|
||||
.tagBlock('minecraft:mineable/shovel')
|
||||
.tagBoth('forge:dirt')
|
||||
.fullBlock(true)
|
||||
.opaque(true)
|
||||
|
||||
// #endregion
|
||||
|
||||
//#region Venus Blocks
|
||||
//Fluorapatite
|
||||
const fluorapatite_colors = ['blue', 'green', 'brown', 'orange', 'white', 'yellow'];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue