diff options
Diffstat (limited to 'assets/minecraft/blockstates/barrel.json')
| -rwxr-xr-x | assets/minecraft/blockstates/barrel.json | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/assets/minecraft/blockstates/barrel.json b/assets/minecraft/blockstates/barrel.json new file mode 100755 index 00000000..e2b9775a --- /dev/null +++ b/assets/minecraft/blockstates/barrel.json | |||
| @@ -0,0 +1,52 @@ | |||
| 1 | { | ||
| 2 | "variants": { | ||
| 3 | "facing=up,open=false": [ | ||
| 4 | { "model": "minecraft:block/barrel", "y": 90 }, | ||
| 5 | { "model": "minecraft:block/barrel", "y": 180 }, | ||
| 6 | { "model": "minecraft:block/barrel", "y": 270 }, | ||
| 7 | { "model": "minecraft:block/barrel" } | ||
| 8 | ], | ||
| 9 | "facing=up,open=true": [ | ||
| 10 | { "model": "minecraft:block/barrel_open", "y": 90 }, | ||
| 11 | { "model": "minecraft:block/barrel_open", "y": 180 }, | ||
| 12 | { "model": "minecraft:block/barrel_open", "y": 270 }, | ||
| 13 | { "model": "minecraft:block/barrel_open" } | ||
| 14 | ], | ||
| 15 | "facing=down,open=false": [ | ||
| 16 | { "model": "minecraft:block/barrel", "x": 180, "y": 90 }, | ||
| 17 | { "model": "minecraft:block/barrel", "x": 180, "y": 180 }, | ||
| 18 | { "model": "minecraft:block/barrel", "x": 180, "y": 270 }, | ||
| 19 | { "model": "minecraft:block/barrel", "x": 180 } | ||
| 20 | ], | ||
| 21 | "facing=down,open=true": [ | ||
| 22 | { "model": "minecraft:block/barrel_down_open", "y": 90 }, | ||
| 23 | { "model": "minecraft:block/barrel_down_open", "y": 180 }, | ||
| 24 | { "model": "minecraft:block/barrel_down_open", "y": 270 }, | ||
| 25 | { "model": "minecraft:block/barrel_down_open" } | ||
| 26 | ], | ||
| 27 | "facing=east,open=false": { | ||
| 28 | "model": "minecraft:block/barrel", "x": 90, "y": 90 | ||
| 29 | }, | ||
| 30 | "facing=east,open=true": { | ||
| 31 | "model": "minecraft:block/barrel_side_open", "y": 90 | ||
| 32 | }, | ||
| 33 | "facing=north,open=false": { | ||
| 34 | "model": "minecraft:block/barrel", "x": 90 | ||
| 35 | }, | ||
| 36 | "facing=north,open=true": { | ||
| 37 | "model": "minecraft:block/barrel_side_open" | ||
| 38 | }, | ||
| 39 | "facing=south,open=false": { | ||
| 40 | "model": "minecraft:block/barrel", "x": 90, "y": 180 | ||
| 41 | }, | ||
| 42 | "facing=south,open=true": { | ||
| 43 | "model": "minecraft:block/barrel_side_open", "y": 180 | ||
| 44 | }, | ||
| 45 | "facing=west,open=false": { | ||
| 46 | "model": "minecraft:block/barrel", "x": 90, "y": 270 | ||
| 47 | }, | ||
| 48 | "facing=west,open=true": { | ||
| 49 | "model": "minecraft:block/barrel_side_open", "y": 270 | ||
| 50 | } | ||
| 51 | } | ||
| 52 | } \ No newline at end of file | ||