Skip to content

Instantly share code, notes, and snippets.

@ChatFawkes
Created January 31, 2015 20:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChatFawkes/1afdc90592c0cfd28086 to your computer and use it in GitHub Desktop.
Save ChatFawkes/1afdc90592c0cfd28086 to your computer and use it in GitHub Desktop.
FluxGalaxy - MineFactory Reloaded MineTweaker Script (from 0.3.6)
# Declare variables
val teframehard = <ThermalExpansion:Frame:1>;
val teframeres = <ThermalExpansion:Frame:3>;
val teframeref = <ThermalExpansion:Frame:2>;
val mfrblock = <MineFactoryReloaded:tile.mfr.machineblock>;
val dsu = <MineFactoryReloaded:tile.mfr.machine.1:3>;
val plastic = <MineFactoryReloaded:item.mfr.plastic.sheet>;
val laserdrill = <MineFactoryReloaded:tile.mfr.machine.2>;
val drillcharger = <MineFactoryReloaded:tile.mfr.machine.2:1>;
val titanium = <GalacticraftMars:item.itemBasicAsteroids:5>;
val glowstone = <minecraft:glowstone>;
val pinkslime = <MineFactoryReloaded:item.mfr.pinkslimeball>;
val telight = <ThermalExpansion:Light>;
val deshingot = <GalacticraftMars:item.null:2>;
# Change recipe for Factory Machine Block
/* recipes.remove(mfrblock);
recipes.addShapeless(mfrblock, [teframehard]); */
# Change recipe for Deep Storage Unit
recipes.remove(dsu);
recipes.addShaped(dsu * 4,
[[plastic, plastic, plastic],
[<minecraft:ender_pearl>, <minecraft:ender_pearl>, <minecraft:ender_pearl>],
[<minecraft:ender_eye>, deshingot, <minecraft:ender_eye>]]);
# Change recipe for Laser Drill
recipes.remove(laserdrill);
recipes.addShaped(laserdrill,
[[plastic, plastic, plastic],
[telight, telight, telight],
[titanium, teframeres, titanium]]);
# Change recipe for Laser Drill Precharger
recipes.remove(drillcharger);
recipes.addShaped(drillcharger,
[[plastic, plastic, plastic],
[telight, pinkslime, telight],
[titanium, teframeref, titanium]]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment