Skip to content

Commit

Permalink
Merge pull request #5458 from MuteTiefling/starmetal
Browse files Browse the repository at this point in the history
New Starmetal Recipes
  • Loading branch information
MuteTiefling authored Jun 6, 2024
2 parents 7e5fb7f + f71406f commit 1c080bb
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
6 changes: 6 additions & 0 deletions changelogs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
### Enigmatica 6 & Enigmatica 6: Expert v1.10.0

**Improvements**

- Add new recipe for converting Celestial Combs to Starmetal [\#5458](https://github.com/EnigmaticaModpacks/Enigmatica6/pull/5458) ([MuteTiefling](https://github.com/MuteTiefling))

### Enigmatica 6 & Enigmatica 6: Expert v1.10.0

**Bug fixes**

- Fix IE assembler being unable to craft capacitors [\#5447](https://github.com/EnigmaticaModpacks/Enigmatica6/pull/5447) ([MuteTiefling](https://github.com/MuteTiefling))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,26 @@ onEvent('recipes', (event) => {
rolls: 1
},
consume_fluid: 1.0
},
{
inputs: [{ item: 'resourcefulbees:starry_honeycomb', count: 1, return_chance: 0 }],
fluid: { fluid: 'astralsorcery:liquid_starlight' },
output: {
entries: [{ result: { item: 'astralsorcery:starmetal_ingot', count: 3 }, weight: 1 }],
empty_weight: 0,
rolls: 1
},
consume_fluid: 0.1
},
{
inputs: [{ item: 'resourcefulbees:starry_honeycomb_block', count: 1, return_chance: 0 }],
fluid: { fluid: 'astralsorcery:liquid_starlight' },
output: {
entries: [{ result: { item: 'astralsorcery:starmetal', count: 3 }, weight: 1 }],
empty_weight: 0,
rolls: 1
},
consume_fluid: 1.0
}
];

Expand Down

0 comments on commit 1c080bb

Please sign in to comment.