<!DOCTYPE html>
<html>
<head>
<title>封建嵐舞</title>
<meta charset="utf-8">
<style>
body {
background-color: #FFF5EE;
}
h1 {
text-align: center;
font-size: xx-large;
font-family: cursive;
margin-top: 50px;
}
h2 {
font-size: large;
font-family: Georgia, serif;
margin-top: 30px;
}
p {
font-size: medium;
font-family: Georgia, serif;
margin: 10px 0 10px 0;
text-indent: 2em;
}
button {
background-color: #F08080;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
margin-top: 20px;
cursor: pointer;
}
button:hover {
background-color: #DC143C;
}
</style>
</head>
<body>
<h1>封建嵐舞</h1>
<h2>ラウンド1:「悪役麗嬢を討伐せよ」</h2>
<p id="villain"></p>
<button onclick="round2()">成敗!</button>
<script>
const names = ["美智子", "真由美", "優華", "彩乃", "結衣", "梨花", "詩織", "葵", "美和", "純子"];
const ages = ["20歳", "21歳", "22歳", "23歳", "24歳", "25歳", "26歳", "27歳", "28歳", "29歳"];
const hairstyles = ["縦巻きロール", "ストレートロング", "ふんわりショート", "ウェーブボブ", "ツインテール", "大きなカール"];
const faces = ["小顔で美人顔", "優しい表情が素敵", "目がパッチリしている", "口元がセクシー", "ほっそりとした顔つき", "清純な感じが良い"];
const outfits = ["白いドレスに薄いピンクのリボンがついたもの", "黒のドレスに胸元が開いたもの", "赤いドレスにチェックのベルトがついたもの", "青いドレスにグラデーションが入ったもの", "紫色のドレスにフリルがあしらわれているもの", "ピンクのドレスにリボンと花が飾られているもの"];
const styles = ["豊かなバストとくびれたウエストが魅力的", "美脚を強調したスタイル", "プロポーションが完璧", "肌に程よいツヤがあり魅力的", "女性らしく柔らかいボディライン", "細身でキュッと締まったスタイル"];
const phrases = ["何をなさるつもり!", "こんな下劣な男に勝てるはずがない!", "あんな下品な装備で来られても、返り討ちよ!", "悪役麗嬢の名において、許せないわ!", "よく頑張ったわね、でももう終わりよ!", "こんな腕前で、よく悪役麗嬢などを討てると思えたわね!"];
const finalPhrases = ["悪役麗嬢は殿下の宝塔を突き入れられ昇天した!", "悪役麗嬢は天国へと旅立った!", "悪役麗嬢の悔しそうな表情が忘れられないわ!", "悪役麗嬢は悪事を犯した罰として討たれた!", "悪役麗嬢は大声を上げて倒れた!"];
function getRandomIndex(array) {
return Math.floor(Math.random() * array.length);
}
function displayVillain() {
let name = names[getRandomIndex(names)];
let age = ages[getRandomIndex(ages)];
let hairstyle = hairstyles[getRandomIndex(hairstyles)];
let face = faces[getRandomIndex(faces)];
let outfit = outfits[getRandomIndex(outfits)];
let style = styles[getRandomIndex(styles)];
let phrase = phrases[getRandomIndex(phrases)];
document.getElementById("villain").innerHTML = `名前:${name} 年齢:${age}<br>髪型:${hairstyle} 表情:${face}<br>服装:${outfit} スタイル:${style}<br>セリフ:「${phrase}」`;
}
function round2() {
let finalPhrase = finalPhrases[getRandomIndex(finalPhrases)];
alert(finalPhrase);
round3();
}
function displayRound3() {
let phrasesArr = [
"「ア...アー...ッ!」",
"「えへへ...。やられちゃった...。」",
"「な...なんでこんな...!?」",
"「どうしてこんな...強いんですか...?」",
"「き...逆らうとは...傲慢ね...。」"
];
let phrase = phrasesArr[getRandomIndex(phrasesArr)];
let climaxArr = [
"悪役麗嬢は、悔しそうな表情を浮かべて、天に召された。",
"悪役麗嬢は、力尽きて倒れ、意識を失っていた。",
"悪役麗嬢は、必死に抵抗し、審査委員に睨みをきかせた。",
"悪役麗嬢は、いたずらっぽい笑みを浮かべ、封建男子を挑発していた。",
"悪役麗嬢は、美しき容姿のまま、昇天した。"
];
let climax = climaxArr[getRandomIndex(climaxArr)];
let lyingArr = [
"横たわる麗嬢は、必死に息を潜めていた。",
"横たわる麗嬢は、疲れ切ったかのように休んでいた。",
"横たわる麗嬢は、仇敵を見つめつつ、コップの水を飲んでいた。",
"横たわる麗嬢は、何も言わずに目を閉じ、ただ一言も発しなかった。",
"横たわる麗嬢は、強い精神力で自分自身を守っていた。"
];
let lying = lyingArr[getRandomIndex(lyingArr)];
document.getElementById("villain").innerHTML += `<br><br>麗嬢の断末魔:${phrase}<br>昇天する麗嬢の様子:${climax}<br>横たわる麗嬢の格好と表情:${lying}`;
}
function round3() {
displayRound3();
let div = document.createElement("div");
div.style.marginTop = "20px";
let button = document.createElement("button");
button.innerHTML = "討伐を続ける";
button.onclick = function() {
displayVillain();
document.body.removeChild(div);
};
div.appendChild(button);
document.body.appendChild(div);
}
displayVillain();
</script>
</body>
</html>