module ACME.PreCure.Textbook.Suite.Words where
groupName_Suite = "ハートキャッチプリキュア!"
girlName_Hibiki = "北条響"
girlName_Kanade = "南野奏"
girlName_Ellen = "黒川エレン"
girlName_Ako = "調辺アコ"
cureName_Melody = "キュアメロディ"
cureName_Rhythm = "キュアリズム"
cureName_Beat = "キュアビート"
cureName_Muse = "キュアミューズ"
introducesHerselfAs_Melody = "爪弾くは荒ぶる調べ! キュアメロディー!"
introducesHerselfAs_Rhythm = "爪弾くはたおやかな調べ! キュアリズム!"
introducesHerselfAs_Beat = "爪弾くは魂の調べ! キュアビート!"
introducesHerselfAs_Muse = "爪弾くは女神の調べ! キュアミューズ!"
modulation = "レッツプレイ! プリキュア・モジュレーション!"
resonateSuiteOfN :: Int -> String
resonateSuiteOfN n =
"届け!" ++ show n ++ "人の組曲! スイートプリキュア!"
transformationSpeech_Melody_Rhythm =
[ modulation
, introducesHerselfAs_Melody
, introducesHerselfAs_Rhythm
, resonateSuiteOfN 2
]
transformationSpeech_Beat = [modulation, introducesHerselfAs_Beat]
transformationSpeech_Muse = [modulation, introducesHerselfAs_Muse]
transformationSpeech_Melody_Rhythm_Beat =
[ modulation
, introducesHerselfAs_Melody
, introducesHerselfAs_Rhythm
, introducesHerselfAs_Beat
, resonateSuiteOfN 3
]
transformationSpeech_Suite =
[ modulation
, introducesHerselfAs_Melody
, introducesHerselfAs_Rhythm
, introducesHerselfAs_Beat
, introducesHerselfAs_Muse
, resonateSuiteOfN 4
]
purificationSpeech_Melody =
[ "(ミミ~!)"
, "奏でましょう、奇跡のメロディー!ミラクル・ベルティエ!"
, "おいで、ミリー!"
, "(ミミ~!)"
, "翔けめぐれ、トーンのリング!"
, "プリキュア!ミュージックロンド!"
, "三拍子!1、2、3"
, "フィナーレ!"
]
purificationSpeech_Rhythm =
[ "(ファファ~!)"
, "刻みましょう、大いなるリズム!ファンタスティック・ベルティエ!"
, "おいで、ファリー!"
, "(ファファ~!)"
, "翔けめぐれ、トーンのリング!"
, "プリキュア!ミュージックロンド!"
, "三拍子!1、2、3"
, "フィナーレ!"
]
purificationSpeech_Beat =
[ "(ソソッ)"
, "弾き鳴らせ、愛の魂!ラブギターロッド!"
, "おいで、ソリー!"
, "(ソソッ)"
, "チェンジ!ソウルロッド!"
, "翔けめぐれ、トーンのリング!"
, "プリキュア!ハートフル・ビート・ロック!"
, "三拍子!1、2、3"
, "フィナーレ!"
]
purificationSpeech_Muse =
[ "おいで、シリー!"
, "(シシ~)"
, "「シ」の音符の、シャイニングメロディ!"
, "プリキュア!スパーリング・シャワー!!"
, "三拍子!1、2、3"
, "フィナーレ!"
]
purificationSpeech_Suite =
[ "いでよ、すべての音の源よ!"
, "届けましょう、希望のシンフォニー!"
, "プリキュア!スイートセッションアンサンブル!"
, "クレッシェンド!!"
, "フィナーレ!"
]