diff --git a/src/components/Home/Cvote/charProfiles.ts b/src/components/Home/Cvote/charProfiles.ts index 26f383a46..a64c50630 100644 --- a/src/components/Home/Cvote/charProfiles.ts +++ b/src/components/Home/Cvote/charProfiles.ts @@ -91,4 +91,12 @@ export const CVOTE_PROFILES: CvoteProfile[] = [ { id: 'ms', name: 'マーシャ', color: '#BF9681' }, ], }, + { + id: 'makein', + chars: [ + { id: 'yn', name: '八奈見', color: '#4AC1F0' }, + { id: 'ys', name: '焼塩', color: '#8FC31E' }, + { id: 'km', name: '小鞠', color: '#DD4F4D' }, + ], + }, ] diff --git a/src/components/Home/Cvote/constants.ts b/src/components/Home/Cvote/constants.ts index 4145aa00a..36bb916dd 100644 --- a/src/components/Home/Cvote/constants.ts +++ b/src/components/Home/Cvote/constants.ts @@ -76,6 +76,7 @@ export const eekeysVotic = [ // 'loveplus', // R // 'milgram', // R 'roshidere', + 'makein', ] as const export const eekeys = [ ...eekeysGimic, @@ -148,6 +149,7 @@ export const EX_PATTERNS_ANIME_OR_ALBUM: [string | RegExp, Eekey][] = [ [/サイバーパンク|cyberpunk/i, 'cyberpunk'], [/Do It Yourself!!/i, 'diy'], [/ロシア語でデレる/i, 'roshidere'], + [/負けヒロイン/i, 'makein'], ] export const EX_PATTERNS_CUSTOM: [(_song: Song) => boolean, Eekey][] = [ // [ (song) => song.animeTitle === '人生', 'jinsei' ], @@ -254,4 +256,5 @@ export const eeId: Record = { diy: 54, birth: 55, roshidere: 56, + makein: 57, }