moving sand piles over to their new kjs block builder
This commit is contained in:
parent
ab7ae4a936
commit
89d74ee72d
2 changed files with 49 additions and 0 deletions
|
|
@ -176,6 +176,17 @@
|
|||
"block.tfg.rock.hardened_red_granite": "Hardened Red Granite",
|
||||
"block.tfg.loose.red_granite": "Loose Red Granite Rock",
|
||||
"block.tfg.spike.red_granite_spike": "Red Granite Spike",
|
||||
"block.tfg.ash_pile": "Ash Pile",
|
||||
"block.tfg.pile.white_sand": "White Sand",
|
||||
"block.tfg.pile.black_sand": "Black Sand",
|
||||
"block.tfg.pile.brown_sand": "Brown Sand",
|
||||
"block.tfg.pile.red_sand": "Red Sand",
|
||||
"block.tfg.pile.yellow_sand": "Yellow Sand",
|
||||
"block.tfg.pile.green_sand": "Green Sand",
|
||||
"block.tfg.pile.pink_sand": "Pink Sand",
|
||||
"block.tfg.pile.moon_sand": "Lunar Sand",
|
||||
"block.tfg.pile.mars_sand": "Argillite Sand",
|
||||
"block.tfg.pile.venus_sand": "Trachyte Sand",
|
||||
"block.tfg.lunar_roots": "Lunar Lightblooms",
|
||||
"block.tfg.lunar_sprouts": "Lunar Lightgrass",
|
||||
"block.tfg.lunar_chorus_plant": "Chorus Plant",
|
||||
|
|
|
|||
|
|
@ -121,6 +121,44 @@ const registerTFGBlocks = (event) => {
|
|||
|
||||
// #endregion
|
||||
|
||||
// #region Layer blocks
|
||||
|
||||
event.create('tfg:ash_pile', 'tfg:layer_block')
|
||||
.existingItem('tfc:powder/wood_ash')
|
||||
.mapColor('color_light_gray')
|
||||
|
||||
event.create('tfg:pile/black_sand', 'tfg:layer_block')
|
||||
.existingItem('tfc:sand/black')
|
||||
|
||||
event.create('tfg:pile/brown_sand', 'tfg:layer_block')
|
||||
.existingItem('tfc:sand/brown')
|
||||
|
||||
event.create('tfg:pile/green_sand', 'tfg:layer_block')
|
||||
.existingItem('tfc:sand/green')
|
||||
|
||||
event.create('tfg:pile/pink_sand', 'tfg:layer_block')
|
||||
.existingItem('tfc:sand/pink')
|
||||
|
||||
event.create('tfg:pile/red_sand', 'tfg:layer_block')
|
||||
.existingItem('tfc:sand/red')
|
||||
|
||||
event.create('tfg:pile/white_sand', 'tfg:layer_block')
|
||||
.existingItem('tfc:sand/white')
|
||||
|
||||
event.create('tfg:pile/yellow_sand', 'tfg:layer_block')
|
||||
.existingItem('tfc:sand/yellow')
|
||||
|
||||
event.create('tfg:pile/mars_sand', 'tfg:layer_block')
|
||||
.existingItem('ad_astra:mars_sand')
|
||||
|
||||
event.create('tfg:pile/moon_sand', 'tfg:layer_block')
|
||||
.existingItem('ad_astra:moon_sand')
|
||||
|
||||
event.create('tfg:pile/venus_sand', 'tfg:layer_block')
|
||||
.existingItem('ad_astra:venus_sand')
|
||||
|
||||
|
||||
// #endregion
|
||||
|
||||
// #region Deprecated
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue