mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
絵文字リアクション関係でいい感じにした
This commit is contained in:
parent
b2875c9d90
commit
b157d0a868
5 changed files with 23 additions and 2 deletions
|
@ -507,4 +507,12 @@ export default class 藍 {
|
|||
|
||||
this.meta.update(rec);
|
||||
}
|
||||
|
||||
/**
|
||||
* ご主人様かどうかを返します
|
||||
*/
|
||||
@autobind
|
||||
public isMaster(userId: User['id']): boolean {
|
||||
return config.masterID === userId;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@ type Config = {
|
|||
host: string;
|
||||
i: string;
|
||||
master?: string;
|
||||
masterID?: string;
|
||||
wsUrl: string;
|
||||
apiUrl: string;
|
||||
keywordEnabled: boolean;
|
||||
|
|
|
@ -85,7 +85,7 @@ promiseRetry(retry => {
|
|||
new PingModule(),
|
||||
new WelcomeModule(),
|
||||
new ServerModule(),
|
||||
new FollowModule(),
|
||||
// new FollowModule(),
|
||||
new BirthdayModule(),
|
||||
new ValentineModule(),
|
||||
new KeywordModule(),
|
||||
|
|
|
@ -1,6 +1,13 @@
|
|||
export type Note = {
|
||||
id: string;
|
||||
createdAt: Date;
|
||||
userId: string;
|
||||
user: {
|
||||
id: string;
|
||||
},
|
||||
text: string | null;
|
||||
cw: string | null;
|
||||
visibility: "public" | "home" | "followers" | "specified";
|
||||
reply: any | null;
|
||||
poll?: {
|
||||
choices: {
|
||||
|
|
|
@ -91,7 +91,12 @@ export default class extends Module {
|
|||
if (includes(note.text, ['寿司', 'sushi']) || note.text === 'すし') return react('🍣');
|
||||
|
||||
if (includes(note.text, ['ずなず']) || includes(note.text, ['ずにゃず'])) return react('🙌');
|
||||
if (includes(note.text, ['なず']) || includes(note.text, ['にゃず'])) return react(':google_hart:');
|
||||
if (includes(note.text, ['なず']) || includes(note.text, ['にゃず'])) {
|
||||
if (this.ai.isMaster(note.userId)) {
|
||||
return react(':google_hart:')
|
||||
}
|
||||
return react(':oltu:');
|
||||
};
|
||||
|
||||
const gameReact = [
|
||||
':ysvi:',
|
||||
|
|
Loading…
Reference in a new issue