diff options
Diffstat (limited to 'src/main/resources/assets/tinkerscompendium/blockstates')
3 files changed, 152 insertions, 0 deletions
diff --git a/src/main/resources/assets/tinkerscompendium/blockstates/fluid_block.json b/src/main/resources/assets/tinkerscompendium/blockstates/fluid_block.json new file mode 100644 index 0000000..a6a3b4e --- /dev/null +++ b/src/main/resources/assets/tinkerscompendium/blockstates/fluid_block.json @@ -0,0 +1,134 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "forge:fluid" + }, + "variants": { + "aeonsteel_fluid": [ + { + "custom": { + "fluid": "aeonsteel_fluid" + } + } + ], + "queensgold_fluid": [ + { + "custom": { + "fluid": "queensgold_fluid" + } + } + ], + "dogbearium_fluid": [ + { + "custom": { + "fluid": "dogbearium_fluid" + } + } + ], + "vile_fluid": [ + { + "custom": { + "fluid": "vile_fluid" + } + } + ], + "redcandy_fluid": [ + { + "custom": { + "fluid": "redcandy_fluid" + } + } + ], + "greencandy_fluid": [ + { + "custom": { + "fluid": "greencandy_fluid" + } + } + ], + "sinisterium_fluid": [ + { + "custom": { + "fluid": "sinisterium_fluid" + } + } + ], + "nihilite_fluid": [ + { + "custom": { + "fluid": "nihilite_fluid" + } + } + ], + "vibrant_fluid": [ + { + "custom": { + "fluid": "vibrant_fluid" + } + } + ], + "orichalcum_fluid": [ + { + "custom": { + "fluid": "orichalcum_fluid" + } + } + ], + "pandorium_fluid": [ + { + "custom": { + "fluid": "pandorium_fluid" + } + } + ], + "chorusjuice_fluid": [ + { + "custom": { + "fluid": "chorusjuice_fluid" + } + } + ], + "dragonsbreath_fluid": [ + { + "custom": { + "fluid": "dragonsbreath_fluid" + } + } + ], + "rosegold_fluid": [ + { + "custom": { + "fluid": "rosegold_fluid" + } + } + ], + "platinum_fluid": [ + { + "custom": { + "fluid": "platinum_fluid" + } + } + ], + "brass_fluid": [ + { + "custom": { + "fluid": "brass_fluid" + } + } + ], + "silver_fluid": [ + { + "custom": { + "fluid": "silver_fluid" + } + } + ], + "cheese_fluid": [ + { + "custom": { + "fluid": "cheese_fluid" + } + } + ] + } +}
\ No newline at end of file diff --git a/src/main/resources/assets/tinkerscompendium/blockstates/metalblock.json b/src/main/resources/assets/tinkerscompendium/blockstates/metalblock.json new file mode 100644 index 0000000..5d8d5c1 --- /dev/null +++ b/src/main/resources/assets/tinkerscompendium/blockstates/metalblock.json @@ -0,0 +1,7 @@ +{ + "variants": { + "type=aeonsteel": { "model":"tinkerscompendium:blocks/aeonsteelblock" }, + "type=queensgold": { "model":"tutorial:block_properties_black" } + "type=dogbearium": { "model":"tutorial:block_properties_black" } + } +}
\ No newline at end of file diff --git a/src/main/resources/assets/tinkerscompendium/blockstates/redcandyblock.json b/src/main/resources/assets/tinkerscompendium/blockstates/redcandyblock.json new file mode 100644 index 0000000..b22a32b --- /dev/null +++ b/src/main/resources/assets/tinkerscompendium/blockstates/redcandyblock.json @@ -0,0 +1,11 @@ +{ + "forge_marker": 1, + "defaults": { + "transform": "forge:default-block", + "model": "cube_all", + "textures": { + "all": "tinkerscompendium:blocks/redmintblock", + "particle": "#all" + } + } +}
\ No newline at end of file |
