module Skittles
{
  imports
  {
    Base
  }
  
	craftRecipe Make Mashed Fruit
  {
    timedAction = MixingMortarPestle,
    Time = 30,
    Tags = InHandCraft;Cooking,
    category = Preservation,
	xpAward = Cooking:10,
    inputs
		{
			item 1 tags[MixingUtensil] mode:keep,
			item 1 tags[MortarPestle] mode:keep,
			item 1 [Base.PanForged;Base.Pan;Base.Saucepan;Base.SaucepanCopper;Base.Pot;Base.PotForged] mode:keep,
			item 5 [Base.Cherry;Base.Grapefruit;Base.Grapes;Base.Lemon;Base.Lime;Base.Mango;Base.Orange;Base.Peach;Base.Pear;Base.Pineapple] flags[ItemCount] mode:destroy,
		}
		outputs
		{
			item 15 Skittles.MashedFruits,
		}
  }
  
  	craftRecipe Make Minced Garlic Mash
  {
    timedAction = MixingMortarPestle,
    Time = 30,
    Tags = InHandCraft;Cooking,
    category = Preservation,
	xpAward = Cooking:10,
    inputs
		{

			item 1 tags[MixingUtensil] mode:keep,
			item 1 [Base.PanForged;Base.Pan;Base.Saucepan;Base.SaucepanCopper;Base.Pot;Base.PotForged] mode:keep,
			item 1 tags[DullKnife;SharpKnife;MeatCleaver] mode:keep flags[MayDegradeLight],
			item 5 [Base.Garlic;Base.PowderedGarlic;Base.WildGarlic2;Base.WildGarlicDried] flags[ItemCount] mode:destroy,
			item 2.0 tags[Oil],
		}
		outputs
		{
			item 15 Skittles.MincedGarlicMash,
		}
  }
  
	craftRecipe Make Veggie Oil Mash
  {
    timedAction = MixingMortarPestle,
    Time = 30,
    Tags = InHandCraft;Cooking,
    category = Preservation,
	xpAward = Cooking:10,
    inputs
		{

			item 1 tags[MixingUtensil] mode:keep,
			item 1 [Base.PanForged;Base.Pan;Base.Saucepan;Base.SaucepanCopper;Base.Pot;Base.PotForged] mode:keep,
			item 1 tags[DullKnife;SharpKnife;MeatCleaver] mode:keep flags[MayDegradeLight],
			item 5 [Base.Avocado;Base.BellPepper;Base.Blackbeans;Base.Cucumber;Base.Eggplant;Base.PepperHabanero;Base.PepperJalapeno;Base.Olives;Base.Soybeans;Base.Turnip] flags[ItemCount] mode:destroy,
		}
		outputs
		{
			item 15 Skittles.MashedVeggieOil,
		}
  }
  
}