BedWars Prestiges
Prestige reference data for Hypixel BedWars. This module exposes the complete set of 101 prestiges spanning star levels 1 to 10000 (one entry per 100 levels, plus the level 1 starter), along with helpers to resolve a prestige name for any star level and to build a fully coloured star tag for any star level.
BedWarsPrestige
The shape of a single prestige entry.
interface BedWarsPrestige {
readonly level: number;
readonly name: string;
readonly colorCode: string;
}level: the representative star level for the prestige (for example1200).name: the prestige name (for example"Gold Prime").colorCode: the exact section-sign coloured tag for that prestige's representative level (for example[1200✪]).
bedWarsPrestigeName(stars)
Get the prestige name for a star level.
function bedWarsPrestigeName(stars: number): string;The prestige bracket is floor(stars / 100), clamped to the valid 0 to 100 range so that any star level resolves to a real prestige. Level 0 maps to Stone, and levels at or above 10000 map to Prestigious.
import { bedWarsPrestigeName } from "@breezil/hypixel-utils";
bedWarsPrestigeName(5); // "Stone" (low bracket)
bedWarsPrestigeName(1234); // "Gold Prime" (mid bracket)
bedWarsPrestigeName(9999); // "Fuse" (high bracket)
bedWarsPrestigeName(10000); // "Prestigious"
bedWarsPrestigeName(0); // "Stone" (clamped low)
bedWarsPrestigeName(99999); // "Prestigious" (clamped high)bedWarsStarTag(stars)
Build a fully section-sign coloured star tag for any star level.
function bedWarsStarTag(stars: number): string;For each prestige bracket the per-digit colour pattern is derived from the representative colour code and re-applied to the digits of the actual star number. The bracket's leading colour, trailing colour and star-symbol colour are reproduced so that arbitrary star numbers (for example 1234) are coloured in the same spirit as the representative level (1200).
The general layout of every tag is:
<leadColor>[<colouredDigits><starColor><starSymbol><trailColor>]where any of the colour segments may be omitted when the representative code omits them. The star symbol is chosen by band: ✫ for levels 1 to 1000, ✪ for 1100 to 2000, ⚝ for 2100 to 3000, and ✥ for 3100 to 10000.
import { bedWarsStarTag } from "@breezil/hypixel-utils";
bedWarsStarTag(7); // "§7[7✫]" (low bracket)
bedWarsStarTag(1234); // "§7[§e1234§6✪§7]" (mid bracket)
bedWarsStarTag(9912); // "§8[§79§f912§e✥§f]" (high bracket)BEDWARS_PRESTIGES
The complete table of all 101 prestiges.
const BEDWARS_PRESTIGES: readonly BedWarsPrestige[];Index 0 is the Stone (level 1) entry, index 1 is bracket 1 (level 100), and so on up to index 100 (level 10000). Each star tag below renders in its real Minecraft colours; hover a tag to see its raw section-sign code.
| Level | Name | Star tag |
|---|---|---|
| 1 | Stone | [1✫] |
| 100 | Iron | [100✫] |
| 200 | Gold | [200✫] |
| 300 | Diamond | [300✫] |
| 400 | Emerald | [400✫] |
| 500 | Sapphire | [500✫] |
| 600 | Ruby | [600✫] |
| 700 | Crystal | [700✫] |
| 800 | Opal | [800✫] |
| 900 | Amethyst | [900✫] |
| 1000 | Rainbow | [1000✫] |
| 1100 | Iron Prime | [1100✪] |
| 1200 | Gold Prime | [1200✪] |
| 1300 | Diamond Prime | [1300✪] |
| 1400 | Emerald Prime | [1400✪] |
| 1500 | Sapphire Prime | [1500✪] |
| 1600 | Ruby Prime | [1600✪] |
| 1700 | Crystal Prime | [1700✪] |
| 1800 | Opal Prime | [1800✪] |
| 1900 | Amethyst Prime | [1900✪] |
| 2000 | Mirror | [2000✪] |
| 2100 | Light | [2100⚝] |
| 2200 | Dawn | [2200⚝] |
| 2300 | Dusk | [2300⚝] |
| 2400 | Air | [2400⚝] |
| 2500 | Wind | [2500⚝] |
| 2600 | Nebula | [2600⚝] |
| 2700 | Thunder | [2700⚝] |
| 2800 | Earth | [2800⚝] |
| 2900 | Water | [2900⚝] |
| 3000 | Fire | [3000⚝] |
| 3100 | Sunrise | [3100✥] |
| 3200 | Eclipse | [3200✥] |
| 3300 | Gamma | [3300✥] |
| 3400 | Majestic | [3400✥] |
| 3500 | Andesine | [3500✥] |
| 3600 | Marine | [3600✥] |
| 3700 | Element | [3700✥] |
| 3800 | Galaxy | [3800✥] |
| 3900 | Atomic | [3900✥] |
| 4000 | Sunset | [4000✥] |
| 4100 | Time | [4100✥] |
| 4200 | Winter | [4200✥] |
| 4300 | Obsidian | [4300✥] |
| 4400 | Spring | [4400✥] |
| 4500 | Ice | [4500✥] |
| 4600 | Summer | [4600✥] |
| 4700 | Spinel | [4700✥] |
| 4800 | Autumn | [4800✥] |
| 4900 | Mystic | [4900✥] |
| 5000 | Eternal | [5000✥] |
| 5100 | Burnout | [5100✥] |
| 5200 | Cooldown | [5200✥] |
| 5300 | Obliteration | [5300✥] |
| 5400 | Ender | [5400✥] |
| 5500 | Brust | [5500✥] |
| 5600 | Comical | [5600✥] |
| 5700 | Lusterlost | [5700✥] |
| 5800 | Maelstrom | [5800✥] |
| 5900 | Time Undone | [5900✥] |
| 6000 | Umbrella | [6000✥] |
| 6100 | Luminous | [6100✥] |
| 6200 | Tortilla | [6200✥] |
| 6300 | Corn | [6300✥] |
| 6400 | Bittersweet | [6400✥] |
| 6500 | Sweetsour | [6500✥] |
| 6600 | Pop | [6600✥] |
| 6700 | Bubblegum | [6700✥] |
| 6800 | Contrast | [6800✥] |
| 6900 | Blended | [6900✥] |
| 7000 | Allay | [7000✥] |
| 7100 | Blaze | [7100✥] |
| 7200 | Creeper | [7200✥] |
| 7300 | Drowned | [7300✥] |
| 7400 | Enderman | [7400✥] |
| 7500 | Frog | [7500✥] |
| 7600 | Ghast | [7600✥] |
| 7700 | Hoglin | [7700✥] |
| 7800 | Iron Golem | [7800✥] |
| 7900 | Jerry | [7900✥] |
| 8000 | Kringle | [8000✥] |
| 8100 | Liquid | [8100✥] |
| 8200 | Mint | [8200✥] |
| 8300 | Neglected | [8300✥] |
| 8400 | Onion | [8400✥] |
| 8500 | Poser | [8500✥] |
| 8600 | Quartz | [8600✥] |
| 8700 | Rich | [8700✥] |
| 8800 | Sanguine | [8800✥] |
| 8900 | Titanic | [8900✥] |
| 9000 | Unorthodox | [9000✥] |
| 9100 | Volcanic | [9100✥] |
| 9200 | Weeping Cherry | [9200✥] |
| 9300 | X-Ray | [9300✥] |
| 9400 | Yearn | [9400✥] |
| 9500 | Zebra | [9500✥] |
| 9600 | Caution | [9600✥] |
| 9700 | Indescribable | [9700✥] |
| 9800 | Forgotten | [9800✥] |
| 9900 | Fuse | [9900✥] |
| 10000 | Prestigious | [10000✥] |