Created
August 8, 2024 06:32
-
-
Save RelivoF/56f04884bbc22b2f30ae74b168bbfc10 to your computer and use it in GitHub Desktop.
The repository is https://github.com/Inter-Reality-Control-Committee/Lost-in-reality
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // - Created by Revilof - | |
| // - For Lost in reality - | |
| // - Importing - | |
| import mods.gregtech.recipe.RecipeMap; | |
| // - Variables - | |
| // - Machines - | |
| val assembler as RecipeMap = <RecipeMap:assembler>; | |
| // - Blocks - | |
| // - Chests - | |
| val chest = <minecraft:chest>; | |
| val enderChest = <minecraft:ender_chest>; | |
| // - Wood - | |
| val wood = <ore:logWood>; | |
| val planks = <ore:plankWood>; | |
| // - Items - | |
| // - Tools - | |
| val screwdriver = <ore:toolScrewdriver>; | |
| val wrench = <ore:toolWrench>; | |
| val saw = <ore:toolSaw>; | |
| // - Plates - | |
| val obsidianPlate = <ore:plateObsidian>; | |
| // - Eye of ender - | |
| val eyeOfEnder = <ore:gemEnderEye>; | |
| // - Screw - | |
| val steelScrew = <ore:screwSteel>; | |
| // - Recipes - | |
| // - Chest - | |
| recieps.addShaped(chest, [ | |
| [wood, planks, wood], | |
| [planks, saw, planks], | |
| [wood, planks, wood] | |
| ]); | |
| // - Ender Chest - | |
| recipes.addShaped(enderChest, [ | |
| [screwdriver, obsidianPlate, steelScrew], | |
| [obsidianPlate, eyeOfEnder, obsidianPlate], | |
| [steelScrew, obsidianPlate, wrench] | |
| ]); | |
| // - Assembler - | |
| // - Chest - | |
| assembler.recipeBuilder() | |
| .inputs(wood * 2, planks * 2) | |
| .outputs(chest) | |
| .duration(40) | |
| .EUt(16) | |
| .buildAndRegister(); | |
| // - ender Chest - | |
| assembler.recipeBuilder() | |
| .inputs(obsidianPlate * 2, eyeOfEnder) | |
| .outputs(enderChest) | |
| .duration(120) | |
| .EUt(64) | |
| .buildAndRegister(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment