module Base
{

    /************Recipes************/
	
    recipe Open Beer Caps Bag100
    {
        CapsBag1,

        Result:BeerBottleCap=100,
        Sound:PutItemInBag,
        Time:5.0,
    }

    recipe Put 100 Caps in a bag
    {
        BeerBottleCap=100,

        Result:CapsBag1,
        Sound:PutItemInBag,
        Time:5.0,
    }

    recipe Open Beer Caps Bag500
    {
        CapsBag2,

        Result:CapsBag1=5,
        Sound:PutItemInBag,
        Time:5.0,
    }

    recipe Put 500 Caps in a bag
    {
        CapsBag1=5,

        Result:CapsBag2,
        Sound:PutItemInBag,
        Time:5.0,
    }

    recipe Open Beer Caps Bag1000
    {
        CapsBag3,

        Result:CapsBag2=2,
        Sound:PutItemInBag,
        Time:5.0,
    }

    recipe Put 1000 Caps in a bag
    {
        CapsBag2=2,

        Result:CapsBag3,
        Sound:PutItemInBag,
        Time:5.0,
    }


}