This commit is contained in:
2026-03-16 00:12:12 +01:00
parent b507a0e367
commit eccd2f968d
18 changed files with 796 additions and 234 deletions
+31
View File
@@ -0,0 +1,31 @@
import { type Config } from "./interfaces";
import { randomSeed } from "./lib/random";
export const VEGETABLES: Record<string, string> = {
"🥦": "Broccoli",
"🥕": "Carrot",
"🧅": "Onion",
"🌶️": "Pepper",
"🍆": "Eggplant",
"🥔": "Potato",
"🍄": "Mushroom",
"🧄": "Garlic",
"🥬": "Lettuce",
"🥒": "Cucumber",
"🥑": "Avocado",
"🌽": "Corn",
"🫘": "Beans",
"🫚": "Ginger",
"🫛": "Pea",
"🫜": "Radish",
};
export const DEFAULT_CONFIG: Config = {
startTime: "21:00",
endTime: "03:00",
duration: "30",
seed: randomSeed(),
candidates: "",
endWithAll: true,
mix: "25",
};