Skip to content

Commit

Permalink
reduce the Time the Vacuum Freezer Need for Galaxy Space Materials
Browse files Browse the repository at this point in the history
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
Dream-Master committed Oct 24, 2015
1 parent 7b3e85d commit 54a30be
Show file tree
Hide file tree
Showing 4 changed files with 171 additions and 111 deletions.
12 changes: 6 additions & 6 deletions scripts/DCraft.zs
Original file line number Diff line number Diff line change
Expand Up @@ -1922,19 +1922,19 @@ mods.tconstruct.Casting.addTableRecipe(<dreamcraft:item.MoldLeggings>, <liquid:s


// --- Callisto Cold Ingot
VacuumFreezer.addRecipe(<dreamcraft:item.CallistoIceColdIngot>, <dreamcraft:item.CallistoIceIngot>, 1200);
VacuumFreezer.addRecipe(<dreamcraft:item.CallistoIceColdIngot>, <dreamcraft:item.CallistoIceIngot>, 500);

// --- Ledox Cold Ingot
VacuumFreezer.addRecipe(<dreamcraft:item.LedoxColdIngot>, <dreamcraft:item.LedoxIngot>, 900);
VacuumFreezer.addRecipe(<dreamcraft:item.LedoxColdIngot>, <dreamcraft:item.LedoxIngot>, 500);

// --- Callisto Cold Ingot
VacuumFreezer.addRecipe(<GalaxySpace:item.QuantiumIgnot>, <dreamcraft:item.QuantinumHotIngot>, 2400);
// --- Quantinum Cold Ingot
VacuumFreezer.addRecipe(<GalaxySpace:item.QuantiumIgnot>, <dreamcraft:item.QuantinumHotIngot>, 600);

// --- Mysterious Crystal Ingot
VacuumFreezer.addRecipe(<dreamcraft:item.MysteriousCrystalColdIngot>, <dreamcraft:item.MysteriousCrystalIngot>, 4800);
VacuumFreezer.addRecipe(<dreamcraft:item.MysteriousCrystalColdIngot>, <dreamcraft:item.MysteriousCrystalIngot>, 700);

// --- Mytryl Ingot
VacuumFreezer.addRecipe(<dreamcraft:item.MytrylIngot>, <dreamcraft:item.MytrylHotIngot>, 3600);
VacuumFreezer.addRecipe(<dreamcraft:item.MytrylIngot>, <dreamcraft:item.MytrylHotIngot>, 400);

// --- Infernal Bricks
VacuumFreezer.addRecipe(<dreamcraft:item.InfernalBrick>, <dreamcraft:item.HotNetherrackBrick>, 600);
Expand Down
121 changes: 121 additions & 0 deletions scripts/Flood-Light.zs
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);
90 changes: 44 additions & 46 deletions scripts/Gendustry.zs
Original file line number Diff line number Diff line change
Expand Up @@ -316,136 +316,136 @@ recipes.addShaped(PowerModule, [
[TitaniumSmallGear, EVMotor, TitaniumSmallGear]]);

// --- Plains Emulation Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:17>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:17>, [
[TitaniumSmallGear, ClimateCtrl, TitaniumSmallGear],
[Grass, UpFrame, Grass],
[TitaniumSmallGear, EnviroProcessor, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, EnviroProcessor, TitaniumSmallGear]]);

// --- Light Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:11>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:11>, [
[TitaniumSmallGear, GlowStoneGlass, TitaniumSmallGear],
[GlowStoneGlass, UpFrame, GlowStoneGlass],
[TitaniumSmallGear, GlowStoneGlass, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, GlowStoneGlass, TitaniumSmallGear]]);

// --- Flowering Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:2>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:2>, [
[TitaniumSmallGear, <minecraft:red_flower>, TitaniumSmallGear],
[<Botany:pollen:*>, UpFrame, <Botany:pollen:*>],
[TitaniumSmallGear, <minecraft:yellow_flower>, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, <minecraft:yellow_flower>, TitaniumSmallGear]]);

// --- Winter Emulation Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:20>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:20>, [
[TitaniumSmallGear, ClimateCtrl, TitaniumSmallGear],
[Ice, UpFrame, Ice],
[TitaniumSmallGear, EnviroProcessor, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, EnviroProcessor, TitaniumSmallGear]]);

// --- Dryer Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:5>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:5>, [
[TitaniumSmallGear, ClimateCtrl, TitaniumSmallGear],
[Sand, UpFrame, Sand],
[TitaniumSmallGear, LavaBucket, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, LavaBucket, TitaniumSmallGear]]);

// --- Automation Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:14>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:14>, [
[TitaniumSmallGear, TitaniumGear, TitaniumSmallGear],
[<minecraft:redstone_torch>, UpFrame, <minecraft:redstone_torch>],
[TitaniumSmallGear, EVPiston, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, EVPiston, TitaniumSmallGear]]);

// --- Humidifier Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:4>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:4>, [
[TitaniumSmallGear, ClimateCtrl, TitaniumSmallGear],
[Cactus, UpFrame, Cactus],
[TitaniumSmallGear, WaterBucket, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, WaterBucket, TitaniumSmallGear]]);

// --- Hell Emulation Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:13>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:13>, [
[TitaniumSmallGear, ClimateCtrl, TitaniumSmallGear],
[BlazeRod, UpFrame, GhatsTear],
[TitaniumSmallGear, EnviroProcessor, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, EnviroProcessor, TitaniumSmallGear]]);

