Added plus three funbox (#4076) robsassack

This commit is contained in:
Rob Sassack 2023-03-16 07:55:36 -04:00 committed by GitHub
parent 222e508e21
commit 239c43f240
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 18 additions and 1 deletions

View file

@ -388,7 +388,10 @@ export async function addResult(
const { funbox, bailedOut } = result;
const validResultCriteria =
(funbox === "none" || funbox === "plus_one" || funbox === "plus_two") &&
(funbox === "none" ||
funbox === "plus_one" ||
funbox === "plus_two" ||
funbox === "plus_three") &&
!bailedOut &&
user.banned !== true &&
user.lbOptOut !== true &&

View file

@ -75,6 +75,10 @@ const Funboxes: Record<string, MonkeyTypes.FunboxMetadata> = {
canGetPb: true,
difficultyLevel: 0,
},
plus_three: {
canGetPb: true,
difficultyLevel: 0,
},
read_ahead_easy: {
canGetPb: true,
difficultyLevel: 1,

View file

@ -118,6 +118,11 @@ const list: MonkeyTypes.FunboxMetadata[] = [
info: "Only two future words are visible.",
properties: ["changesWordsVisibility", "toPush:3", "noInfiniteDuration"],
},
{
name: "plus_three",
info: "Only three future words are visible.",
properties: ["changesWordsVisibility", "toPush:4", "noInfiniteDuration"],
},
{
name: "read_ahead_easy",
info: "Only the current word is invisible.",

View file

@ -94,6 +94,11 @@
"info": "Only two future words are visible.",
"canGetPb": true
},
{
"name": "plus_three",
"info": "Only three future words are visible.",
"canGetPb": true
},
{
"name": "read_ahead_easy",
"info": "Only the current word is invisible.",