mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 06:12:53 +08:00
15 lines
723 B
Python
Executable File
15 lines
723 B
Python
Executable File
from models.sign_group_user import SignGroupUser
|
|
|
|
|
|
async def effect(user_id: int, group_id: int, name: str) -> bool:
|
|
if name in ["好感双倍加持卡Ⅰ", "好感度双倍加持卡Ⅰ"]:
|
|
user = await SignGroupUser.ensure(user_id, group_id)
|
|
await user.update(add_probability=0.1).apply()
|
|
if name in ["好感双倍加持卡Ⅱ", "好感度双倍加持卡Ⅱ"]:
|
|
user = await SignGroupUser.ensure(user_id, group_id)
|
|
await user.update(add_probability=0.2).apply()
|
|
if name in ["好感双倍加持卡Ⅲ", "好感度双倍加持卡Ⅲ"]:
|
|
user = await SignGroupUser.ensure(user_id, group_id)
|
|
await user.update(add_probability=0.3).apply()
|
|
return True
|