
@@ -95,6 +98,7 @@ export default function HowToPlay() {
右下には「実行」ボタンがあります。
配置が整ったと思ったら、このボタンを押してみましょう。押すと、さまざまな色のコーンが流れてきます。
+ スピードを変えたいときは、実行ボタンの隣にあるボタンを押すことにより、速くしたり遅くしたりできます。
お題どおりのアイスを作ることができれば成功です。
@@ -192,8 +196,7 @@ export default function HowToPlay() {
- ・ Ⅰ:コーンの色
- ・ Ⅱ:載っているアイスの数
- - ・ Ⅲ:一番上に載っているアイスの種類
- - ・ Ⅳ:特定のアイスの並び順の有無
+ - ・ Ⅲ:特定のアイスの並び順の有無
それぞれの条件に従って、コーンを上下どちらかの経路へ流します。
@@ -219,13 +222,9 @@ export default function HowToPlay() {
この人たちは、特定の味のアイスが大好きです。
その味のアイスが一番上に載ったコーンが流れてくると、一番上のアイスを食べてしまいます。
-
ただし、
-
- - ・ アイスが1つも載っていない
- - ・ 一番上のアイスが好きな味ではない
-
-
- といった場合は、何もしません。
+
ただし、
+ 一番上のアイスが好きな味ではない場合は、何もしません。
+ しかし、アイスが1つも載っていないコーンが流れてきたときは、コーンを食べてしまいます。
※黒い服の人は、どんな味も大好きです!
diff --git a/app/stages.ts b/app/stages.ts
index c0f6078..9b11320 100644
--- a/app/stages.ts
+++ b/app/stages.ts
@@ -167,39 +167,9 @@ export const STAGES: Record = {
},
13: {
mission: {
- red: [
- "chocolate",
- "vanilla",
- "chocolate",
- "vanilla",
- "chocolate",
- "vanilla",
- "chocolate",
- "vanilla",
- "strawberry",
- ],
- yellow: [
- "vanilla",
- "vanilla",
- "vanilla",
- "vanilla",
- "vanilla",
- "vanilla",
- "vanilla",
- "strawberry",
- "strawberry",
- ],
- brown: [
- "vanilla",
- "chocolate",
- "vanilla",
- "vanilla",
- "chocolate",
- "vanilla",
- "vanilla",
- "chocolate",
- "vanilla",
- ],
+ red: ["chocolate", "vanilla", "chocolate", "vanilla", "chocolate", "vanilla", "chocolate", "vanilla", "strawberry"],
+ yellow: ["vanilla", "vanilla", "vanilla", "vanilla", "vanilla", "vanilla", "vanilla", "strawberry", "strawberry"],
+ brown: ["vanilla", "chocolate", "vanilla", "vanilla", "chocolate", "vanilla", "vanilla", "chocolate", "vanilla",],
},
components: [
{ type: "if", condition: "red" },
@@ -342,98 +312,40 @@ export const STAGES: Record = {
{ type: "if", condition: 5 },
],
},
- 20: {
+20: {
mission: {
- red: [
- "vanilla",
- "strawberry",
- "chocolate",
- "vanilla",
- "chocolate",
- "strawberry",
- "vanilla",
- "chocolate",
- "strawberry",
- ],
- yellow: [
- "chocolate",
- "vanilla",
- "strawberry",
- "chocolate",
- "strawberry",
- "vanilla",
- "chocolate",
- "strawberry",
- ],
- brown: [
- "strawberry",
- "chocolate",
- "vanilla",
- "chocolate",
- "strawberry",
- "vanilla",
- "chocolate",
- "strawberry",
- ],
+ red: ["vanilla", "strawberry", "chocolate", "vanilla", "chocolate", "strawberry", "vanilla", "chocolate", "strawberry"],
+ yellow: ["chocolate", "vanilla", "strawberry", "chocolate", "strawberry", "vanilla", "chocolate", "strawberry"],
+ brown: ["strawberry", "chocolate", "vanilla", "chocolate", "strawberry", "vanilla", "chocolate", "strawberry"],
},
components: [
- { type: "push", flavor: "vanilla" },
- { type: "push", flavor: "chocolate" },
- { type: "push", flavor: "strawberry" },
- { type: "if", condition: "red" },
- { type: "if", condition: "yellow" },
- { type: "if", condition: 3 },
- { type: "if", condition: 4 },
- { type: "if", condition: 5 },
- { type: "if", condition: 8 },
- ],
+ {type: "push", flavor: "vanilla"},
+ {type: "push", flavor: "chocolate"},
+ {type: "push", flavor: "strawberry"},
+ {type: "if", condition: "red"},
+ {type: "if", condition: "yellow"},
+ {type: "if", condition: 3},
+ {type: "if", condition: 4},
+ {type: "if", condition: 5},
+ {type: "if", condition: 8},
+ ]
},
21: {
mission: {
- red: [
- "vanilla",
- "chocolate",
- "strawberry",
- "vanilla",
- "chocolate",
- "strawberry",
- "chocolate",
- "vanilla",
- ],
- yellow: [
- "strawberry",
- "vanilla",
- "chocolate",
- "strawberry",
- "chocolate",
- "vanilla",
- "strawberry",
- "chocolate",
- "vanilla",
- ],
- brown: [
- "vanilla",
- "strawberry",
- "vanilla",
- "chocolate",
- "strawberry",
- "chocolate",
- "vanilla",
- "strawberry",
- "chocolate",
- "vanilla",
- ],
+ red: ["vanilla", "chocolate", "strawberry", "vanilla", "chocolate", "strawberry", "chocolate", "vanilla"],
+ yellow: ["strawberry", "vanilla", "chocolate", "strawberry", "chocolate", "vanilla", "strawberry", "chocolate", "vanilla"],
+ brown: ["vanilla", "strawberry", "vanilla", "chocolate", "strawberry", "chocolate", "vanilla", "strawberry", "chocolate", "vanilla"],
},
components: [
- { type: "push", flavor: "vanilla" },
- { type: "push", flavor: "chocolate" },
- { type: "push", flavor: "vanilla" },
- { type: "push", flavor: "chocolate" },
- { type: "push", flavor: "strawberry" },
- { type: "if", condition: "red" },
- { type: "if", condition: "yellow" },
- { type: "if", condition: 4 },
- { type: "if", condition: 8 },
- ],
+ {type: "push", flavor: "vanilla"},
+ {type: "push", flavor: "chocolate"},
+ {type: "push", flavor: "vanilla"},
+ {type: "push", flavor: "chocolate"},
+ {type: "push", flavor: "strawberry"},
+ {type: "if", condition: "red"},
+ {type: "if", condition: "yellow"},
+ {type: "if", condition: 4},
+ {type: "if", condition: 8},
+ ]
},
};