汤羹类

目录

  1. 味增萝卜汤

味增萝卜汤


from cooker import knife, oven, bowl, stew

from seasoning import '盐', '味增','胡椒', '花椒', '蒜粉'

from raw import '白萝卜'




Radish_slice = knife.QiePian('白萝卜', 0.25)    # 白萝卜切片后再四等分

Stew = stew.new()    # 起炖锅

Stew.append(water, Radish_slice, '味增', '胡椒', '花椒', '蒜粉')    # 炖锅中加材料

# 水烧开转中火
while Stew.content.liquid not boil:

  Stew = oven.fire(Stew, 1)

while Stew.content.solid not soft:

  Stew = oven.fire(Stew, 0.5)


Stew.append('盐')    # 加盐

Bowl = bowl.new()

Bowl.append(Stew.content)    # 盛出

你可能感兴趣的:(汤羹类)