JudgePole/Public/ecma/Utils/Settings.ecma.js
2026-09-20 17:12:09 +02:00

20 lines
494 B
JavaScript

"use strict";
/** @type {Dictionary.<string, any|null>} */
const settings = {
cells : 40,
position : "body",
class_name : "judge-pole",
frames_per_second : 12,
language : "espanol",
db_storage_key : "judge_pole_db_data",
default_criteria : [
"Vibe & Originalidad",
"Calidad Técnica / No Explota",
"Factor Troll / Meme",
"Diseño / Estética"
],
...(typeof custom_settings == "undefined" ? {} : custom_settings)
};