← Back to topic: Capture rate and capsules

pillar / capture-rate-math

Dino Hunters capture rate and capsules — math, ladder, and Tech Capsule swap alert

How p_catch is computed, the seven-tier capsule ladder, the verified race bonus, and why Tech Capsule is always flagged as a strict downgrade over Elite.

Last verified
8/1/2026
Updated
8/1/2026
Sources
4

How p_catch is computed

The capture-rate calculator reads seven caller-supplied inputs and returns the effective probability that a weakened dinosaur accepts the chosen capsule. The math is:

Step 1  p_base       = rarity_base_catch[rarity]                         (probability 0–1)
Step 2  race_mod     = race_capture_luck_modifier[race]                  (decimal, 0 if unverified)
Step 3  p_base_race  = p_base * (1 + race_mod)                           (probability 0–1)
Step 4  CL_capsule   = capsule_capture_luck[capsule_tier]                (Capture Luck points)
Step 5  CL_dot       = dot_stacks * 15                                   (Capture Luck points / stack)
Step 6  CL_eff       = CL_capsule + CL_dot                               (Capture Luck points)
Step 7  CL_mod       = min(0.95, CL_eff / 100)                           (probability, capped)
Step 8  p_after_cl   = min(0.99, p_base_race + CL_mod)                   (probability 0–0.99)
Step 9  hp_mult      = max(0.05, 1.0 - target_hp_pct * 0.5)              (multiplier 0.05–1.0)
Step 10 p_catch      = clamp(p_after_cl * hp_mult, 0.001, 0.99)          (probability)

p_catch is the per-attempt catch probability. The geometric mean and inverse-CDF math then turn it into expected attempts and attempts to 50 / 80 / 95 % confidence.

The capsule ladder (Capture Luck vs. cost)

Capsule Capture Luck Coin cost Robux cost Notes
Basic 25 Free Starter inventory, free of charge.
Fine 60 Free Capsule set / shop, free of charge.
Strong 120 1,200 Coins First Coin-paid tier.
Tech 300 159 Robux Always flagged: Elite Capsule is strictly better.
Elite 320 7,200 Coins Best Coin value on the ladder.
Best 500 35,000 Coins High-Coin tier.
Master 700 90,000 Coins Top observed tier.

The Capture-Luck-per-Coin ratio jumps sharply at Elite: 320 CL for 7,200 Coins beats 300 CL for 159 Robux on both axes, and the calculator fires a dedicated swap alert every time Tech Capsule is selected. See Capsule ladder and pricing for the full side-by-side.

Race roll table and Emberwing bonus

The seven-row race roll table transcribed from the in-game race panel:

Race Roll % Capture Luck bonus
Skyborn 30 unverified (0% in calculator)
Boneborn 26 unverified (0% in calculator)
Shellwyrm 20 unverified (0% in calculator)
Emberwing 14 +12%
Firedrake 7 unverified (0% in calculator)
Voidwyrm 2.5 unverified (0% in calculator)
Skullwyrm 0.5 unverified (0% in calculator)

Emberwing’s bonus panel is the only one captured in public sources: DMG +15%, Capture Luck +12%, Rank Luck +5%, Hatch Speed +8%, EXP +2%. All other races render an [INFERRED] badge and contribute 0% to the calculator until Fishgig Game publishes numeric bonuses. See Races and Emberwing bonuses for the full discussion.

Worked example

Inputs: Legendary rarity, 20 % target HP, Elite Capsule, Emberwing race, 1 DoT stack, 80 % confidence target.

  • p_base = 0.01
  • p_base_race = 0.0112 (× 1.12)
  • CL_eff = 320 + 15 = 335
  • CL_mod = 0.95 (capped)
  • p_after_cl = 0.9612
  • hp_mult = 0.90
  • p_catch = 0.8651 (86.5 %)
  • Expected attempts ≈ 1.16 capsules
  • N(80 %) = 1 capsule = 7,200 Coins
  • N(95 %) = 2 capsules = 14,400 Coins

Verdict: Elite clears a Legendary in 1–2 attempts at low HP. Master (700 CL, 90,000 Coins) buys a few extra percentage points and is rarely worth the 82,800-Coin delta.

Edge cases the model handles

  • Rarity unknown → defaults to Rare (0.15) with an “assumed Rare” note.
  • target_hp_pct = 0hp_mult = 1.0; the slider models “would this catch land if I stopped shooting here?”
  • target_hp_pct = 1.0hp_mult = 0.5, halving p_catch.
  • Capture Luck overflow → CL_mod capped at 0.95.
  • Probability never reaches 1.0 → p_after_cl capped at 0.99, p_catch clamped to [0.001, 0.99].
  • Tech Capsule selected → Robux-vs-Coin side panel always rendered.
  • Insufficient Coins → flag + recommend the cheapest capsule whose p_catch is within 5 percentage points.
  • Free capsules (Basic / Fine) → cost-to-confidence is 0; display attempts only with a time-cost note in minutes of farming.
  • Double Coins / Double Exp toggles → bit-identical zero delta on p_catch. The toggles exist to kill the community misconception.

Sources and verification

Source Kind URL
DinoHunters.space capsules Community https://dinohunters.space/database/capsules
AllThings.How beginner guide Community https://allthings.how/dino-hunters-roblox-how-to-capture-level-up-and-evolve-dinosaurs/
GameStratWiki beginner guide Community https://gamestratwiki.com/dino-hunters-beginner-guide/
Roonby beginner guide Community https://roonby.com/2026/07/21/dino-hunters-roblox-beginners-guide-how-to-capture-dinosaurs-build-your-team-and-progress-faster/

Verification date: 2026-08-01. The Capture Luck → p_catch mapping (Step 7) and the linear HP penalty (Step 9) are inferred from comparable Roblox simulator patterns; treat the on-screen in-game capture percentage as authoritative when it disagrees.

Frequently asked questions

Why does Tech Capsule always trigger a swap alert?

Tech Capsule costs 159 Robux for 300 Capture Luck while Elite Capsule costs 7,200 Coins for strictly better 320 Capture Luck. The wiki calculator fires the alert on every Tech Capsule selection as a documented hard requirement.

Does Emberwing actually change capture rate?

Yes. Emberwing grants a verified +12% Capture Luck bonus on top of the rarity base. All other races render an [INFERRED] badge and contribute 0% until developers publish numeric bonuses.

Why do my captures keep failing?

Rarer tiers have lower base rates. Weaken further with HP-down modifiers (Taser Gun stun, Poison Crossbow poison) before firing a capsule, and pick a higher Capture Luck tier when you can afford it.

Sources

  1. DinoHunters.space capsules databasecommunity · Checked 8/1/2026
  2. AllThings.How Dino Hunters beginner guidecommunity · Checked 8/1/2026
  3. GameStratWiki Dino Hunters beginner guidecommunity · Checked 8/1/2026
  4. Roonby Dino Hunters beginner guidecommunity · Checked 8/1/2026