-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
550107b
commit a42cb20
Showing
21 changed files
with
670 additions
and
61 deletions.
There are no files selected for viewing
88 changes: 45 additions & 43 deletions
88
src/main/generated/.cache/97a4721ed155c6fdfa3ad558e447c8340a205f56
Large diffs are not rendered by default.
Oops, something went wrong.
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
src/main/generated/.cache/ea38d437bba961a39355c1fcb8fe7bfeb267e512
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,2 +1,2 @@ | ||
// 1.21 2024-06-17T00:01:49.8869773 Extravaganza!/Language (en_us) | ||
724452bbe679c89b0bda839b487d04fdda6a23a5 assets\extravaganza\lang\en_us.json | ||
// 1.21 2024-06-17T23:04:13.0211809 Extravaganza!/Language (en_us) | ||
124a09de090360547560443ecfb77a5d1e70dbf6 assets\extravaganza\lang\en_us.json |
193 changes: 193 additions & 0 deletions
193
src/main/generated/assets/extravaganza/blockstates/garland.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,193 @@ | ||
{ | ||
"multipart": [ | ||
{ | ||
"apply": { | ||
"model": "extravaganza:block/garland" | ||
}, | ||
"when": { | ||
"OR": [ | ||
{ | ||
"AND": [ | ||
{ | ||
"up": "false" | ||
}, | ||
{ | ||
"down": "false" | ||
}, | ||
{ | ||
"north": "false" | ||
}, | ||
{ | ||
"south": "false" | ||
}, | ||
{ | ||
"west": "false" | ||
}, | ||
{ | ||
"east": "false" | ||
} | ||
] | ||
}, | ||
{ | ||
"OR": [ | ||
{ | ||
"up": "true" | ||
}, | ||
{ | ||
"down": "true" | ||
}, | ||
{ | ||
"north": "true" | ||
}, | ||
{ | ||
"south": "true" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "extravaganza:block/garland_horizontal" | ||
}, | ||
"when": { | ||
"OR": [ | ||
{ | ||
"AND": [ | ||
{ | ||
"up": "false" | ||
}, | ||
{ | ||
"down": "false" | ||
}, | ||
{ | ||
"north": "false" | ||
}, | ||
{ | ||
"south": "false" | ||
}, | ||
{ | ||
"west": "false" | ||
}, | ||
{ | ||
"east": "false" | ||
} | ||
] | ||
}, | ||
{ | ||
"OR": [ | ||
{ | ||
"north": "true" | ||
}, | ||
{ | ||
"south": "true" | ||
}, | ||
{ | ||
"west": "true" | ||
}, | ||
{ | ||
"east": "true" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "extravaganza:block/garland_vertical" | ||
}, | ||
"when": { | ||
"OR": [ | ||
{ | ||
"AND": [ | ||
{ | ||
"up": "false" | ||
}, | ||
{ | ||
"down": "false" | ||
}, | ||
{ | ||
"north": "false" | ||
}, | ||
{ | ||
"south": "false" | ||
}, | ||
{ | ||
"west": "false" | ||
}, | ||
{ | ||
"east": "false" | ||
} | ||
] | ||
}, | ||
{ | ||
"OR": [ | ||
{ | ||
"up": "true" | ||
}, | ||
{ | ||
"down": "true" | ||
}, | ||
{ | ||
"west": "true" | ||
}, | ||
{ | ||
"east": "true" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "extravaganza:block/garland_up" | ||
}, | ||
"when": { | ||
"up": "true" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "extravaganza:block/garland_down" | ||
}, | ||
"when": { | ||
"down": "true" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "extravaganza:block/garland_north" | ||
}, | ||
"when": { | ||
"north": "true" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "extravaganza:block/garland_south" | ||
}, | ||
"when": { | ||
"south": "true" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "extravaganza:block/garland_west" | ||
}, | ||
"when": { | ||
"west": "true" | ||
} | ||
}, | ||
{ | ||
"apply": { | ||
"model": "extravaganza:block/garland_east" | ||
}, | ||
"when": { | ||
"east": "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
3 changes: 3 additions & 0 deletions
3
src/main/generated/assets/extravaganza/models/item/garland.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": "extravaganza:block/garland" | ||
} |
Oops, something went wrong.