Line 103: |
Line 103: |
| | | |
| <pre> | | <pre> |
− | # Food Pyramid | + | # ChooseMyPlate.gov |
− | LEVELS = [_('minimum'), _('moderate'), _('most'), _('unlimited')] | + | LEVELS = [_('minimum'), _('moderate'), _('more'), _('most'), _('unlimited')] |
− | # Food name; calories; food pyramid level, image file name | + | MYPLATE = [[_('sweets'), 0], [_('dairy'), 1], [_('fruits'), 2], |
− | GAME_DEFS = [[_('banana'), 105, 2, 'banana.png'],
| + | [_('meat'), 2], [_('grains'), 3], [_('vegetables'), 3], |
| + | [_('water'), 4]] |
| + | |
| + | # Food name; calories; myplate category, image file name |
| + | FOOD = [[_('banana'), 105, 2, 'banana.png'], |
| [_('apple'), 72, 2, 'apple.png'], | | [_('apple'), 72, 2, 'apple.png'], |
− | [_('fish'), 58, 1, 'fish.png'], | + | [_('fish'), 58, 3, 'fish.png'], |
− | [_('corn'), 96, 2, 'corn.png'], | + | [_('corn'), 96, 4, 'corn.png'], |
− | [_('broccoli'), 55, 2, 'broccoli.png'], | + | [_('broccoli'), 55, 5, 'broccoli.png'], |
− | [_('chicken'), 262, 1, 'chicken.png'], | + | [_('chicken'), 262, 3, 'chicken.png'], |
| [_('cheese'), 114, 1, 'cheese.png'], | | [_('cheese'), 114, 1, 'cheese.png'], |
| [_('orange'), 62, 2, 'orange.png'], | | [_('orange'), 62, 2, 'orange.png'], |
− | [_('potato'), 159, 2, 'potato.png'], | + | [_('potato'), 159, 5, 'potato.png'], |
− | [_('water'), 0, 3, 'water.png'], | + | [_('water'), 0, 6, 'water.png'], |
− | [_('tomato'), 150, 2, 'tomato.png'], | + | [_('tomato'), 150, 5, 'tomato.png'], |
| [_('cookie'), 68, 0, 'cookie.png'], | | [_('cookie'), 68, 0, 'cookie.png'], |
− | [_('beef'), 284, 1, 'beef.png'], | + | [_('beef'), 284, 3, 'beef.png'], |
− | [_('egg'), 77, 1, 'egg.png'], | + | [_('egg'), 77, 3, 'egg.png'], |
− | [_('sweetpotato'), 169, 2, 'sweetpotato.png'], | + | [_('sweetpotato'), 169, 5, 'sweetpotato.png'], |
− | [_('tamale'), 126, 2, 'nacatamal.png'], | + | [_('tamale'), 126, 5, 'nacatamal.png'], |
− | [_('bread'), 69, 2, 'bread.png'], | + | [_('bread'), 69, 4, 'bread.png'], |
− | [_('rice and beans'), 411, 2, 'rice-and-beans.png'], | + | [_('rice and beans'), 411, 4, 'rice-and-beans.png'], |
| [_('cake'), 387, 0, 'cake.png']] | | [_('cake'), 387, 0, 'cake.png']] |
| </pre> | | </pre> |