How DNA Actually Works in Horsey Game
🔬 How we sourced this guide. The structural model below is reverse-engineered from the community CRISPR Database, an open-source community tool whose published ~23 KB JSON dataset contains 18 known-good genomes (horse, dog, cow, tiger, monster, car, …) extracted from the actual game. The mechanic-level details are corroborated by 老番茄's Bilibili playthrough (7.3M views) where DNA Lab extraction is filmed at 12:01–12:42. Earlier drafts of horseygame.net used a wrong abstraction (20 sliders 0–15); this guide replaces it. Full source attribution on the Sources page.
If you've been building horses against a 20-slider mental model, you've been fighting the wrong abstraction. Here's the real one.
The structure: 20 helices × 2 alleles × GCAT bases
Each Horsey Game genome contains exactly 40 lines in the export format:
00:GCATGGCTTC
00:GCATGGCTTC
01:AACAGCATAGGAA
01:AACAGCATAGGAA
02:CATCGGTACGGGT
02:CATCGGTACGGGT
...
19:<allele a>
19:<allele b>
Three things that matter:
- 20 helices, indexed 00–19 (zero-based — note the discrepancy with our older /builds pages that say "Helix 04"; those are still 1-based legacy labels we'll reconcile).
- Each helix has two parallel alleles. Two lines, same prefix. This is real biology — chromosomes come in pairs.
- Alleles are GCAT base-pair strings, not numbers. Helix 0 carries a 10-character allele (
GCATGGCTTC). Helix 1 carries 13. Helix 2 carries 13. The lengths are fixed per helix index, not per creature, and not per allele.
This means the genome is a real DNA-style data structure with on the order of 20 helices × 2 alleles × ~12 bases × 4 letters ≈ 4^480 distinct genomes. The "1.1 trillion combinations" we previously reported was a vast underestimate.
Why this changes your strategy
Inheritance is genuinely Mendelian
When two horses breed, the child gets one allele from each parent per helix. Both alleles are preserved in the child's genome. Recessive traits — alleles that don't visibly express but persist in the strand — can resurface generations later when paired with a matching strand from the other side.
Practical consequence: don't cull a horse for not visibly expressing the trait you bred for. The allele may still be in the strand, hidden behind a dominant. Save it as breeding stock.
Cross-species splicing is a first-class feature
The community database contains 18 species presets:
horse · dog · cow · bug · goat · man · bear · tiger · giraffe · monster · car · rabbit · duck · sea · moose · croc · goblin · wheels
Yes — man, monster, car, wheels, goblin. The game's genome layout is species-agnostic. Helix 7 of a tiger has the same shape as helix 7 of a car. You can splice them.
This is why r/HorseyGame is full of horses with rocket boosters and beer-DNA hybrids. It's not a hack; it's the design.
Allele length is structural — don't try to "lengthen" a helix
You can't arbitrarily add or remove base pairs to a helix. Helix 1's allele is always 13 bases long; that's hard-coded. What you can edit (in the DNA Lab) is which letter sits at each position. So "the right G/C/A/T at position 7 of helix 12" is the search space, not "make helix 12 longer".
Two parallel strands per helix means a homozygous lock costs twice the work
To "lock in" a helix value, you need both alleles to match. The community calls this homozygosity. A horse with 01:GCATGGCTTC / 01:GCATGGCTTC is locked at helix 0; one with 01:GCATGGCTTC / 01:GCATGAACTC is heterozygous and will leak the alternative strand into half its offspring.
A Champion-tier breeding plan requires homozygous locks on the anchor helices. Plan for the doubled work.
The "specimen archive" practice
Veteran players treat their first round of high-quality natural horses (the ones you buy, drug, or capture in the early game) as non-consumable genetic insurance. Specifically:
- Save every ace natural horse you acquire in the opening — don't release them, don't race them to death, don't splice them away.
- Keep at least one representative of each "pure" body archetype (rabbit, multi-leg, bird, etc.) in long-term storage. These are reference genomes you can graft from later.
- When a breeding line goes wrong, you reload from a save and a preserved specimen. Without the specimen, the save still loses you the unique allele combinations the lost horse carried.
- Polarised-shape horses are correlated with peak speed — extreme proportions tend to come with extreme stats. One veteran reports a personal-best ~5-second race time on a heavily polarised horse. That body shape only emerged because their preserved naturals had the right starting strands.
Source: player comment under 老番茄 BV1BM9fB8Eds, 2026-05-09. The specimen-archive practice is an emergent community convention, not a documented game feature.
The right tool to edit the real DNA
We previously shipped a 20-slider Gene Editor on this site. It was the wrong tool for the wrong abstraction. It's been removed.
The right tool is the community CRISPR Database — a browser-native editor that lets you load any of the 18 known genomes, edit individual base pairs across both alleles, and tag/save your work. It's the only public tool that correctly models the game's actual DNA structure. Original community-data attribution on the Sources page.
We're evaluating two paths to integrate equivalent functionality directly into horseygame.net (a polished native rebuild) — until then, our DNA Database page sends you straight to the working tool.
Open questions (we don't know yet)
- Which helix governs which trait? The 20-slider abstraction at least claimed "Helix 0 = Stamina, Helix 2 = Speed". With the real model, those mappings are unverified — any may be wrong, and the per-base position of a trait within an allele matters.
- Is there a recessive/dominant lookup table we can extract? The game presumably has one internally; community save-file extraction in Week 3 will try to dump it.
- How does the gene drive (基因驱动 in 老番茄's playthrough) actually splice? The UI is filmed; the underlying probability mechanics are not.
If you've extracted any of the above from a save file, submit via /contact. We'll update with full credit.
What's next
- Opening Speedrun — the 6-step community chain to unlock the DNA Lab in 45 minutes
- Hidden Secrets — cave bones, water rope, trophy NPCs, the top-left DNA bottle
- Champion-Tier Build — the long-term breeding plan now that you understand the strand model
- DNA Database tool — load presets and edit real GCAT alleles
Sources
- Community CRISPR Database — open-source 18-genome dataset, fetched 2026-05-09. The structural claims about helix count, allele duality, and base-pair format are derived from inspecting the published
default-database.json. Direct link on /sources. - 老番茄's playthrough — "这是什么马??" — DNA Lab extract/inject UI demonstrated at 12:01–12:42.
- Player comments under that video, collected 2026-05-09 (Bilibili comment API does not preserve specific authors at fetch time; we'll backfill if commenters self-identify).
Last updated: 2026-05-09. This guide replaces the deleted "All 20 DNA Helices, Explained" which was based on the wrong abstraction.
Last verified: 2026-05-09 · Game version: 1.0.4 · See /sources for citation list.