-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added model/textures/tags for the Thermoregulator
- Loading branch information
Showing
26 changed files
with
253 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
common/src/generated/resources/.cache/d6a68f98580d9908a43dbfe9cc754bc0c1ac14b0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// 1.20.4 2024-01-02T16:58:35.4458416 Tags for minecraft:block mod id toughasnails | ||
// 1.20.4 2024-01-04T08:50:19.999926 Tags for minecraft:block mod id toughasnails | ||
dfed6a08d97cca915d349d312f18532c01063afa data/minecraft/tags/blocks/mineable/axe.json | ||
204b99a448ab27dca7519b0ea2c4e0a422b1f12a data/minecraft/tags/blocks/mineable/pickaxe.json | ||
eed9ca8217c04724f67008aba1a0a5edde5697c2 data/toughasnails/tags/blocks/cooling_blocks.json | ||
d4134d307e68e7865444c0d1d1ab81babc6a27ff data/toughasnails/tags/blocks/heating_blocks.json | ||
658fab0118eb1ac9896e1b9ab89f2d5ed055a967 data/toughasnails/tags/blocks/heating_blocks.json |
1 change: 1 addition & 0 deletions
1
common/src/generated/resources/data/toughasnails/tags/blocks/heating_blocks.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"values": [ | ||
"minecraft:fire", | ||
"minecraft:campfire", | ||
"minecraft:lantern", | ||
"minecraft:lava", | ||
|
11 changes: 11 additions & 0 deletions
11
...on/src/generated/resources/data/toughasnails/tags/items/thermoregulator_cooling_fuel.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"values": [ | ||
"minecraft:ice", | ||
"minecraft:packed_ice", | ||
"minecraft:blue_ice", | ||
"minecraft:snowball", | ||
"minecraft:snow", | ||
"minecraft:snow_block", | ||
"minecraft:powder_snow_bucket" | ||
] | ||
} |
12 changes: 12 additions & 0 deletions
12
...on/src/generated/resources/data/toughasnails/tags/items/thermoregulator_heating_fuel.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"values": [ | ||
"minecraft:magma_block", | ||
"minecraft:magma_cream", | ||
"minecraft:blaze_powder", | ||
"minecraft:blaze_rod", | ||
"minecraft:coal", | ||
"minecraft:charcoal", | ||
"minecraft:coal_block", | ||
"minecraft:lava_bucket" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
common/src/main/resources/assets/toughasnails/blockstates/thermoregulator.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
{ | ||
"multipart": [ | ||
{ | ||
"apply": { | ||
"model": "toughasnails:block/thermoregulator_lower_inactive" | ||
}, | ||
"when": { | ||
"cooling": "false" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "toughasnails:block/thermoregulator_lower_active" | ||
}, | ||
"when": { | ||
"cooling": "true" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "toughasnails:block/thermoregulator_upper_inactive" | ||
}, | ||
"when": { | ||
"heating": "false" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "toughasnails:block/thermoregulator_upper_active" | ||
}, | ||
"when": { | ||
"heating": "true" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "toughasnails:block/thermoregulator_top_cool_inactive" | ||
}, | ||
"when": { | ||
"cooling": "false" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "toughasnails:block/thermoregulator_top_cool_active" | ||
}, | ||
"when": { | ||
"cooling": "true" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "toughasnails:block/thermoregulator_top_heat_inactive" | ||
}, | ||
"when": { | ||
"heating": "false" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "toughasnails:block/thermoregulator_top_heat_active" | ||
}, | ||
"when": { | ||
"heating": "true" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
common/src/main/resources/assets/toughasnails/models/block/thermoregulator.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"parent": "minecraft:block/cube_bottom_top", | ||
"textures": { | ||
"bottom": "minecraft:block/blast_furnace_top", | ||
"side": "toughasnails:block/thermoregulator_side_inactive", | ||
"top": "toughasnails:block/thermoregulator_top_inactive" | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
common/src/main/resources/assets/toughasnails/models/block/thermoregulator_lower_active.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"textures": { | ||
"particle": "toughasnails:block/thermoregulator_side_active", | ||
"side": "toughasnails:block/thermoregulator_side_active", | ||
"bottom": "minecraft:block/blast_furnace_top" | ||
}, | ||
"elements": [ | ||
{ | ||
"from": [0, 0, 0], | ||
"to": [16, 8, 16], | ||
"faces": { | ||
"north": {"uv": [0, 8, 16, 16], "texture": "#side"}, | ||
"east": {"uv": [0, 8, 16, 16], "texture": "#side"}, | ||
"south": {"uv": [0, 8, 16, 16], "texture": "#side"}, | ||
"west": {"uv": [0, 8, 16, 16], "texture": "#side"}, | ||
"down": {"uv": [0, 0, 16, 16], "texture": "#bottom"} | ||
} | ||
} | ||
] | ||
} |
20 changes: 20 additions & 0 deletions
20
...n/src/main/resources/assets/toughasnails/models/block/thermoregulator_lower_inactive.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"textures": { | ||
"particle": "toughasnails:block/thermoregulator_side_inactive", | ||
"side": "toughasnails:block/thermoregulator_side_inactive", | ||
"bottom": "minecraft:block/blast_furnace_top" | ||
}, | ||
"elements": [ | ||
{ | ||
"from": [0, 0, 0], | ||
"to": [16, 8, 16], | ||
"faces": { | ||
"north": {"uv": [0, 8, 16, 16], "texture": "#side"}, | ||
"east": {"uv": [0, 8, 16, 16], "texture": "#side"}, | ||
"south": {"uv": [0, 8, 16, 16], "texture": "#side"}, | ||
"west": {"uv": [0, 8, 16, 16], "texture": "#side"}, | ||
"down": {"uv": [0, 0, 16, 16], "texture": "#bottom"} | ||
} | ||
} | ||
] | ||
} |
15 changes: 15 additions & 0 deletions
15
...c/main/resources/assets/toughasnails/models/block/thermoregulator_top_cooling_active.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"textures": { | ||
"particle": "toughasnails:block/thermoregulator_top_active" | ||
"top": "toughasnails:block/thermoregulator_top_active" | ||
}, | ||
"elements": [ | ||
{ | ||
"from": [8, 16, 0], | ||
"to": [16, 16, 16], | ||
"faces": { | ||
"up": {"uv": [8, 0, 16, 16], "texture": "#top"} | ||
} | ||
} | ||
] | ||
} |
15 changes: 15 additions & 0 deletions
15
...main/resources/assets/toughasnails/models/block/thermoregulator_top_cooling_inactive.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"textures": { | ||
"particle": "toughasnails:block/thermoregulator_top_inactive" | ||
"top": "toughasnails:block/thermoregulator_top_inactive" | ||
}, | ||
"elements": [ | ||
{ | ||
"from": [8, 16, 0], | ||
"to": [16, 16, 16], | ||
"faces": { | ||
"up": {"uv": [8, 0, 16, 16], "texture": "#top"} | ||
} | ||
} | ||
] | ||
} |
15 changes: 15 additions & 0 deletions
15
...c/main/resources/assets/toughasnails/models/block/thermoregulator_top_heating_active.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"textures": { | ||
"particle": "toughasnails:block/thermoregulator_top_active" | ||
"top": "toughasnails:block/thermoregulator_top_active" | ||
}, | ||
"elements": [ | ||
{ | ||
"from": [8, 16, 0], | ||
"to": [16, 16, 16], | ||
"faces": { | ||
"up": {"uv": [8, 0, 16, 16], "texture": "#top"} | ||
} | ||
} | ||
] | ||
} |
15 changes: 15 additions & 0 deletions
15
...main/resources/assets/toughasnails/models/block/thermoregulator_top_heating_inactive.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"textures": { | ||
"particle": "toughasnails:block/thermoregulator_top_inactive" | ||
"top": "toughasnails:block/thermoregulator_top_inactive" | ||
}, | ||
"elements": [ | ||
{ | ||
"from": [8, 16, 0], | ||
"to": [16, 16, 16], | ||
"faces": { | ||
"up": {"uv": [8, 0, 16, 16], "texture": "#top"} | ||
} | ||
} | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
common/src/main/resources/assets/toughasnails/models/block/thermoregulator_upper_active.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"textures": { | ||
"particle": "toughasnails:block/thermoregulator_side_active", | ||
"side": "toughasnails:block/thermoregulator_side_active" | ||
}, | ||
"elements": [ | ||
{ | ||
"from": [0, 8, 0], | ||
"to": [16, 16, 16], | ||
"faces": { | ||
"north": {"uv": [0, 0, 16, 8], "texture": "#side"}, | ||
"east": {"uv": [0, 0, 16, 8], "texture": "#side"}, | ||
"south": {"uv": [0, 0, 16, 8], "texture": "#side"}, | ||
"west": {"uv": [0, 0, 16, 8], "texture": "#side"} | ||
} | ||
} | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
...n/src/main/resources/assets/toughasnails/models/block/thermoregulator_upper_inactive.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"textures": { | ||
"particle": "toughasnails:block/thermoregulator_side_inactive", | ||
"side": "toughasnails:block/thermoregulator_side_inactive" | ||
}, | ||
"elements": [ | ||
{ | ||
"from": [0, 8, 0], | ||
"to": [16, 16, 16], | ||
"faces": { | ||
"north": {"uv": [0, 0, 16, 8], "texture": "#side"}, | ||
"east": {"uv": [0, 0, 16, 8], "texture": "#side"}, | ||
"south": {"uv": [0, 0, 16, 8], "texture": "#side"}, | ||
"west": {"uv": [0, 0, 16, 8], "texture": "#side"} | ||
} | ||
} | ||
] | ||
} |
3 changes: 3 additions & 0 deletions
3
common/src/main/resources/assets/toughasnails/models/item/thermoregulator.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"parent": "toughasnails:block/thermoregulator" | ||
} |
Binary file modified
BIN
+6 Bytes
(100%)
...resources/assets/toughasnails/textures/block/temperature_gauge_inverted_top.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+6 Bytes
(100%)
...src/main/resources/assets/toughasnails/textures/block/temperature_gauge_top.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+301 Bytes
...in/resources/assets/toughasnails/textures/block/thermoregulator_side_active.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+256 Bytes
.../resources/assets/toughasnails/textures/block/thermoregulator_side_inactive.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+332 Bytes
...ain/resources/assets/toughasnails/textures/block/thermoregulator_top_active.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+325 Bytes
...n/resources/assets/toughasnails/textures/block/thermoregulator_top_inactive.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters