Added advanced circuit to digital display recipe. Thanks to Ayutac

This commit is contained in:
Ayutac 2022-05-05 11:02:58 +02:00 committed by GitHub
parent 88dbd9b6f3
commit 0cbcc3a93a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View file

@ -16,6 +16,16 @@
] ]
} }
}, },
"has_advanced_circuit": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:advanced_circuit"]
}
]
}
},
"has_the_recipe": { "has_the_recipe": {
"trigger": "minecraft:recipe_unlocked", "trigger": "minecraft:recipe_unlocked",
"conditions": { "conditions": {
@ -26,6 +36,7 @@
"requirements": [ "requirements": [
[ [
"has_aluminium_plate", "has_aluminium_plate",
"has_advanced_circuit",
"has_the_recipe" "has_the_recipe"
] ]
] ]

View file

@ -3,12 +3,15 @@
"pattern": [ "pattern": [
"ADA", "ADA",
"DGD", "DGD",
"ADA" "ACA"
], ],
"key": { "key": {
"A": { "A": {
"tag": "c:aluminum_plates" "tag": "c:aluminum_plates"
}, },
"C": {
"item": "techreborn:advanced_circuit"
},
"D": { "D": {
"item": "minecraft:black_dye" "item": "minecraft:black_dye"
}, },