今天吃什么选择器-_-
选择困难症神器笑死(o゜▽゜)o☆
# -*- coding: utf-8 -*-
"""
Created on Fri Mar 18 10:11:28 2022
@author: 小良子
"""
#今天吃什么选择器
import random
import time
fandian=['★★★★蜀园','★★★十六章','★★★★★云三剁鲜肉米线','★★★★KFC','★★★★麦当劳','★★★吉野家','★★★★★千只鹤日本料理','★★★★韩食记','★★★★★川香优品',\
'★★★★米兰西点','★★★★★小龙坎','★★★串串香','★★★晋大碗']
caidan=['★★★★麻辣香锅','★★★★小牛锅贴','★★★★★炒哥','★★★★KFC','★★★★麦当劳','★★★★宋老妈秘制排骨','★★★拼一碗蛋炒饭'\
,'★★★三米粥铺','★★★★一食堂烤鱼饭','★★★一食堂蜀味轩抄手','★★★一食堂蜀味轩鸡杂粉','★★★★二食堂干锅','★★★二食堂清汤牛肉面'\
,'★★★二食堂清真臊子面','★★★二食堂咖喱/奥尔良/金枪鱼炒饭','★★★二食堂清真小炒鸡米饭','★★★★宁宁营养蒸鸡','★★★★霸蛮湖南米粉'
,'★★★★韩食记','★★★★花小小新疆炒米粉','★★★★壹碗香烤鱼饭','★★★抖少年海鲜炒饭',\
'★★★★Sunny部队火锅面','★★★★披萨','★★★TaiLi火锅杯','★★★★二食堂清真麻辣羊肉','★★★武圣羊汤']
naicha=['★★★★★茶亭序','★★★CoCo','★★★★茶百道','★★★蜜雪冰城','★★★★茶理王子','★★★★★ARTEASG','★★★★书亦烧仙草'\
,'★★★★本宫的茶','★★★贡茶','★★★★1点点','★★★★沪上阿姨鲜果茶','★★★★一芳水果茶','★★★甜啦啦',\
'★★★瑞幸咖啡','★★★★兰芳园丝袜奶茶','★★★★茶太良品','★★★米浆记忆']
yuanshi=random.randrange(800,2001)
aaa='r'
while aaa in ['r','R']:
print('【欢迎来到mihoyo之今天吃什么!】\n【您剩余的原石:{0}✦ 】'.format(yuanshi))
print("【扣0出去吃,扣1吃食堂和外卖,扣2喝奶茶(●'◡'●)】")
xxx=input()
while xxx not in ['0','1','2']:
xxx=input('【请您输入正确的数字啦!】\n')
print()
def ran(yuanshi):
if xxx=='1':
print('【恭喜您抽到了'+random.choice(caidan)+'( •̀ ω •́ )y】\n')
elif xxx=='2':
print('【恭喜您抽到了'+random.choice(naicha)+'(o゜▽゜)o☆】\n')
print("P.S.不许天天喝奶茶( ̄(工) ̄)")
elif xxx=='0':
print('【恭喜您抽到了'+random.choice(fandian)+'(●ˇ∀ˇ●)】\n')
ran(yuanshi)
yuanshi-=160
print('【您剩余的原石:{0}✦】'.format(yuanshi))
print()
x=input("【不想要这个?Σ(っ °Д °;)っ扣3再抽一次卡!】\n【想抽别的或回到抽卡主界面请扣r键!】\n")
while x not in ['r','R','3']:
x=input('【请您输入正确的数字啦!】\n')
if x in ['r','R']:
aaa=x
continue
else:
aaa='whateverisok'
print()
while x=='3' and yuanshi>=160:
print()
ran(yuanshi)
yuanshi-=160
print('【您剩余的原石:{0}✦】'.format(yuanshi))
print()
x=input("【不想要这个?Σ(っ °Д °;)っ扣3再抽一次卡!】\n【想抽别的或回到抽卡主界面请扣r键!】\n")
while x not in ['r','R','3']:
x=input('【请您输入正确的数字啦!】\n')
if x in ['r','R']:
aaa=x
continue
print()
print()
if yuanshi<160:
print('【没原石还想抽卡?重开吧(〃>目<)】')
break
a=input()