Files
mol-robot/plugins/cook/db/food.js
mol 16196c46ac
All checks were successful
continuous-integration/drone/push Build is passing
test
2023-12-14 14:35:47 +08:00

93 lines
953 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export const emojiMap = new Map([
[
'土豆', '🥔'
],
[
'胡萝卜', '🥕'
],
[
'花菜', '🥦'
],
[
'白萝卜', '🥣'
],
[
'西葫芦', '🥒'
],
[
'番茄', '🍅'
],
[
'西红柿', '🍅'
],
[
'芹菜', '🥬'
],
[
'黄瓜', '🥒'
],
[
'洋葱', '🧅'
],
[
'莴笋', '🎍'
],
[
'菌菇', '🍄'
],
[
'茄子', '🍆'
],
[
'豆腐', '🍲'
],
[
'包菜', '🥗'
],
[
'白菜', '🥬'
],
[
'午餐肉', '🥓'
],
[
'香肠', '🌭'
],
[
'腊肠', '🌭'
],
[
'鸡肉', '🐤'
],
[
'猪肉', '🐷'
],
[
'鸡蛋', '🥚'
],
[
'虾', '🦐'
],
[
'牛肉', '🐮'
],
[
'骨头', '🦴'
],
[
'鱼Todo', '🐟'
],
[
'面食', '🍝'
],
[
'面包', '🍞'
],
[
'米', '🍚'
],
[
'方便面', '🍜'
]
]
)