mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
19 lines
473 B
Python
19 lines
473 B
Python
|
|
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!"
|