// --- Pollen Scrubber Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:22>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:22>, [
[TitaniumSmallGear, SteelBars, TitaniumSmallGear],
[TitaniumRotor, UpFrame, TitaniumRotor],
[TitaniumSmallGear, SteelBars, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, SteelBars, TitaniumSmallGear]]);

// --- Desert Emulation Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:16>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:16>, [
[TitaniumSmallGear, ClimateCtrl, TitaniumSmallGear],
[Sand, UpFrame, Sand],
[TitaniumSmallGear, EnviroProcessor, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, EnviroProcessor, TitaniumSmallGear]]);

// --- Cooler Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:7>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:7>, [
[TitaniumSmallGear, ClimateCtrl, TitaniumSmallGear],
[Snow, UpFrame, Snow],
[TitaniumSmallGear, Ice, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, Ice, TitaniumSmallGear]]);

// --- Live Spawn Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:1>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:1>, [
[TitaniumSmallGear, <minecraft:fermented_spider_eye>, TitaniumSmallGear],
[<BiomesOPlenty:jarFilled:1>, UpFrame, <BiomesOPlenty:jarFilled:1>],
[TitaniumSmallGear, <minecraft:fermented_spider_eye>, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, <minecraft:fermented_spider_eye>, TitaniumSmallGear]]);

// --- Seal Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:10>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:10>, [
[TitaniumSmallGear, Rubber, TitaniumSmallGear],
[Wax, UpFrame, Wax],
[TitaniumSmallGear, Rubber, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, Rubber, TitaniumSmallGear]]);

// --- Genteics Stabilizer Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:19>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:19>, [
[TitaniumSmallGear, GeneticsProcessor, TitaniumSmallGear],
[RedAlloyPlate, UpFrame, RedAlloyPlate],
[TitaniumSmallGear, GeneticsProcessor, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, GeneticsProcessor, TitaniumSmallGear]]);

// --- Jungel Emulation Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:18>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:18>, [
[TitaniumSmallGear, ClimateCtrl, TitaniumSmallGear],
[Vines, UpFrame, Vines],
[TitaniumSmallGear, EnviroProcessor, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, EnviroProcessor, TitaniumSmallGear]]);

// --- Territory Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:3>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:3>, [
[TitaniumSmallGear, IronPlate, TitaniumSmallGear],
[EnderPearlPlate, UpFrame, EnderPearlPlate],
[TitaniumSmallGear, IronPlate, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, IronPlate, TitaniumSmallGear]]);

// --- Ocean Emulation Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:21>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:21>, [
[TitaniumSmallGear, ClimateCtrl, TitaniumSmallGear],
[WaterBucket, UpFrame, WaterBucket],
[TitaniumSmallGear, EnviroProcessor, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, EnviroProcessor, TitaniumSmallGear]]);

// --- Open Sky Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:12>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:12>, [
[TitaniumSmallGear, <ProjRed|Illumination:projectred.illumination.lamp:27>, TitaniumSmallGear],
[ClearPane, UpFrame, ClearPane],
[TitaniumSmallGear, ClearPane, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, ClearPane, TitaniumSmallGear]]);

// --- Heater Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:6>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:6>, [
[TitaniumSmallGear, ClimateCtrl, TitaniumSmallGear],
[Netherrack, UpFrame, Netherrack],
[TitaniumSmallGear, LavaBucket, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, LavaBucket, TitaniumSmallGear]]);

// --- Sieve Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade:15>, [
recipes.addShaped(<gendustry:ApiaryUpgrade:15>, [
[TitaniumSmallGear, WovenSilk, TitaniumSmallGear],
[SteelBars, UpFrame, SteelBars],
[TitaniumSmallGear, WovenSilk, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, WovenSilk, TitaniumSmallGear]]);

// --- Production Upgrade
mods.forestry.Carpenter.addRecipe(<gendustry:ApiaryUpgrade>, [
recipes.addShaped(<gendustry:ApiaryUpgrade>, [
[TitaniumSmallGear, Sugar, TitaniumSmallGear],
[RoyalJelly, UpFrame, RoyalJelly],
[TitaniumSmallGear, Sugar, TitaniumSmallGear]], <liquid:seedoil> * 1000, 60);
[TitaniumSmallGear, Sugar, TitaniumSmallGear]]);

// --- Industrial Grafter
recipes.addShaped(<gendustry:IndustrialGrafter:100>, [
[TitaniumScrew, Grafter, TitaniumScrew],
[TitaniumSmallGear, PowerModule, TitaniumSmallGear],
[TitaniumPlate, <ore:batteryBasic, TitaniumPlate]]);
[TitaniumPlate, <ore:batteryBasic>, TitaniumPlate]]);

// --- Industrial Scoop
recipes.addShaped(<gendustry:IndustrialScoop:100>, [
Expand Down Expand Up @@ -501,6 +501,4 @@ Assembler.addRecipe(<gendustry:ErrorSensorCover>, <gregtech:gt.metaitem.01:17028



// --- Hiding Stuff ---


// --- Hiding Stuff ---
59 changes: 0 additions & 59 deletions scripts/Gregs-Lighting.zs

This file was deleted.

0 comments on commit 54a30be

Please sign in to comment.