generated from FabricMC/fabric-example-mod
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
46 changed files
with
655 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions
18
src/main/resources/data.chocolate_vanilla/recipes/apple_pie.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,18 @@ | ||
{ | ||
"type": "crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:apple" | ||
}, | ||
{ | ||
"item": "minecraft:sugar" | ||
}, | ||
{ | ||
"item": "minecraft:egg" | ||
} | ||
], | ||
"result": { | ||
"item": "chocolate_vanilla:apple_pie", | ||
"count": 1 | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
src/main/resources/data.chocolate_vanilla/recipes/beef_stroganoff.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,30 @@ | ||
{ | ||
"type": "crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:cooked_beef" | ||
}, | ||
{ | ||
"item": "minecraft:wheat" | ||
}, | ||
{ | ||
"item": "minecraft:egg" | ||
}, | ||
{ | ||
"item": "minecraft:milk_bucket" | ||
}, | ||
{ | ||
"item": "minecraft:brown_mushroom" | ||
}, | ||
{ | ||
"item": "minecraft:brown_mushroom" | ||
}, | ||
{ | ||
"item": "minecraft:bowl" | ||
} | ||
], | ||
"result": { | ||
"item": "chocolate_vanilla:beef_stroganoff", | ||
"count": 1 | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
src/main/resources/data.chocolate_vanilla/recipes/beetroot_seed_cake.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,27 @@ | ||
{ | ||
"type": "crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:beetroot" | ||
}, | ||
{ | ||
"item": "minecraft:pumpkin_seeds" | ||
}, | ||
{ | ||
"item": "minecraft:sugar" | ||
}, | ||
{ | ||
"item": "minecraft:egg" | ||
}, | ||
{ | ||
"item": "minecraft:sunflower" | ||
}, | ||
{ | ||
"item": "minecraft:poppy" | ||
} | ||
], | ||
"result": { | ||
"item": "chocolate_vanilla:beetroot_seed_cake", | ||
"count": 1 | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/resources/data.chocolate_vanilla/recipes/braised_bamboo_from_campfire_cooking.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,8 @@ | ||
{ | ||
"type": "campfire_cooking", | ||
"ingredient":{ | ||
"item": "minecraft:bamboo" | ||
}, | ||
"result": "chocolate_vanilla:braised_bamboo", | ||
"experience": 0.35 | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/resources/data.chocolate_vanilla/recipes/braised_bamboo_from_smelting.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,8 @@ | ||
{ | ||
"type": "smelting", | ||
"ingredient":{ | ||
"item": "minecraft:bamboo" | ||
}, | ||
"result": "chocolate_vanilla:braised_bamboo", | ||
"experience": 0.35 | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/resources/data.chocolate_vanilla/recipes/braised_bamboo_from_smoking.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,8 @@ | ||
{ | ||
"type": "smoking", | ||
"ingredient":{ | ||
"item": "minecraft:bamboo" | ||
}, | ||
"result": "chocolate_vanilla:braised_bamboo", | ||
"experience": 0.35 | ||
} |
26 changes: 26 additions & 0 deletions
26
src/main/resources/data.chocolate_vanilla/recipes/candied_petals.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,26 @@ | ||
{ | ||
"type": "crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:sugar" | ||
}, | ||
[ | ||
{ | ||
"item": "minecraft:red_tulip" | ||
}, | ||
{ | ||
"item": "minecraft:orange_tulip" | ||
}, | ||
{ | ||
"item": "minecraft:pink_tulip" | ||
}, | ||
{ | ||
"item": "minecraft:white_tulip" | ||
} | ||
] | ||
], | ||
"result": { | ||
"item": "chocolate_vanilla:candied_petals", | ||
"count": 3 | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
src/main/resources/data.chocolate_vanilla/recipes/carrot_cake.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,21 @@ | ||
{ | ||
"type": "crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:carrot" | ||
}, | ||
{ | ||
"item": "minecraft:sugar" | ||
}, | ||
{ | ||
"item": "minecraft:egg" | ||
}, | ||
{ | ||
"item": "minecraft:wheat" | ||
} | ||
], | ||
"result": { | ||
"item": "chocolate_vanilla:carrot_cake", | ||
"count": 1 | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
src/main/resources/data.chocolate_vanilla/recipes/chicken_sandwich.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,15 @@ | ||
{ | ||
"type": "crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:bread" | ||
}, | ||
{ | ||
"item": "minecraft:cooked_chicken" | ||
} | ||
], | ||
"result": { | ||
"item": "chocolate_vanilla:chicken_sandwich", | ||
"count": 1 | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/data.chocolate_vanilla/recipes/chocolate_icecream_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,18 @@ | ||
{ | ||
"type": "crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "chocolate_vanilla:chocolate_milk" | ||
}, | ||
{ | ||
"item": "minecraft:sugar" | ||
}, | ||
{ | ||
"item": "minecraft:powder_snow_bucket" | ||
} | ||
], | ||
"result": { | ||
"item": "chocolate_vanilla:chocolate_icecream_bucket", | ||
"count": 1 | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/data.chocolate_vanilla/recipes/chocolate_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,18 @@ | ||
{ | ||
"type": "crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:cocoa_beans" | ||
}, | ||
{ | ||
"item": "minecraft:sugar" | ||
}, | ||
{ | ||
"item": "minecraft:milk_bucket" | ||
} | ||
], | ||
"result": { | ||
"item": "chocolate_vanilla:chocolate_milk", | ||
"count": 1 | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/data.chocolate_vanilla/recipes/chorus_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,18 @@ | ||
{ | ||
"type": "crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:chorus_fruit" | ||
}, | ||
{ | ||
"item": "minecraft:potion" | ||
}, | ||
{ | ||
"item": "minecraft:sugar" | ||
} | ||
], | ||
"result": { | ||
"item": "chocolate_vanilla:chorus_juice", | ||
"count": 1 | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/data.chocolate_vanilla/recipes/dragon_spirit.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,18 @@ | ||
{ | ||
"type": "crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:dragon_breath" | ||
}, | ||
{ | ||
"item": "minecraft:blaze_powder" | ||
}, | ||
{ | ||
"item": "minecraft:wither_rose" | ||
} | ||
], | ||
"result": { | ||
"item": "chocolate_vanilla:dragon_spirit", | ||
"count": 1 | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/data.chocolate_vanilla/recipes/enchantea.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,18 @@ | ||
{ | ||
"type": "crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:experience_bottle" | ||
}, | ||
{ | ||
"item": "minecraft:rose_bush" | ||
}, | ||
{ | ||
"item": "minecraft:sugar" | ||
} | ||
], | ||
"result": { | ||
"item": "chocolate_vanilla:enchantea", | ||
"count": 1 | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
src/main/resources/data.chocolate_vanilla/recipes/fish_sandwich.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,15 @@ | ||
{ | ||
"type": "crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:bread" | ||
}, | ||
{ | ||
"item": "minecraft:cooked_cod" | ||
} | ||
], | ||
"result": { | ||
"item": "chocolate_vanilla:fish_sandwich", | ||
"count": 1 | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/resources/data.chocolate_vanilla/recipes/fried_egg_from_campfire_cooking.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,8 @@ | ||
{ | ||
"type": "campfire_cooking", | ||
"ingredient":{ | ||
"item": "minecraft:egg" | ||
}, | ||
"result": "chocolate_vanilla:fried_egg", | ||
"experience": 0.35 | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/resources/data.chocolate_vanilla/recipes/fried_egg_from_smelting.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,8 @@ | ||
{ | ||
"type": "smelting", | ||
"ingredient":{ | ||
"item": "minecraft:egg" | ||
}, | ||
"result": "chocolate_vanilla:fried_egg", | ||
"experience": 0.35 | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/resources/data.chocolate_vanilla/recipes/fried_egg_from_smoking.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,8 @@ | ||
{ | ||
"type": "smoking", | ||
"ingredient":{ | ||
"item": "minecraft:egg" | ||
}, | ||
"result": "chocolate_vanilla:fried_egg", | ||
"experience": 0.35 | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/resources/data.chocolate_vanilla/recipes/fried_membrane_from_campfire_cooking.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,8 @@ | ||
{ | ||
"type": "campfire_cooking", | ||
"ingredient":{ | ||
"item": "minecraft:phantom_membrane" | ||
}, | ||
"result": "chocolate_vanilla:fried_membrane", | ||
"experience": 0.35 | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/resources/data.chocolate_vanilla/recipes/fried_membrane_from_smelting.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,8 @@ | ||
{ | ||
"type": "smelting", | ||
"ingredient":{ | ||
"item": "minecraft:phantom_membrane" | ||
}, | ||
"result": "chocolate_vanilla:fried_membrane", | ||
"experience": 0.35 | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/resources/data.chocolate_vanilla/recipes/fried_membrane_from_smoking.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,8 @@ | ||
{ | ||
"type": "smoking", | ||
"ingredient":{ | ||
"item": "minecraft:phantom_membrane" | ||
}, | ||
"result": "chocolate_vanilla:fried_membrane", | ||
"experience": 0.35 | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/data.chocolate_vanilla/recipes/glow_berry_pie.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,18 @@ | ||
{ | ||
"type": "crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:glow_berries" | ||
}, | ||
{ | ||
"item": "minecraft:sugar" | ||
}, | ||
{ | ||
"item": "minecraft:egg" | ||
} | ||
], | ||
"result": { | ||
"item": "chocolate_vanilla:glow_berry_pie", | ||
"count": 1 | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
src/main/resources/data.chocolate_vanilla/recipes/glow_squid_ink_pasta.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,21 @@ | ||
{ | ||
"type": "crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "minecraft:wheat" | ||
}, | ||
{ | ||
"item": "minecraft:glow_ink_sac" | ||
}, | ||
{ | ||
"item": "minecraft:egg" | ||
}, | ||
{ | ||
"item": "minecraft:bowl" | ||
} | ||
], | ||
"result": { | ||
"item": "chocolate_vanilla:glow_squid_ink_pasta", | ||
"count": 1 | ||
} | ||
} |
Oops, something went wrong.