diff options
| author | 2024-01-20 02:25:44 +0200 | |
|---|---|---|
| committer | 2024-01-20 02:25:44 +0200 | |
| commit | 88e4e8852a5f1c33794abe430411b73c3ade507a (patch) | |
| tree | b8a46554b8963269fbbbe5df21122513a5b87228 /assets/minecraft/blockstates/fire.json | |
| download | faithless16x-88e4e8852a5f1c33794abe430411b73c3ade507a.tar.gz faithless16x-88e4e8852a5f1c33794abe430411b73c3ade507a.tar.xz faithless16x-88e4e8852a5f1c33794abe430411b73c3ade507a.zip | |
Initial import
Diffstat (limited to 'assets/minecraft/blockstates/fire.json')
| -rwxr-xr-x | assets/minecraft/blockstates/fire.json | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/assets/minecraft/blockstates/fire.json b/assets/minecraft/blockstates/fire.json new file mode 100755 index 00000000..b05fc49d --- /dev/null +++ b/assets/minecraft/blockstates/fire.json | |||
| @@ -0,0 +1,57 @@ | |||
| 1 | { | ||
| 2 | "multipart": [ | ||
| 3 | { | ||
| 4 | "when": { | ||
| 5 | "up": "false", | ||
| 6 | "west": "false", | ||
| 7 | "east": "false", | ||
| 8 | "south": "false", | ||
| 9 | "north": "false" | ||
| 10 | }, | ||
| 11 | "apply": [ { "model": "minecraft:block/fire_floor0" } ] | ||
| 12 | }, | ||
| 13 | { | ||
| 14 | "when": { "OR": [ { "north": "true" } ] }, | ||
| 15 | "apply": [ | ||
| 16 | { "model": "minecraft:block/fire_side0" }, | ||
| 17 | { "model": "minecraft:block/fire_side1" }, | ||
| 18 | { "model": "minecraft:block/fire_side2" }, | ||
| 19 | { "model": "minecraft:block/fire_side3" } | ||
| 20 | ] | ||
| 21 | }, | ||
| 22 | { | ||
| 23 | "when": { "OR": [ { "east": "true" } ] }, | ||
| 24 | "apply": [ | ||
| 25 | { "model": "minecraft:block/fire_side0", "y": 90 }, | ||
| 26 | { "model": "minecraft:block/fire_side1", "y": 90 }, | ||
| 27 | { "model": "minecraft:block/fire_side2", "y": 90 }, | ||
| 28 | { "model": "minecraft:block/fire_side3", "y": 90 } | ||
| 29 | ] | ||
| 30 | }, | ||
| 31 | { | ||
| 32 | "when": { "OR": [ { "south": "true" } ] }, | ||
| 33 | "apply": [ | ||
| 34 | { "model": "minecraft:block/fire_side0", "y": 180 }, | ||
| 35 | { "model": "minecraft:block/fire_side1", "y": 180 }, | ||
| 36 | { "model": "minecraft:block/fire_side2", "y": 180 }, | ||
| 37 | { "model": "minecraft:block/fire_side3", "y": 180 } | ||
| 38 | ] | ||
| 39 | }, | ||
| 40 | { | ||
| 41 | "when": { "OR": [ { "west": "true" } ] }, | ||
| 42 | "apply": [ | ||
| 43 | { "model": "minecraft:block/fire_side0", "y": 270 }, | ||
| 44 | { "model": "minecraft:block/fire_side1", "y": 270 }, | ||
| 45 | { "model": "minecraft:block/fire_side2", "y": 270 }, | ||
| 46 | { "model": "minecraft:block/fire_side3", "y": 270 } | ||
| 47 | ] | ||
| 48 | }, | ||
| 49 | { | ||
| 50 | "when": { "up": "true" }, | ||
| 51 | "apply": [ | ||
| 52 | { "model": "minecraft:block/fire_up0" }, | ||
| 53 | { "model": "minecraft:block/fire_up0", "y": 90 } | ||
| 54 | ] | ||
| 55 | } | ||
| 56 | ] | ||
| 57 | } \ No newline at end of file | ||