module Skittles
{
  imports
  {
    Base
  }
  
	craftRecipe Make Vegetable Oil
  {
    timedAction = MakeCoffee,
    Time = 45,
    Tags = InHandCraft;Cooking,
    category = Cooking,
	xpAward = Cooking:10,
    inputs
		{

			item 1 tags[MixingUtensil] mode:keep,
			item 1 [Base.Funnel;Base.Ladle] mode:keep,
			item 1 [Base.PanForged;Base.Pan;Base.Saucepan;Base.SaucepanCopper;Base.Pot;Base.PotForged] mode:keep,
			item 1 [Base.CheeseCloth;Base.Strainer] mode:destroy,
			item 1 [Base.WaterBottle] mode:destroy,
			item 15 [Skittles.MashedVeggieOil] flags[ItemCount] mode:destroy,
		}
		outputs
		{
			item 1 Base.OilVegetable,
		}
  }
  
}