24 lines
839 B
TOML
24 lines
839 B
TOML
[GuessSong]
|
|
enable = true
|
|
command = ["猜歌名"]
|
|
command-format = """
|
|
🎵猜歌名指令:
|
|
猜歌名 - 开始猜歌游戏
|
|
猜歌名 歌手名 - 开始指定歌手的猜歌游戏
|
|
猜歌名 歌名 - 提交你的答案
|
|
"""
|
|
|
|
[GuessSong.api]
|
|
music_list_api = "https://hhlqilongzhu.cn/api/dg_douyinmusic.php?msg={singer_name}&type=json&num=50"
|
|
music_single_api = "https://hhlqilongzhu.cn/api/dg_douyinmusic.php?msg={search_query}&type=json&n=1"
|
|
|
|
[GuessSong.popular_singers]
|
|
list = [
|
|
"周杰伦", "林俊杰", "薛之谦", "陈奕迅", "邓紫棋", "李荣浩", "张学友", "刘德华",
|
|
"张国荣", "梅艳芳", "Beyond", "容祖儿", "谢霆锋",
|
|
"王菲", "张惠妹", "孙燕姿", "蔡依林", "五月天"
|
|
]
|
|
|
|
[GuessSong.game]
|
|
clip_duration = 10 # 音频片段时长(秒)
|
|
hint_timeout = 30 # 提示等待时间(秒) |