The Dev Monarch
The 1-of-1.
One token, minted to the founder wallet, outside the 10,860 supply, outside the random Legendary roll. Minted via Fantums.mintKing() — a one-shot function that can only be called once and only by the contract owner. After it's been called, the function reverts forever.
The Dev Monarch is the signature piece. It is not for sale at mint. It is the founder's seat at the table.
What it looks like
The Dev Monarch is rendered against a special palette object in scripts/art-mockups/style-b-v3.mjs (the source of truth) and the locked artwork lives at docs/art-mockups/style-b-v3/dev-monarch.png.
The distinguishing features:
| Element | Value |
|---|---|
| Body | Porcelain (#F2EBD8) — same as the standard cabaret bodies |
| Outline | Pink-glow — outline cells use #FF2D8F instead of standard purple-black. This is the 1-of-1 signature. |
| Hair | Fluro Pink |
| Crown | New royalCrown() — tall crown with three jewelled spikes and a wide gem band |
| Cape | Full gold cape with cyan trim |
| Lips | Red, drawn distinctly |
| Smile | Tooth-smile (most Fantums have the simple "O" mouth — Dev Monarch breaks the rule) |
| Halo | Gold sparkle aura — pip dots scattered around the silhouette in the empty background |
The pink-glow outline is the signature. Every other Fantum in the collection — every Common, Uncommon, Rare, Epic, Void Phantom, Holo Iridescent — has its outline rendered in #1A0A14. The Dev Monarch's outline is #FF2D8F. It is the only token with this property.
The crown
The first pass of the Dev Monarch had a broken render: the whole face and body came out solid gold, breaking the porcelain rule, and the "halo" was scattered UFO dots around the canvas perimeter. Both of those were fixed.
The current crown is royalCrown() — tall, three jewelled spikes, wider gem band than the flat tiara worn by some Common Monarchs. This is the only Fantum that wears the royal crown. Standard Monarchs (the 19-roster archetype) wear a regular crown.
The halo
The halo() function generates a sparkle aura — small dots of gold scattered in the empty background around the silhouette. The dots are random per-render position but consistent per-token because the seed is fixed. No two halo cells overlap with the body or the cape — the halo only fills empty cells.
The halo never animates. It's a static field of gold pips.
How it's minted
function mintKing(address to) external onlyOwner {
require(!kingMinted, "King already minted");
kingMinted = true;
uint256 tokenId = MAX_SUPPLY + 1; // 10,861
_mint(to, tokenId);
_setKingMetadata(tokenId);
}
The token ID is MAX_SUPPLY + 1 = 10,861. It sits outside the 1..10,860 range that holds the regular collection. This means:
- It doesn't count against the 10,860 cap.
- It doesn't appear in any standard rarity-tier roll.
- It can't be claimed via the legacy window (no proof targets tokenId 10,861).
- It can only ever exist once; the
kingMintedflag prevents a second call.
Does it have OG status
No. The Dev Monarch is its own thing. It does not carry isOG = true. It doesn't get the +5% OG stat boost, the OG fight discount, or any of the OG-window benefits.
But its stats are deliberately high — the founder is not getting a hobbled token, the founder is getting a unique render with strong but not-broken combat stats. The Dev Monarch can duel, can win, can lose. It cannot be permadeathed: it is automatically arenaOptOut = true for vanity protection.
Why it exists
Because the dev was on the original Fantums Discord. Because the project's death wasn't anyone's fault but the rebirth is. Because a 1-of-1 founder piece is honest about the labour — it's a token of the work done to extract the snapshot, build the new contracts, ship the on-chain renderer, design the cabaret aesthetic.
Other collections call this a Dev Reserve. We call it the Monarch.
See also
- Archetypes — the standard Monarch archetype lives inside the regular roll; this 1-of-1 is separate
- Legendary skins — what Legendary looks like in the random pool
- Combat system — how the Monarch can fight without ever dying
Last updated: 2026-05-21