module ZWBFRecipes
{
    import
    {
        Base,
        Babies
    }

    /************************ Milk ************************/
    recipe Hand Expression in Bottle
    {
        WaterBottleEmpty,
        
        Result: MilkBottle,
        Category: Cooking,
        Time: 800.0,
        AnimNode: Yonchi_breastpump,
        Sound: PourWaterIntoObject,
        OnGiveXP: Recipe.OnGiveXP.None,
        OnTest: ZWBFRecipes.OnTest.HandExpress,
        OnCreate: ZWBFRecipes.OnCreate.HandExpress,
    }

    recipe Hand Expression in Biberon
    {
        Empty_Biberon,
        
        Result: Biberon_milk,
        Category: Cooking,
        Time: 800.0,
        AnimNode: Yonchi_breastpump,
        Sound: PourWaterIntoObject,
        OnGiveXP: Recipe.OnGiveXP.None,
        OnTest: ZWBFRecipes.OnTest.HandExpress,
        OnCreate: ZWBFRecipes.OnCreate.HandExpress,
    }

    recipe Fill Biberon
    {
        Empty_Biberon,
        keep BreastPump,

        Result: Biberon_milk,
        Time: 500.0,
        Category: Cooking,
        AnimNode: Yonchi_breastpump,
        Sound: PourWaterIntoObject,
        OnGiveXP: Recipe.OnGiveXP.None,
        OnTest: ZWBFRecipes.OnTest.BreastPump,
        OnCreate: ZWBFRecipes.OnCreate.BreastPump,
        Prop1:  Source=2,
    }
    
    recipe Fill Milk Bottle
    {
        WaterBottleEmpty,
        keep BreastPump,

        Result: MilkBottle,
        Time: 500.0,
        Category: Cooking,
        Sound: PourWaterIntoObject,
        AnimNode: Yonchi_breastpump,
        OnGiveXP: Recipe.OnGiveXP.None,
        OnTest: ZWBFRecipes.OnTest.BreastPump,
        OnCreate: ZWBFRecipes.OnCreate.BreastPump,
        Prop1:  Source=2
    }
    
    /************************ Vaginal Douche ************************/
    recipe Fill Vaginal Douche
    {
        VaginalDouche_empty,
        Water;1,
        
        Result: VaginalDouche_full,
        Time: 100,
        Category: Health,
        Sound: PourWaterIntoObject,
        OnGiveXP: Recipe.OnGiveXP.None,
        Prop1:  Source=1,
    }
    
    recipe Clear Sperm
    {
        VaginalDouche_full,
        Result: VaginalDouche_empty,
        Time: 500,
        Category: Health,
        Sound: PourWaterIntoObject,
        StopOnWalk: true,
        AnimNode: blabla_standing_cleans_herself,
        OnGiveXP: Recipe.OnGiveXP.None,
        OnTest: ZWBFRecipes.OnTest.ClearSperm,
        OnCreate: ZWBFRecipes.OnCreate.ClearSperm,
        Prop2:  Source=1,
    }

    /************************ Condoms ************************/
    recipe Open Condom Box
    {
        CondomBox,

        Result: Condom=10,
        Time: 20.0,
        Category: Health,
        Sound: OpenSeedPacket,
    }

    recipe Place Condoms in Box
    {
        Condom=10,

        Result: CondomBox,
        Time: 20.0,
        Sound: PutItemInBag
    }
}