mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Greenhouse glass recipe.
This commit is contained in:
parent
53414c434a
commit
3f356896b7
3 changed files with 33 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
// 1.20.4 2024-03-08T16:41:19.1669609 Recipes
|
// 1.20.4 2024-03-09T11:39:13.7182875 Recipes
|
||||||
4d3128b37a7153882a9324cda49b5069207561c5 data/actuallyadditions/recipes/atomic_reconstructor.json
|
4d3128b37a7153882a9324cda49b5069207561c5 data/actuallyadditions/recipes/atomic_reconstructor.json
|
||||||
b0367f5012651764931e8b8fd0c5bcca4e8614c0 data/actuallyadditions/recipes/battery_box.json
|
b0367f5012651764931e8b8fd0c5bcca4e8614c0 data/actuallyadditions/recipes/battery_box.json
|
||||||
fe704716268e01ca8aeeb92196d9f660b9e08640 data/actuallyadditions/recipes/black_quartz_brick_slab.json
|
fe704716268e01ca8aeeb92196d9f660b9e08640 data/actuallyadditions/recipes/black_quartz_brick_slab.json
|
||||||
|
@ -32,6 +32,7 @@ e2f9ec08306500d981cad22bc2cf7925712d08de data/actuallyadditions/recipes/fermenti
|
||||||
9c1e45adf3ad5ef64044ac111ef1ac2a57a498d0 data/actuallyadditions/recipes/firework_box.json
|
9c1e45adf3ad5ef64044ac111ef1ac2a57a498d0 data/actuallyadditions/recipes/firework_box.json
|
||||||
2391a543a2e43ff5b87234a71d9bd339f9fa3e9c data/actuallyadditions/recipes/fluid_collector.json
|
2391a543a2e43ff5b87234a71d9bd339f9fa3e9c data/actuallyadditions/recipes/fluid_collector.json
|
||||||
2614b2743071b86fd6d2cb92063c3e95a959e52c data/actuallyadditions/recipes/fluid_placer.json
|
2614b2743071b86fd6d2cb92063c3e95a959e52c data/actuallyadditions/recipes/fluid_placer.json
|
||||||
|
f9fe1f2a3e4a73f9cfd4cda43a19f4730f3f6963 data/actuallyadditions/recipes/greenhouse_glass.json
|
||||||
ff81da8a0f6632779414c0512100696a11771814 data/actuallyadditions/recipes/hopping_item_interface.json
|
ff81da8a0f6632779414c0512100696a11771814 data/actuallyadditions/recipes/hopping_item_interface.json
|
||||||
48d208a519aaa44547dbca19a57cc66e4e0ab46c data/actuallyadditions/recipes/iron_casing.json
|
48d208a519aaa44547dbca19a57cc66e4e0ab46c data/actuallyadditions/recipes/iron_casing.json
|
||||||
5d0c6fc708579565c21e0992796ba6f403473ed7 data/actuallyadditions/recipes/item_interface.json
|
5d0c6fc708579565c21e0992796ba6f403473ed7 data/actuallyadditions/recipes/item_interface.json
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"category": "misc",
|
||||||
|
"key": {
|
||||||
|
"E": {
|
||||||
|
"item": "actuallyadditions:empowered_palis_crystal"
|
||||||
|
},
|
||||||
|
"G": {
|
||||||
|
"tag": "forge:glass"
|
||||||
|
},
|
||||||
|
"S": {
|
||||||
|
"tag": "minecraft:saplings"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pattern": [
|
||||||
|
"GSG",
|
||||||
|
"SES",
|
||||||
|
"GSG"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"count": 2,
|
||||||
|
"item": "actuallyadditions:greenhouse_glass"
|
||||||
|
}
|
||||||
|
}
|
|
@ -314,7 +314,13 @@ public class BlockRecipeGenerator extends RecipeProvider {
|
||||||
.define('I', ActuallyBlocks.IRON_CASING.getItem())
|
.define('I', ActuallyBlocks.IRON_CASING.getItem())
|
||||||
.save(recipeOutput);
|
.save(recipeOutput);
|
||||||
|
|
||||||
|
// Greenhouse glass
|
||||||
|
Recipe.shaped(ActuallyBlocks.GREENHOUSE_GLASS.getItem(), 2)
|
||||||
|
.pattern("GSG", "SES", "GSG")
|
||||||
|
.define('G', Tags.Items.GLASS)
|
||||||
|
.define('S', ItemTags.SAPLINGS)
|
||||||
|
.define('E', ActuallyItems.EMPOWERED_PALIS_CRYSTAL)
|
||||||
|
.save(recipeOutput);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class Recipe {
|
public static class Recipe {
|
||||||
|
|
Loading…
Reference in a new issue