42 lines
1.7 KiB
TypeScript
42 lines
1.7 KiB
TypeScript
export const EASY_XP = [5000, 1000, 2000, 3000, 4000] as const
|
|
export const NORMAL_XP = 5000 as const
|
|
export const PRESTIGES = [
|
|
{ level: 0, colormap: "7", color: "gray", name: "None" },
|
|
{ level: 100, colormap: "f", color: "white", name: "Sheep" },
|
|
{ level: 200, colormap: "c", color: "red", name: "First Arc" },
|
|
{ level: 300, colormap: "6", color: "gold", name: "Second Arc" },
|
|
{ level: 400, colormap: "e", color: "yellow", name: "Third Arc" },
|
|
{ level: 500, colormap: "a", color: "green", name: "Fourth Arc" },
|
|
{ level: 600, colormap: "3", color: "dark-aqua", name: "Fifth Arc" },
|
|
{ level: 700, colormap: "5", color: "dark-purple", name: "Sixth Arc" },
|
|
{ level: 800, colormap: "d", color: "light-purple", name: "Final Arc" },
|
|
{ level: 900, colormap: "c6eabd", color: "rainbow", name: "Full Rainbow" },
|
|
{ level: 1000, colormap: "0fffff0", color: "black", name: "Void Sheep" }
|
|
] as const
|
|
export const ICONS = {
|
|
HEART: "\u2764", // ❤
|
|
PLUS: "\u2719", // ✙
|
|
STAR: "\u2606", // ☆
|
|
PLANE: "\u2708", // ✈
|
|
CROSS: "\u2720", // ✠
|
|
CROWN: "\u2655", // ♕
|
|
LIGHTNING: "\u26a1", // ⚡
|
|
NUKE: "\u2622", // ☢
|
|
PENSUL: "\u270f", // ✏
|
|
YIN_YANG: "\u262f" // ☯
|
|
} as const
|
|
export const CLASSES = [
|
|
{ id: "tank", name: "Tank", difficulty: 1 },
|
|
{ id: "archer", name: "Archer", difficulty: 2 },
|
|
{ id: "swordsman", name: "Swordsman", difficulty: 1 },
|
|
{ id: "engineer", name: "Engineer", difficulty: 1 },
|
|
{ id: "golem", name: "Golem", difficulty: 2 },
|
|
{ id: "assault", name: "Assault", difficulty: 3 }
|
|
] as const
|
|
export const DIFFICULTIES = {
|
|
"1": "green",
|
|
"2": "yellow",
|
|
"3": "red",
|
|
"4": "dark-red"
|
|
} as const
|