zhenxun_bot/zhenxun/builtin_plugins/shop/goods_register.py

34 lines
806 B
Python
Raw Normal View History

from zhenxun.models.user_console import UserConsole
from zhenxun.utils.decorator.shop import shop_register
@shop_register(
name="神秘药水",
price=999999,
des="鬼知道会有什么效果,要不试试?",
partition="小秘密",
icon="mysterious_potion.png",
)
async def _(user_id: str):
await UserConsole.add_gold(
user_id,
1000000,
"shop",
)
return "使用道具神秘药水成功!你滴金币+1000000"
@shop_register(
name="神秘药水2",
price=999999,
des="鬼知道会有什么效果,要不试试?",
partition="小秘密",
)
async def _(user_id: str):
await UserConsole.add_gold(
user_id,
1000000,
"shop",
)
return "使用道具神秘药水成功!你滴金币+1000000"