From c9a0ac5d7b46579383a5c47d745cc7c05b18c775 Mon Sep 17 00:00:00 2001 From: syfantasy <115546901+syfantasy@users.noreply.github.com> Date: Sun, 29 Dec 2024 21:19:04 +0800 Subject: [PATCH] feat: add bymFuckList --- guoba.support.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/guoba.support.js b/guoba.support.js index bdf9dff..31b4ce2 100644 --- a/guoba.support.js +++ b/guoba.support.js @@ -998,6 +998,26 @@ export function supportGuoba () { label: '伪人模式骂人反击的设定词', component: 'Input' }, + { + field: 'bymFuckList', + label: '伪人模式反击的触发词', + bottomHelpMessage: '请输入用于伪人模式下骂人反击的触发词,每个词组将被单独处理', + component: "GTags", + componentProps: { + placeholder: '请输入反击触发词', + allowAdd: true, + allowDel: true, + showPrompt: true, + promptProps: { + content: '添加新的反击触发词', + okText: '添加', + rules: [ + { required: true, message: '触发词不能为空' }, + ], + }, + valueParser: ((value) => value.split(',') || []), + }, + }, { label: '以下为Azure chatGPT的配置', component: 'Divider'