From f860056940de5b847585fd9cdab7597f9b39b77f Mon Sep 17 00:00:00 2001 From: Pyritie Date: Fri, 25 Jul 2025 01:31:25 +0100 Subject: [PATCH] Mars grass and water (#1437) * mars grass and water and all that fun stuff * removing the heavy water --- .../tfg/blockstates/grass/amber_mycelium.json | 256 + .../tfg/blockstates/grass/mars_dirt.json | 21 + .../blockstates/grass/rusticus_mycelium.json | 283 + .../blockstates/grass/sangnum_mycelium.json | 221 + .../semiheavy_ammoniacal_water.json | 7 + kubejs/assets/tfg/lang/en_us.json | 15 +- .../block/grass/amber_mycelium_side_1.json | 8 + .../block/grass/amber_mycelium_side_2.json | 8 + .../block/grass/amber_mycelium_side_3.json | 8 + .../block/grass/amber_mycelium_top.json | 27 + .../tfg/models/block/grass/mars_dirt.json | 6 + .../block/grass/mars_dirt_snowy_side.json | 6 + .../block/grass/rusticus_mycelium_side_1.json | 8 + .../block/grass/rusticus_mycelium_side_2.json | 8 + .../block/grass/rusticus_mycelium_top_1.json | 7 + .../block/grass/rusticus_mycelium_top_2.json | 7 + .../block/grass/sangnum_mycelium_side.json | 8 + .../block/grass/sangnum_mycelium_top.json | 7 + .../block/semiheavy_ammoniacal_water.json | 5 + .../tfg/models/item/grass/amber_mycelium.json | 36 + .../tfg/models/item/grass/mars_dirt.json | 3 + .../models/item/grass/rusticus_mycelium.json | 36 + .../models/item/grass/sangnum_mycelium.json | 36 + .../tfg/textures/block/grass/amber_side_1.png | Bin 0 -> 678 bytes .../tfg/textures/block/grass/amber_side_2.png | Bin 0 -> 676 bytes .../tfg/textures/block/grass/amber_side_3.png | Bin 0 -> 660 bytes .../tfg/textures/block/grass/amber_top.png | Bin 0 -> 450 bytes .../tfg/textures/block/grass/mars_dirt.png | Bin 0 -> 4790 bytes .../textures/block/grass/rusticus_side_1.png | Bin 0 -> 652 bytes .../textures/block/grass/rusticus_side_2.png | Bin 0 -> 621 bytes .../textures/block/grass/rusticus_top_1.png | Bin 0 -> 194 bytes .../textures/block/grass/rusticus_top_2.png | Bin 0 -> 197 bytes .../tfg/textures/block/grass/sangnum_side.png | Bin 0 -> 728 bytes .../tfg/textures/block/grass/sangnum_top.png | Bin 0 -> 540 bytes kubejs/data/ad_astra/dimension/mars.json | 20456 ++++++++-------- .../{martian_hills.json => amber_hills.json} | 0 ...martian_forests.json => amber_plains.json} | 0 .../worldgen/biome/mars/martian_river.json | 74 + .../worldgen/biome/mars/rusticus_hills.json | 75 + ...rtian_plains.json => rusticus_plains.json} | 0 .../worldgen/biome/mars/sangnum_hills.json | 75 + .../worldgen/biome/mars/sangnum_plains.json | 78 + .../mars/semiheavy_ammoniacal_water.json | 8 + .../density_function/mars/offset.json | 2 +- .../worldgen/noise_settings/mars_noise.json | 1360 +- .../mars/semiheavy_ammoniacal_water.json | 24 + kubejs/server_scripts/ad_astra/tags.js | 5 +- kubejs/server_scripts/tfg/recipes.collapse.js | 5 + kubejs/server_scripts/tfg/tags.js | 25 +- kubejs/startup_scripts/tfg/blocks.js | 350 +- kubejs/startup_scripts/tfg/fluids.js | 5 - 51 files changed, 12766 insertions(+), 10803 deletions(-) create mode 100644 kubejs/assets/tfg/blockstates/grass/amber_mycelium.json create mode 100644 kubejs/assets/tfg/blockstates/grass/mars_dirt.json create mode 100644 kubejs/assets/tfg/blockstates/grass/rusticus_mycelium.json create mode 100644 kubejs/assets/tfg/blockstates/grass/sangnum_mycelium.json create mode 100644 kubejs/assets/tfg/blockstates/semiheavy_ammoniacal_water.json create mode 100644 kubejs/assets/tfg/models/block/grass/amber_mycelium_side_1.json create mode 100644 kubejs/assets/tfg/models/block/grass/amber_mycelium_side_2.json create mode 100644 kubejs/assets/tfg/models/block/grass/amber_mycelium_side_3.json create mode 100644 kubejs/assets/tfg/models/block/grass/amber_mycelium_top.json create mode 100644 kubejs/assets/tfg/models/block/grass/mars_dirt.json create mode 100644 kubejs/assets/tfg/models/block/grass/mars_dirt_snowy_side.json create mode 100644 kubejs/assets/tfg/models/block/grass/rusticus_mycelium_side_1.json create mode 100644 kubejs/assets/tfg/models/block/grass/rusticus_mycelium_side_2.json create mode 100644 kubejs/assets/tfg/models/block/grass/rusticus_mycelium_top_1.json create mode 100644 kubejs/assets/tfg/models/block/grass/rusticus_mycelium_top_2.json create mode 100644 kubejs/assets/tfg/models/block/grass/sangnum_mycelium_side.json create mode 100644 kubejs/assets/tfg/models/block/grass/sangnum_mycelium_top.json create mode 100644 kubejs/assets/tfg/models/block/semiheavy_ammoniacal_water.json create mode 100644 kubejs/assets/tfg/models/item/grass/amber_mycelium.json create mode 100644 kubejs/assets/tfg/models/item/grass/mars_dirt.json create mode 100644 kubejs/assets/tfg/models/item/grass/rusticus_mycelium.json create mode 100644 kubejs/assets/tfg/models/item/grass/sangnum_mycelium.json create mode 100644 kubejs/assets/tfg/textures/block/grass/amber_side_1.png create mode 100644 kubejs/assets/tfg/textures/block/grass/amber_side_2.png create mode 100644 kubejs/assets/tfg/textures/block/grass/amber_side_3.png create mode 100644 kubejs/assets/tfg/textures/block/grass/amber_top.png create mode 100644 kubejs/assets/tfg/textures/block/grass/mars_dirt.png create mode 100644 kubejs/assets/tfg/textures/block/grass/rusticus_side_1.png create mode 100644 kubejs/assets/tfg/textures/block/grass/rusticus_side_2.png create mode 100644 kubejs/assets/tfg/textures/block/grass/rusticus_top_1.png create mode 100644 kubejs/assets/tfg/textures/block/grass/rusticus_top_2.png create mode 100644 kubejs/assets/tfg/textures/block/grass/sangnum_side.png create mode 100644 kubejs/assets/tfg/textures/block/grass/sangnum_top.png rename kubejs/data/tfg/worldgen/biome/mars/{martian_hills.json => amber_hills.json} (100%) rename kubejs/data/tfg/worldgen/biome/mars/{martian_forests.json => amber_plains.json} (100%) create mode 100644 kubejs/data/tfg/worldgen/biome/mars/martian_river.json create mode 100644 kubejs/data/tfg/worldgen/biome/mars/rusticus_hills.json rename kubejs/data/tfg/worldgen/biome/mars/{martian_plains.json => rusticus_plains.json} (100%) create mode 100644 kubejs/data/tfg/worldgen/biome/mars/sangnum_hills.json create mode 100644 kubejs/data/tfg/worldgen/biome/mars/sangnum_plains.json create mode 100644 kubejs/data/tfg/worldgen/configured_feature/mars/semiheavy_ammoniacal_water.json create mode 100644 kubejs/data/tfg/worldgen/placed_feature/mars/semiheavy_ammoniacal_water.json diff --git a/kubejs/assets/tfg/blockstates/grass/amber_mycelium.json b/kubejs/assets/tfg/blockstates/grass/amber_mycelium.json new file mode 100644 index 000000000..492612761 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/grass/amber_mycelium.json @@ -0,0 +1,256 @@ +{ + "multipart": [ + { + "apply": { + "model": "tfg:block/grass/amber_mycelium_top", + "x": 90 + } + }, + { + "when": { + "snowy": false + }, + "apply": [ + { + "model": "tfg:block/grass/amber_mycelium_top", + "x": 270, + "y": 90 + }, + { + "model": "tfg:block/grass/amber_mycelium_top", + "x": 270 + }, + { + "model": "tfg:block/grass/amber_mycelium_top", + "x": 270, + "y": 180 + }, + { + "model": "tfg:block/grass/amber_mycelium_top", + "x": 270, + "y": 270 + } + ] + }, + { + "when": { + "snowy": true + }, + "apply": [ + { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "x": 270, + "y": 90 + }, + { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "x": 270 + }, + { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "x": 270, + "y": 180 + }, + { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "x": 270, + "y": 270 + } + ] + }, + { + "when": { + "north": true, + "snowy": false + }, + "apply": { + "model": "tfg:block/grass/amber_mycelium_top" + } + }, + { + "when": { + "east": true, + "snowy": false + }, + "apply": { + "model": "tfg:block/grass/amber_mycelium_top", + "y": 90 + } + }, + { + "when": { + "south": true, + "snowy": false + }, + "apply": { + "model": "tfg:block/grass/amber_mycelium_top", + "y": 180 + } + }, + { + "when": { + "west": true, + "snowy": false + }, + "apply": { + "model": "tfg:block/grass/amber_mycelium_top", + "y": 270 + } + }, + { + "when": { + "north": true, + "snowy": true + }, + "apply": { + "model": "tfc:block/grass/sandy_loam/snowy_top" + } + }, + { + "when": { + "east": true, + "snowy": true + }, + "apply": { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "y": 90 + } + }, + { + "when": { + "south": true, + "snowy": true + }, + "apply": { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "y": 180 + } + }, + { + "when": { + "west": true, + "snowy": true + }, + "apply": { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "y": 270 + } + }, + { + "when": { + "north": false, + "snowy": false + }, + "apply": [ + { + "model": "tfg:block/grass/amber_mycelium_side_1" + }, + { + "model": "tfg:block/grass/amber_mycelium_side_2" + }, + { + "model": "tfg:block/grass/amber_mycelium_side_3" + } + ] + }, + { + "when": { + "east": false, + "snowy": false + }, + "apply": [ + { + "model": "tfg:block/grass/amber_mycelium_side_1", + "y": 90 + }, + { + "model": "tfg:block/grass/amber_mycelium_side_2", + "y": 90 + }, + { + "model": "tfg:block/grass/amber_mycelium_side_3", + "y": 90 + } + ] + }, + { + "when": { + "south": false, + "snowy": false + }, + "apply": [ + { + "model": "tfg:block/grass/amber_mycelium_side_1", + "y": 180 + }, + { + "model": "tfg:block/grass/amber_mycelium_side_2", + "y": 180 + }, + { + "model": "tfg:block/grass/amber_mycelium_side_3", + "y": 180 + } + ] + }, + { + "when": { + "west": false, + "snowy": false + }, + "apply": [ + { + "model": "tfg:block/grass/amber_mycelium_side_1", + "y": 270 + }, + { + "model": "tfg:block/grass/amber_mycelium_side_2", + "y": 270 + }, + { + "model": "tfg:block/grass/amber_mycelium_side_3", + "y": 270 + } + ] + }, + { + "when": { + "north": false, + "snowy": true + }, + "apply": { + "model": "tfg:block/grass/mars_dirt_snowy_side" + } + }, + { + "when": { + "east": false, + "snowy": true + }, + "apply": { + "model": "tfg:block/grass/mars_dirt_snowy_side", + "y": 90 + } + }, + { + "when": { + "south": false, + "snowy": true + }, + "apply": { + "model": "tfg:block/grass/mars_dirt_snowy_side", + "y": 180 + } + }, + { + "when": { + "west": false, + "snowy": true + }, + "apply": { + "model": "tfg:block/grass/mars_dirt_snowy_side", + "y": 270 + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/grass/mars_dirt.json b/kubejs/assets/tfg/blockstates/grass/mars_dirt.json new file mode 100644 index 000000000..70ecbec7e --- /dev/null +++ b/kubejs/assets/tfg/blockstates/grass/mars_dirt.json @@ -0,0 +1,21 @@ +{ + "variants": { + "": [ + { + "model": "tfg:block/grass/mars_dirt" + }, + { + "model": "tfg:block/grass/mars_dirt", + "y": 90 + }, + { + "model": "tfg:block/grass/mars_dirt", + "y": 180 + }, + { + "model": "tfg:block/grass/mars_dirt", + "y": 270 + } + ] + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/grass/rusticus_mycelium.json b/kubejs/assets/tfg/blockstates/grass/rusticus_mycelium.json new file mode 100644 index 000000000..a33c06a2c --- /dev/null +++ b/kubejs/assets/tfg/blockstates/grass/rusticus_mycelium.json @@ -0,0 +1,283 @@ +{ + "multipart": [ + { + "apply": { + "model": "tfg:block/grass/rusticus_mycelium_top_1", + "x": 90 + } + }, + { + "when": { + "snowy": false + }, + "apply": [ + { + "model": "tfg:block/grass/rusticus_mycelium_top_1", + "x": 270, + "y": 90 + }, + { + "model": "tfg:block/grass/rusticus_mycelium_top_1", + "x": 270 + }, + { + "model": "tfg:block/grass/rusticus_mycelium_top_1", + "x": 270, + "y": 180 + }, + { + "model": "tfg:block/grass/rusticus_mycelium_top_1", + "x": 270, + "y": 270 + }, + { + "model": "tfg:block/grass/rusticus_mycelium_top_2", + "x": 270, + "y": 90 + }, + { + "model": "tfg:block/grass/rusticus_mycelium_top_2", + "x": 270 + }, + { + "model": "tfg:block/grass/rusticus_mycelium_top_2", + "x": 270, + "y": 180 + }, + { + "model": "tfg:block/grass/rusticus_mycelium_top_2", + "x": 270, + "y": 270 + } + ] + }, + { + "when": { + "snowy": true + }, + "apply": [ + { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "x": 270, + "y": 90 + }, + { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "x": 270 + }, + { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "x": 270, + "y": 180 + }, + { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "x": 270, + "y": 270 + } + ] + }, + { + "when": { + "north": true, + "snowy": false + }, + "apply": [ + { + "model": "tfg:block/grass/rusticus_mycelium_top_1" + }, + { + "model": "tfg:block/grass/rusticus_mycelium_top_2" + } + ] + }, + { + "when": { + "east": true, + "snowy": false + }, + "apply": [ + { + "model": "tfg:block/grass/rusticus_mycelium_top_1", + "y": 90 + }, + { + "model": "tfg:block/grass/rusticus_mycelium_top_2", + "y": 90 + } + ] + }, + { + "when": { + "south": true, + "snowy": false + }, + "apply": [ + { + "model": "tfg:block/grass/rusticus_mycelium_top_1", + "y": 180 + }, + { + "model": "tfg:block/grass/rusticus_mycelium_top_2", + "y": 180 + } + ] + }, + { + "when": { + "west": true, + "snowy": false + }, + "apply": [ + { + "model": "tfg:block/grass/rusticus_mycelium_top_1", + "y": 270 + }, + { + "model": "tfg:block/grass/rusticus_mycelium_top_2", + "y": 270 + } + ] + }, + { + "when": { + "north": true, + "snowy": true + }, + "apply": { + "model": "tfc:block/grass/sandy_loam/snowy_top" + } + }, + { + "when": { + "east": true, + "snowy": true + }, + "apply": { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "y": 90 + } + }, + { + "when": { + "south": true, + "snowy": true + }, + "apply": { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "y": 180 + } + }, + { + "when": { + "west": true, + "snowy": true + }, + "apply": { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "y": 270 + } + }, + { + "when": { + "north": false, + "snowy": false + }, + "apply": [ + { + "model": "tfg:block/grass/rusticus_mycelium_side_1" + }, + { + "model": "tfg:block/grass/rusticus_mycelium_side_2" + } + ] + }, + { + "when": { + "east": false, + "snowy": false + }, + "apply": [ + { + "model": "tfg:block/grass/rusticus_mycelium_side_1", + "y": 90 + }, + { + "model": "tfg:block/grass/rusticus_mycelium_side_2", + "y": 90 + } + ] + }, + { + "when": { + "south": false, + "snowy": false + }, + "apply": [ + { + "model": "tfg:block/grass/rusticus_mycelium_side_1", + "y": 180 + }, + { + "model": "tfg:block/grass/rusticus_mycelium_side_2", + "y": 180 + } + ] + }, + { + "when": { + "west": false, + "snowy": false + }, + "apply": [ + { + "model": "tfg:block/grass/rusticus_mycelium_side_1", + "y": 270 + }, + { + "model": "tfg:block/grass/rusticus_mycelium_side_2", + "y": 270 + } + ] + }, + { + "when": { + "north": false, + "snowy": true + }, + "apply": { + "model": "tfg:block/grass/mars_dirt_snowy_side" + } + }, + { + "when": { + "east": false, + "snowy": true + }, + "apply": { + "model": "tfg:block/grass/mars_dirt_snowy_side", + "y": 90 + } + }, + { + "when": { + "south": false, + "snowy": true + }, + "apply": { + "model": "tfg:block/grass/mars_dirt_snowy_side", + "y": 180 + } + }, + { + "when": { + "west": false, + "snowy": true + }, + "apply": { + "model": "tfg:block/grass/mars_dirt_snowy_side", + "y": 270 + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/grass/sangnum_mycelium.json b/kubejs/assets/tfg/blockstates/grass/sangnum_mycelium.json new file mode 100644 index 000000000..eeb37da68 --- /dev/null +++ b/kubejs/assets/tfg/blockstates/grass/sangnum_mycelium.json @@ -0,0 +1,221 @@ +{ + "multipart": [ + { + "apply": { + "model": "tfg:block/grass/sangnum_mycelium_top", + "x": 90 + } + }, + { + "when": { + "snowy": false + }, + "apply": [ + { + "model": "tfg:block/grass/sangnum_mycelium_top", + "x": 270, + "y": 90 + }, + { + "model": "tfg:block/grass/sangnum_mycelium_top", + "x": 270 + }, + { + "model": "tfg:block/grass/sangnum_mycelium_top", + "x": 270, + "y": 180 + }, + { + "model": "tfg:block/grass/sangnum_mycelium_top", + "x": 270, + "y": 270 + } + ] + }, + { + "when": { + "snowy": true + }, + "apply": [ + { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "x": 270, + "y": 90 + }, + { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "x": 270 + }, + { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "x": 270, + "y": 180 + }, + { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "x": 270, + "y": 270 + } + ] + }, + { + "when": { + "north": true, + "snowy": false + }, + "apply": { + "model": "tfg:block/grass/sangnum_mycelium_top" + } + }, + { + "when": { + "east": true, + "snowy": false + }, + "apply": { + "model": "tfg:block/grass/sangnum_mycelium_top", + "y": 90 + } + }, + { + "when": { + "south": true, + "snowy": false + }, + "apply": { + "model": "tfg:block/grass/sangnum_mycelium_top", + "y": 180 + } + }, + { + "when": { + "west": true, + "snowy": false + }, + "apply": { + "model": "tfg:block/grass/sangnum_mycelium_top", + "y": 270 + } + }, + { + "when": { + "north": true, + "snowy": true + }, + "apply": { + "model": "tfc:block/grass/sandy_loam/snowy_top" + } + }, + { + "when": { + "east": true, + "snowy": true + }, + "apply": { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "y": 90 + } + }, + { + "when": { + "south": true, + "snowy": true + }, + "apply": { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "y": 180 + } + }, + { + "when": { + "west": true, + "snowy": true + }, + "apply": { + "model": "tfc:block/grass/sandy_loam/snowy_top", + "y": 270 + } + }, + { + "when": { + "north": false, + "snowy": false + }, + "apply": { + "model": "tfg:block/grass/sangnum_mycelium_side" + } + }, + { + "when": { + "east": false, + "snowy": false + }, + "apply": { + "model": "tfg:block/grass/sangnum_mycelium_side", + "y": 90 + } + + }, + { + "when": { + "south": false, + "snowy": false + }, + "apply": { + "model": "tfg:block/grass/sangnum_mycelium_side", + "y": 180 + } + + }, + { + "when": { + "west": false, + "snowy": false + }, + "apply": { + "model": "tfg:block/grass/sangnum_mycelium_side", + "y": 270 + } + + }, + { + "when": { + "north": false, + "snowy": true + }, + "apply": { + "model": "tfg:block/grass/mars_dirt_snowy_side" + } + }, + { + "when": { + "east": false, + "snowy": true + }, + "apply": { + "model": "tfg:block/grass/mars_dirt_snowy_side", + "y": 90 + } + }, + { + "when": { + "south": false, + "snowy": true + }, + "apply": { + "model": "tfg:block/grass/mars_dirt_snowy_side", + "y": 180 + } + }, + { + "when": { + "west": false, + "snowy": true + }, + "apply": { + "model": "tfg:block/grass/mars_dirt_snowy_side", + "y": 270 + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/blockstates/semiheavy_ammoniacal_water.json b/kubejs/assets/tfg/blockstates/semiheavy_ammoniacal_water.json new file mode 100644 index 000000000..16293b69d --- /dev/null +++ b/kubejs/assets/tfg/blockstates/semiheavy_ammoniacal_water.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "tfg:block/fluid/semiheavy_ammoniacal_water" + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/lang/en_us.json b/kubejs/assets/tfg/lang/en_us.json index 2ac0094af..143cf58dc 100644 --- a/kubejs/assets/tfg/lang/en_us.json +++ b/kubejs/assets/tfg/lang/en_us.json @@ -296,13 +296,14 @@ "block.tfg.electromagnetic_accelerator": "Electromagnetic Accelerator", "block.tfg.superconductor_coil_large": "Large Superconductor Coil", "block.tfg.superconductor_coil_small": "Small Superconductor Coil", - "tfg:nether_slurry": "Nether Slurry", - "tfg:enriched_nether_slurry": "Enriched Nether Slurry", - "tfg:ender_slurry": "Ender Slurry", - "tfg:enriched_ender_slurry": "Enriched Ender Slurry", - "tfg:semiheavy_ammoniacal_water": "Semiheavy Ammoniacal Water", - "tfg:sulfur_fumes": "Sulfur Fumes", - "tfg:super_heated_slurry": "Super Heated Slurry", + "fluid.tfg.nether_slurry": "Nether Slurry", + "fluid.tfg.enriched_nether_slurry": "Enriched Nether Slurry", + "fluid.tfg.ender_slurry": "Ender Slurry", + "fluid.tfg.enriched_ender_slurry": "Enriched Ender Slurry", + "fluid.tfg.semiheavy_ammoniacal_water": "Semiheavy Ammoniacal Water", + "fluid.tfg.heavy_water": "Heavy Water", + "fluid.tfg.sulfur_fumes": "Sulfur Fumes", + "fluid.tfg.super_heated_slurry": "Super Heated Slurry", "item.tfg.antipoison_pill": "Antipoison Pill", "item.tfg.haste_pill": "Haste Pill", "item.tfg.night_vision_pill": "Night Vision Pill", diff --git a/kubejs/assets/tfg/models/block/grass/amber_mycelium_side_1.json b/kubejs/assets/tfg/models/block/grass/amber_mycelium_side_1.json new file mode 100644 index 000000000..bfb4c765d --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/amber_mycelium_side_1.json @@ -0,0 +1,8 @@ +{ + "parent": "tfc:block/grass_side", + "textures": { + "texture": "tfg:block/grass/mars_dirt", + "overlay": "tfg:block/grass/amber_side_1", + "particle": "tfg:block/grass/amber_side_1" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/grass/amber_mycelium_side_2.json b/kubejs/assets/tfg/models/block/grass/amber_mycelium_side_2.json new file mode 100644 index 000000000..39c37fa6f --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/amber_mycelium_side_2.json @@ -0,0 +1,8 @@ +{ + "parent": "tfc:block/grass_side", + "textures": { + "texture": "tfg:block/grass/mars_dirt", + "overlay": "tfg:block/grass/amber_side_2", + "particle": "tfg:block/grass/amber_side_2" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/grass/amber_mycelium_side_3.json b/kubejs/assets/tfg/models/block/grass/amber_mycelium_side_3.json new file mode 100644 index 000000000..1e71138aa --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/amber_mycelium_side_3.json @@ -0,0 +1,8 @@ +{ + "parent": "tfc:block/grass_side", + "textures": { + "texture": "tfg:block/grass/mars_dirt", + "overlay": "tfg:block/grass/amber_side_3", + "particle": "tfg:block/grass/amber_side_3" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/grass/amber_mycelium_top.json b/kubejs/assets/tfg/models/block/grass/amber_mycelium_top.json new file mode 100644 index 000000000..6f6ccea9b --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/amber_mycelium_top.json @@ -0,0 +1,27 @@ +{ + "parent": "block/block", + "textures": { + "overlay": "tfg:block/grass/amber_top", + "particle": "tfg:block/grass/amber_top" + }, + "elements": [ + { + "from": [ + 0, + 0, + 0 + ], + "to": [ + 16, + 16, + 0 + ], + "faces": { + "north": { + "texture": "#overlay", + "cullface": "north" + } + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/grass/mars_dirt.json b/kubejs/assets/tfg/models/block/grass/mars_dirt.json new file mode 100644 index 000000000..bb240938d --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/mars_dirt.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "tfg:block/grass/mars_dirt" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/grass/mars_dirt_snowy_side.json b/kubejs/assets/tfg/models/block/grass/mars_dirt_snowy_side.json new file mode 100644 index 000000000..332dd9835 --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/mars_dirt_snowy_side.json @@ -0,0 +1,6 @@ +{ + "parent": "tfc:block/grass_snowy_side", + "textures": { + "texture": "tfg:block/grass/mars_dirt" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/grass/rusticus_mycelium_side_1.json b/kubejs/assets/tfg/models/block/grass/rusticus_mycelium_side_1.json new file mode 100644 index 000000000..bef471ab6 --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/rusticus_mycelium_side_1.json @@ -0,0 +1,8 @@ +{ + "parent": "tfc:block/grass_side", + "textures": { + "texture": "tfg:block/grass/mars_dirt", + "overlay": "tfg:block/grass/rusticus_side_1", + "particle": "tfg:block/grass/rusticus_side_1" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/grass/rusticus_mycelium_side_2.json b/kubejs/assets/tfg/models/block/grass/rusticus_mycelium_side_2.json new file mode 100644 index 000000000..1ce8295c5 --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/rusticus_mycelium_side_2.json @@ -0,0 +1,8 @@ +{ + "parent": "tfc:block/grass_side", + "textures": { + "texture": "tfg:block/grass/mars_dirt", + "overlay": "tfg:block/grass/rusticus_side_2", + "particle": "tfg:block/grass/rusticus_side_2" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/grass/rusticus_mycelium_top_1.json b/kubejs/assets/tfg/models/block/grass/rusticus_mycelium_top_1.json new file mode 100644 index 000000000..ee4f06f09 --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/rusticus_mycelium_top_1.json @@ -0,0 +1,7 @@ +{ + "parent": "tfc:block/grass_top", + "textures": { + "overlay": "tfg:block/grass/rusticus_top_1", + "particle": "tfg:block/grass/rusticus_top_1" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/grass/rusticus_mycelium_top_2.json b/kubejs/assets/tfg/models/block/grass/rusticus_mycelium_top_2.json new file mode 100644 index 000000000..1be4ea162 --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/rusticus_mycelium_top_2.json @@ -0,0 +1,7 @@ +{ + "parent": "tfc:block/grass_top", + "textures": { + "overlay": "tfg:block/grass/rusticus_top_2", + "particle": "tfg:block/grass/rusticus_top_2" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/grass/sangnum_mycelium_side.json b/kubejs/assets/tfg/models/block/grass/sangnum_mycelium_side.json new file mode 100644 index 000000000..66be91d17 --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/sangnum_mycelium_side.json @@ -0,0 +1,8 @@ +{ + "parent": "tfc:block/grass_side", + "textures": { + "texture": "tfg:block/grass/mars_dirt", + "overlay": "tfg:block/grass/sangnum_side", + "particle": "tfg:block/grass/sangnum_side" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/grass/sangnum_mycelium_top.json b/kubejs/assets/tfg/models/block/grass/sangnum_mycelium_top.json new file mode 100644 index 000000000..9fda23833 --- /dev/null +++ b/kubejs/assets/tfg/models/block/grass/sangnum_mycelium_top.json @@ -0,0 +1,7 @@ +{ + "parent": "tfc:block/grass_top", + "textures": { + "overlay": "tfg:block/grass/sangnum_top", + "particle": "tfg:block/grass/sangnum_top" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/block/semiheavy_ammoniacal_water.json b/kubejs/assets/tfg/models/block/semiheavy_ammoniacal_water.json new file mode 100644 index 000000000..f298cabc3 --- /dev/null +++ b/kubejs/assets/tfg/models/block/semiheavy_ammoniacal_water.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "minecraft:block/water_still" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/grass/amber_mycelium.json b/kubejs/assets/tfg/models/item/grass/amber_mycelium.json new file mode 100644 index 000000000..7ec055dbc --- /dev/null +++ b/kubejs/assets/tfg/models/item/grass/amber_mycelium.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "0": "tfg:block/grass/mars_dirt", + "1": "tfg:block/grass/amber_side_1", + "2": "tfg:block/grass/amber_top", + "particle": "#2" + }, + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { + "texture": "#1" + }, + "east": { + "texture": "#1" + }, + "south": { + "texture": "#1" + }, + "west": { + "texture": "#1" + }, + "up": { + "texture": "#2" + }, + "down": { + "texture": "#0" + } + } + } + ], + "display": {} +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/grass/mars_dirt.json b/kubejs/assets/tfg/models/item/grass/mars_dirt.json new file mode 100644 index 000000000..4839b278c --- /dev/null +++ b/kubejs/assets/tfg/models/item/grass/mars_dirt.json @@ -0,0 +1,3 @@ +{ + "parent": "tfg:block/grass/mars_dirt" +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/grass/rusticus_mycelium.json b/kubejs/assets/tfg/models/item/grass/rusticus_mycelium.json new file mode 100644 index 000000000..795350fbe --- /dev/null +++ b/kubejs/assets/tfg/models/item/grass/rusticus_mycelium.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "0": "tfg:block/grass/mars_dirt", + "1": "tfg:block/grass/rusticus_side_1", + "2": "tfg:block/grass/rusticus_top_1", + "particle": "#2" + }, + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { + "texture": "#1" + }, + "east": { + "texture": "#1" + }, + "south": { + "texture": "#1" + }, + "west": { + "texture": "#1" + }, + "up": { + "texture": "#2" + }, + "down": { + "texture": "#0" + } + } + } + ], + "display": {} +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/grass/sangnum_mycelium.json b/kubejs/assets/tfg/models/item/grass/sangnum_mycelium.json new file mode 100644 index 000000000..9feca48ba --- /dev/null +++ b/kubejs/assets/tfg/models/item/grass/sangnum_mycelium.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "0": "tfg:block/grass/mars_dirt", + "1": "tfg:block/grass/sangnum_side", + "2": "tfg:block/grass/sangnum_top", + "particle": "#2" + }, + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "faces": { + "north": { + "texture": "#1" + }, + "east": { + "texture": "#1" + }, + "south": { + "texture": "#1" + }, + "west": { + "texture": "#1" + }, + "up": { + "texture": "#2" + }, + "down": { + "texture": "#0" + } + } + } + ], + "display": {} +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/block/grass/amber_side_1.png b/kubejs/assets/tfg/textures/block/grass/amber_side_1.png new file mode 100644 index 0000000000000000000000000000000000000000..3be4db86739e8121a066af8a3ad4ff2425c7e0af GIT binary patch literal 678 zcmV;X0$KfuP)k;m z!YtG41b~go0^mW<$jjskvFM*oWu6)dlH_|V^`aOY#Tk}*k)>WFSBNq4GNU*{t`Lj< z>f{PB%D_>;2{7{V|5tqvARP`PQ9o2FGjJ57QJkT+qmkKEX`9zV;=oauUqpg!_%mP@ zX31=-!r~~-pj5MSBtHdyJCi6CWUARY0MqM)QJldIXFv{^vvFs+>I9s+OB8^Cqj2gj zDL0=p?w#BXLp3|c4QFh3I{Z31!VO^*=czgY00*xQP)^+?0Nb4o080HCm;E0AxFNiK z_lC$1u*wIN>N=l4eZdV=TN}XI$M>&qqhx_qE>f!NxP2d0lL6@26PngKJ$r&xPSdx? zo~Vb@0Lj|YX!s>3N5q3)$B&}55Hd!1qsT1 znW`q^_I=?M;PTMtWw(K<$y5s}!)YMcd-f###ud0{Pq>=h2n+jrI~?*mwKh(zt@4V3 zgl@Zm)UzkzHLF}i`MacLR@mR$5o)Y0oo>5!7aA>n20+bF0hpxo|7sN=t5(s8sG$Qh+C38hC5jMG{Quhb0Qf*!xtKgFSG}_ z!bIQ;`7_t`&1Z~%#)w2m>*%aCWbMGZK^a Rt)&%_rRZ{EEoOax&faKntz?ub== z88^(Bq;r%gBCA$u=`+3_D=dB7>fF8B$cju?D;pTC6#(o;mB*b5=`<#d7wmo6qh8i& z>9eA_;yi!B;prpJ0~I&SaGtht>^hEJ#|t9TX^iWI0E~7=56H%o7}Z{{;C>T?i7YV8 z5=O=3>THT**KxhDAUQZZDQfnAT+p|gEPeX$_RddI`c{+iBqm+Vi*ecwIkuzIO8{2& zWdN?lEnAyU3nJPzli{F?W7i9_VV3AyP5M@oYjIngAMF1ojTfl*F%7fC z)!7sPFObW0aWLiOu!~`qXq64dleoCu^+LIcx!LtXuElK;VQ0I?0VgtAAfq{U9e^}m zFdTGI@)yo2)IS-0tI5uGub{ElD+~u+jFO7?Yl=}Z3tGi)RPllcqa@eaXss0E%jwd1 zK{}1G*DLa}?`H+2YM3Pmpj|ULI=!TCH4CEq$hpoR(e*+cyUt(EK`D_LBF|<30000< KMNUMnLSTY9wk_iT literal 0 HcmV?d00001 diff --git a/kubejs/assets/tfg/textures/block/grass/amber_side_3.png b/kubejs/assets/tfg/textures/block/grass/amber_side_3.png new file mode 100644 index 0000000000000000000000000000000000000000..64a6b310484c43d3218409052422b63f44cdbc30 GIT binary patch literal 660 zcmV;F0&D$=P) z!(5X9$eGDFS&$#s68h~T6uQnF2P1y~$Q*~vaWr@&m;VE2jsw6rSt#;kg80&31yCSN z<^#z%5sc(ARdWsq0F23mi%{Kfxf#Rr7!U{rLU+u`52fdmNBueN`X4gKp$7C$=LkQ_ zXqF6y=P@I>N;H#zq**cmp&J8ixh5B(;3=xEngZc#mtoTvJNUoAAUwZ%U&25t2C!UP{VpUfFxc+vgfqAIwFSZHvz&s(qD?2=XR^)0h z#j*X9@<=}81Kgx(^l4vIJIvu>S zgJl=!^)IQpwz4pqCA8`lhU1urcD%Amzt_J6VBLJAtjQZ*Za-1$P0|IedW9gIP;+g% z?FLP+q{)_DpjEHXs#my{H~Rkg^G}jEMKrwv+nmZUf6MP+hYa zj$=LD4MlFh24KoEt$kwQw$!iHcF?%f5lyw5T3I4>5+HiRpJ zz0g=Rjm)CF%`mRC>(uG<+FP;P0c=GFpA< zPJp%+(0R*j5>^BC{oSX;fI^a6*sBJc}j8=!{|EU14NdTs0w7S=Hxt^d- zPlI%y>l+Hp(*i&(_qhURrPnl^^A1&vprMh`a2tnOkY1CcUCh6BLnFue1Z2NoF4t2P z7RqtjikCm&TFf@|nCjaIwX z(1>fWRjU{aOl(zFyU$gx4Cg$MOGmvXzt&a-+?AA>_gy*~&0{!r90o~#nmU{mK9}dv zlHpODC!3xI>dOu)IN~Xi9Op#-^Zg{La=D(o+Rz+czdqh>9c13} sYdX4esRERbV#clep|=SV8s;tk1rE?41r57|g8%>k07*qoM6N<$f*;(?2mk;8 literal 0 HcmV?d00001 diff --git a/kubejs/assets/tfg/textures/block/grass/mars_dirt.png b/kubejs/assets/tfg/textures/block/grass/mars_dirt.png new file mode 100644 index 0000000000000000000000000000000000000000..8ff05bee91967cba28d13e3d2da9915d80adf7fa GIT binary patch literal 4790 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 literal 0 HcmV?d00001 diff --git a/kubejs/assets/tfg/textures/block/grass/rusticus_top_2.png b/kubejs/assets/tfg/textures/block/grass/rusticus_top_2.png new file mode 100644 index 0000000000000000000000000000000000000000..43d50bce963918d2385c3f290903f1ce06a3131e GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!P=HT}>+imlFV((JGJLLtdL8k1 z+ve@OnMb)BD4XZ$;uuoF$a;{Gk%58dkizqt|EJpDTuRj|Ww-29DCtXMJy^zWJndGV zT*&0?kv(V=VHn5%y}P7+-=4WNcl|&Ua(F2*LP?EcwF-5q zsTC0iKT0PDZIwcy3WBR5I5;_oP{F0Rh?}AgZep>tOIsqQm9tG^ljf3Kdbz|TO&ngy z_B{XRrVcP*pjcOHu>~w0Bw)Ci?0AMNCQUPd`=IeC;0KOLrOl-9R z81wl!0BmbiQCMM8(>82-Qq#HwL8CN4X=^fW7`%@V!f}M-)-0>pY!Z$m&1M_Wtk)}z zhR5MpGED%vYL)VQzE)4bF78z#0YFvUk00H5olJ&QIc^vl zrOU-)OgHY{jxL$z#-}v^vr}VlQYr4?y^HhP+W>M&^TFIWk;H{m3c&TN!>Z!;9Fiuk zo%vBJ5s_a_>`vV}-!^~ea;8)s@OG#3R(b#b6W+c3HaC4?HL(leK!*dsUZr;ONFM-x zG!h8*$$GZnm0gGXd)-73h4#}Y`iaPUI!Ldpb33;e?2|J^JN>KZmZ%U?<(O`$ikpah zE@=YLvjqS6lFMq_P!NWH9o?cM5v)s4A#F&}0cR0tSKhWetxI=) zg}hdw&)`>Zwpq%w1X>7|B{%419bLMZaPU(9nHhaE|F8X6ecsg#fUIhS#}B6-KxkWu z%axwS5divRN(GR(yp#g~0Ndh7qACTD-rg_(G&PMQdRQ+-RyFIT@J%Cex$wB^%=Wqd zfjf@Q9GyMAR`WbNI&0tqajt>|fX(mcQV!xON?fjg^)H3TcXgv_2rM(J>TlxX z<34Z4kr=Y7ZpX2krmQ?(I~V$=#bscbySgcQscC4((V3^fGP`M_|CDlYboS*c_|tYz zuN5Ou-!#%VI!98~w1C2UyV80oe*StE9w#aq|F=5{k3-69=VDhkfn{nM^zZNA5r**i zwm5dv)Q%%9Q1p^G&!;d7!a2rzDM~pUPQ7m$q^Q@dY8V+#{+DuC1&eH-li#6j`KCeU zgtkS8W?9ux1^Ggq!sE)8#N~%mPccj5h*1)$+c%BPOMdP&-Eb8wHZM65G8M*M-4KIH eF6nelwd#L+dnw{V?HvmM0000 { event.add('ad_astra:mars_stone_replaceables', 'tfc:sand/black') event.add('ad_astra:mars_stone_replaceables', 'tfc:sand/red') event.add('ad_astra:mars_stone_replaceables', 'tfc:sand/pink') - + + event.add('tfc:can_carve', '#ad_astra:moon_stone_replaceables') + event.add('tfc:can_carve', '#ad_astra:mars_stone_replaceables') event.add('minecraft:rabbits_spawnable_on', '#ad_astra:moon_stone_replaceables') event.add('species:limpet_spawnable_on', '#ad_astra:moon_stone_replaceables') @@ -265,7 +267,6 @@ const registerAdAstraBlockTags = (event) => { event.add('tfg:rock_slabs', 'ad_astra:glacio_stone_slab') event.add('ad_astra:destroyed_in_space', '#minecraft:saplings') - event.remove('ad_astra:destroyed_in_space', 'ad_astra:glacian_leaves') } const registerAdAstraBiomeTags = (event) => { diff --git a/kubejs/server_scripts/tfg/recipes.collapse.js b/kubejs/server_scripts/tfg/recipes.collapse.js index 2d1fefc91..48501107c 100644 --- a/kubejs/server_scripts/tfg/recipes.collapse.js +++ b/kubejs/server_scripts/tfg/recipes.collapse.js @@ -58,5 +58,10 @@ function registerTFGCollapseRecipes(event) { event.recipes.tfc.collapse('gtceu:red_granite_cobblestone', 'gtceu:red_granite') event.recipes.tfc.collapse('gtceu:red_granite_cobblestone', 'tfg:rock/hardened_red_granite') event.recipes.tfc.collapse('gtceu:red_granite_cobblestone', '#forge:ores_in_ground/red_granite') + + event.recipes.tfc.landslide('tfg:grass/mars_dirt', 'tfg:grass/mars_dirt') + event.recipes.tfc.landslide('tfg:grass/mars_dirt', 'tfg:grass/amber_mycelium') + event.recipes.tfc.landslide('tfg:grass/mars_dirt', 'tfg:grass/rusticus_mycelium') + event.recipes.tfc.landslide('tfg:grass/mars_dirt', 'tfg:grass/sangnum_mycelium') // #endregion } \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/tags.js b/kubejs/server_scripts/tfg/tags.js index 667b30fb3..6f37981ea 100644 --- a/kubejs/server_scripts/tfg/tags.js +++ b/kubejs/server_scripts/tfg/tags.js @@ -244,6 +244,12 @@ const registerTFGItemTags = (event) => { // #region Space blocks event.add('tfg:moon_plants', 'tfg:lunar_roots') event.add('tfg:moon_plants', 'tfg:lunar_sprouts') + + event.add('minecraft:dirt', 'tfg:grass/mars_dirt') + event.add('tfc:dirt', 'tfg:grass/mars_dirt') + event.add('tfc:grass', 'tfg:grass/amber_mycelium') + event.add('tfc:grass', 'tfg:grass/rusticus_mycelium') + event.add('tfc:grass', 'tfg:grass/sangnum_mycelium') // #endregion // #region 0.7.19 -> 0.9 conversion @@ -356,8 +362,8 @@ const registerTFGBlockTags = (event) => { event.add('tfc:crops', 'tfg:sunflower') event.add('tfc:mineable_with_sharp_tool','tfg:sunflower') - // #region Nether blocks + // #region Nether blocks event.add('minecraft:nether_carver_replaceables', 'tfg:rock/hardened_deepslate') event.add('minecraft:moss_replaceable', 'tfg:rock/hardened_deepslate') event.add('minecraft:base_stone_nether', 'tfg:rock/hardened_deepslate') @@ -376,6 +382,22 @@ const registerTFGBlockTags = (event) => { event.add('minecraft:nether_carver_replaceables', 'tfg:rock/hardened_dripstone') event.add('minecraft:base_stone_nether', 'tfg:rock/hardened_dripstone') event.add('tfc:rock/hardened', 'tfg:rock/hardened_dripstone') + // #endregion + + // #region Mars blocks + event.add('minecraft:dirt', 'tfg:grass/mars_dirt') + event.add('tfc:dirt', 'tfg:grass/mars_dirt') + event.add('tfc:grass', 'tfg:grass/amber_mycelium') + event.add('tfc:grass', 'tfg:grass/rusticus_mycelium') + event.add('tfc:grass', 'tfg:grass/sangnum_mycelium') + event.add('tfg:do_not_destroy_in_space', 'tfg:grass/amber_mycelium') + event.add('tfg:do_not_destroy_in_space', 'tfg:grass/rusticus_mycelium') + event.add('tfg:do_not_destroy_in_space', 'tfg:grass/sangnum_mycelium') + event.add('tfc:can_landslide', 'tfg:grass/mars_dirt') + event.add('tfc:can_landslide', 'tfg:grass/amber_mycelium') + event.add('tfc:can_landslide', 'tfg:grass/rusticus_mycelium') + event.add('tfc:can_landslide', 'tfg:grass/sangnum_mycelium') + // #endregion event.add('tfg:harvester_harvestable', '#tfc:fruit_tree_leaves') event.add('tfg:harvester_harvestable', '#tfc:berry_bushes') @@ -388,7 +410,6 @@ const registerTFGBlockTags = (event) => { event.add('forge:mineable/wrench', 'tfg:superconductor_coil_small') event.add('forge:mineable/wrench', 'tfg:electromagnetic_accelerator') - // #endregion } //#endregion diff --git a/kubejs/startup_scripts/tfg/blocks.js b/kubejs/startup_scripts/tfg/blocks.js index 760696f4d..feab89736 100644 --- a/kubejs/startup_scripts/tfg/blocks.js +++ b/kubejs/startup_scripts/tfg/blocks.js @@ -1,175 +1,175 @@ -"use strict"; - -const registerTFGBlocks = (event) => { - - registerTFGNetherBlocks(event) - registerTFGSpaceBlocks(event) - registerTFGSupportBlocks(event) - registerTFGCrops(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' }) - }) - - event.create('tfg:dry_ice', 'tfg:particle_emitter') - .textureAll('tfg:block/dry_ice') - .soundType('bone_block') - .hardness(1) - .resistance(1) - .tagBlock('minecraft:mineable/pickaxe') - .tagBlock('tfcambiental:cold_stuff') - .defaultTranslucent() - .mapColor('color_white') - .speedFactor(1.2) - .particleOffset(1, 1, 1) - .particleVelocity(0.05, 0, 0.05) - .particle('minecraft:campfire_cosy_smoke') - .particleCount(2) - .particleForced(false) - - // #region Machine Casings - - global.TFG_MACHINE_CASINGS.forEach(type => { - event.create(`tfg:casings/${type}`) - .translationKey(`block.tfg.casings.${type}`) - .model(`tfg:block/casings/${type}`) - .soundType('copper') - .hardness(5) - .resistance(6) - .tagBlock('minecraft:mineable/pickaxe') - .mapColor('color_light_gray') - }) - - //#endregion - - // #region Decorative vases - global.MINECRAFT_DYE_NAMES.forEach(color => { - event.create(`tfg:decorative_vase/generated/${color}`, 'cardinal') - .model(`tfg:block/decorative_vase/loot_vase_${color}`) - .soundType('decorated_pot') - .hardness(0.7) - .tagBlock('minecraft:mineable/pickaxe') - .mapColor(`color_${color}`) - .box(2, 0, 2, 14, 20, 14) - .fullBlock(false) - .opaque(false) - .renderType('cutout') - - event.create(`tfg:decorative_vase/${color}`, 'cardinal') - .model(`tfg:block/decorative_vase/vase_${color}`) - .soundType('decorated_pot') - .hardness(0.7) - .tagBlock('minecraft:mineable/pickaxe') - .mapColor(`color_${color}`) - .box(2, 0, 2, 14, 20, 14) - .fullBlock(false) - .opaque(false) - .renderType('cutout') - .blockEntity(be => { - be.attach('tfc:inventory', { - width: 9, - height: 1, - size: size => size.isSmallerThan('large') - }) - be.rightClickOpensInventory() - }) - - event.create(`tfg:decorative_vase/unfired/${color}`, 'cardinal') - .model(`tfg:block/decorative_vase/vase_unfired_${color}`) - .soundType('decorated_pot') - .hardness(0.7) - .tagBlock('minecraft:mineable/pickaxe') - .mapColor(`color_${color}`) - .box(2, 0, 2, 14, 20, 14) - .fullBlock(false) - .opaque(false) - .renderType('cutout') - }) - event.create('tfg:decorative_vase', 'cardinal') - .model('tfg:block/decorative_vase/vase') - .soundType('decorated_pot') - .hardness(0.7) - .tagBlock('minecraft:mineable/pickaxe') - .mapColor(`color_gray`) - .box(2, 0, 2, 14, 20, 14) - .fullBlock(false) - .opaque(false) - .renderType('cutout') - .blockEntity(be => { - be.attach('tfc:inventory', { - width: 9, - height: 1, - size: size => size.isSmallerThan('large') - }) - be.rightClickOpensInventory() - }) - - event.create('tfg:decorative_vase/unfired', 'cardinal') - .model('tfg:block/decorative_vase/vase_unfired') - .soundType('decorated_pot') - .hardness(0.7) - .tagBlock('minecraft:mineable/pickaxe') - .mapColor(`color_gray`) - .box(2, 0, 2, 14, 20, 14) - .fullBlock(false) - .opaque(false) - .renderType('cutout') - - // #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 - - event.create('treetap:tap') - .requiresTool(false) - .textureAll('tfg:item/deprecated') - - event.create('tfcea:refrigerator') - .requiresTool(false) - .textureAll('tfg:item/deprecated') - - // #endregion -} +"use strict"; + +const registerTFGBlocks = (event) => { + + registerTFGNetherBlocks(event) + registerTFGSpaceBlocks(event) + registerTFGSupportBlocks(event) + registerTFGCrops(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' }) + }) + + event.create('tfg:dry_ice', 'tfg:particle_emitter') + .textureAll('tfg:block/dry_ice') + .soundType('bone_block') + .hardness(1) + .resistance(1) + .tagBlock('minecraft:mineable/pickaxe') + .tagBlock('tfcambiental:cold_stuff') + .defaultTranslucent() + .mapColor('color_white') + .speedFactor(1.2) + .particleOffset(1, 1, 1) + .particleVelocity(0.05, 0, 0.05) + .particle('minecraft:campfire_cosy_smoke') + .particleCount(2) + .particleForced(false) + + // #region Machine Casings + + global.TFG_MACHINE_CASINGS.forEach(type => { + event.create(`tfg:casings/${type}`) + .translationKey(`block.tfg.casings.${type}`) + .model(`tfg:block/casings/${type}`) + .soundType('copper') + .hardness(5) + .resistance(6) + .tagBlock('minecraft:mineable/pickaxe') + .mapColor('color_light_gray') + }) + + //#endregion + + // #region Decorative vases + global.MINECRAFT_DYE_NAMES.forEach(color => { + event.create(`tfg:decorative_vase/generated/${color}`, 'cardinal') + .model(`tfg:block/decorative_vase/loot_vase_${color}`) + .soundType('decorated_pot') + .hardness(0.7) + .tagBlock('minecraft:mineable/pickaxe') + .mapColor(`color_${color}`) + .box(2, 0, 2, 14, 20, 14) + .fullBlock(false) + .opaque(false) + .renderType('cutout') + + event.create(`tfg:decorative_vase/${color}`, 'cardinal') + .model(`tfg:block/decorative_vase/vase_${color}`) + .soundType('decorated_pot') + .hardness(0.7) + .tagBlock('minecraft:mineable/pickaxe') + .mapColor(`color_${color}`) + .box(2, 0, 2, 14, 20, 14) + .fullBlock(false) + .opaque(false) + .renderType('cutout') + .blockEntity(be => { + be.attach('tfc:inventory', { + width: 9, + height: 1, + size: size => size.isSmallerThan('large') + }) + be.rightClickOpensInventory() + }) + + event.create(`tfg:decorative_vase/unfired/${color}`, 'cardinal') + .model(`tfg:block/decorative_vase/vase_unfired_${color}`) + .soundType('decorated_pot') + .hardness(0.7) + .tagBlock('minecraft:mineable/pickaxe') + .mapColor(`color_${color}`) + .box(2, 0, 2, 14, 20, 14) + .fullBlock(false) + .opaque(false) + .renderType('cutout') + }) + event.create('tfg:decorative_vase', 'cardinal') + .model('tfg:block/decorative_vase/vase') + .soundType('decorated_pot') + .hardness(0.7) + .tagBlock('minecraft:mineable/pickaxe') + .mapColor(`color_gray`) + .box(2, 0, 2, 14, 20, 14) + .fullBlock(false) + .opaque(false) + .renderType('cutout') + .blockEntity(be => { + be.attach('tfc:inventory', { + width: 9, + height: 1, + size: size => size.isSmallerThan('large') + }) + be.rightClickOpensInventory() + }) + + event.create('tfg:decorative_vase/unfired', 'cardinal') + .model('tfg:block/decorative_vase/vase_unfired') + .soundType('decorated_pot') + .hardness(0.7) + .tagBlock('minecraft:mineable/pickaxe') + .mapColor(`color_gray`) + .box(2, 0, 2, 14, 20, 14) + .fullBlock(false) + .opaque(false) + .renderType('cutout') + + // #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 + + event.create('treetap:tap') + .requiresTool(false) + .textureAll('tfg:item/deprecated') + + event.create('tfcea:refrigerator') + .requiresTool(false) + .textureAll('tfg:item/deprecated') + + // #endregion +} diff --git a/kubejs/startup_scripts/tfg/fluids.js b/kubejs/startup_scripts/tfg/fluids.js index 195cb2301..6e2670ff9 100644 --- a/kubejs/startup_scripts/tfg/fluids.js +++ b/kubejs/startup_scripts/tfg/fluids.js @@ -32,11 +32,6 @@ const registerTFGFluids = (event) => { .noBlock() //#region Mars - event.create('tfg:semiheavy_ammoniacal_water') - .thinTexture(0x704f786c) - .color(0x4f786c) - .temperature(213) - .renderType('translucent') //#endregion //#region Venus