blob: a8c6700195af4531f69fdd948ede39aa8259fcff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from typing import Set
from plugins.iamai_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 = "错误:超过最大投掷次数。"
"""超过最大单次投掷次数时的提示语。"""
|