Skip to content

Instantly share code, notes, and snippets.

@kane-thornwyrd
Created January 6, 2016 14:37
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 kane-thornwyrd/6ca6525b6cd571a91756 to your computer and use it in GitHub Desktop.
Save kane-thornwyrd/6ca6525b6cd571a91756 to your computer and use it in GitHub Desktop.
import minetweaker.item.IItemStack;
var AEFlour = <appliedenergistics2:item.ItemMultiMaterial:4>;
var EIOFlour = <EnderIO:itemPowderIngot:8>;
var RCFlour = <RotaryCraft:rotarycraft_item_powders:9>;
var VOFlour = <VeganOption:washableWheat>;
var wheatDough = <VeganOption:washableWheat:1>;
var wheatFlours = [
AEFlour,
EIOFlour,
RCFlour,
VOFlour
] as IItemStack[];
var wheatFlour = <ore:flourWheat>;
var dustWheat = <ore:dustWheat>;
for flour in wheatFlours {
wheatFlour.add(flour);
dustWheat.add(flour);
}
recipes.remove(wheatDough);
recipes.addShapeless(wheatDough, [wheatFlour, <ore:listAllwater>]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment