diff options
| author | Robert Sosnitzka <robert.sosnitzka@gmail.com> | 2017-01-01 21:39:02 +0100 |
|---|---|---|
| committer | Robert Sosnitzka <robert.sosnitzka@gmail.com> | 2017-01-01 21:39:02 +0100 |
| commit | 18bd88e7f98bb62d704d933341599bbb7b2ce3c7 (patch) | |
| tree | d5d8336ee88d6cb7d4f539fdbe4d05eda9436395 /src/main/resources/assets/taiga/blockstates | |
| parent | 6b1a9d4b278c7f1b8dc0c4ca1c7b54dbb4e2fa59 (diff) | |
Added Dilithium Ore and assigned crystals. Added some Book pages as a test (need to be fixed before next release).
Removed deprecated stuff.
Removed 2016, Added 2017.
Diffstat (limited to 'src/main/resources/assets/taiga/blockstates')
3 files changed, 43 insertions, 0 deletions
diff --git a/src/main/resources/assets/taiga/blockstates/dilithium_block.json b/src/main/resources/assets/taiga/blockstates/dilithium_block.json new file mode 100644 index 0000000..9dddf6d --- /dev/null +++ b/src/main/resources/assets/taiga/blockstates/dilithium_block.json @@ -0,0 +1,18 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "taiga:blocks/block/dilithium" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [ + {} + ], + "inventory": [ + {} + ] + } +}
\ No newline at end of file diff --git a/src/main/resources/assets/taiga/blockstates/dilithium_ore.json b/src/main/resources/assets/taiga/blockstates/dilithium_ore.json new file mode 100644 index 0000000..c1ed6f6 --- /dev/null +++ b/src/main/resources/assets/taiga/blockstates/dilithium_ore.json @@ -0,0 +1,18 @@ +{ + "forge_marker": 1, + "defaults": { + "model": "minecraft:cube_all", + "textures": { + "all": "taiga:blocks/ore/dilithium" + }, + "transform": "forge:default-block" + }, + "variants": { + "normal": [ + {} + ], + "inventory": [ + {} + ] + } +}
\ No newline at end of file diff --git a/src/main/resources/assets/taiga/blockstates/fluid_block.json b/src/main/resources/assets/taiga/blockstates/fluid_block.json index 475cd6f..a367a7d 100644 --- a/src/main/resources/assets/taiga/blockstates/fluid_block.json +++ b/src/main/resources/assets/taiga/blockstates/fluid_block.json @@ -18,6 +18,13 @@ } } ], + "dilithium_fluid": [ + { + "custom": { + "fluid": "dilithium_fluid" + } + } + ], "nitronite_fluid": [ { "custom": { |
