blob: eeef14b31ebc670743e500d31a99a0b16f36cf61 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
from typing import Set
from plugins.hydroroll_plugin_base import CommandPluginConfig
class Config(CommandPluginConfig):
__config_name__ = "plugin_luck"
command: Set[str] = {"luck"}
"""命令文本。"""
min_int: int = 0
"""最小随机整数。"""
max_int: int = 100
"""最大随机整数。"""
message_str: str = "{user_name}今天的运气是: {message}"
"""最终发送消息的格式。"""
|