aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/hydroroll/plugins/plugin_luck/config.py
blob: 6190531a07fa738bffe53b9ea839ab3be24d336b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from typing import Set

from plugins.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}"
    """最终发送消息的格式。"""