forked from GTNewHorizons/GT-New-Horizons-Modpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reduce the Time the Vacuum Freezer Need for Galaxy Space Materials
Gendustry Recipes not need the Carpenter any more Some Gendustry Recipe fixes Flood Light Mod new recipes Delete Gregs lightning Mod recipes
- Loading branch information
1 parent
7b3e85d
commit 54a30be
Showing
4 changed files
with
171 additions
and
111 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
// --- Created DreamMasterXXL --- | ||
|
||
|
||
// --- Imports --- | ||
|
||
|
||
|
||
import mods.gregtech.Assembler; | ||
import mods.gregtech.CuttingSaw; | ||
|
||
|
||
|
||
|
||
// --- Variables --- | ||
|
||
|
||
|
||
val SteelPlate = <ore:plateSteel>; | ||
val CopperWire = <ore:wireGt01Copper>; | ||
val Circuit = <ore:circuitBasic>; | ||
val GlassLens = <ore:lensGlass>; | ||
val DiamondLens = <ore:lensDiamond>; | ||
val GlassPane = <ore:paneGlass>; | ||
val Mantle = <FloodLights:mantle>; | ||
|
||
|
||
|
||
|
||
// --- Remove Recipes --- | ||
|
||
|
||
|
||
// --- Electric Floodlight | ||
recipes.remove(<FloodLights:electricFloodlight>); | ||
|
||
// --- Non-Electric Floodlight | ||
recipes.remove(<FloodLights:carbonFloodlight>); | ||
|
||
// --- Small Flurocen Light | ||
recipes.remove(<FloodLights:smallElectricFloodlightMetaBlock>); | ||
|
||
// --- Square Flurocen Light | ||
recipes.remove(<FloodLights:smallElectricFloodlightMetaBlock:1>); | ||
|
||
// --- UV Floodlight | ||
recipes.remove(<FloodLights:uvFloodlight>); | ||
|
||
// --- Raw Filament | ||
recipes.remove(<FloodLights:rawFilament>); | ||
|
||
// --- Glowing Filament | ||
furnace.remove(<FloodLights:glowingFilament>); | ||
|
||
// --- Electric Incandescent Light Bulb | ||
recipes.remove(<FloodLights:electricIncandescentLightBulb>); | ||
|
||
// --- Fuel Dissolver | ||
recipes.remove(<FloodLights:carbonDissolver>); | ||
|
||
// --- Non Electrical Latern | ||
recipes.remove(<FloodLights:carbonLantern>); | ||
|
||
// --- Mantle | ||
recipes.remove(Mantle); | ||
|
||
|
||
|
||
|
||
// --- Adding Recipes --- | ||
|
||
|
||
|
||
|
||
// --- Electric Floodlight | ||
recipes.addShaped(<FloodLights:electricFloodlight>, [ | ||
[SteelPlate, GlassLens, SteelPlate], | ||
[Circuit, <FloodLights:electricIncandescentLightBulb>, Circuit], | ||
[SteelPlate, CopperWire, SteelPlate]]); | ||
|
||
// --- Non-Electric Floodlight | ||
recipes.addShaped(<GregsLighting:ic2FilamentAssembly>, [ | ||
[SteelPlate, GlassLens, SteelPlate], | ||
[Circuit, <FloodLights:carbonLantern>, Circuit], | ||
[SteelPlate, CopperWire, SteelPlate]]); | ||
|
||
// --- UV Floodlight | ||
recipes.addShaped(<FloodLights:uvFloodlight>, [ | ||
[SteelPlate, DiamondLens, SteelPlate], | ||
[Circuit, <FloodLights:electricIncandescentLightBulb>, Circuit], | ||
[SteelPlate, CopperWire, SteelPlate]]); | ||
|
||
// --- Non Electrical Latern | ||
recipes.addShaped(<FloodLights:carbonLantern>, [ | ||
[GlassPane, GlassPane, GlassPane], | ||
[Mantle, <FloodLights:carbonDissolver>, Mantle], | ||
[GlassPane, <minecraft:flint_and_steel>, GlassPane]]); | ||
|
||
// --- Small Flurocen Light | ||
recipes.addShapeless(<FloodLights:smallElectricFloodlightMetaBlock> * 2, [<FloodLights:smallElectricFloodlightMetaBlock:1>]); | ||
|
||
// --- Square Flurocen Light | ||
recipes.addShapeless(<FloodLights:smallElectricFloodlightMetaBlock:1>, [<FloodLights:smallElectricFloodlightMetaBlock> * 2]); | ||
|
||
|
||
|
||
|
||
// --- Assembler Recipes --- | ||
|
||
|
||
|
||
// --- Mantle | ||
Assembler.addRecipe(Mantle, <minecraft:redstone>, <minecraft:string> * 8, 100, 30); | ||
|
||
// --- Electric Incandescent Light Bulb | ||
Assembler.addRecipe(<FloodLights:electricIncandescentLightBulb>, <gregtech:gt.metaitem.02:19081>, <minecraft:glass_pane> * 2, <liquid:argon> * 1, 200, 120); | ||
|
||
// --- Fuel Dissolver | ||
Assembler.addRecipe(<FloodLights:carbonDissolver>, <minecraft:glass_pane> * 3, <Railcraft:part.plate> * 2, <liquid:molten.redstone> * 144, 200, 64); | ||
|
||
// --- Square Flurocen Light | ||
Assembler.addRecipe(<FloodLights:smallElectricFloodlightMetaBlock:1>, <FloodLights:electricIncandescentLightBulb>, <gregtech:gt.metaitem.01:28032> * 2, <liquid:molten.glass> * 288, 200, 120); |
This file contains 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
This file was deleted.
Oops, something went wrong.