test
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
mol
2023-12-14 14:35:47 +08:00
parent 579d39fa4a
commit 16196c46ac
3 changed files with 106 additions and 4 deletions

93
plugins/cook/db/food.js Normal file
View File

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