Skip to content

Commit

Permalink
More recipes and recipe fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSVK12 committed Apr 2, 2024
1 parent 40dda8a commit 7cb6c93
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,5 +73,27 @@ public void addRecipes(RecipeGroup<RecipeEntryMachine> group) {
new RecipeProperties(100,80,4, Tier.REINFORCED,false)
)
);
group.register(
"dimensional_chip",
new RecipeEntryMachine(
new RecipeExtendedSymbol[]{
new RecipeExtendedSymbol(new FluidStack((BlockFluid) BlockFluid.fluidWaterFlowing,2000)),
new RecipeExtendedSymbol(new ItemStack(SignalIndustries.dimensionalShard,1))
},
new ItemStack(SignalIndustries.dimensionalChip,2,0),
new RecipeProperties(200,160,5, Tier.REINFORCED,false)
)
);
group.register(
"dilithium_chip",
new RecipeEntryMachine(
new RecipeExtendedSymbol[]{
new RecipeExtendedSymbol(new FluidStack((BlockFluid) BlockFluid.fluidWaterFlowing,2000)),
new RecipeExtendedSymbol(new ItemStack(SignalIndustries.dilithiumShard,1))
},
new ItemStack(SignalIndustries.dilithiumChip,2,0),
new RecipeProperties(100,160,6, Tier.REINFORCED,false)
)
);
}
}
12 changes: 10 additions & 2 deletions src/main/resources/assets/signalindustries/recipes/workbench.json
Original file line number Diff line number Diff line change
Expand Up @@ -4803,7 +4803,7 @@
"pattern": [
"CIC",
"SMS",
"C C"
"CPC"
],
"symbols": [
{
Expand All @@ -4814,6 +4814,14 @@
"meta": 0
}
},
{
"symbol": "P",
"stack": {
"key": "tile.signalindustries.prototype.conduit.item",
"amount": 1,
"meta": 0
}
},
{
"symbol": "S",
"stack": {
Expand Down Expand Up @@ -4954,7 +4962,7 @@
}
],
"result": {
"key": "tile.signalindustries.prototype.inserter",
"key": "tile.signalindustries.prototype.filter",
"amount": 1,
"meta": 0
},
Expand Down

0 comments on commit 7cb6c93

Please sign in to comment.