Skip to content

Commit

Permalink
Merge pull request #979 from MuteTiefling/sushigo
Browse files Browse the repository at this point in the history
SushiGO
  • Loading branch information
MuteTiefling authored Jun 7, 2024
2 parents 121ff0a + 82c70da commit 252e1a1
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
8 changes: 8 additions & 0 deletions changelogs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### Enigmatica 9 v1.23.0

### 🎁 New Mods Added

### 🌟 Improvements

- [Expert] Add recipes to transmute common materials from Twilight Forest into SushiGo materials, so sushi is more accessible. [\#979](https://github.com/EnigmaticaModpacks/Enigmatica9/issues/979)

### Enigmatica 9 v1.22.1

🚀 Forge-1.19.2-43.2.14 | [📜 Mod Updates](https://github.com/EnigmaticaModpacks/Enigmatica9/blob/master/changelogs/changelog_mods_1.22.1.md) | [📋 Modlist](https://github.com/EnigmaticaModpacks/Enigmatica9/blob/master/changelogs/modlist_1.22.1.md)
Expand Down
32 changes: 32 additions & 0 deletions kubejs/server_scripts/expert/recipes/naturesaura/altar.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,38 @@ ServerEvents.recipes((event) => {
aura: 500000,
time: 1800,
id: `${id_prefix}novice_spell_book`
},
{
output: Item.of('sushigocrafting:tobiko', '{Amount:100}'),
input: 'minecraft:sweet_berries',
catalyst: 'naturesaura:conversion_catalyst',
aura: 300,
time: 10,
id: `${id_prefix}tobiko`
},
{
output: 'sushigocrafting:raw_tuna',
input: 'minecraft:salmon',
catalyst: 'naturesaura:conversion_catalyst',
aura: 300,
time: 10,
id: `${id_prefix}raw_tuna`
},
{
output: Item.of('sushigocrafting:shrimp', '{Amount:100}'),
input: 'twilightforest:cicada',
catalyst: 'naturesaura:conversion_catalyst',
aura: 300,
time: 10,
id: `${id_prefix}shrimp_from_cicada`
},
{
output: Item.of('sushigocrafting:shrimp', '{Amount:100}'),
input: 'twilightforest:firefly',
catalyst: 'naturesaura:conversion_catalyst',
aura: 300,
time: 10,
id: `${id_prefix}shrimp_from_firefly`
}
];

Expand Down

0 comments on commit 252e1a1

Please sign in to comment.