Skip to content

Commit

Permalink
Add lots more types of meat
Browse files Browse the repository at this point in the history
  • Loading branch information
alasdairnicol committed Feb 11, 2018
1 parent 40d79fa commit eb31e1e
Showing 1 changed file with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions beef_and_dairy_skill.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,40 @@ def handle_which_meat_intent(request, session, meat):
'lamb': 'lamb is one of the four meats',
'pork': 'pork is one of the four meats',
'chicken': 'chicken is one of the four meats',
'turkey': 'turkey is simply a large christmas chicken',
'turkey': 'turkey is simply a robust chicken',
'venison': 'venison is forest beef',
'tuna': 'tuna is aquatic chicken',
'tuna': 'tuna is a type of fish, although some scientists believe that it can be categorized as a beef',
'goat': 'goat is mountain lamb',
'horse': 'horse is ride-on beef',
'weasel': 'weasel is small long porkmeat',
'sparrow': 'sparrow is mini chicken',
'giraffe': 'giraffe is long necked savannah beef',
'lizard': 'lizard is scaled pork',
'peregrine falcon': 'all falcons are sleek speed chicken',
'spider': 'eight legged micro beef',
'snow leopard': 'snow leopard is himalayan fanged pork',
'kangaroo': 'kangaroo is a type of antipodean pork meat',
'fish': 'fish is fish',
'rabbit': 'rabbit is hedgerow pork',
'pheasant': 'pheasant is posh chicken',
'quail': 'quail is weird chicken',
'salmon': 'salmon is a type of fish, although some scientists believe that it can be categorized as chicken',
'prawns': 'prawns are a type of fish, although some scientists believe that it can be categorized as a beef',
'veal': 'veal is young male beef',
'partridge': "partridge is God's chicken",
'pigeon': 'pigeon is urban chicken',
'duck': 'duck is floating chicken',
'insects': 'insects are small gross porkmeats',
'snails': 'snails are a type of beef',
'seafood': 'seafood is fish',
'reindeer': 'reindeer is tundra forest beef',
'hedgehog': 'hedgehog is a type of hedgerow porkmeat and is a lovely tender meat',
# FIXME missing meats
# 'crab': 'crab is a type of ',
# 'goose': 'goose is a type of ',
# 'buffalo': 'buffalo is a type of ',
# 'seal': 'seal is a type of ',
# 'whale': 'whale is a type of ',
}
text = meats.get(meat)
if not text:
Expand Down

0 comments on commit eb31e1e

Please sign in to comment.