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

from plugins.hydroroll_plugin_base import CommandPluginConfig


class Config(CommandPluginConfig):
    __config_name__ = "plugin_dice"
    command: Set[str] = {"r", "roll", "dice"}
    """命令文本。"""
    max_dice_times: int = 1000
    """最大单次投掷次数。"""
    exceed_max_dice_times_str: str = "错误:超过最大投掷次数。"
    """超过最大单次投掷次数时的提示语。"""