add new blocks + fluids
Signed-off-by: Pyritie <pyritie@gmail.com>
This commit is contained in:
parent
11c3737c5e
commit
4602044a59
2 changed files with 39 additions and 0 deletions
11
kubejs/startup_scripts/tfg/blocks.js
Normal file
11
kubejs/startup_scripts/tfg/blocks.js
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
const registerTFGBlocks = (event) => {
|
||||
|
||||
event.create('tfg:artificial_end_portal_frame')
|
||||
.stoneSoundType()
|
||||
.tagBlock('minecraft:mineable/pickaxe')
|
||||
.requiresTool(true)
|
||||
.fullBlock(true)
|
||||
.item(item => {
|
||||
item.modelJson({ parent: 'minecraft:block/end_portal_frame' })
|
||||
})
|
||||
}
|
||||
28
kubejs/startup_scripts/tfg/fluids.js
Normal file
28
kubejs/startup_scripts/tfg/fluids.js
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
const registerTFGFluids = (event) => {
|
||||
|
||||
event.create('tfg:nether_slurry')
|
||||
.thickTexture(0x6b281b)
|
||||
.bucketColor(0x6b281b)
|
||||
.temperature(1000)
|
||||
.luminosity(7)
|
||||
.noBlock()
|
||||
|
||||
event.create('tfg:enriched_nether_slurry')
|
||||
.thickTexture(0x99594d)
|
||||
.bucketColor(0x99594d)
|
||||
.temperature(1000)
|
||||
.luminosity(7)
|
||||
.noBlock()
|
||||
|
||||
event.create('tfg:ender_slurry')
|
||||
.thickTexture(0x1b5c51)
|
||||
.bucketColor(0x1b5c51)
|
||||
.luminosity(2)
|
||||
.noBlock()
|
||||
|
||||
event.create('tfg:enriched_ender_slurry')
|
||||
.thickTexture(0x3a9178)
|
||||
.bucketColor(0x3a9178)
|
||||
.luminosity(2)
|
||||
.noBlock()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue