Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Aliases external to BigReactors
- var plateSteel = <ore:plateSteel>;
- var plateStainlessSteel = <ore:plateStainlessSteel>;
- var plateTungstenSteel = <ore:plateTungstenSteel>;
- var glassHardened = <ore:glassHardened>;
- var itemDiamond = <minecraft:diamond>;
- var gearDiamond = <ore:gearDiamond>;
- var itemPiston = <ore:craftingPiston>;
- var dustRedstone = <ore:dustRedstone>;
- var itemQuartzNether = <ore:craftingQuartz>;
- var bucketEmpty = <ore:bucketEmpty>;
- # BigReactors Aliases
- var ingotGraphite = <ore:ingotGraphite>;
- var ingotYellorium = <ore:ingotYellorium>;
- var ingotCyanite = <ore:ingotCyanite>;
- var itemFuelRodYellorium = <BigReactors:YelloriumFuelRod>;
- var itemReactorCasing = <ore:reactorCasing>;
- var itemReactorGlass = <ore:glassReactor>;
- var itemReactorController = <ore:reactorController>;
- var itemReprocessorCyanite = <ore:brDeviceCyaniteProcessor>;
- var itemTurbineHousing = <ore:turbineHousing>;
- var itemTurbineGlass = <ore:glassTurbine>;
- var itemTurbineController = <ore:turbineController>;
- var itemPortTurbineFluid = <ore:turbineFluidPort>;
- var itemTurbineRotorBearing = <ore:turbineBearing>;
- var itemTurbineRotorShaft = <ore:turbineRotorShaft>;
- var itemTurbineRotorBlade = <ore:turbineRotorBlade>;
- ###############################
- # Yellowrium Fuel Rod
- recipes.remove(itemFuelRodYellorium);
- recipes.addShaped(itemFuelRodYellorium, [
- [plateSteel, ingotGraphite, plateSteel],
- [plateTungstenSteel, ingotYellorium, plateTungstenSteel],
- [plateSteel, ingotGraphite, plateSteel]]);
- # Reactor Casing
- recipes.remove(itemReactorCasing);
- recipes.addShaped(itemReactorCasing * 4, [
- [plateSteel, ingotGraphite, plateSteel],
- [ingotGraphite, ingotYellorium, ingotGraphite],
- [plateSteel, ingotGraphite, plateSteel]]);
- # Reactor Glass
- recipes.remove(itemReactorGlass);
- recipes.addShaped(itemReactorGlass, [
- [glassHardened, itemReactorCasing, glassHardened]]);
- # Reactor Controller
- recipes.remove(itemReactorController);
- recipes.addShaped(itemReactorController, [
- [itemReactorCasing, plateStainlessSteel, itemReactorCasing],
- [ingotYellorium, itemDiamond, ingotYellorium],
- [itemReactorCasing, plateStainlessSteel, itemReactorCasing]]);
- # Cyanite Rercprocessor
- recipes.remove(itemReprocessorCyanite);
- recipes.addShaped(itemReprocessorCyanite, [
- [itemReactorCasing, plateStainlessSteel, itemReactorCasing],
- [itemPiston, itemFuelRodYellorium, itemPiston],
- [itemReactorCasing, dustRedstone, itemReactorCasing]]);
- # Turbine Housing
- recipes.remove(itemTurbineHousing);
- recipes.addShaped(itemTurbineHousing * 4, [
- [plateSteel, ingotGraphite, plateSteel],
- [itemQuartzNether, ingotCyanite, itemQuartzNether],
- [plateSteel, ingotGraphite, plateSteel]]);
- # Turbine Glass
- recipes.remove(itemTurbineGlass);
- recipes.addShaped(itemTurbineGlass, [
- [glassHardened, itemTurbineHousing, glassHardened]]);
- # Turbine Controller
- recipes.remove(itemTurbineController);
- recipes.addShaped(itemTurbineController, [
- [itemTurbineHousing, plateStainlessSteel, itemTurbineHousing],
- [ingotCyanite, itemDiamond, ingotCyanite],
- [itemTurbineHousing, plateStainlessSteel, itemTurbineHousing]]);
- # Turbine Fluid Port
- recipes.remove(itemPortTurbineFluid);
- recipes.addShaped(itemPortTurbineFluid, [
- [itemTurbineHousing, null, itemTurbineHousing],
- [plateStainlessSteel, bucketEmpty, plateStainlessSteel],
- [itemTurbineHousing, itemPiston, itemTurbineHousing]]);
- # Turbine Rotor Shaft
- recipes.remove(itemTurbineRotorShaft);
- recipes.addShaped(itemTurbineRotorShaft, [
- [plateSteel, ingotCyanite, plateSteel]]);
- # Turbine Rotor Blade
- recipes.remove(itemTurbineRotorBlade);
- recipes.addShaped(itemTurbineRotorBlade, [
- [ingotCyanite, plateSteel, plateSteel]]);
- # Turbine Rotor Bearing
- recipes.remove(itemTurbineRotorBearing);
- recipes.addShaped(itemTurbineRotorBearing, [
- [itemTurbineHousing, itemTurbineRotorShaft, itemTurbineHousing],
- [itemDiamond, gearDiamond, itemDiamond],
- [itemTurbineHousing, itemTurbineRotorShaft, itemTurbineHousing]]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement