Skip to content

Commit 6a768b4

Browse files
committed
feat(funbox): add plus zero funbox. only the current word is visible
1 parent d6c1766 commit 6a768b4

3 files changed

Lines changed: 18 additions & 2 deletions

File tree

backend/src/constants/funbox-list.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,12 @@ const FunboxList: MonkeyTypes.FunboxMetadata[] = [
171171
properties: ["changesWordsVisibility", "toPush:2", "noInfiniteDuration"],
172172
name: "plus_one",
173173
},
174+
{
175+
canGetPb: true,
176+
difficultyLevel: 1,
177+
properties: ["changesWordsVisibility", "toPush:1", "noInfiniteDuration"],
178+
name: "plus_zero",
179+
},
174180
{
175181
canGetPb: true,
176182
difficultyLevel: 0,

frontend/src/ts/test/funbox/funbox-list.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,14 @@ const list: MonkeyTypes.FunboxMetadata[] = [
116116
numbers: [false],
117117
},
118118
},
119+
{
120+
name: "plus_zero",
121+
info: "React quickly! Only the current word is visible.",
122+
properties: ["changesWordsVisibility", "toPush:1", "noInfiniteDuration"],
123+
},
119124
{
120125
name: "plus_one",
121-
info: "React quickly! Only one future word is visible.",
126+
info: "Only one future word is visible.",
122127
properties: ["changesWordsVisibility", "toPush:2", "noInfiniteDuration"],
123128
},
124129
{

frontend/static/funbox/_list.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,14 @@
8484
"info": "!@#$%^&*. Only special characters.",
8585
"canGetPb": false
8686
},
87+
{
88+
"name": "plus_zero",
89+
"info": "React quickly! Only the current word is visible.",
90+
"canGetPb": true
91+
},
8792
{
8893
"name": "plus_one",
89-
"info": "React quickly! Only one future word is visible.",
94+
"info": "Only one future word is visible.",
9095
"canGetPb": true
9196
},
9297
{

0 commit comments

Comments
 (0)