Cleanup
This commit is contained in:
@@ -33,7 +33,8 @@ export default function PitStats({ stats }: { stats: NonNullStats["Pit"] }) {
|
|||||||
<p className="font-bold">
|
<p className="font-bold">
|
||||||
<span className={`text-mc-${prestigeColor}`}>[</span>
|
<span className={`text-mc-${prestigeColor}`}>[</span>
|
||||||
{prestige > 0 && <span className="text-mc-yellow">{romanize(prestige)}</span>}
|
{prestige > 0 && <span className="text-mc-yellow">{romanize(prestige)}</span>}
|
||||||
<span className={`text-mc-${levelColor}`}>{`${prestige === 0 ? "" : "-"}${level}`}</span>
|
{prestige > 0 && <span className={`text-mc-${prestigeColor}`}>-</span>}
|
||||||
|
<span className={`text-mc-${levelColor}`}>{level}</span>
|
||||||
<span className={`text-mc-${prestigeColor}`}>]</span>
|
<span className={`text-mc-${prestigeColor}`}>]</span>
|
||||||
</p>
|
</p>
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
export const TITLE = "Bed Wars" as const
|
|
||||||
export const PRESTIGES = [
|
export const PRESTIGES = [
|
||||||
{ level: 0, colormap: "7", color: "gray", name: "None" },
|
{ level: 0, colormap: "7", color: "gray", name: "None" },
|
||||||
{ level: 100, colormap: "f", color: "white", name: "Iron" },
|
{ level: 100, colormap: "f", color: "white", name: "Iron" },
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
export const TITLE = "Build Battle" as const
|
|
||||||
export const MODES = [
|
export const MODES = [
|
||||||
{ id: "solo_normal", name: "Solo" },
|
{ id: "solo_normal", name: "Solo" },
|
||||||
{ id: "teams_normal", name: "Teams" },
|
{ id: "teams_normal", name: "Teams" },
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
export const TITLE = "Duels" as const
|
|
||||||
export const DIVISIONS = [
|
export const DIVISIONS = [
|
||||||
{ name: "Rookie", id: "rookie", color: "dark-gray", style: "§8" },
|
{ name: "Rookie", id: "rookie", color: "dark-gray", style: "§8" },
|
||||||
{ name: "Iron", id: "iron", color: "white", style: "§f" },
|
{ name: "Iron", id: "iron", color: "white", style: "§f" },
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
export const TITLE = "Murder Mystery" as const
|
|
||||||
export const MODES = [
|
export const MODES = [
|
||||||
{ id: "MURDER_CLASSIC", name: "Classic" },
|
{ id: "MURDER_CLASSIC", name: "Classic" },
|
||||||
{ id: "MURDER_ASSASSINS", name: "Assassins" },
|
{ id: "MURDER_ASSASSINS", name: "Assassins" },
|
||||||
|
|||||||
@@ -1,6 +1,3 @@
|
|||||||
export const TITLE = "Pit" as const
|
|
||||||
export const MAXPRESTIGE = 40 as const
|
|
||||||
export const MAXLEVEL = 120 as const
|
|
||||||
export const PRESTIGE_MULTIPLIERS = [
|
export const PRESTIGE_MULTIPLIERS = [
|
||||||
{ "Multiplier": 1, "SumXp": 65950 },
|
{ "Multiplier": 1, "SumXp": 65950 },
|
||||||
{ "Multiplier": 1.1, "SumXp": 138510 },
|
{ "Multiplier": 1.1, "SumXp": 138510 },
|
||||||
@@ -94,5 +91,8 @@ export const PRESTIGECOLORS = [
|
|||||||
{ prestige: 25, color: "light-purple" },
|
{ prestige: 25, color: "light-purple" },
|
||||||
{ prestige: 30, color: "white" },
|
{ prestige: 30, color: "white" },
|
||||||
{ prestige: 35, color: "aqua" },
|
{ prestige: 35, color: "aqua" },
|
||||||
{ prestige: 40, color: "dark-blue" }
|
{ prestige: 40, color: "dark-blue" },
|
||||||
|
{ prestige: 45, color: "black" },
|
||||||
|
{ prestige: 48, color: "dark-red" },
|
||||||
|
{ prestige: 48, color: "dark-gray" }
|
||||||
] as const
|
] as const
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
export const TITLE = "SkyWars" as const
|
|
||||||
export const INITIAL_XP = [0, 20, 70, 150, 250, 500, 1000, 2000, 3500, 6000, 10000, 15000] as const
|
export const INITIAL_XP = [0, 20, 70, 150, 250, 500, 1000, 2000, 3500, 6000, 10000, 15000] as const
|
||||||
export const RECURRING_XP = 10000 as const
|
export const RECURRING_XP = 10000 as const
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
export const TITLE = "UHC" as const
|
|
||||||
export const MODES = [
|
export const MODES = [
|
||||||
{ id: "solo", name: "Solo" },
|
{ id: "solo", name: "Solo" },
|
||||||
{ id: "", name: "Teams" },
|
{ id: "", name: "Teams" },
|
||||||
|
|||||||
Reference in New Issue
Block a user