Skip to content

Commit

Permalink
feat(level_data): 添加新关卡和设计说明
Browse files Browse the repository at this point in the history
还没写完,等以后慢慢更新吧
  • Loading branch information
cutekibry committed Feb 28, 2024
1 parent 3141325 commit e77d2ee
Show file tree
Hide file tree
Showing 2 changed files with 388 additions and 15 deletions.
50 changes: 35 additions & 15 deletions scripts/level_data.gd
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ const CHAP_NAMES := [
},
{
"name-en": "Ch. 5 <>",
},
{
"name-en": "Ch. EX Challenge Levels",
}
]

Expand Down Expand Up @@ -77,7 +80,7 @@ const LEVEL_DATA := [
{
"name-en": "1+1=1",
"question": "[] [] {} {} 1",
"choices": "= + d 1"
"choices": "= + 1 d"
},
{
"name-en": "Swap",
Expand All @@ -89,6 +92,11 @@ const LEVEL_DATA := [
"question": "1 [] {} = {} [] []",
"choices": "1++PPdd"
},
{
"name-en": "Paper Tiger",
"question": "1 [] [] [] {} [] [] [] {} [] {} [] []",
"choices": "== ++++++ 11 P q b R"
},
{
"name-en": "Make Me Laugh",
"question": "1 {} {} = []",
Expand All @@ -97,23 +105,23 @@ const LEVEL_DATA := [
{
"name-en": "Reset",
"question": "0 [] [] {} []",
"choices": "XD=0"
"choices": "XP=0"
},
{
"name-en": "Not Necessary",
"question": "[] {} {} {} {} []",
"choices": "QQQQQQ DDXX="
},
{
"name-en": "[EX] Not Really Challenging",
"question": "1 [] [] [] {} [] [] [] {} [] {} [] []",
"choices": "== ++++++ 11 P q b R"
"name-en": "True Reset",
"question": "[] + [] [] [] [] {} = {} [] [] [] [] [] []",
"choices": "0 0 1 d d q P P b R R Q +"
},
{
"name-en": "[EX] Golden Experience",
"question": "{} {} {} {} {} {} {} {} {} {}",
"choices": "PP DD qq dd question XXX ="
}
"name-en": "Gold Experience",
"question": "{} {} {} {} {} {} {} {} {} {} {} {} {} {} {} {}",
"choices": "PP DD bb qq dd XXXXX ="
},
],

[
Expand All @@ -132,14 +140,14 @@ const LEVEL_DATA := [
"question": "P ([] [] []) = {} [] [] [] []",
"choices": "PP QQ RR ++"
},
{
"name-en": "[EX] Really Challenging",
"question": "[] [] [] [] [] {} {} [] [] [] [] {} {} + [] []",
"choices": "PPP QQ DD (()) ++ = X"
}
],

[
{
"name-en": "Missing Equation",
"question": "[] + [] {} {}",
"choices": "P P P 1 X",
},
{
"name-en": "Why?",
"question": "[] [] {} = {} [] {} = []",
Expand Down Expand Up @@ -174,7 +182,19 @@ const LEVEL_DATA := [
"question": "0 {} P [] [] []",
"choices": "<>=P"
}
]
],
[
{
"name-en": "[EX]Erase Which?",
"question": "[] {} {} [] [] [] [] {} {} {} {} {} [] [] [] [] [] []",
"choices": "0 X D + P + P d = P X P + 0 d + P d",
},
{
"name-en": "[EX] Really Challenging",
"question": "[] [] [] [] [] {} {} [] [] [] [] {} {} + [] []",
"choices": "PPP QQ DD (()) ++ = X"
},
],
]


Expand Down
Loading

0 comments on commit e77d2ee

Please sign in to comment.