Skip to content

Commit

Permalink
fix: meme description (#670)
Browse files Browse the repository at this point in the history
  • Loading branch information
m2en authored Jan 14, 2023
1 parent 13c5bc2 commit 5802e0d
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/service/command/meme/hukueki.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { MemeTemplate } from '../../../model/meme-template.js';

export const hukueki: MemeTemplate<never, never> = {
commandNames: ['hukueki'],
description: '〜はしてないといいね',
description: 'ねぇ、将来何してるだろうね\n〜はしてないといいね\n困らないでよ',
flagsKeys: [],
optionsKeys: [],
errorMessage: '服役できなかった。',
Expand Down
2 changes: 1 addition & 1 deletion src/service/command/meme/kenjou.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { MemeTemplate } from '../../../model/meme-template.js';
export const kenjou: MemeTemplate<never, never> = {
commandNames: ['kenjou'],
description:
'[健常者エミュレーター](https://healthy-person-emulator.memo.wiki/)の構文ジェネレーター',
'[健常者エミュレーター](https://healthy-person-emulator.memo.wiki/)の構文ジェネレーター。\n健常者エミュレーターWikiにありそうなタイトルを指定すればうまくいきます。',
flagsKeys: [],
optionsKeys: [],
errorMessage:
Expand Down
2 changes: 1 addition & 1 deletion src/service/command/meme/koume.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { MemeTemplate } from '../../../model/meme-template.js';

export const koume: MemeTemplate<never, never> = {
commandNames: ['koume'],
description: 'チクショー!! `#毎日チクショー`',
description: '〜と思ったら〜♪\n\n〜でした〜♪\n\n引数は2つ必要です。',
flagsKeys: [],
optionsKeys: [],
errorMessage:
Expand Down
8 changes: 5 additions & 3 deletions src/service/command/meme/moeta.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import type { MemeTemplate } from '../../../model/meme-template.js';

const source =
'[元ネタ](https://twitter.com/yuki_yuigishi/status/1555557259798687744)';

export const moeta: MemeTemplate<never, never> = {
commandNames: ['moeta', 'yuki'],
description: '久留米の花火大会ね、寮から見れたの?',
description: `「久留米の花火大会ね、寮から見れたの?」\n「うん ついでに〜が燃えた」\n${source}`,
flagsKeys: [],
optionsKeys: [],
errorMessage:
'[元ネタ](https://twitter.com/yuki_yuigishi/status/1555557259798687744)',
errorMessage: source,
generate(args) {
return `「久留米の花火大会ね、寮から見れたの?」\n「うん ついでに${args.body}が燃えた」\n「は?」`;
}
Expand Down
2 changes: 1 addition & 1 deletion src/service/command/meme/takopi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const takopi: MemeTemplate<
> = {
commandNames: ['takopi'],
description:
'「〜、出して」\n`-f` で教員と自分の名前の位置を反対にします。\n`-c <教員の名前> <出すもの>`で教員の名前も変更可能です。\n([idea: フライさん](https://github.com/approvers/OreOreBot2/issues/90))',
'「〜、出して」\n`-f` で教員と自分の名前の位置を反対にします。\n`-c <教員の名前> <出すもの>`で教員の名前も変更可能です。',
flagsKeys: takopiFlags,
optionsKeys: takopiOptions,
errorMessage: '(引数が)わ、わかんないっピ.......',
Expand Down
2 changes: 1 addition & 1 deletion src/service/command/meme/web3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { MemeTemplate } from '../../../model/meme-template.js';

export const web3: MemeTemplate<never, never> = {
commandNames: ['web3'],
description: '「いちばんやさしい〇〇の教本」',
description: '「いちばんやさしい〜の教本」',
flagsKeys: [],
optionsKeys: [],
errorMessage: 'TCP/IP、SMTP、HTTPはGoogleやAmazonに独占されています。',
Expand Down

0 comments on commit 5802e0d

Please sign in to comment.