# collection name where ingredients will be pulled from
SOURCE=master

# destination collections to which recipe will be added
COLLECTIONS=(master quick)

# Traits for the new food.
TRAITS=( 
"name" "Fruit Bowl"
"group" "Fruits and Fruit Juices"
"quantity" 1
"unit" lb
)

# Ingredients for the recipe. Each ingredient must have four
# elements: name, quantity, unit, comment.
INGREDIENTS=(
"Raspberries, raw" 4 oz ""
"Strawberries, raw" 4 oz ""
"Peppers, sweet, red, raw" 4 oz ""
"Carrots, baby, raw" 4 oz ""
"Watermelon, raw" 4 oz ""
"Melons, cantaloupe, raw" 4 oz ""
"Grapes, red or green (European type, such as Thompson seedless), raw" 4 oz ""
"Cherries, sweet, raw" 4 oz ""
"Raspberries, raw" 4 oz ""
"Blackberries, raw" 4 oz ""
)

# available units. Each is a pair: unit name, amount in grams.
UNITS=(
)

# Number of servings. This is optional, unless the unit trait is set
# to serving.
SERVINGS=

# Temporary collection used to hold the ingredients.
TEMPORARY="temporary"

# vim: set filetype=zsh tw=68:
