Remove TTS narration and improve BGM
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
export type PortraitKey = 'liuBei' | 'guanYu' | 'zhangFei';
|
||||
export type VoiceRole = 'narrator' | PortraitKey;
|
||||
|
||||
export type StoryPage = {
|
||||
id: string;
|
||||
@@ -8,8 +7,6 @@ export type StoryPage = {
|
||||
speaker?: string;
|
||||
portrait?: PortraitKey;
|
||||
bgm?: string;
|
||||
voice?: string;
|
||||
voiceRole?: VoiceRole;
|
||||
text: string;
|
||||
};
|
||||
|
||||
@@ -38,8 +35,6 @@ export const prologuePages: StoryPage[] = [
|
||||
{
|
||||
id: 'yellow-turban-chaos',
|
||||
bgm: 'story-dark',
|
||||
voice: 'yellow-turban-chaos',
|
||||
voiceRole: 'narrator',
|
||||
chapter: '난세의 시작',
|
||||
background: 'story-chaos',
|
||||
text: '중평 원년, 황건의 깃발이 각지에서 일어났다. 관군은 흩어지고, 마을마다 피난 행렬이 이어졌다.'
|
||||
@@ -47,8 +42,6 @@ export const prologuePages: StoryPage[] = [
|
||||
{
|
||||
id: 'liu-bei-resolve',
|
||||
bgm: 'story-dark',
|
||||
voice: 'liu-bei-resolve',
|
||||
voiceRole: 'liuBei',
|
||||
chapter: '탁현의 방',
|
||||
background: 'story-liu-bei',
|
||||
speaker: '유비',
|
||||
@@ -58,8 +51,6 @@ export const prologuePages: StoryPage[] = [
|
||||
{
|
||||
id: 'zhang-fei-joins',
|
||||
bgm: 'story-dark',
|
||||
voice: 'zhang-fei-joins',
|
||||
voiceRole: 'zhangFei',
|
||||
chapter: '뜻이 모이다',
|
||||
background: 'story-three-heroes',
|
||||
speaker: '장비',
|
||||
@@ -69,8 +60,6 @@ export const prologuePages: StoryPage[] = [
|
||||
{
|
||||
id: 'guan-yu-joins',
|
||||
bgm: 'story-dark',
|
||||
voice: 'guan-yu-joins',
|
||||
voiceRole: 'guanYu',
|
||||
chapter: '뜻이 모이다',
|
||||
background: 'story-three-heroes',
|
||||
speaker: '관우',
|
||||
@@ -80,8 +69,6 @@ export const prologuePages: StoryPage[] = [
|
||||
{
|
||||
id: 'oath-narration',
|
||||
bgm: 'oath-theme',
|
||||
voice: 'oath-narration',
|
||||
voiceRole: 'narrator',
|
||||
chapter: '도원결의',
|
||||
background: 'title-taoyuan',
|
||||
text: '복숭아꽃이 흩날리는 동산에서 세 사람은 하늘과 땅에 고했다.'
|
||||
@@ -89,8 +76,6 @@ export const prologuePages: StoryPage[] = [
|
||||
{
|
||||
id: 'oath-liu-bei',
|
||||
bgm: 'oath-theme',
|
||||
voice: 'oath-liu-bei',
|
||||
voiceRole: 'liuBei',
|
||||
chapter: '도원결의',
|
||||
background: 'title-taoyuan',
|
||||
speaker: '유비',
|
||||
@@ -100,8 +85,6 @@ export const prologuePages: StoryPage[] = [
|
||||
{
|
||||
id: 'oath-brothers',
|
||||
bgm: 'oath-theme',
|
||||
voice: 'oath-brothers',
|
||||
voiceRole: 'guanYu',
|
||||
chapter: '도원결의',
|
||||
background: 'title-taoyuan',
|
||||
speaker: '관우',
|
||||
@@ -111,8 +94,6 @@ export const prologuePages: StoryPage[] = [
|
||||
{
|
||||
id: 'militia-rises',
|
||||
bgm: 'militia-theme',
|
||||
voice: 'militia-rises',
|
||||
voiceRole: 'zhangFei',
|
||||
chapter: '의용군 모집',
|
||||
background: 'story-militia',
|
||||
speaker: '장비',
|
||||
@@ -122,8 +103,6 @@ export const prologuePages: StoryPage[] = [
|
||||
{
|
||||
id: 'first-sortie',
|
||||
bgm: 'battle-prep',
|
||||
voice: 'first-sortie',
|
||||
voiceRole: 'liuBei',
|
||||
chapter: '첫 출진',
|
||||
background: 'story-sortie',
|
||||
speaker: '유비',
|
||||
@@ -133,8 +112,6 @@ export const prologuePages: StoryPage[] = [
|
||||
{
|
||||
id: 'battle-briefing',
|
||||
bgm: 'battle-prep',
|
||||
voice: 'battle-briefing',
|
||||
voiceRole: 'narrator',
|
||||
chapter: '황건적 토벌',
|
||||
background: 'story-sortie',
|
||||
text: '의용군은 마을 어귀로 향했다. 첫 싸움은 곧 시작된다.'
|
||||
|
||||
Reference in New Issue
Block a user