Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update index.cjs #332

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion config/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,22 @@ const USER_CONFIG = {
id: '',
}
],

SLOT_LIST: [
// 这样配置的话,就会每次发送这句话
{ keyword: 'encourage_oneself', contents: '你主要的问题在于读书太少而想得太多' },
// 这样配置的话,就会每次随机选一句话发送
{
keyword: 'lover_prattle',
contents: [
'因为太喜欢你,所以看谁都像是情敌。',
'申请成为你爱里的永久居民。',
'你很傻,你很笨,可我还是很羡慕你,因为你有我',
'遇见你,就好像捡到了100斤的运气'
],
}
// 你可以不断按格式往下增加
// ...
],
}

module.exports = USER_CONFIG
Expand Down