No black boxes. No hidden algorithms.
ReliXus operates on a Provably Fair Protocol. We pre-generate the entire supply, lock the data in an immutable database, and give you the key to verify every pack.
Supply Hard-Capped via Locked Algorithm
In traditional TCGs, insiders can weigh packs or map boxes to find the hits. In ReliXus, this is impossible.
Every pack follows a strict 5-Card Structure. Verify the logic yourself.
def generate_pack(pack_seed):
contents = []
# 1. Fixed Slots
contents.extend(pull_common(3))
contents.extend(pull_uncommon(1))
# 2. Rare Slot (Dynamic Probability)
# Uses secure SHA-256 hash for randomness
rng = deterministic_roll(pack_seed)
if rng < 5: # 5% Chance in Slot
contents.append("UR_CARD")
elif rng < 25: # 20% Chance in Slot
contents.append("SR_CARD")
else: # 75% Chance in Slot
contents.append("R_CARD")
return seal_pack(contents)Enter the UUID of any Pack, Box, or Case to trace its origin and verify its authenticity in the public registry.
Node Status: Synced