move venus fluids into core

This commit is contained in:
Pyritie 2025-12-08 19:53:36 +00:00
parent dd1463acdf
commit 811cf2766f
3 changed files with 3 additions and 18 deletions

View file

@ -8,7 +8,7 @@
"Name": "ad_astra:venus_stone"
},
"default_fluid": {
"Name": "tfg:sulfur_fumes"
"Name": "tfg:fluid/sulfur_fumes"
},
"noise": {
"min_y": -64,

View file

@ -73,8 +73,8 @@ function registerTFGVenusBlockTags(event) {
event.add('ad_astra:venus_stone_replaceables', 'tfg:sandstone/raw/fluorapatite/white')
event.add('ad_astra:venus_stone_replaceables', 'tfg:sand/fluorapatite/yellow')
event.add('ad_astra:venus_stone_replaceables', 'tfg:sandstone/raw/fluorapatite/yellow')
event.add('ad_astra:venus_stone_replaceables', 'tfg:geyser_slurry')
event.add('ad_astra:venus_stone_replaceables', 'tfg:sulfur_fumes')
event.add('ad_astra:venus_stone_replaceables', 'tfg:fluid/geyser_slurry')
event.add('ad_astra:venus_stone_replaceables', 'tfg:fluid/sulfur_fumes')
event.add('ad_astra:venus_stone_replaceables', 'minecraft:lava')
event.add('ad_astra:venus_stone_replaceables', 'create:scoria')
event.add('ad_astra:venus_stone_replaceables', 'create:scorchia')

View file

@ -18,20 +18,5 @@ const registerTFGFluids = (event) => {
.noBlock()
// Venus
event.create('tfg:sulfur_fumes')
.stillTexture('tfg:block/planets/venus/sulfur_fumes_still')
.flowingTexture('tfg:block/planets/venus/sulfur_fumes_flow')
.bucketColor(0xc4d984)
.gaseous()
.viscosity(0)
.density(0)
.renderType('translucent')
event.create('tfg:geyser_slurry', 'tfc:spring')
.stillTexture('tfg:block/planets/venus/geyser_slurry_still')
.flowingTexture('tfg:block/planets/venus/geyser_slurry_flow')
.bucketColor(0xc4d984)
.temperature(1000)
.renderType('translucent')
}