-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add painted wood block variants, fix EMI recipe defaults generator
- Loading branch information
Showing
1,320 changed files
with
37,110 additions
and
100 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
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
28 changes: 28 additions & 0 deletions
28
common/src/generated/resources/assets/adorn/blockstates/black_bench.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,28 @@ | ||
{ | ||
"multipart": [ | ||
{ | ||
"when": { "axis": "x" }, | ||
"apply": { "model": "adorn:block/black_bench_top" } | ||
}, | ||
{ | ||
"when": { "axis": "z" }, | ||
"apply": { "model": "adorn:block/black_bench_top", "y": 90 } | ||
}, | ||
{ | ||
"when": { "axis": "x", "connected_n": false }, | ||
"apply": { "model": "adorn:block/black_bench_leg" } | ||
}, | ||
{ | ||
"when": { "axis": "x", "connected_p": false }, | ||
"apply": { "model": "adorn:block/black_bench_leg", "y": 180 } | ||
}, | ||
{ | ||
"when": { "axis": "z", "connected_n": false }, | ||
"apply": { "model": "adorn:block/black_bench_leg", "y": 90 } | ||
}, | ||
{ | ||
"when": { "axis": "z", "connected_p": false }, | ||
"apply": { "model": "adorn:block/black_bench_leg", "y": 270 } | ||
} | ||
] | ||
} |
210 changes: 210 additions & 0 deletions
210
common/src/generated/resources/assets/adorn/blockstates/black_chair.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,210 @@ | ||
{ | ||
"multipart": [ | ||
{ | ||
"apply": { | ||
"model": "adorn:block/black_chair_upper", | ||
"y": 270 | ||
}, | ||
"when": { | ||
"half": "upper", | ||
"facing": "north" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "adorn:block/black_chair_upper" | ||
}, | ||
"when": { | ||
"half": "upper", | ||
"facing": "east" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "adorn:block/black_chair_upper", | ||
"y": 90 | ||
}, | ||
"when": { | ||
"half": "upper", | ||
"facing": "south" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "adorn:block/black_chair_upper", | ||
"y": 180 | ||
}, | ||
"when": { | ||
"half": "upper", | ||
"facing": "west" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "adorn:block/black_chair_lower", | ||
"y": 270 | ||
}, | ||
"when": { | ||
"half": "lower", | ||
"facing": "north" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "adorn:block/black_chair_lower" | ||
}, | ||
"when": { | ||
"half": "lower", | ||
"facing": "east" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "adorn:block/black_chair_lower", | ||
"y": 90 | ||
}, | ||
"when": { | ||
"half": "lower", | ||
"facing": "south" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "adorn:block/black_chair_lower", | ||
"y": 180 | ||
}, | ||
"when": { | ||
"half": "lower", | ||
"facing": "west" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "minecraft:block/red_carpet" | ||
}, | ||
"when": { | ||
"carpet": "red" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "minecraft:block/black_carpet" | ||
}, | ||
"when": { | ||
"carpet": "black" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "minecraft:block/green_carpet" | ||
}, | ||
"when": { | ||
"carpet": "green" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "minecraft:block/brown_carpet" | ||
}, | ||
"when": { | ||
"carpet": "brown" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "minecraft:block/blue_carpet" | ||
}, | ||
"when": { | ||
"carpet": "blue" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "minecraft:block/purple_carpet" | ||
}, | ||
"when": { | ||
"carpet": "purple" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "minecraft:block/cyan_carpet" | ||
}, | ||
"when": { | ||
"carpet": "cyan" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "minecraft:block/light_gray_carpet" | ||
}, | ||
"when": { | ||
"carpet": "light_gray" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "minecraft:block/gray_carpet" | ||
}, | ||
"when": { | ||
"carpet": "gray" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "minecraft:block/pink_carpet" | ||
}, | ||
"when": { | ||
"carpet": "pink" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "minecraft:block/lime_carpet" | ||
}, | ||
"when": { | ||
"carpet": "lime" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "minecraft:block/yellow_carpet" | ||
}, | ||
"when": { | ||
"carpet": "yellow" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "minecraft:block/light_blue_carpet" | ||
}, | ||
"when": { | ||
"carpet": "light_blue" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "minecraft:block/magenta_carpet" | ||
}, | ||
"when": { | ||
"carpet": "magenta" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "minecraft:block/orange_carpet" | ||
}, | ||
"when": { | ||
"carpet": "orange" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "minecraft:block/white_carpet" | ||
}, | ||
"when": { | ||
"carpet": "white" | ||
} | ||
} | ||
] | ||
} |
7 changes: 7 additions & 0 deletions
7
common/src/generated/resources/assets/adorn/blockstates/black_coffee_table.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,7 @@ | ||
{ | ||
"variants": { | ||
"": { | ||
"model": "adorn:block/black_coffee_table" | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
common/src/generated/resources/assets/adorn/blockstates/black_drawer.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,19 @@ | ||
{ | ||
"variants": { | ||
"facing=north": { | ||
"model": "adorn:block/black_drawer" | ||
}, | ||
"facing=east": { | ||
"model": "adorn:block/black_drawer", | ||
"y": 90 | ||
}, | ||
"facing=south": { | ||
"model": "adorn:block/black_drawer", | ||
"y": 180 | ||
}, | ||
"facing=west": { | ||
"model": "adorn:block/black_drawer", | ||
"y": 270 | ||
} | ||
} | ||
} |
Oops, something went wrong.