Skip to content

Commit

Permalink
feat: Add kakusin-daisuke (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikuroXina authored Mar 31, 2022
1 parent affe2e3 commit b93d9d9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
Binary file added assets/party/kakusin-daisuke.mp3
Binary file not shown.
1 change: 1 addition & 0 deletions src/server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ registerAllCommandResponder(
COFFIN_INTRO: join('assets', 'party', 'coffin-intro.mp3'),
COFFIN_DROP: join('assets', 'party', 'coffin-drop.mp3'),
KAKAPO: join('assets', 'party', 'kakapo.mp3'),
KAKUSIN_DAISUKE: join('assets', 'party', 'kakusin-daisuke.mp3'),
NEROYO: join('assets', 'kaere', 'neroyo.mp3')
}),
clock,
Expand Down
7 changes: 6 additions & 1 deletion src/service/party.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ const partyStarting: EmbedMessage = {
description: 'хорошо、宴の始まりだ。'
};

const assetKeys = ['COFFIN_INTRO', 'COFFIN_DROP', 'KAKAPO'] as const;
const assetKeys = [
'COFFIN_INTRO',
'COFFIN_DROP',
'KAKAPO',
'KAKUSIN_DAISUKE'
] as const;

export type AssetKey = typeof assetKeys[number];

Expand Down

0 comments on commit b93d9d9

Please sign in to comment.