Genre: Roguelike Expert blueprint for roguelikes balancing challenge, progression, and replayability. NEVER Do (Expert Anti-Patterns) Generation & RNG - NEVER make runs dependent on pure RNG; strictly provide mitigation (rerolls, shops, pity timers) to ensure every run is winnable. - NEVER use unseeded RNG for world generation; strictly initialize isolated with a predictable seed for daily runs/debugging. - NEVER rely on for critical logic; strictly use local RNG instances to prevent global state pollution. - NEVER use for critical content drops; strictly use a Shuffle Bag to prevent statisti…