Costilla County · Recorder
Game Difficulty & Outcomes Disclosure
1. What this page is
This page describes how often certain in-game events occur in Land Flipper Tycoon, including the frequency of "disaster" events (floods, wildfires, and similar negative random events that reduce parcel value or block actions for a time). It exists so you can make informed decisions about how much AC or Pro Flipper time to purchase, and so the Game's difficulty curve is publicly documented rather than hidden. This page is a summary of design targets, not a guarantee of any individual outcome. See §4 for why individual results vary.
2. Per-level disaster-check probability (design ranges)
Each in-game level (L1 through L10) has a per-roll probability that a "bad event" will be considered when a parcel is processed. These are ranges expressed as percentages, rounded for readability, sourced verbatim from the Game's badChanceByLevel table in functions/src/disasters.js. A "design range" means the exact programmed value sits inside the stated band; individual play sessions will not reproduce these numbers precisely because the underlying random-number generator is seeded differently each session (see §4).
| Player level | Per-roll chance a "bad event" is considered |
|---|---|
| L1–L2 | 25%–33% |
| L3–L4 | 50%–60% |
| L5–L6 | 67%–73% |
| L7–L8 | 77%–80% |
| L9–L10 | 82%–83% (ceiling) |
What "considered" means. When the dice roll lands inside the band above, the Game then picks a specific disaster from the list of disasters applicable to that parcel's terrain and county. If no disaster is applicable to that parcel (for example, a wildfire can't apply to a parcel that has no vegetation), no disaster occurs even though the roll was "bad." In other words: the percentages above are an upper bound on bad events, not a guarantee that a bad event happens that often.
The curve is asymptotic. Bad-event probability rises steeply from L1 to L5, then flattens out. L6 through L10 are each slightly more likely than the level before, but the per-level increase shrinks as the curve approaches an internal ceiling around 83%. The Game is capped at L10 at launch; the curve does not climb indefinitely.
3. Disaster types (high level)
Bad events in the Game fall into a handful of broad families. The exact disaster that occurs on any given roll depends on the parcel's terrain, the county the parcel is in, and (for some disaster types) whether defensive upgrades have been purchased. The Game does not publish per-disaster-type frequencies because those frequencies depend on parcel and county state and would be misleading if stated in isolation. The families are:
- Weather and fire — floods, wildfires, hurricanes, flash-flood washouts. Reduce parcel value or temporarily freeze activity.
- Pests and structural damage — termites, foundation or access issues. Repairable with in-game currency.
- Legal and title — boundary disputes, code violations, lien or easement problems, encroachments. Require in-game action to clear.
- Occupancy — trespass and unlawful-occupancy events that trigger an in-fiction eviction flow.
- Market — buyer-pool freezes and buyer-credit failures that delay sales.
Most disasters are mitigable: certain parcel upgrades reduce or eliminate the damage from a specific disaster family. The disaster's effect on your parcel is shown in-fiction at the moment it occurs.
4. Design targets, not guarantees
The Game's random-number generator is seeded with a session identifier (seed ?? Date.now() at disasters.js:124) on every call where no explicit seed is supplied. Practical consequences:
- Your results will not match the percentages above exactly. Over a long enough run, the average trend will approach the design targets, but any single session — and especially any small sample of rolls — may sit noticeably above or below the band.
- Bad streaks and good streaks both happen. A run of three disasters in a row at L2 is statistically possible and is not evidence that the Game is "rigged." A long disaster-free stretch at L8 is similarly possible and is not a bug.
- Independent audits welcome. If you keep a tally over hundreds of rolls at a given level and want to share it with us, email service@acreford.com. We will not adjust the curve based on individual reports, but we will compare aggregate trends against the design targets for the next balance pass.
The Game does not adjust disaster probability in response to how much you have spent, whether you have purchased AC, or whether you are subscribed to Pro Flipper. The percentages above apply identically to every account at the same level.
5. Where these numbers come from
Every number in §2 is sourced from the badChanceByLevel table in the Game's source code at functions/src/disasters.js, lines 142–145. If a future balance pass changes those values, this page is updated to match before the new code reaches the live Game. If you see a mismatch between this page and what the Game appears to be doing, please report it; one of us is out of date and we want to know which.
6. Questions and disputes
Questions about this page or about a specific outcome can be sent to service@acreford.com. Refund requests are governed by our Refund Policy. Nothing on this page modifies the Terms of Service; in the event of a conflict between this page and the Terms or Refund Policy, the Terms and Refund Policy control.
Back to the Game