module Hydrocraft
{
    imports
    {
        Base

    }

/************************ITEMS************************/

item HCWineglassfull
	{
	HungerChange		=	-5,
	Weight			=	0.2,
	Type			=	Food,
	ThirstChange		=	-10,
        UnhappyChange		=	-10,
	DisplayName		=	Glass of Chardonnay,
	Alcoholic		=	TRUE,
	ReplaceOnUse		=	HCWineglass,
	Icon			=	HCWineglassfull,
	CustomContextMenu 	= 	Drink,
	CustomEatSound 		= 	PZ_DrinkingFromBottle,
	FoodType    		=   	NoExplicit,
	Carbohydrates 		= 	5.2,
        Proteins 		= 	0,
        Lipids 			= 	0,
        Calories 		= 	170,
        CantBeFrozen 		= 	TRUE,
	}

item HCWineglassfull2
	{
	HungerChange		=	-5,
	Weight			=	0.2,
	Type			=	Food,
	ThirstChange		=	-10,
        UnhappyChange		=	-10,
	DisplayName		=	Glass of Red Wine,
	Alcoholic		=	TRUE,
	ReplaceOnUse		=	HCWineglass,
	Icon			=	HCWineglassfull2,
	CustomContextMenu 	= 	Drink,
	CustomEatSound 		= 	PZ_DrinkingFromBottle,
	FoodType    		=   	NoExplicit,
	Carbohydrates 		= 	5.2,
        Proteins 		= 	0,
        Lipids 			= 	0,
        Calories 		= 	170,
        CantBeFrozen 		= 	TRUE,
	}
 
item HCWoodenbucketgrape
    {
        Weight    		= 4,
        Type    		= Normal,
        DisplayName         	= Wooden Bucket with Grape Juice,
        icon 			= HCWoodenbucketgrape,
	ResizeWorldIcon 	= 2.0,
    }

item HCWoodenbucketgrapegreen
    {
        Weight    		= 4,
        Type    		= Normal,
        DisplayName         	= Wooden Bucket with White Grape Juice,
        icon 			= HCWoodenbucketgrapegreen,
	ResizeWorldIcon 	= 2.0,
    }

item HCBarrelgrape
    {
        Weight    		= 20,
        Type    		= Normal,
        DisplayName         	= Barrel of Red Grape Juice,
        icon 			= HCWinebarrel,
	ResizeWorldIcon 	= 1.0,
    }

item HCBarrelgrapegreen
    {
        Weight    		= 20,
        Type    		= Normal,
        DisplayName         	= Barrel of White Grape Juice,
        icon 			= HCWinebarrel,
	ResizeWorldIcon 	= 1.0,
    }

item HCBarrelwine
    {
        Weight    		= 20,
        Type    		= Normal,
        DisplayName         	= Barrel of Red Wine,
        icon 			= HCWinebarrel,
	ResizeWorldIcon 	= 1.0,
    }

item HCBarrelwinewhite
    {
        Weight    		= 20,
        Type    		= Normal,
        DisplayName         	= Barrel of White Wine,
        icon 			= HCWinebarrel,
	ResizeWorldIcon 	= 1.0,
    }

item HCBarrelvinegar
    {
        Weight    		= 20,
        Type    		= Normal,
        DisplayName         	= Barrel of vinegar,
        icon 			= HCWinebarrel,
	ResizeWorldIcon 	= 1.0,
    }

/************************RECIPES************************/	

recipe Pour Wine
	{
		HCWineglass=4,
		Wine,
		Result:HCWineglassfull=4,
		Time:70.0,
		Category:Cooking,
    		OnCreate:recipe_hcwineempty,	  
	}

recipe Pour Wine
	{
		HCWineglass=4,
		Wine2,
		Result:HCWineglassfull2=4,
		Time:70.0,
		Category:Cooking,
    		OnCreate:recipe_hcwineempty2,		  
	}

recipe Juice Grapes Into Wooden Bucket
	{
       		SkillRequired:Cooking=2,
		HCWoodenbucket,
		Grapes=16,
		keep HCJuicer/HCJuicer2,
		Result:HCWoodenbucketgrape,
		Time:100,
		Category:Cooking,
	}

recipe Juice Grapes Into Wooden Bucket
	{
       		SkillRequired:Cooking=2,
		HCWoodenbucket,
		HCGrapesgreen=16,
		keep HCJuicer/HCJuicer2,
		Result:HCWoodenbucketgrapegreen,
		Time:100,
		Category:Cooking,
	}

recipe Prepare Wine Barrels
    {
       	SkillRequired:Cooking=3,
	HCWoodenbarrel,
	HCWoodenbucketgrape=5,
	Yeast,
	NeedToBeLearn:true,
   	Result:HCBarrelgrape,
    	Time:50,
	Category:Cooking,
    	OnCreate:recipe_hcwoodenbucket5,
    }

recipe Prepare Wine Barrels
    {
       	SkillRequired:Cooking=3,
	HCWoodenbarrel,
	HCWoodenbucketgrapegreen=5,
	Yeast,
	NeedToBeLearn:true,
   	Result:HCBarrelgrapegreen,
    	Time:50,
	Category:Cooking,
    	OnCreate:recipe_hcwoodenbucket5,
    }

recipe Fill Bottles with Wine
    {
       	SkillRequired:Cooking=5,
	HCBarrelwine,
	WineEmpty=20,
   	Result:Wine2=20,
	NeedToBeLearn:true,
    	Time:50,
	Category:Cooking,
    	OnCreate:recipe_hcwoodenbarrel,
    }    

recipe Fill Bottles with Wine
    {
       	SkillRequired:Cooking=5,
	HCBarrelwinewhite,
	WineEmpty=20,
   	Result:Wine=20,
	NeedToBeLearn:true,
    	Time:50,
	Category:Cooking,
    	OnCreate:recipe_hcwoodenbarrel,
    } 

recipe Fill Bottles with Vinegar
    {
       	SkillRequired:Cooking=7,
	HCBarrelvinegar,
	WhiskeyEmpty=20,
	NeedToBeLearn:true,
   	Result:Vinegar=20,
    	Time:50,
	Category:Cooking,
    	OnCreate:recipe_hcwoodenbarrel,
    }

}