mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 07:13:28 +01:00
Remove TODO on Ring of Growth recipe
Since it works
This commit is contained in:
parent
863c2b758b
commit
072f5c68b7
3 changed files with 28 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
// 1.21.1 2024-08-11T19:30:01.8188184 Item Recipes
|
||||
// 1.21.1 2024-10-16T22:05:14.5301488 Item Recipes
|
||||
14bd5bc2ee3e84b6f3a3181c0e0efd40df5f1d84 data/actuallyadditions/recipe/advanced_coil.json
|
||||
955aad6c1def123a6adbaeabb13faa6eedce847f data/actuallyadditions/recipe/advanced_leaf_blower.json
|
||||
97e7ba64f5054b030f4e49615dc4212a28ca9be1 data/actuallyadditions/recipe/basic_coil.json
|
||||
|
@ -109,6 +109,7 @@ f7b4a51bf6bcaee860b68bfd2dc40a6b0bfff6bc data/actuallyadditions/recipe/rice_pape
|
|||
73e49fa3d60186037c58569eee42fc6dbff0e55c data/actuallyadditions/recipe/rice_slime.json
|
||||
f5cbc0efed1684fa5201cbd023d90fdec89aa0b3 data/actuallyadditions/recipe/rice_slime_potion.json
|
||||
be20b48da77573463f63c119b542fde5d4c14843 data/actuallyadditions/recipe/ring.json
|
||||
b5bcd0457a68e28d37312f1a1e94a106d3b6f038 data/actuallyadditions/recipe/ring_of_growth.json
|
||||
8e0ac0d696ff3ecd1ef43122707b8f131bba3fbf data/actuallyadditions/recipe/ring_of_magnetizing.json
|
||||
f31206c1d67ddc93e41d13f24d54e8d6b5913348 data/actuallyadditions/recipe/single_battery.json
|
||||
9504d2a8e3cb536cf865e8385a013743a0d615d0 data/actuallyadditions/recipe/stone_aiot.json
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "misc",
|
||||
"key": {
|
||||
"I": {
|
||||
"item": "actuallyadditions:empowered_enori_crystal"
|
||||
},
|
||||
"O": {
|
||||
"item": "actuallyadditions:ring"
|
||||
},
|
||||
"S": {
|
||||
"tag": "c:seeds"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"SIS",
|
||||
"IOI",
|
||||
"SIS"
|
||||
],
|
||||
"result": {
|
||||
"count": 1,
|
||||
"id": "actuallyadditions:ring_of_growth"
|
||||
}
|
||||
}
|
|
@ -453,12 +453,12 @@ public class ItemRecipeGenerator extends RecipeProvider {
|
|||
.save(recipeOutput);
|
||||
|
||||
//Growth Ring
|
||||
/* Recipe.shaped(ActuallyItems.RING_OF_GROWTH.get())
|
||||
Recipe.shaped(ActuallyItems.RING_OF_GROWTH.get())
|
||||
.pattern("SIS", "IOI", "SIS")
|
||||
.define('S', Tags.Items.SEEDS)
|
||||
.define('I', ActuallyItems.EMPOWERED_ENORI_CRYSTAL.get())
|
||||
.define('O', ActuallyItems.RING.get())
|
||||
.save(recipeOutput);*/ //TODO not done yet
|
||||
.save(recipeOutput);
|
||||
|
||||
Recipe.shapeless(ActuallyItems.CRAFTER_ON_A_STICK.get()).requires(Items.CRAFTING_TABLE).requires(ItemTags.SIGNS).save(recipeOutput);
|
||||
|
||||
|
|
Loading…
Reference in a new issue