diff options
author | nea <nea@nea.moe> | 2023-05-05 00:02:13 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-05-05 00:02:13 +0200 |
commit | dc4866fe01abf7b33829bbfcd9d266c381c6c6af (patch) | |
tree | 89e8709a8781e943bd4eb6459564608b8cf4c4c6 /src/main/kotlin/moe/nea/notenoughupdates/recipes/SBRecipe.kt | |
parent | 57885f1f71774a79ee08af024b872b73cadc05bd (diff) | |
download | firmament-dc4866fe01abf7b33829bbfcd9d266c381c6c6af.tar.gz firmament-dc4866fe01abf7b33829bbfcd9d266c381c6c6af.tar.bz2 firmament-dc4866fe01abf7b33829bbfcd9d266c381c6c6af.zip |
Add very bad forge recipes
Diffstat (limited to 'src/main/kotlin/moe/nea/notenoughupdates/recipes/SBRecipe.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/notenoughupdates/recipes/SBRecipe.kt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/notenoughupdates/recipes/SBRecipe.kt b/src/main/kotlin/moe/nea/notenoughupdates/recipes/SBRecipe.kt new file mode 100644 index 0000000..2e39d7e --- /dev/null +++ b/src/main/kotlin/moe/nea/notenoughupdates/recipes/SBRecipe.kt @@ -0,0 +1,24 @@ +package moe.nea.notenoughupdates.recipes + +import io.github.moulberry.repo.data.NEURecipe +import me.shedaniel.rei.api.common.display.Display +import me.shedaniel.rei.api.common.entry.EntryIngredient +import moe.nea.notenoughupdates.rei.SBItemEntryDefinition +import moe.nea.notenoughupdates.util.SkyblockId + +abstract class SBRecipe() : Display { + abstract val neuRecipe: NEURecipe + override fun getInputEntries(): List<EntryIngredient> { + return neuRecipe.allInputs.map { + val entryStack = SBItemEntryDefinition.getEntry(SkyblockId(it.itemId)) + EntryIngredient.of(entryStack) + } + } + + override fun getOutputEntries(): List<EntryIngredient> { + return neuRecipe.allOutputs.map { + val entryStack = SBItemEntryDefinition.getEntry(SkyblockId(it.itemId)) + EntryIngredient.of(entryStack) + } + } +} |