module RthCondiments
{
  imports
  {
    Base
  }

  item CondimentMag1
  {
      Weight	=	0.1,
      Type	=	Literature,
      DisplayName	=	Condiment Kingdom : Vol 1 - Totally Tomatos,
      Icon	=	RthCondMag1,
      TeachedRecipes  =   Make Marinara in a bowl;Make Ketchup in a bowl,
      ReplaceOnUse    =   CondimentMag1,
  }

  item CondimentMag2
  {
      Weight	=	0.1,
      Type	=	Literature,
      DisplayName	=	Condiment Kingdom : Vol 2 - Mayo Mastered,
      Icon	=	RthCondMag2,
      TeachedRecipes  =   Make Mayonnaise in a bowl;Cook Sunflower seeds,
      ReplaceOnUse    =   CondimentMag2,
  }

  item HomeMadeKetchup
  {
      HungerChange	=	-20,
      Weight	=	0.2,
      Type	=	Food,
      UnhappyChange	=	30,
      DisplayName	=	Home Made Ketchup,
      Icon	=	Ketchup,
      EvolvedRecipe = Sandwich:2;Burger:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2,
      Spice   =   true,
      Carbohydrates = 370,
      Proteins = 0,
      Lipids = 0,
      Calories = 1480,
      Packaged = TRUE,
      CantBeFrozen = TRUE,
      ReplaceOnUse = farming.MayonnaiseEmpty,
  }

  item HomeMadeMarinara
  {
      HungerChange	=	-10,
      Weight	=	0.2,
      Type	=	Food,
      DisplayName	=	Home Made Marinara,
      Icon	=	Marinarai,
      EvolvedRecipe = Sandwich:2;Burger:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2,
      Spice   =   true,
      Carbohydrates = 55,
      Proteins = 10,
      Lipids = 7.5,
      Calories = 350,
      Packaged = TRUE,
      CantBeFrozen = TRUE,
      ReplaceOnUse = EmptyJar,
  }

  item HomeMadeMayonnaise
  {
    Type				=		Food,
    DisplayName			=		Home Made Mayonnaise,
    Icon				=	 TZ_MayonnaiseFull,
    Weight				=		0.5,
    HungerChange 		=		-30,
    BoredomChange 		=		10,
    UnhappyChange 		=		5,
    DaysFresh 			=		10,
    DaysTotallyRotten 	=	 	13,
    EvolvedRecipe       =       Sandwich:2;Burger:2;Salad:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2,
    Spice   =   true,
    Carbohydrates = 0,
    Proteins = 0,
    Lipids = 330,
    Calories = 3000,
    Packaged = TRUE,
    ReplaceOnUse 	    = 		farming.MayonnaiseEmpty,
  }

  item SunflowerOil
  {
    Weight	=	0.5,
    Type	=	Drainable,
    DisplayName			=		Sunflower Oil,
    Icon	=	WineEmpty,
		UseDelta	=	0.2,
    ReplaceOnUse = Base.WineEmpty,
  }

  item KetchupMix
  {
      HungerChange	=	-20,
      Weight	=	0.2,
      Type	=	Food,
      UnhappyChange	=	30,
      DisplayName	=	Bowl of Ketchup,
      Icon	=	Bowl,
      EvolvedRecipe = Sandwich:2;Burger:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2,
      Spice   =   true,
      Carbohydrates = 370,
      Proteins = 0,
      Lipids = 0,
      Calories = 1480,
      Packaged = TRUE,
      CantBeFrozen = TRUE,
  		ReplaceOnUse 	    = 		Bowl,
  }

  item MayonnaiseMix
  {
    Type				=		Food,
    DisplayName			=		Bowl of Mayonnaise,
    Icon				=	 Bowl,
    Weight				=		0.5,
    HungerChange 		=		-30,
    BoredomChange 		=		10,
    UnhappyChange 		=		5,
    DaysFresh 			=		10,
    DaysTotallyRotten 	=	 	13,
    EvolvedRecipe       =       Sandwich:2;Burger:2;Salad:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2,
    Spice   =   true,
    Carbohydrates = 0,
    Proteins = 0,
    Lipids = 330,
    Calories = 3000,
    Packaged = TRUE,
    ReplaceOnUse 	    = 		Bowl,
  }

  item MarinaraMix
  {
    HungerChange	=	-10,
    Weight	=	0.2,
    Type	=	Food,
    DisplayName	=	Bowl of Marinara,
    Icon	=	Bowl,
    EvolvedRecipe = Sandwich:2;Burger:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2,
    Spice   =   true,
    Carbohydrates = 55,
    Proteins = 10,
    Lipids = 7.5,
    Calories = 350,
    Packaged = TRUE,
    CantBeFrozen = TRUE,
    ReplaceOnUse 	    = 		Bowl,
  }

  item CookedSunflowerSeeds
  {
    weight = 2,
    Type = Food,
    DisplayName = Cooked Sunflower Seeds,
    Icon = PanFull,
    EvolvedRecipe = Cake:10;Pie:10;Salad:10,
    HungerChange 		=		-60,
    Carbohydrates = 150.12,
    Proteins = 42.34,
    Lipids = 55.48,
    Calories = 2000,
    ReplaceOnUse 	    = 		Pan,
  }

  item PreparedSunflowerSeeds
  {
    weight = 2,
    Type = Food,
    DisplayName = Sunflower Oil Preperation,
    Icon = PanFull,
    IsCookable	        =	        true,
    MinutesToBurn	    =	        60,
    MinutesToCook	    =	        30,
    ReplaceOnCooked = RthCondiments.CookedSunflowerSeeds,
    HungerChange 		=		-50,
    Carbohydrates = 140.12,
    Proteins = 40.34,
    Lipids = 50.48,
    Calories = 1550,
  }

  recipe Cook Sunflower seeds
  {
    SunflowerSeeds=10,
    Pan,

    Result:PreparedSunflowerSeeds,
    time:80.0,
    Category:Cooking,
		NeedToBeLearn:true,
  }

  recipe Pour Sunflower oil into bottle
  {
    WineEmpty/WineEmpty2,
     CookedSunflowerSeeds,

     Result:SunflowerOil,
     OnCreate:SunflowerOil_OnCreate,
     OnGiveXP:NoXP_OnGiveXP,
     Time:80.0,
     Category:Cooking,
  }

  recipe Make Mayonnaise in a bowl
  {
     Bowl,
     Vinegar=2,
     SunflowerOil=2,
     Mustard=0.1,
     Egg/WildEggs,

     Result:MayonnaiseMix,
     OnCreate:Mayonnaise_OnCreate,
     Time:80.0,
     Category:Cooking,
 		 NeedToBeLearn:true,
  }

  recipe Make Mayonnaise in a bowl
  {
     Bowl,
     Vinegar=2,
     SunflowerOil=2,
     RthCommonSeeds.HomeMadeMustard/RthCommonSeeds.MustardMix,
     Egg/WildEggs,

     Result:MayonnaiseMix,
     OnCreate:Mayonnaise_OnCreate,
     Time:80.0,
     Category:Cooking,
 		 NeedToBeLearn:true,
  }

  recipe Make Ketchup in a bowl
  {
     Bowl,
     Vinegar=2,
     SunflowerOil=1,
     farming.Tomato=2,
     Sugar=1,

     Result:KetchupMix,
     Time:80.0,
     Category:Cooking,
 		 NeedToBeLearn:true,
  }

  recipe Make Ketchup in a bowl
  {
     Bowl,
     Vinegar=2,
     SunflowerOil=1,
     Base.CannedTomatoOpen,
     Sugar=1,

     Result:KetchupMix,
     Time:80.0,
     Category:Cooking,
 		 NeedToBeLearn:true,
  }

  recipe Make Marinara in a bowl
  {
     Bowl,
     Base.Wine/Base.Wine2,
     SunflowerOil=1,
     farming.Tomato=2,
     Base.Onion,
     Sugar=1,

     Result:MarinaraMix,
     OnCreate:Marinara_OnCreate,
     Time:80.0,
     Category:Cooking,
 		 NeedToBeLearn:true,

  }

  recipe Make Marinara in a bowl
  {
     Bowl,
     Base.Wine/Base.Wine2,
     SunflowerOil=1,
     Base.CannedTomatoOpen,
     Base.Onion,
     Sugar=1,

     Result:MarinaraMix,
     OnCreate:Marinara_OnCreate,
     Time:80.0,
     Category:Cooking,
 		 NeedToBeLearn:true,

  }

  recipe Pour Ketchup into bottle
  {
    KetchupMix,
    farming.MayonnaiseEmpty,

    Result:HomeMadeKetchup,
    Time:80.0,
    Category:Cooking,
    OnCreate:PourCondiment_OnCreate,
    OnGiveXP:NoXP_OnGiveXP,
  }

  recipe Pour Mayonnaise onto bottle
  {
    MayonnaiseMix,
    farming.MayonnaiseEmpty,

    Result:HomeMadeMayonnaise,
    OnCreate:PourCondiment_OnCreate,
    Time:80.0,
    Category:Cooking,
    OnGiveXP:NoXP_OnGiveXP,
  }

  recipe Pour Marinara onto bottle
  {
    MarinaraMix,
    EmptyJar,

    Result:HomeMadeMarinara,
    OnCreate:PourCondiment_OnCreate,
    Time:80.0,
    Category:Cooking,
    OnGiveXP:NoXP_OnGiveXP,
  }
}
