module SapphCooking
{
	imports
	{
		Base,
	}
	/**********::---------------------------:: ::---------------------------:: **************/
	/**********::--------------------:: Frying Pans are Here! ::--------------------:: **************/
	/**********::---------------------------:: ::---------------------------:: **************/	
	
	item FryingPanwithOil
	{
		ItemType = base:normal,
		ReplaceOnUse = Base.Pan,
		IsCookable = true,
		Weight 		= 1,
		Icon 		= PanwithOilIcon,
		Tooltip 		= Tooltip_OilPan,
		WorldStaticModel 		= FryingPanOil_Ground,
		DisplayCategory = Cooking,
		MetalValue = 10,
		Tags = base:hasmetal;base:cookable;base:smeltablesteelsmall;sapphcooking:oilpan;base:hideuncooked,
		component FluidContainer
        {
            ContainerName = FryingPan,
            Capacity = 0.5,
			Fluids
            {
                fluid = CookingOil:0.3,
            }
            CustomDrinkSound = DrinkingFromMug,
        }
	}

	item FryingPanFriedRiceEvolved
	{
		DisplayCategory 		= Food,
		Icon 		= FriedRicePanIcon,
		ItemType = base:food,
		Weight 		= 1.2,
		StaticModel 		= H_FryingPanRice,
		WorldStaticModel 		= FryingPanFriedRice,
		DisplayName 		= Fried Rice,
		DaysFresh = 3,
		DaysTotallyRotten = 6,
		FatigueChange 		= -5,
		UnhappyChange 		= -10,
		HungerChange 		= -20,
		ReplaceOnUse 		= Pan,
		Calories 		= 350,
		Carbohydrates 		= 100,
		EatType 		= 2hand,
		Lipids 		= 10,
		MinutesToBurn 		= 60,
		MinutesToCook 		= 30,
		IsCookable 		= TRUE,
		Proteins 		= 20,
	}
	
	item FryingPanwithFriedRice
	{
		DisplayCategory 		= Food,
		Icon 		= FriedRicePanIcon,
		ItemType = base:food,
		Weight 		= 1.2,
		StaticModel 		= H_FryingPanRice,
		WorldStaticModel 		= FryingPanFriedRice,
		DisplayName 		= Frying Pan with Fried Rice,
		FatigueChange 		= -5,
		UnhappyChange 		= -10,
		HungerChange 		= -20,
		MinutesToBurn 		= 60,
		MinutesToCook 		= 30,
		IsCookable 		= TRUE,
		ReplaceOnUse 		= Pan,
		Calories 		= 350,
		Carbohydrates 		= 100,
		EatType = plate,
		DaysFresh = 2,
		DaysTotallyRotten = 5,
		Lipids 		= 10,
		Proteins 		= 20,
	}

	item FryingPan_BaconandEggs
	{
		DisplayCategory 		= Food,
		Icon 		= PanwithBaconandEggsIcon,
		ItemType = base:food,
		Weight 		= 1.2,
		StaticModel 		= H_FryingPanBaconEggs,
		WorldStaticModel 		= FryingPanBaconEggs_Ground,
		DisplayName 		= Frying Pan with Bacon and Eggs,
		FatigueChange 		= -5,
		UnhappyChange 		= -5,
		HungerChange 		= -30,
		BoredomChange 		= -5,
		StressChange 		= -5,
		ReplaceOnUse 		= Pan,
		DaysFresh = 4,
		DaysTotallyRotten = 4,
		Calories 		= 580,
		Carbohydrates 		= 15,
		EatType = plate,
		Lipids 		= 18,
		Proteins 		= 20,
		Tags = sapphcooking:baconeggspan;sapphcooking:returnpan,
	}


	item FryingPan_PuffedRice
	{
		DisplayCategory 		= Food,
		Icon 		= FriedRicePanIcon,
		ItemType = base:food,
		Weight 		= 1.2,
		MinutesToBurn 		= 40,
		MinutesToCook 		= 15,
		IsCookable 		= TRUE,
		CantEat = true,
		StaticModel 		= H_FryingPanRice,
		WorldStaticModel 		= FryingPanFriedRice,
		DisplayName 		= Frying Pan with Rice Cereal,
		HungerChange 		= -10,
		ReplaceOnCooked		= Pan;SapphCooking.RiceCereal,
		Calories = 140.0,
        Carbohydrates = 28.0,
        Lipids = 3.0,
        Proteins = 1.0,
		EatType = plate,
	}
}