-
Notifications
You must be signed in to change notification settings - Fork 433
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add drink tag keys * add tags to datagen * generate tags * add translations * drink container tags * update wording of javadoc * fix grammar in javadoc * fix more javadoc typos * add juice drink type tags * number the rules for a drink * watery tag; clarify rule 4 of drink definition * remove rule 4 of the drinks tag * fix java doc typo * generate watery tag * match juice tag names to vanilla ids * remove subsub juice tags * fix potential inconsistency in the drinks javadoc for alcoholic drinks * remove sub sub tags
- Loading branch information
1 parent
2c3f4f5
commit c81f590
Showing
14 changed files
with
190 additions
and
0 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
7 changes: 7 additions & 0 deletions
7
...-convention-tags-v2/src/generated/resources/data/c/tags/item/drink_containing/bottle.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 @@ | ||
{ | ||
"values": [ | ||
"minecraft:potion", | ||
"minecraft:honey_bottle", | ||
"minecraft:ominous_bottle" | ||
] | ||
} |
5 changes: 5 additions & 0 deletions
5
...-convention-tags-v2/src/generated/resources/data/c/tags/item/drink_containing/bucket.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,5 @@ | ||
{ | ||
"values": [ | ||
"minecraft:milk_bucket" | ||
] | ||
} |
32 changes: 32 additions & 0 deletions
32
fabric-convention-tags-v2/src/generated/resources/data/c/tags/item/drinks.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,32 @@ | ||
{ | ||
"values": [ | ||
{ | ||
"id": "#c:drinks/water", | ||
"required": false | ||
}, | ||
{ | ||
"id": "#c:drinks/watery", | ||
"required": false | ||
}, | ||
{ | ||
"id": "#c:drinks/milk", | ||
"required": false | ||
}, | ||
{ | ||
"id": "#c:drinks/honey", | ||
"required": false | ||
}, | ||
{ | ||
"id": "#c:drinks/magic", | ||
"required": false | ||
}, | ||
{ | ||
"id": "#c:drinks/ominous", | ||
"required": false | ||
}, | ||
{ | ||
"id": "#c:drinks/juice", | ||
"required": false | ||
} | ||
] | ||
} |
5 changes: 5 additions & 0 deletions
5
fabric-convention-tags-v2/src/generated/resources/data/c/tags/item/drinks/honey.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,5 @@ | ||
{ | ||
"values": [ | ||
"minecraft:honey_bottle" | ||
] | ||
} |
3 changes: 3 additions & 0 deletions
3
fabric-convention-tags-v2/src/generated/resources/data/c/tags/item/drinks/juice.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 @@ | ||
{ | ||
"values": [] | ||
} |
9 changes: 9 additions & 0 deletions
9
fabric-convention-tags-v2/src/generated/resources/data/c/tags/item/drinks/magic.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,9 @@ | ||
{ | ||
"values": [ | ||
"minecraft:potion", | ||
{ | ||
"id": "#c:drinks/ominous", | ||
"required": false | ||
} | ||
] | ||
} |
5 changes: 5 additions & 0 deletions
5
fabric-convention-tags-v2/src/generated/resources/data/c/tags/item/drinks/milk.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,5 @@ | ||
{ | ||
"values": [ | ||
"minecraft:milk_bucket" | ||
] | ||
} |
5 changes: 5 additions & 0 deletions
5
fabric-convention-tags-v2/src/generated/resources/data/c/tags/item/drinks/ominous.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,5 @@ | ||
{ | ||
"values": [ | ||
"minecraft:ominous_bottle" | ||
] | ||
} |
3 changes: 3 additions & 0 deletions
3
fabric-convention-tags-v2/src/generated/resources/data/c/tags/item/drinks/water.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 @@ | ||
{ | ||
"values": [] | ||
} |
9 changes: 9 additions & 0 deletions
9
fabric-convention-tags-v2/src/generated/resources/data/c/tags/item/drinks/watery.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,9 @@ | ||
{ | ||
"values": [ | ||
"minecraft:potion", | ||
{ | ||
"id": "#c:drinks/water", | ||
"required": false | ||
} | ||
] | ||
} |
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