Committer: hpcdisrespecter <noreply@git.asperger.pro> modified: .gitignore modified: README.md new file: menus/peoples-organic.sexp new file: menus/townhall-shortnorth.sexp new file: organic-cafe.asd new file: run.lisp new file: src/package.lisp new file: src/planner.lisp new file: test/tests.lisp
63 lines
1.8 KiB
Common Lisp
63 lines
1.8 KiB
Common Lisp
(:menu "People's Organic Cafe"
|
|
(:group :breakfast-main
|
|
(:item "Steak and eggs" 21)
|
|
(:item "Breakfast bowl" 16)
|
|
(:item "Avocado toast" 17)
|
|
(:item "Breakfast quesadilla" 17)
|
|
(:item "Breakfast croissant" 16)
|
|
(:item "Classic quiche Lorraine" 14)
|
|
(:item "Seasonal quiche" 11)
|
|
(:item "Breakfast burrito" 16))
|
|
|
|
(:group :lunch-main
|
|
(:item "Bison burger" 19)
|
|
(:item "Cheeseburger" 17)
|
|
(:item "Northern California wrap" 16)
|
|
(:item "Roasted turkey pesto sandwich" 15)
|
|
(:item "MN grilled cheese" 12)
|
|
(:item "Rosemary flatbread" 15))
|
|
|
|
(:group :soup
|
|
(:item "Soup du jour" 6)
|
|
(:item "Tomato basil soup" 6))
|
|
|
|
(:group :dinner-main
|
|
(:item "Chicken pot pie" 18)
|
|
(:item "Sesame glazed salmon" 22)
|
|
(:item "Ahi tuna" 19)
|
|
(:item "Chicken fried rice (ask for no hemp seeds)" 20)
|
|
(:item "Street tacos (chicken)" 16)
|
|
(:item "Street tacos (mahi mahi)" 16))
|
|
|
|
(:group :hot-drink
|
|
(:item "16 oz cafe au lait" 5)
|
|
(:item "16 oz chai tea" 6.25)
|
|
(:item "12 oz sweet matcha latte" 6.60)
|
|
(:item "London fog" 5.10)
|
|
(:item "Hot cocoa" 5))
|
|
|
|
(:group :cold-drink
|
|
(:item "Ginger green matcha shake" 9.50)
|
|
(:item "Co-co antioxidant shake" 9.50)
|
|
(:item "Garden elixir" 6.70)
|
|
(:item "Green elixir" 6.70)
|
|
(:item "16 oz cold press" 5.10))
|
|
|
|
(:plan :full-day
|
|
(:meal :breakfast
|
|
(:one :main :breakfast-main)
|
|
(:one :hot-drink :hot-drink))
|
|
(:meal :lunch
|
|
(:one :main :lunch-main)
|
|
(:maybe :soup :soup :chance 1/2)
|
|
(:one :cold-drink :cold-drink))
|
|
(:meal :dinner
|
|
(:one :main :dinner-main)
|
|
(:one :hot-drink :hot-drink)))
|
|
|
|
(:plan :lazy-day
|
|
(:meal :breakfast
|
|
(:one :main :breakfast-main)
|
|
(:one :hot-drink :hot-drink)
|
|
(:one :cold-drink :cold-drink))))
|