Search/Recent Changes
DBTropes
...it's like TV Tropes, but LINKED DATA!

Cap

 Cap
type
FeatureClass
 Cap
label
Cap
 Cap
page
Cap
 Cap
comment
The maximum quantity of something that a game allows. Once you've hit the cap for that particular element, any other factors which would exceed that limit are silently ignored, and may as well not have happened at all.
This has a variety of uses in game design, but the gamer is concerned with caps in only a handful of instances:
Damage caps. Many RPGs cap the amount of damage that can be done by a single attack. Even if the character is strong enough that his attacks would do more based on the game's damage calculation system, any damage past the cap is not dealt. This one is most likely to be set with game balance in mind, but usually only succeeds in making weaker multi-hit attacks better than single strong attacks.
Stat caps. The point at which a character's statistics can go no higher. In some games, characters' stats cap only at unfeasibly high levels, but in others (notably the Fire Emblem series) the caps are reachable at normal levels and thus are a big deal. Levels themselves often have a cap as well, which may or may not come before reaching other stat caps.
Inventory caps. The maximum amount of a single item you're allowed to carry. Combined with the Hyperspace Arsenal, this can create weird situations, such as the ability to carry 99 Potions and 99 Hi-Potions, but not 100 Potions and 0 Hi-Potions. Also applies to extra lives and money.
Time caps. In games or situations in which you are being timed, the time usually has some upper limit at which it stops counting. The Paper Mario games, for example, stop counting your time at ninety-nine hours, fifty-nine minutes, fifty-nine seconds. Usually has no effect on gameplay, unless the programmers royally screwed up (such as in the case of the Berry Glitch from early versions of Pokémon Ruby and Sapphire).
Score caps. In older games that kept score, it's often possible to amass a score higher than the game can track. This is especially possible in games from the Atari 2600 generation, since they can go on without end if one is a good enough player. Reaching the maximum score in a given game was a point of honor among gamers. Among fans of Shmups, this is known as a "counter stop," or "kansuto" in Japanese.
Combo caps. Many fighting games which count the number of hits in a combo will stop counting at some point, 99 being a popular limit.
Unit caps. The maximum amount of units, either of a specific kind or all together, that you can have on the field at once in a Real Time or Turn-Based Strategy game. See Arbitrary Headcount Limit for more details on this.
There are three kinds of caps:
Designer Imposed Cap: A cap deliberately set by the designers, usually to keep play balanced or as an Anti-Hoarding measure. For example, you might be limited to carrying 15 bombs so you can't plow through the entire game throwing bombs at everything. A variant of this type of cap is the "soft cap", where the cap is not an absolute limit but arbitrary mechanics are added to make progressing beyond it increasingly more difficult; see Diminishing Returns for Balance and Stat Overflow for more detail.
Hardware Imposed Cap: In computer games, caps are sometimes imposed by the hardware. Computers generally store variables (a "variable" is any number that can change, such as HP or MP) in a given location of a fixed size. That size determines the range of the variable. Such caps are typically one less than an exact power of two, like 127, 255, 32,767, 65,535, which correspond to common formats for integers.
Related were binary-coded decimal variables in earlier games, where each decimal digit is stored in exactly four bits; BCD requires special corrections when doing arithmetic operations, but was much simpler to display and was thus used in many older games (where the programmer had to do all that fiddly stuff by hand) for score counters. Interestingly, this produced results visually indistinguishably from:
Interface Induced Caps ("all nines"): These are caps of 9, 99, 999, 9999, and so on — the cap is imposed due to the limited space on a menu/status/inventory screen allocated for displaying it. For example, the designer might find that you should be able to hold about 1,000 gold, but this means that it will take up 4 digits on the display, so instead they will make the cap 999. This was more important in old games, where the space taken up by each digit was a fixed space that was often quite substantial, so it was poor form to waste it on a "1" that would only appear when the player had 1,000 gold. (And what practical difference would that extra 1 gold do you anyway?) In rare cases, only the display is capped (while the actual value is not), resulting in a situation where you might open up your purse of 999 coins to spend 50 gold and still somehow have "999" remaining (because you actually had more than the screen was showing you). In new games, the extra space is usually readily available (as seen in this article's image), but the "all nines" cap is more intuitive for long-time gamers and is used often to this day as a Designer Imposed Cap. Note that in some cases it can also overlap with the hardware cap: e.g. a 16-bit value can easily hold numbers up to 9,999 , but if you want to hold numbers up to 99,999 you need a 32-bit value.
Games are sometimes not even programmed to cap such counters when they should. They will dutifully add one to a value that can't properly go any higher, resulting in a kind of malfunction known as an Integer Overflow. This is especially common with old games, because putting in a test for a maximum value would use memory and CPU cycles they didn't have to spare. An overflow might manifest as:
The counter rolls over to zero, just like the odometer in a car. (The computer just discarded the "carry over" digit.)
The counter rolls over to a very negative number, like -32768. (The "carry over" digit was written to the bit used for sign representation.)
The display gets messed up as digits for the overflowed counter "run into" some other information on the display.
Some of the digits become nonsense symbols. (This primarily occurs with right-justified displays. Click here for a longer explanation of this phenomenon With right-justified displays, usually the program starts at the rightmost digit and works leftwards. It divides the value by 10, writes the remainder, and moves left, repeating until it either has a value less than 10 or is at the leftmost position, in which case it simply writes whatever value it has left. Stored somewhere in a contiguous memory array are images of the digits "0" through "9"; to draw each digit, it starts at the "0", skips forward as many images as the digit it's supposed to draw, and draws the image it lands on. In the case of the leftmost digit, it assumes the value should be 9 or less; if it's actually 10 or more, the computer keeps counting past the 9, interprets whatever it lands on as image data, and draws that. Some games have more font data for the alphabet after the digits; in these cases, overflowing a counter that's supposed to cap at (for example) 999 will usually display "A00" for 1,000, "B00" for 1100, and so on.)
The game locks up, crashes, or starts to act really weird. (Due to the overflow clobbering memory used for something else entirely, or just because the game wasn't written to handle things like a negative counter.)
The game aborts with an error. (Rare except on modern platforms that do automatic range checking for the programmer.)
When a game or display error is caused by the level number (or something directly affected by the level number), and makes it impossible to continue, it's a Kill Screen.
In gaming, 'cap' as a verb can also be short for 'capture'. But that's not important right now.
A Super-Trope of:
Absurdly High Level Cap
Absurdly Low Level Cap
Arbitrary Augmentation Limit
Arbitrary Headcount Limit
Character Name Limits
One Bullet at a Time
Uniqueness Rule
See also: Scratch Damage and Pinball Scoring. Overflows can easily be Good Bad Bugs. Contrast Pickup Hierarchy, in which the objective is to collect as much stuff, so adding caps would defeat the purpose.
 Cap
fetched
2024-03-11T17:45:18Z
 Cap
parsed
2024-03-11T17:45:18Z
 Cap
processingComment
Dropped link to AbsurdlyHighLevelCap: Not an Item - FEATURE
 Cap
processingComment
Dropped link to ActuallyFourMooks: Not an Item - FEATURE
 Cap
processingComment
Dropped link to AvertedTrope: Not an Item - IGNORE
 Cap
processingComment
Dropped link to BagOfSharing: Not an Item - FEATURE
 Cap
processingComment
Dropped link to BonusDungeon: Not an Item - FEATURE
 Cap
processingComment
Dropped link to Castlevania: Not an Item - CAT
 Cap
processingComment
Dropped link to DevelopersForesight: Not an Item - FEATURE
 Cap
processingComment
Dropped link to DualWielding: Not an Item - FEATURE
 Cap
processingComment
Dropped link to EnemyScan: Not an Item - FEATURE
 Cap
processingComment
Dropped link to FanRemake: Not an Item - FEATURE
 Cap
processingComment
Dropped link to GameShow: Not an Item - FEATURE
 Cap
processingComment
Dropped link to GlassCannon: Not an Item - FEATURE
 Cap
processingComment
Dropped link to GottaCatchEmAll: Not an Item - FEATURE
 Cap
processingComment
Dropped link to GuideDangIt: Not an Item - FEATURE
 Cap
processingComment
Dropped link to InfinityPlusOneSword: Not an Item - FEATURE
 Cap
processingComment
Dropped link to LampShade: Not an Item - FEATURE
 Cap
processingComment
Dropped link to LampShades: Not an Item - FEATURE
 Cap
processingComment
Dropped link to LevelGrinding: Not an Item - FEATURE
 Cap
processingComment
Dropped link to LimitBreak: Not an Item - FEATURE
 Cap
processingComment
Dropped link to LowTierLetdown: Not an Item - FEATURE
 Cap
processingComment
Dropped link to MarathonBoss: Not an Item - FEATURE
 Cap
processingComment
Dropped link to MiniGame: Not an Item - FEATURE
 Cap
processingComment
Dropped link to MoneyForNothing: Not an Item - FEATURE
 Cap
processingComment
Dropped link to OneUp: Not an Item - FEATURE
 Cap
processingComment
Dropped link to OptionalBoss: Not an Item - FEATURE
 Cap
processingComment
Dropped link to OverflowError: Not an Item - FEATURE
 Cap
processingComment
Dropped link to PSY: Not an Item - IGNORE
 Cap
processingComment
Dropped link to Pinball: Not an Item - FEATURE
 Cap
processingComment
Dropped link to PinballScoring: Not an Item - FEATURE
 Cap
processingComment
Dropped link to PlayerVersusPlayer: Not an Item - FEATURE
 Cap
processingComment
Dropped link to RareCandy: Not an Item - FEATURE
 Cap
processingComment
Dropped link to RefugeInAudacity: Not an Item - FEATURE
 Cap
processingComment
Dropped link to RuinaFairyTaleOfTheForgottenRuins: Not an Item - UNKNOWN
 Cap
processingComment
Dropped link to StatGrinding: Not an Item - FEATURE
 Cap
processingComment
Dropped link to Superboss: Not an Item - FEATURE
 Cap
processingComment
Dropped link to TabletopGame: Not an Item - FEATURE
 Cap
processingComment
Dropped link to ThatOneSidequest: Not an Item - FEATURE
 Cap
processingComment
Dropped link to TheDreaded: Not an Item - FEATURE
 Cap
processingComment
Dropped link to ThereIsNoKillLikeOverkill: Not an Item - FEATURE
 Cap
processingComment
Dropped link to TrueFinalBoss: Not an Item - FEATURE
 Cap
processingComment
Dropped link to UpdatedRerelease: Not an Item - FEATURE
 Cap
processingComment
Dropped link to UrbanLegendOfZelda: Not an Item - FEATURE
 Cap
processingComment
Dropped link to Willow: Not an Item - UNKNOWN
 Cap
processingComment
Dropped link to spiritualsuccessor: Not an Item - FEATURE
 Cap
processingUnknown
Willow
 Cap
processingUnknown
RuinaFairyTaleOfTheForgottenRuins
 Cap
isPartOf
DBTropes
 Cap / int_10047ecf
type
Cap
 Cap / int_10047ecf
comment
Universal Paperclips has an interesting mechanic on a resource cap. The AI you play as has an "operations" resource for processing operations (used to buy upgrades), and the cap is limited by memory. If this fills up to full, you produce another, uncapped resource in the form of creativity. Furthermore, if you play the Quantum Computing minigame right, it's possible to go over the operations cap, although it will quickly go back down if it's above maximum.
 Cap / int_10047ecf
featureApplicability
1.0
 Cap / int_10047ecf
featureConfidence
1.0
 Universal Paperclips (Video Game)
hasFeature
Cap / int_10047ecf
 Cap / int_10321784
type
Cap
 Cap / int_10321784
comment
The trailer for Disgaea 4: A Promise Unforgotten makes it a point to advertise this fact blatantly as soon as possible.
 Cap / int_10321784
featureApplicability
1.0
 Cap / int_10321784
featureConfidence
1.0
 Disgaea 4: A Promise Unforgotten / Videogame
hasFeature
Cap / int_10321784
 Cap / int_1055be79
type
Cap
 Cap / int_1055be79
comment
The Multitree: Unlike the original, The Game Dev Tree fans are capped based on points.
 Cap / int_1055be79
featureApplicability
1.0
 Cap / int_1055be79
featureConfidence
1.0
 The Multitree (Video Game)
hasFeature
Cap / int_1055be79
 Cap / int_10ddd3d5
type
Cap
 Cap / int_10ddd3d5
comment
Somewhat controversially, The Legend of Zelda: Twilight Princess has a feature where if you open a treasure chest that contains more rupees than you can currently carry, you will simply put the rupees back into the chest to come back for later. Sounds good on paper, but it can hamper dungeon exploration as the player searches for which unopened chest contain a missing key, and rupee chests obstinately remain "unopened".
 Cap / int_10ddd3d5
featureApplicability
1.0
 Cap / int_10ddd3d5
featureConfidence
1.0
 The Legend of Zelda: Twilight Princess (Video Game)
hasFeature
Cap / int_10ddd3d5
 Cap / int_12381dc
type
Cap
 Cap / int_12381dc
comment
Divinity: Original Sin II has a soft cap on how far characters can raise their abilities with points from leveling up: 40 for attributes (from a base 10), 10 for combat abilities, or 5 for civil abilities, each of which has a separate points pool. However, these can be raised further with equipment, spells, special perks, and other sources.
 Cap / int_12381dc
featureApplicability
1.0
 Cap / int_12381dc
featureConfidence
1.0
 Divinity: Original Sin II (Video Game)
hasFeature
Cap / int_12381dc
 Cap / int_13998e73
type
Cap
 Cap / int_13998e73
comment
MapleStory originally put the cap on mesos (the game's currency) at 2,147,483,647; the cap has since been raised to 9,999,999,999. Many player-sold items cost even more than that, necessitating real-money trades. Meanwhile, the original damage cap was 199,999; the current cap is 50,000,000, and with certain modifiers, it's possible to reach 110,000,000 damage as a certain class. This causes an interesting shift in utilities for classes, as some classes that are generally considered to be weak will turn out to out perform "strong classes" in a setting where both have achieved capped damage.
 Cap / int_13998e73
featureApplicability
1.0
 Cap / int_13998e73
featureConfidence
1.0
 MapleStory (Video Game)
hasFeature
Cap / int_13998e73
 Cap / int_16c83de8
type
Cap
 Cap / int_16c83de8
comment
On some versions of Star Fox 64, the highest score you can get on one stage is 511. The easiest stage to do this on is Area 6 in Expert mode, where you can exceed the medal score by the time you hit the checkpoint.
In other versions, using a cheating device to get a continuously increasing kill count could cause the numbers of the counter to start spinning. It will register as 999 at the end of the stage, however.
The score cap being 511 is due to an overflow bug in earlier versions; reaching a score of 512 or higher would cause the score count during "Rank In" at the end of the game to rollover back to 255 plus whatever number of hits exceeded that, also hitting another rollover at 768. End result — if a stage did get 999 hits, thanks to the rollovers the score would be recorded as 486 or 487.
 Cap / int_16c83de8
featureApplicability
1.0
 Cap / int_16c83de8
featureConfidence
1.0
 Star Fox 64 (Video Game)
hasFeature
Cap / int_16c83de8
 Cap / int_17415b19
type
Cap
 Cap / int_17415b19
comment
In the first two Star Ocean games, the Player Character health cap is 9,999 HP, as is the damage cap. Monster health is by no means so capped. So while your mages do less damage per second compared to your fighters, and eventually lose hope of one-shotting late-game enemies even when hitting the damage cap, your mages were still important in preventing enemies from getting their spells off. After all, if your mage hits cap then the enemy's still standing, but if their spell hits the cap your party is wiped...
 Cap / int_17415b19
featureApplicability
1.0
 Cap / int_17415b19
featureConfidence
1.0
 Star Ocean (Video Game)
hasFeature
Cap / int_17415b19
 Cap / int_17c40956
type
Cap
 Cap / int_17c40956
comment
Dark Chronicle is even worse. You can carry hundreds of sacks of flour...but only 20 loaves of bread.
 Cap / int_17c40956
featureApplicability
1.0
 Cap / int_17c40956
featureConfidence
1.0
 Dark Chronicle (Video Game)
hasFeature
Cap / int_17c40956
 Cap / int_1882ec3c
type
Cap
 Cap / int_1882ec3c
comment
Soaring Machinariae:
Stat-buffing items have a cap of two each.
Revitalizing Water has a cap of 3
Healing Waters, Energy Pots, and Return Feathers have a cap of five each.
Only one repair kit can be held at a time.
 Cap / int_1882ec3c
featureApplicability
1.0
 Cap / int_1882ec3c
featureConfidence
1.0
 Soaring Machinariae (Video Game)
hasFeature
Cap / int_1882ec3c
 Cap / int_18ce7450
type
Cap
 Cap / int_18ce7450
comment
Hellsinker takes this and turns it into one of the games main scoring mechanics. You extra lives are capped depending on difficulty selected with less lives on higher ones. However hitting the life cap actually makes it so that you get an Immortality bonus whenever you get an extra life that starts scaling with each successful one.
 Cap / int_18ce7450
featureApplicability
1.0
 Cap / int_18ce7450
featureConfidence
1.0
 Hellsinker (Video Game)
hasFeature
Cap / int_18ce7450
 Cap / int_18fd00d4
type
Cap
 Cap / int_18fd00d4
comment
Super Mario Kart: The game caps your time at 10 minutes and stops moving after that.
 Cap / int_18fd00d4
featureApplicability
1.0
 Cap / int_18fd00d4
featureConfidence
1.0
 Super Mario Kart (Video Game)
hasFeature
Cap / int_18fd00d4
 Cap / int_1a89d675
type
Cap
 Cap / int_1a89d675
comment
The original Railroad Tycoon had this problem too; don't ever let your cash on hand go over [currency unit dependent on region] 30,000,000 or it'll go that far into the red. (On the other hand, if you get yourself 30,000,000 in debt, it will roll over in the other direction, and you'll suddenly be stinkin' rich.) As if that wasn't enough, you can only operate a maximum of 32 trains and build a maximum of 32 stations and 96 signal towers, and the timetables can only have up to four orders.
 Cap / int_1a89d675
featureApplicability
1.0
 Cap / int_1a89d675
featureConfidence
1.0
 Railroad Tycoon (Video Game)
hasFeature
Cap / int_1a89d675
 Cap / int_1aacbbc9
type
Cap
 Cap / int_1aacbbc9
comment
Dragon Age:
Dragon Age: Origins has, beside the usual inventory caps, a cap that says you can only have ten different characters saved at any time, though you can have multiple saves with each character. This wouldn't have been so bad if it wasn't for the fact that you got achievements/trophies for playing through each of the six openings, and that playing each of the expansions counted as making a new character, even if you imported your old one from the main game.
The level cap is 25 for the main game, and 35 for Dragon Age: Origins – Awakening, although you'd have to do pretty much every quest to get that high of a level.
Dragon Age II has a level cap of 50, but if you do everything, you'd be somewhere around halfway there.
Dragon Age: Inquisition also caps the level of the title organization at 20, which is easily reachable in a single playthrough (especially if you convert gold into influence at the "favor merchant's" stand in Skyhold). Your party's Character Level, meanwhile, is capped at 27 — this seems like an odd number (harhar) but it's actually a sneaky application of the Rule of Three found all over the game (which is the third one in the series), as 27 is 3 to the power of 3.
 Cap / int_1aacbbc9
featureApplicability
1.0
 Cap / int_1aacbbc9
featureConfidence
1.0
 Dragon Age (Franchise)
hasFeature
Cap / int_1aacbbc9
 Cap / int_1adee40d
type
Cap
 Cap / int_1adee40d
comment
The World Ends with You: There's no damage cap, and as a result, damage from strong enough attacks can overflow and heal the enemy!
Everything else however, is capped. 100 levels, 100 attack and defence, 9 of any given item, 99 of any given mastered pin, 200 unmastered pins (although you can hold more until you actually go look at them), 999 bravery, and 9,999 HP.
The game also Lampshades this in the wallet descriptions, such as "Holds up to 999,999 yen, and not one jot more!" and "Can hold exactly 9,999,999 yen. What are the odds!?"
 Cap / int_1adee40d
featureApplicability
1.0
 Cap / int_1adee40d
featureConfidence
1.0
 The World Ends with You (Video Game)
hasFeature
Cap / int_1adee40d
 Cap / int_1af341a1
type
Cap
 Cap / int_1af341a1
comment
The Disgaea games limit the amount of Mana you can hold to 10,000,000. If you have exactly that much, the game displays it as "Lots of Mana".
 Cap / int_1af341a1
featureApplicability
1.0
 Cap / int_1af341a1
featureConfidence
1.0
 Disgaea (Franchise)
hasFeature
Cap / int_1af341a1
 Cap / int_1bd6ae44
type
Cap
 Cap / int_1bd6ae44
comment
Populous: The Beginning had a tribe size limit of 200 (or more often 199) pushing it to far above this (using an the hypnotism spell exploit) would make the game unstable.
 Cap / int_1bd6ae44
featureApplicability
1.0
 Cap / int_1bd6ae44
featureConfidence
1.0
 Populous: The Beginning (Video Game)
hasFeature
Cap / int_1bd6ae44
 Cap / int_1c649ab3
type
Cap
 Cap / int_1c649ab3
comment
The world of The Rising of the Shield Hero works pretty much like an RPG game, complete with a stat window protagonist Naofumi can access to view his own stats as well as those of his allies and the monsters he faces. Naturally, this includes a couple of level caps:
The first cap is level 40 which can be overcome by visiting the Hourglass of the Dragon's Era and paying a small fee to do a class change. This prevents most monsters and outlaws from moving past this level, reducing the overall danger they pose. Naofumi is temporarily stuck at this cap due to the King forbidding him from using the Hourglass, forcing him to do it elsewhere.
The second cap is level 100 and is believed to be the maximum level. It is later confirmed that it's possible to go beyond level 100, but special rituals are required for that.
 Cap / int_1c649ab3
featureApplicability
1.0
 Cap / int_1c649ab3
featureConfidence
1.0
 The Rising of the Shield Hero
hasFeature
Cap / int_1c649ab3
 Cap / int_1cc11947
type
Cap
 Cap / int_1cc11947
comment
Descent allows you a maximum of 5 Mega Missiles (10 in Descent II), but you can only retrieve 3 after you die.
 Cap / int_1cc11947
featureApplicability
1.0
 Cap / int_1cc11947
featureConfidence
1.0
 Descent (Video Game)
hasFeature
Cap / int_1cc11947
 Cap / int_20e8e9bd
type
Cap
 Cap / int_20e8e9bd
comment
In the first act of Sonic the Hedgehog 3's Launch Base Zone, there is a way to summon an infinite series of robots and destroy them almost instantly. Do this until you run out of time several times, and you will have the maximum score and a LOT of lives (more than 200). Here's how to do it: There's an alarm near the beginning of a level that summons a flying robot. If you do a power up for a spin dash and don't release down, the robot will fly into you and be destroyed—and another will be summoned. When you destroy several monsters in succession, the score you gain goes up: 100 for the first, 200, then 500, then 1,000. After about a 14 monsters, the score goes up to a cap of 10,000 and you get a new life every 50,000 points). There is a life cap and a score cap, and eventually you'll reach one of them.
 Cap / int_20e8e9bd
featureApplicability
1.0
 Cap / int_20e8e9bd
featureConfidence
1.0
 Sonic 3 & Knuckles (Video Game)
hasFeature
Cap / int_20e8e9bd
 Cap / int_21e2f10d
type
Cap
 Cap / int_21e2f10d
comment
In Dragon Quest III the maximum level for any class is the standard 99 and EXP caps somewhere over 9 million (most likely either 9,999,999 or 24 bits). Every game after this uses a level cap of 99 save for a few recruitable monsters.
 Cap / int_21e2f10d
featureApplicability
1.0
 Cap / int_21e2f10d
featureConfidence
1.0
 Dragon Quest III (Video Game)
hasFeature
Cap / int_21e2f10d
 Cap / int_22e5872a
type
Cap
 Cap / int_22e5872a
comment
The Donkey Kong Country series, by contrast, only caps the amount of lives displayed at 99. Collecting more will result in your lives counter remaining at 99, but the extras will still count. Presumably there's a "true" cap on lives, but it's hard to say what it is.
 Cap / int_22e5872a
featureApplicability
1.0
 Cap / int_22e5872a
featureConfidence
1.0
 Donkey Kong Country (Video Game)
hasFeature
Cap / int_22e5872a
 Cap / int_237f18e5
type
Cap
 Cap / int_237f18e5
comment
In Code Name: S.T.E.A.M, the highest score attainable at the end of a mission is 9,999 medals.
 Cap / int_237f18e5
featureApplicability
1.0
 Cap / int_237f18e5
featureConfidence
1.0
 Code Name: S.T.E.A.M. (Video Game)
hasFeature
Cap / int_237f18e5
 Cap / int_2797f1b0
type
Cap
 Cap / int_2797f1b0
comment
The highest composite score obtainable on Geometry Wars Galaxies is 26,843,545,575 — or [(2^30)-1]x25.
 Cap / int_2797f1b0
featureApplicability
1.0
 Cap / int_2797f1b0
featureConfidence
1.0
 Geometry Wars (Video Game)
hasFeature
Cap / int_2797f1b0
 Cap / int_28438266
type
Cap
 Cap / int_28438266
comment
The Wario Land games have various caps. Notably, in the fourth game, the coin counter maxes out at 999,990. Since all the coins and crystals in the game come multiples of ten, it's clear that the extra zero is only there to give Wario's adventure more worth.
 Cap / int_28438266
featureApplicability
1.0
 Cap / int_28438266
featureConfidence
1.0
 Wario Land (Video Game)
hasFeature
Cap / int_28438266
 Cap / int_291e9857
type
Cap
 Cap / int_291e9857
comment
All of From Software's "Soulsborne" games, including Dark Souls, Bloodborne, and Elden Ring use multiple stat caps. In each game, each stat will initially provide a relatively high return on investment. Then there will be a "soft cap," around 30 points, after which gains become smaller, then a second soft cap around 60 (passing the second soft cap reduces gains to the point that it often requires more than one increase of a primary stat to see a derived stat increase by one). The final, hard cap for any given stat is usually 99. Since each stat increase represents one level, this leads to all of these games having an Absurdly High Level Cap equal to 99x the number of stars, minus the stats a level 1 character starts with.
The original Dark Souls has an interesting wrinkle with it's Endurance stat. Endurance is a primary stat that governs the derived stats of Stamina (sets the size of the player's Stamina bar; actions must wait for positive to happen, so an empty stamina bar adds delays to actions) and Encumbrance (how much equipment can be equipped at a time, with stacking mobility loss happening when a player goes over 0%, 25%, 50%, and 100% of their score). Stamina is hard capped at 45 Endurance; at that point, the player has achieved maximum possible Stamina and no more can be gained. But Encumbrance is uncapped, increasing regularly until Endurance itself caps out at 99.
 Cap / int_291e9857
featureApplicability
1.0
 Cap / int_291e9857
featureConfidence
1.0
 Dark Souls (Video Game)
hasFeature
Cap / int_291e9857
 Cap / int_2a04866b
type
Cap
 Cap / int_2a04866b
comment
Guild Wars has a system called "Favor of the Gods," which is tied to several maxed titles. A recent weekend event that made it easy to max out two of those titles pushed the amount of favor well beyond the cap, presumed to be 2^31 milliseconds (about 35,791 minutes). (To put into perspective how much favor was accumulated that weekend: it nearly reached the cap AGAIN.)
And then there is the wallet cap of 100,000 gold on your character. Trading large quantities of expensive items requires multiple trips to the storage chests for both parties (luckily you can trade standing next to said chests) . Trading for a single item worth more than 100,000 gold is usually done by using a rare crafting material as currency, or the buying party giving the seller his rare customized armor (which the seller can't use or sell for much, but would be very expensive for the buyer to replace) while he pays the amount in several increments, with the armor returned with the last payment.
 Cap / int_2a04866b
featureApplicability
1.0
 Cap / int_2a04866b
featureConfidence
1.0
 Guild Wars (Video Game)
hasFeature
Cap / int_2a04866b
 Cap / int_2a0e9a6e
type
Cap
 Cap / int_2a0e9a6e
comment
Deadly Towers has a money cap of 250 Ludder, which is annoying since one important item costs 232 Ludder.
 Cap / int_2a0e9a6e
featureApplicability
1.0
 Cap / int_2a0e9a6e
featureConfidence
1.0
 Deadly Towers (Video Game)
hasFeature
Cap / int_2a0e9a6e
 Cap / int_2acb2aa6
type
Cap
 Cap / int_2acb2aa6
comment
Final Fantasy Record Keeper:
Newly obtained units are initially capped at level 50, but you can then use Memory Crystals to increase this cap to be as high as 99. Endgame battles require that all members of the party be at level 99.
This also applies to magicite, newly obtained magicite is initially capped at level 50 and can be merged with identical magicite to increase the cap up to 99. Unlike with units, it isn't as important for magicite to be at level 99.
Damage is normally capped at 9999, however endgame battles are centered around abilities and Soul Breaks that exceed this cap. Overstrike and Arcane Overstrike Soul Breaks do at least one hit which caps at 99999, Cloud's first Ultra Soul Break allows anything to exceed the damage cap, including abilities and other Soul Breaks which do not under normal circumstances, and Awakenings and Sync Soul Breaks increase the damage cap to 19999.note It's possible to then exceed this cap even further, by for example activating an Awakening after a Sync or vice-versa, or activating a second Awakening through Roaming Warriors.
A special case to be noted is with Chain Soul Breaks, in which the damage multiplier is also capped. The first chains released (referred to as Gen 1) are capped at 99 hits, while the newest chains released (referred to as Gen 2) are capped at 150 hits.
 Cap / int_2acb2aa6
featureApplicability
1.0
 Cap / int_2acb2aa6
featureConfidence
1.0
 Final Fantasy Record Keeper (Video Game)
hasFeature
Cap / int_2acb2aa6
 Cap / int_2b70efd4
type
Cap
 Cap / int_2b70efd4
comment
World of Darkness live-action games, put damage caps on PCs in sanctioned LARPs. This was one of many fixes attempted to make the tabletop rules work in live-action, although in practice mid-powered characters hit cap very easily and high-powered characters were basically unaffected by any penalties.
 Cap / int_2b70efd4
featureApplicability
1.0
 Cap / int_2b70efd4
featureConfidence
1.0
 Old World of Darkness (Tabletop Game)
hasFeature
Cap / int_2b70efd4
 Cap / int_2ccc5aee
type
Cap
 Cap / int_2ccc5aee
comment
Each player in ToeJam & Earl can have up to nine lives. For Panic on Funkotron, each player can share up to seven (likely as a result of extra lives being much easier to obtain in the sequel).
Much like the Super Mario Bros. life counter, the display for bucks for the original ToeJam & Earl game is also a signed byte. Going over 127 means you will have negative bucks.
 Cap / int_2ccc5aee
featureApplicability
1.0
 Cap / int_2ccc5aee
featureConfidence
1.0
 ToeJam & Earl (Video Game)
hasFeature
Cap / int_2ccc5aee
 Cap / int_2ccd14d
type
Cap
 Cap / int_2ccd14d
comment
Secret of Evermore had a cap of 65,000-someodd on it's stats. How do we know this? Because a glitch in the programming which makes the game save buffs but not the effects thereof could be exploited to make your stats wrap under and flip around so that you're nigh-unstoppable so long as you don't level up much.
 Cap / int_2ccd14d
featureApplicability
1.0
 Cap / int_2ccd14d
featureConfidence
1.0
 Secret of Evermore (Video Game)
hasFeature
Cap / int_2ccd14d
 Cap / int_2cfda8f7
type
Cap
 Cap / int_2cfda8f7
comment
The first Puzzle Bobble game has a cap on the bonus that is given for dropping bubbles, 1310720 (2^17 * 10) points which is gotten by dropping 17 or more bubbles. The sequels have a cap of 10485760 (2^20 * 10) points which can be gotten by dropping 20 or more bubbles, with the caveat that unless exactly three bubbles were matched for the drop, the bonus is capped at 1310720.
 Cap / int_2cfda8f7
featureApplicability
1.0
 Cap / int_2cfda8f7
featureConfidence
1.0
 Puzzle Bobble (Video Game)
hasFeature
Cap / int_2cfda8f7
 Cap / int_2cfdf18e
type
Cap
 Cap / int_2cfdf18e
comment
In the SaGa series:
Characters in The Final Fantasy Legend have a visible HP cap of 999. However, human characters don't get HP from levels or other internal stats; they get them from buying HP-increasing items. The items themselves are at least partially capped in their effectiveness (use enough and even the most powerful variety only adds 1 HP) — but can increase the value well over 999.
In the second game, Humans and Mutants have a chance of their stats increasing at the end of battle, with that chance going up if they happened to use that particular stat in that battle (casting spells for Magic or taking damage for HP, for instance). They can't gain attributes past the cap of 999 HP or 99 Strength, Agility, Magic, or Defense, but a naked Human or Mutant could level to the cap and then put on armor or use rare stat-boosting items to break it. Robots don't level up permanently but can also break the displayed stat cap by wearing multiple copies of powerful equipment. (Or by using a bug to give them potentially infinite amounts of agility.) However, stats will loop around to 0 if they go over 255. And for whatever strange reason, some calculations involving agility only use the last two digits of it, so a character with 100 agility is slow as molasses. Meanwhile, damage caps are completely absent here; you can do five-digit damage long before it was possible in most Role Playing Games if you have enough strength, agility, and the game's Infinity +1 Sword.
Final Fantasy Legend III just does away with trying to cap your HP (displayed as 999 if exceeded) and core stats (which still actually cap at 255 but only display as 99 if you have more). You can see someone's actual max HP if you revive them in battle; the amount of HP recovery will be displayed in full. A level 99 human or mutant will have max HP in the 2,000s (though realistically the game can comfortably be completed with levels in the 40s and the display cap would barely be an issue). Robots can just go nuts; they get stronger in the same way humans did in the first game.
The DS remake completely overhauls the level system with a Stat Grinding system like the other SaGa games and uses your base stats as a human as the standard, with a cap of 1999 for HP and 99 for other stats. Other classes' stats are calculated as percentages of your human stats. For example, Beasts have 120% the HP of humans, so their HP can go up to 2,399. They have 90% strength, so their max strength would be 89. These are only the base stat caps; they can be exceeded with equipment bonuses.
The ability "Swallow" might actually cause an overflow glitch - only one boss (Dahak) can experience this. If he manages to use Swallow on the entire party, he recovers health in accordance to the damage dealt. However, if this exceeds his max HP, it will go into the negative value and the battle is considered "over".
 Cap / int_2cfdf18e
featureApplicability
1.0
 Cap / int_2cfdf18e
featureConfidence
1.0
 SaGa (RPG) (Video Game)
hasFeature
Cap / int_2cfdf18e
 Cap / int_2d788b49
type
Cap
 Cap / int_2d788b49
comment
The maximum score in the arcade version of Mars Matrix is 999,999,999,990. The Dreamcast version adds an additional digit.
 Cap / int_2d788b49
featureApplicability
1.0
 Cap / int_2d788b49
featureConfidence
1.0
 Mars Matrix (Video Game)
hasFeature
Cap / int_2d788b49
 Cap / int_2dc12aeb
type
Cap
 Cap / int_2dc12aeb
comment
NetHack's developers missed one - the score caps out at 2^31-1 (=2,147,483,647 - lousy four-byte signed integers). That score's been achieved a couple of times, as has an overflow score of -2,147,474,899.
 Cap / int_2dc12aeb
featureApplicability
1.0
 Cap / int_2dc12aeb
featureConfidence
1.0
 NetHack (Video Game)
hasFeature
Cap / int_2dc12aeb
 Cap / int_2eda9af9
type
Cap
 Cap / int_2eda9af9
comment
Forget Me Not: My Organic Garden: Unlike the other generators, there's a non-obvious limit on the amount of mincemeat that can be stacked at the bottom of the grinder, it's about 40 pieces.
 Cap / int_2eda9af9
featureApplicability
1.0
 Cap / int_2eda9af9
featureConfidence
1.0
 Forget Me Not: My Organic Garden (Video Game)
hasFeature
Cap / int_2eda9af9
 Cap / int_2f7cb321
type
Cap
 Cap / int_2f7cb321
comment
In Dangun Feveron, the bonus multiplier maxes out at 999.
 Cap / int_2f7cb321
featureApplicability
1.0
 Cap / int_2f7cb321
featureConfidence
1.0
 Dangun Feveron (Video Game)
hasFeature
Cap / int_2f7cb321
 Cap / int_2f9563e6
type
Cap
 Cap / int_2f9563e6
comment
In Ultima Online, getting your weight over 65,535 will result in it rolling over to 0 again, allowing you to move absolutely massive piles of materials. Though realistically only a huge pile of ore could so encumber a player. Also stacks of items over 65,535 had the same bug, including gold. In a game where the average person could earn 10,000 gold an hour.
 Cap / int_2f9563e6
featureApplicability
1.0
 Cap / int_2f9563e6
featureConfidence
1.0
 Ultima Online (Video Game)
hasFeature
Cap / int_2f9563e6
 Cap / int_2faf334e
type
Cap
 Cap / int_2faf334e
comment
Buddy Toss: The meter counter goes no higher than 999,999,999,999,999.00 m.
 Cap / int_2faf334e
featureApplicability
1.0
 Cap / int_2faf334e
featureConfidence
1.0
 Buddy Toss (Video Game)
hasFeature
Cap / int_2faf334e
 Cap / int_2ffcbd43
type
Cap
 Cap / int_2ffcbd43
comment
Statistic caps in Fire Emblem are low enough that it's common to reach them by mid to lategame although enemies never come near them (unless you're playing Genealogy, 'Binding Blade/Radiant Dawn Hard mode or NMOTE/Conquest Lunatic mode). Later games in the series even allow the 2nd generation characters to have adjusted caps unnormal from their class.
 Cap / int_2ffcbd43
featureApplicability
1.0
 Cap / int_2ffcbd43
featureConfidence
1.0
 FireEmblem
hasFeature
Cap / int_2ffcbd43
 Cap / int_30940081
type
Cap
 Cap / int_30940081
comment
Grand Theft Auto V has a hard cap at $2,147,483,647 per character.
 Cap / int_30940081
featureApplicability
1.0
 Cap / int_30940081
featureConfidence
1.0
 Grand Theft Auto V (Video Game)
hasFeature
Cap / int_30940081
 Cap / int_322f8fb1
type
Cap
 Cap / int_322f8fb1
comment
The City and the Dungeon: Stats max out at 1000; a few high-tier classes automatically max one or more stats when you take the class. Classes, on the other hand, have a soft cap of 100; you can keep leveling after that, but the experience requirement is exponential, so it's considered a waste.
 Cap / int_322f8fb1
featureApplicability
1.0
 Cap / int_322f8fb1
featureConfidence
1.0
 The City And The Dungeon
hasFeature
Cap / int_322f8fb1
 Cap / int_32b94732
type
Cap
 Cap / int_32b94732
comment
Marvel vs. Capcom: Infinite has a similar limitation on performing 20 light punches in a single combo (even if both characters participate). When that happens the engine throws the opponent into a vertical tailspin and out of harm's way.
 Cap / int_32b94732
featureApplicability
1.0
 Cap / int_32b94732
featureConfidence
1.0
 Marvel vs. Capcom: Infinite (Video Game)
hasFeature
Cap / int_32b94732
 Cap / int_331e008
type
Cap
 Cap / int_331e008
comment
Borderlands: Doesn't actually have a money cap. The amount of money you are carrying is listed as a 7-digit number, but you can carry much, much more, especially if you're playing the General Knoxx DLC, where you can find Shop Fodder that sells for millions. However, if you exceed $2,147,483,647 in your wallet, a glitch called "Cash Overflow" happens, where any further money collected will make the counter spin like mad and dying will make you lose ALL of your money. It messes up your challenges as well.
 Cap / int_331e008
featureApplicability
1.0
 Cap / int_331e008
featureConfidence
1.0
 Borderlands (Video Game)
hasFeature
Cap / int_331e008
 Cap / int_359666b7
type
Cap
 Cap / int_359666b7
comment
Lufia II: Rise of the Sinistrals: The Egg Dragon, an Optional Boss, has the largest amount of HP the game allows for. However, the developers obviously thought nobody would be silly enough to use a healing item on it, so they did not ensure that its HP could not exceed that number. As a result, you can easily defeat this boss by using a low-level healing item on it, thereby causing its HP to wrap around, then attacking it once. A pretty spectacular blunder in a game where killing bosses within a certain number of rounds would yield a nice item reward...
 Cap / int_359666b7
featureApplicability
1.0
 Cap / int_359666b7
featureConfidence
1.0
 Lufia II: Rise of the Sinistrals (Video Game)
hasFeature
Cap / int_359666b7
 Cap / int_377e9b66
type
Cap
 Cap / int_377e9b66
comment
Transport Tycoon has a whole lot of caps, including but not limited to:
80 trains per company
80 road vehicles per company
50 ships per company
40 aircraft per company
15 orders per timetable
250 stations altogether on the map
as many stations in the area of one town as the game can automatically name
The Fan Remake OpenTTD has vastly lifted all of these caps and some you probably didn't consider a cap such as train length (originally 10 parts), number of locomotives on one train (originally only one) or station size.
 Cap / int_377e9b66
featureApplicability
1.0
 Cap / int_377e9b66
featureConfidence
1.0
 Transport Tycoon (Video Game)
hasFeature
Cap / int_377e9b66
 Cap / int_37af796c
type
Cap
 Cap / int_37af796c
comment
Done intentionally in Pro Pinball: Big Race USA, as your fare meter cannot go over $1,000,000. If this happens, you're supposed to go to Jay's Junk and buy the "Million Dollar Madness" Wizard Mode.
 Cap / int_37af796c
featureApplicability
1.0
 Cap / int_37af796c
featureConfidence
1.0
 Pro Pinball: Big Race USA (Video Game)
hasFeature
Cap / int_37af796c
 Cap / int_38304f2a
type
Cap
 Cap / int_38304f2a
comment
Phantasy Star IV has a glitch that serves as a rather brutal Level Cap: starting from level 97 onwards, gaining additional levels either decreases your stats, increases stats for characters who couldn't make use of them or reduces the maximum number of uses for their abilities to 0, making them permanently unuseable. This was thankfully fixed in the Virtual Console rerelease.
 Cap / int_38304f2a
featureApplicability
1.0
 Cap / int_38304f2a
featureConfidence
1.0
 Phantasy Star IV (Video Game)
hasFeature
Cap / int_38304f2a
 Cap / int_39209872
type
Cap
 Cap / int_39209872
comment
FE000000:
Study 7 is capped at a 1.845e19 multiplier. It's removed once you get the "3 * 7 * 11" complexity achievement later in the game.
Eternity power extra multiplier caps at 3, based on complexity stars and time spent in complexity.
It's impossible to get more than 9.647e8.473e13 stars as that's the highest number of them required for a finality.
 Cap / int_39209872
featureApplicability
1.0
 Cap / int_39209872
featureConfidence
1.0
 FE000000 (Video Game)
hasFeature
Cap / int_39209872
 Cap / int_3972e6b
type
Cap
 Cap / int_3972e6b
comment
Touhou Eiyashou ~ Imperishable Night also hits the bullet cap on rare occasions, most notably during the Last Word "Saigyouji Flawless Nirvana".
 Cap / int_3972e6b
featureApplicability
1.0
 Cap / int_3972e6b
featureConfidence
1.0
 Touhou Eiyashou ~ Imperishable Night (Video Game)
hasFeature
Cap / int_3972e6b
 Cap / int_39fe00f1
type
Cap
 Cap / int_39fe00f1
comment
Dragon Age: Inquisition also caps the level of the title organization at 20, which is easily reachable in a single playthrough (especially if you convert gold into influence at the "favor merchant's" stand in Skyhold). Your party's Character Level, meanwhile, is capped at 27 — this seems like an odd number (harhar) but it's actually a sneaky application of the Rule of Three found all over the game (which is the third one in the series), as 27 is 3 to the power of 3.
 Cap / int_39fe00f1
featureApplicability
1.0
 Cap / int_39fe00f1
featureConfidence
1.0
 DragonAgeInquisition
hasFeature
Cap / int_39fe00f1
 Cap / int_3a64aba3
type
Cap
 Cap / int_3a64aba3
comment
The Shantae series:
Shantae and the Pirate's Curse:
The max number of gems that Shantae can hold is 999.
The max stack of an item that Shantae can hold is 9.
Shantae: Half-Genie Hero: Shantae can hold a max of 6 of Monster Eggs.
Shantae and the Seven Sirens:
Shantae can only hold 9 of a consumable item at most.
Monster Cards probably have a cap, but it's at least 40.
Shantae can hold up to 999 gems.
 Cap / int_3a64aba3
featureApplicability
1.0
 Cap / int_3a64aba3
featureConfidence
1.0
 Shantae (Video Game)
hasFeature
Cap / int_3a64aba3
 Cap / int_3caeeb6f
type
Cap
 Cap / int_3caeeb6f
comment
A more "game design"-y cap in the SimCity games comes from demand caps: limits that stifle demand as your city grows, with relief from the caps generally provided by parks & rec (for residential) and connections/ports (for commercial and industrial).
 Cap / int_3caeeb6f
featureApplicability
1.0
 Cap / int_3caeeb6f
featureConfidence
1.0
 SimCity (Video Game)
hasFeature
Cap / int_3caeeb6f
 Cap / int_3d0f5f70
type
Cap
 Cap / int_3d0f5f70
comment
In the second game, Humans and Mutants have a chance of their stats increasing at the end of battle, with that chance going up if they happened to use that particular stat in that battle (casting spells for Magic or taking damage for HP, for instance). They can't gain attributes past the cap of 999 HP or 99 Strength, Agility, Magic, or Defense, but a naked Human or Mutant could level to the cap and then put on armor or use rare stat-boosting items to break it. Robots don't level up permanently but can also break the displayed stat cap by wearing multiple copies of powerful equipment. (Or by using a bug to give them potentially infinite amounts of agility.) However, stats will loop around to 0 if they go over 255. And for whatever strange reason, some calculations involving agility only use the last two digits of it, so a character with 100 agility is slow as molasses. Meanwhile, damage caps are completely absent here; you can do five-digit damage long before it was possible in most Role Playing Games if you have enough strength, agility, and the game's Infinity +1 Sword.
 Cap / int_3d0f5f70
featureApplicability
1.0
 Cap / int_3d0f5f70
featureConfidence
1.0
 Final Fantasy Legend II (Video Game)
hasFeature
Cap / int_3d0f5f70
 Cap / int_3f527396
type
Cap
 Cap / int_3f527396
comment
Anarchy Online has a number of different caps, most related to damage.
The first cap is in relation to damage done, unless the attack is a Full Auto attack from a ranged weapon, all damage caps at 13,000 points of damage done (though it's been theorized that Agents can hit for about 1 million points of damage without this cap), regardless of whether it's a normal attack or a special attack. Full Auto attacks cap at 15,000 damage (though skilled Soldiers could probably throw out 200k Full Autos without the cap).
The second cap applied is to PvP damage, of which there are 2 caps: The first cap cuts all damage by 50% incoming for PvP, so hitting another player for 1,000 points of damage requires having dealt out 2,000 damage before hand...
A final cap which limits the total amount of damage one single attack can do is limited to no more than 30% of the targeted player's maximum hit points. Considering the usually high amounts of damage flying around in the game, seeing 'capped hits' is more common than you think.
Another cap comes into play when it comes to gaining experience points: You can only gain experience up to a maximum of one-tenth of the amount you need to level, and with the release of Lost Eden, this also applies to the experience put into research. This makes for interesting strategies applied by players to avoid experience loss as much as possible, since all xp beyond the cap is lost.
 Cap / int_3f527396
featureApplicability
1.0
 Cap / int_3f527396
featureConfidence
1.0
 Anarchy Online (Video Game)
hasFeature
Cap / int_3f527396
 Cap / int_43e086ac
type
Cap
 Cap / int_43e086ac
comment
Phantasy Star I, being an 8-bit Sega Master System game, has some classic ones.
Meseta (money) caps at 65,535, easy enough to achieve late in the game when there is nothing left to buy except some occasional healing.
Levels capped at 30, which can be achieved with some Level Grinding as a normal playthrough already takes you to 26-28 (Noah needs to be level 24 to reach the end game, due to the required 'Open' spell.)
Also, no monster has more than 255 HP, the final battle is actually implemented as two monsters but their HP isn't shown.
 Cap / int_43e086ac
featureApplicability
1.0
 Cap / int_43e086ac
featureConfidence
1.0
 Phantasy Star I (Video Game)
hasFeature
Cap / int_43e086ac
 Cap / int_43f52aa9
type
Cap
 Cap / int_43f52aa9
comment
This is true of Oblivion as well, but with console commands (presumably in either game) one can explore the true limits of character stats. For attributes and skills it's 255, for mana it's a complex 60,000-ish number. (Note that this only applies to the natural limits; with the aforementioned fortification spells, a person could bring their stats into the thousands. See it here.)
The stats and skills may exceed the cap in numbers, but the effects of them are capped at 100 from within the engine, so even modders can't break the effective 100-limit. The exceptions are Athletics and Acrobatics; the player can run faster and jump higher up to the 255-limit.
While in game spells don't get any stronger, increasing your skill past 100 continues to make them cheaper to cast.
That, however, is not true of Morrowind. The other skills do not have their effects capped at 100 (though the effect can often be hard to note), and you can jump much, much farther with acrobatics boosted to 1100 than you can with acrobatics boosted to 600.
 Cap / int_43f52aa9
featureApplicability
1.0
 Cap / int_43f52aa9
featureConfidence
1.0
 The Elder Scrolls IV: Oblivion (Video Game)
hasFeature
Cap / int_43f52aa9
 Cap / int_49a84be6
type
Cap
 Cap / int_49a84be6
comment
Interestingly, Final Fantasy III, at least the DS version, doesn't actually have a damage cap. While it won't show you any more damage over 9,999, you'll still do more damage.
 Cap / int_49a84be6
featureApplicability
1.0
 Cap / int_49a84be6
featureConfidence
1.0
 Final Fantasy III (Video Game)
hasFeature
Cap / int_49a84be6
 Cap / int_49a87cb3
type
Cap
 Cap / int_49a87cb3
comment
Final Fantasy VII also has a strange effect on percentage damage spells like Demi. Although the visual number is capped, the actual damage is not, so if used on the few powerful enemies not immune to Gravity (like Emerald Weapon again) it can be used to bring their HP down to a far more manageable level.
 Cap / int_49a87cb3
featureApplicability
1.0
 Cap / int_49a87cb3
featureConfidence
1.0
 Final Fantasy VII (Video Game)
hasFeature
Cap / int_49a87cb3
 Cap / int_49a88435
type
Cap
 Cap / int_49a88435
comment
Final Fantasy XII has a damage cap of 9,999 and, for the most part, stays true on it. This explains why Yiazmat is such a Marathon Boss; while 50 million HP is certainly record-breaking, the battle with him could have been done in less than two hours if not for the fact that each character can only inflict 9,999 damage per attack and there are only three members in a party (to make matters worse, he reduces the damage cap by a third midway through, so each character can only inflict 6,999 damage per attack). The game itself has only a handful of limit-breaking attacks, mostly the Limit Break attacks for the Espers and the Concurrence attacks for the Quickenings; the strongest attack in the game, is Zeromus' Big Bang, hitting for just shy of 70,000 damage. Fortunately, the Zodiac rereleases remove this cap.
 Cap / int_49a88435
featureApplicability
1.0
 Cap / int_49a88435
featureConfidence
1.0
 Final Fantasy XII (Video Game)
hasFeature
Cap / int_49a88435
 Cap / int_49a88442
type
Cap
 Cap / int_49a88442
comment
Final Fantasy XIV had most items stack at a maximum of 99. If you gained more of the same item, it would start a new stack, thus taking up more space in your inventory. Patch 4.2 changed the item stacking cap to 999, with the exception of Shop Fodder which remains at 99. Damage caps out at 99,990, but that's only achieved by boss characters whenever you fail a mechanic or let the boss hit its enrage. Later patches would have bosses deal 9,999,999 damage to ensure players that are supposed to die will die since player HP being can reach six digits.
 Cap / int_49a88442
featureApplicability
1.0
 Cap / int_49a88442
featureConfidence
1.0
 Final Fantasy XIV (Video Game)
hasFeature
Cap / int_49a88442
 Cap / int_49ad83ee
type
Cap
 Cap / int_49ad83ee
comment
A German World of Warcraft player reached the cap of 214,748 gold, that is, 2,147,483,646 copper coins (that's 2^31-2). Cataclysm raises the cap to 999,999 gold; larger amounts can be stored using multiple characters.
This number is faster achieved through the Statistics system. Basically, if you buy an item for 1,000 and resell it for 1,200, you've earned 200, but the system records 1,200 "obtained" gold. When the limit is achieved, the number loops to negative and grows back to positive.
There are many other caps as well, the most obvious being the level cap. Honor points (which are currency for PvP items) also have a cap, which is particularly low, and many other items that serve as currency are also capped. Another cap: You can only create 10 characters on the same server, and have a total of 50 characters in your account.
Also notable are the character stats, most of which have their cap defined as the point where getting the stat higher is entirely pointless. You can't have more than a 100% chance to hit, after all (although excess can still be useful if the character is affected by a status effect lowing hit chance). Similarly, no matter how much haste you stack, you can't reduce the global cooldown below one second, and many stats (like dodge and parry) have a "soft cap" or diminishing returns beyond which they become less effective.
The damage cap, which has only been reached by exploiting glitches, is 2^29, or 536,870,912.
 Cap / int_49ad83ee
featureApplicability
1.0
 Cap / int_49ad83ee
featureConfidence
1.0
 World of Warcraft (Video Game)
hasFeature
Cap / int_49ad83ee
 Cap / int_4a2b34ad
type
Cap
 Cap / int_4a2b34ad
comment
Star Fox Adventures has an inventory cap on a few items:
The cap on Scarabs (the currency) that increases three times over the course of the game, from 10, to 50, to 100, to 200.
Tricky has 5 GrubTubs' worth of energy, and Fox can carry up to 15 around with him to feed Tricky as needed, for a total of... 19 (because even though it only consumes one GrubTub of energy for him to perform a skill, he needs at least two within him to perform.
Fox can carry up to 7 Bomb Spores.
He may only carry 1 BaFomDad (read: 1-Up) until he buys a holder which increases the capacity to 10. Instead of pseudo-collection like with most capped items, however, he just passes through it when he can't carry any more. He may collect it later as needed... if that situation ever arises.
 Cap / int_4a2b34ad
featureApplicability
1.0
 Cap / int_4a2b34ad
featureConfidence
1.0
 Star Fox Adventures (Video Game)
hasFeature
Cap / int_4a2b34ad
 Cap / int_4a4dcdd8
type
Cap
 Cap / int_4a4dcdd8
comment
Final Fantasy Mystic Quest had a bug where the main character can cast Cure a few times on the endboss, Dark King to increase its HP over the maximum allowable value. The enemy's HP overflows back around to -65,535, killing it instantly. Ironically, entering the battle at a low level makes this overflow easier.
 Cap / int_4a4dcdd8
featureApplicability
1.0
 Cap / int_4a4dcdd8
featureConfidence
1.0
 Final Fantasy Mystic Quest (Video Game)
hasFeature
Cap / int_4a4dcdd8
 Cap / int_4b201941
type
Cap
 Cap / int_4b201941
comment
Nobody Saves the World: Even after purchasing quests that can be repeated infinitely for more experience points, the protagonist's overall maximum level is 75.
 Cap / int_4b201941
featureApplicability
1.0
 Cap / int_4b201941
featureConfidence
1.0
 Nobody Saves the World (Video Game)
hasFeature
Cap / int_4b201941
 Cap / int_4c56381b
type
Cap
 Cap / int_4c56381b
comment
The Binding of Isaac: Rebirth: Coins, keys, and bombs each cap at 99. In the case of keys and bombs, this is likely to be more than the player will ever need for a run, unless they come across plenty of Key or Bomb Beggars. Repentance changed an earlier item so that it increases the coin cap to 999. Health caps at twelve of any type of hearts total, with Bone Hearts from Afterbirth+ allowing "more health" overall since they can take up to three hits instead of the standard two. Speed has a hard cap at 2.00, which can be lowered with certain items or raised back up with others, but the cap cannot exceed 2. Tears is actually two stats, Tear Delay and Fire Rate, that has a soft cap of "5" by default where further Fire Rate boosts will not affect it, and it has a hard cap at "1" where even further Delay Downs will not affect it. Repentance reworked the Tears stat so that the extra HUD displaying it went by fire rate, not delay, turning the higher number to the better stat. Most of the other stats have no caps, or just increase to the point where the stat HUD glitches out trying to display the number. Extra lives also have no cap, but since only a few select items in the game grant them, even going to the triple digits requires console commands or extreme luck with an item that has a 50/50 chance to duplicating other items and a 50/50 chance of destroying them.
 Cap / int_4c56381b
featureApplicability
1.0
 Cap / int_4c56381b
featureConfidence
1.0
 The Binding of Isaac (Video Game)
hasFeature
Cap / int_4c56381b
 Cap / int_4c7a0a5
type
Cap
 Cap / int_4c7a0a5
comment
Chantelise: HP is capped at 999, and Pix is capped at 9,999,999. The amount of time played is also capped at 99:99:99, at which point it will roll over to 0:00:00.
 Cap / int_4c7a0a5
featureApplicability
1.0
 Cap / int_4c7a0a5
featureConfidence
1.0
 Chantelise (Video Game)
hasFeature
Cap / int_4c7a0a5
 Cap / int_4d62b918
type
Cap
 Cap / int_4d62b918
comment
A Very Long Rope to the Top of the Sky: There's an item stack cap of 99, and a level cap of 99.
 Cap / int_4d62b918
featureApplicability
1.0
 Cap / int_4d62b918
featureConfidence
1.0
 A Very Long Rope to the Top of the Sky (Video Game)
hasFeature
Cap / int_4d62b918
 Cap / int_4da1cda9
type
Cap
 Cap / int_4da1cda9
comment
Touhou Bunkachou ~ Shoot the Bullet can only display individual picture score values up to 999,990. Higher values glitch up the display (although they're still added to the total correctly).
 Cap / int_4da1cda9
featureApplicability
1.0
 Cap / int_4da1cda9
featureConfidence
1.0
 Touhou Bunkachou ~ Shoot the Bullet (Video Game)
hasFeature
Cap / int_4da1cda9
 Cap / int_4e9f355
type
Cap
 Cap / int_4e9f355
comment
Likewise, Crisis Core includes equippable accessories that can be used elevate the damage and stat caps by a factor of ten (from 9,999 to 99,999 for damage and hit points, and from 999 to 9,999 for MP and AP)
 Cap / int_4e9f355
featureApplicability
1.0
 Cap / int_4e9f355
featureConfidence
1.0
 Crisis Core (Video Game)
hasFeature
Cap / int_4e9f355
 Cap / int_4ee94903
type
Cap
 Cap / int_4ee94903
comment
River Raid actually ends when you reach the score cap. The counter shows six digits, and when you score what would be 1,000,000, the counter changes to "!!!!!!" and your plane explodes.
 Cap / int_4ee94903
featureApplicability
1.0
 Cap / int_4ee94903
featureConfidence
1.0
 River Raid (Video Game)
hasFeature
Cap / int_4ee94903
 Cap / int_4eff3d13
type
Cap
 Cap / int_4eff3d13
comment
Disco Zoo:
Each animal pen can hold up to 25 animals. After that, further rescued animals of that type must be either released into the wild or sent into space.
Freedom statues cap at diamond (40 animals released). You can still release animals after that, but you can't get anything for it but a handful of coins.
While the cost of rescue missions to a given area increases with each trip, it maxes out at 20 times the base value.
 Cap / int_4eff3d13
featureApplicability
1.0
 Cap / int_4eff3d13
featureConfidence
1.0
 Disco Zoo (Video Game)
hasFeature
Cap / int_4eff3d13
 Cap / int_50024843
type
Cap
 Cap / int_50024843
comment
Vainqueur The Dragon: As said in Chapter 5, there's a level total cap of 100, and every class that a character has seems to need at least one level to count, so that's a technical cap of 100 Level 1 Classes at once. Classes themselves have level caps, that seem to be multiples of 10.
 Cap / int_50024843
featureApplicability
1.0
 Cap / int_50024843
featureConfidence
1.0
 Vainqueur the Dragon
hasFeature
Cap / int_50024843
 Cap / int_503cf9e4
type
Cap
 Cap / int_503cf9e4
comment
You can hold up to 9,999 coins in Rhythm Heaven Megamix.
 Cap / int_503cf9e4
featureApplicability
1.0
 Cap / int_503cf9e4
featureConfidence
1.0
 Rhythm Heaven (Video Game)
hasFeature
Cap / int_503cf9e4
 Cap / int_50b6ac87
type
Cap
 Cap / int_50b6ac87
comment
Touhou Fuujinroku ~ Mountain of Faith also had a similar cap - the player has to start with exactly 3 lives, and it is only possible to gain 6 extra lives (3 in the Extra Stage).
 Cap / int_50b6ac87
featureApplicability
1.0
 Cap / int_50b6ac87
featureConfidence
1.0
 Touhou Fuujinroku ~ Mountain of Faith (Video Game)
hasFeature
Cap / int_50b6ac87
 Cap / int_512b4b82
type
Cap
 Cap / int_512b4b82
comment
The DS games have hard modes that will let you set a cap on how high your max level will reach. Castlevania: Order of Ecclesia is the only one that actually lets you increase it up to 255...but only after you beat the game on Hard with a level cap of 1 or link the game with Castlevania: Judgment.
 Cap / int_512b4b82
featureApplicability
1.0
 Cap / int_512b4b82
featureConfidence
1.0
 Castlevania: Order of Ecclesia (Video Game)
hasFeature
Cap / int_512b4b82
 Cap / int_513c73f3
type
Cap
 Cap / int_513c73f3
comment
The same thing occurred in Tales of Symphonia: Dawn of the New World, but the cap was 999,999. Since it could be easy to string together a large combo, which on higher difficulties resulted in higher EXP multipliers for said combos, resulting in 100 times or more being moderately trivial, even in boss battles. Combine with New Game Plus, 10x EXP, and you get bonuses much higher than the standard EXP for most any enemy that lasts long enough for a good combo (which even then can be a while since juggling prevents enemies from dying).
 Cap / int_513c73f3
featureApplicability
1.0
 Cap / int_513c73f3
featureConfidence
1.0
 Tales of Symphonia: Dawn of the New World (Video Game)
hasFeature
Cap / int_513c73f3
 Cap / int_5209cf3c
type
Cap
 Cap / int_5209cf3c
comment
In the Mario & Luigi series, there are a few notable caps that can be reached:
Levels cap out at level 99, which is nearly impossible to reach without massive level grinding.
Stats (at least in the first three games) max out at 999 each, which is impossible to reach in Partners in Time and Bowser' Inside Story (but can be done with a LOT of coffee drinking in Superstar Saga and a lot of eating beans in Dream Team.
Damage is capped out at 9,999 in the first three games. This has been raised, presumably to about 99,999 damage in Dream Team. For comparison's sakes, the former is at least double or triple the health of the final boss and the latter is about 33 times its health.
 Cap / int_5209cf3c
featureApplicability
1.0
 Cap / int_5209cf3c
featureConfidence
1.0
 Mario & Luigi (Video Game)
hasFeature
Cap / int_5209cf3c
 Cap / int_5293b208
type
Cap
 Cap / int_5293b208
comment
Kamen Rider Ex-Aid, being based on video games and the 8-bit era in particular, has a cap of 128 in any given statisticnote punching and kicking power in tons, maximum jump height in meters, and time needed to run 100 meters as the limit of how strong the characters' superpowers can make them. Only one character explicitly reaches the stat cap, but others are capable of doing so temporarily through stat-enhancing items.
 Cap / int_5293b208
featureApplicability
1.0
 Cap / int_5293b208
featureConfidence
1.0
 Kamen Rider Ex-Aid
hasFeature
Cap / int_5293b208
 Cap / int_52cac107
type
Cap
 Cap / int_52cac107
comment
Mario Kart 64: It might seem counterintuitive for a racing game, but going slowly in a Time Trial will result in you hitting the time cap. The game's engine will not count any higher than ninety-nine minutes, fifty-nine-point-ninety-nine seconds (although subsequent lap times are still counted).
 Cap / int_52cac107
featureApplicability
1.0
 Cap / int_52cac107
featureConfidence
1.0
 Mario Kart 64 (Video Game)
hasFeature
Cap / int_52cac107
 Cap / int_5425ce75
type
Cap
 Cap / int_5425ce75
comment
Grand Theft Auto
Grand Theft Auto: San Andreas has a 9 digit money counter. If you go one dollar past $99,999,999 (which typically involves doing Vigilante Missions past Level 200 or grinding at the casino), it rolls over and adds another digit. The actual limit is $999,999,999. And CJ will still complain about desperately needing money.
Grand Theft Auto V has a hard cap at $2,147,483,647 per character.
In earlier instalments of the series, no matter how many stars you have, there will never be more than four police cars chasing you. You only see more if you're being chased into a roadblock, and then the cars that make up the roadblock are static and will not try to chase you. New chasing vehicles will not appear after you've destroyed one, but after one has been removed from the map. So if you're surrounded by four destroyed cop cars, no more cops will arrive on the scene.
 Cap / int_5425ce75
featureApplicability
1.0
 Cap / int_5425ce75
featureConfidence
1.0
 Grand Theft Auto (Video Game)
hasFeature
Cap / int_5425ce75
 Cap / int_5586ce95
type
Cap
 Cap / int_5586ce95
comment
Mario Party:
The games cap the number of coins a character (or team) can hold at 999. It's easy to reach this in Mario Party 3 with Game Guy mini-games which can give you up to 64 times what you wagered, but even if you win thousands of coins you can only keep 999.
The games also have a Star cap of 99, which is usually unreachable in-game, even if one player is completely dominating the board and the turn count has been set to the highest possible (usually 50 turns). That said, in a surprising bit of Developer's Foresight, there is unique dialogue if the player tries to pick up a 100th Star.
 Cap / int_5586ce95
featureApplicability
1.0
 Cap / int_5586ce95
featureConfidence
1.0
 Mario Party (Video Game)
hasFeature
Cap / int_5586ce95
 Cap / int_559a3948
type
Cap
 Cap / int_559a3948
comment
In New Super Mario Bros. 2, Coin Rush mode has a score cap of 30,000 coins. At least one player had already achieved this within 3 days of the game's release in Japan - before the game had even been released anywhere else.
The main coin counter caps at 9,999,999 coins, and surprisingly enough, you get a change in title screen and message if you manage to somehow reach that.
 Cap / int_559a3948
featureApplicability
1.0
 Cap / int_559a3948
featureConfidence
1.0
 New Super Mario Bros. 2 (Video Game)
hasFeature
Cap / int_559a3948
 Cap / int_56706332
type
Cap
 Cap / int_56706332
comment
Radiant Arc:
Stats other than HP and MP are capped at 999. This is true even with buffs applied, meaning there are decreasing returns for stacking too many buffs.
The party's level cap is 50, though enemies can reach level 51 due to the scaling mechanic.
 Cap / int_56706332
featureApplicability
1.0
 Cap / int_56706332
featureConfidence
1.0
 Radiant Arc (Video Game)
hasFeature
Cap / int_56706332
 Cap / int_5908ee91
type
Cap
 Cap / int_5908ee91
comment
Similar to Skyrim before it, Fallout 4 has no "official" level cap but level 278 allows Nate/Nora to max out all of their perks and S.P.E.C.I.A.L. attributes. Additionally, the game crashes if you go over Level 65,535 (nigh impossible outside of console commands). Your S.P.E.C.I.A.L. attributes cap at 10 per series tradition but can be boosted to 11 if you got the Vault-Tec Bobbleheads and further boosted with chems, food, and clothes. Perks have a cap on how many times they can be upgraded usually to rank 2 to 5 but it also related to the appropriate S.P.E.C.I.A.L. attribute.
 Cap / int_5908ee91
featureApplicability
1.0
 Cap / int_5908ee91
featureConfidence
1.0
 The Elder Scrolls V: Skyrim (Video Game)
hasFeature
Cap / int_5908ee91
 Cap / int_5921531b
type
Cap
 Cap / int_5921531b
comment
Persona 4 caps the possible EXP gain from a single battle at 65,535, but the yen earned from a single battle can range into the millions.
 Cap / int_5921531b
featureApplicability
1.0
 Cap / int_5921531b
featureConfidence
1.0
 Persona 4 (Video Game)
hasFeature
Cap / int_5921531b
 Cap / int_59883767
type
Cap
 Cap / int_59883767
comment
Eternal Senia:
Senia's max level is 50.
Senia can only hold 99 of any item.
 Cap / int_59883767
featureApplicability
1.0
 Cap / int_59883767
featureConfidence
1.0
 Eternal Senia (Video Game)
hasFeature
Cap / int_59883767
 Cap / int_59da62aa
type
Cap
 Cap / int_59da62aa
comment
Fallout: New Vegas:
The level cap is 30 in the base game (plus an extra 5 levels with each of the four DLC, for a new cap of 50). *** Skills cap at 100.
Radiation and poison resistances cap at 85%.
 Cap / int_59da62aa
featureApplicability
1.0
 Cap / int_59da62aa
featureConfidence
1.0
 Fallout: New Vegas (Video Game)
hasFeature
Cap / int_59da62aa
 Cap / int_5a0093
type
Cap
 Cap / int_5a0093
comment
The Price Is Right also had a cap on the display board for the one bid games. There was only enough room for a dollar sign and 4 digits, which wasn't a problem until some contestants wanted to gain attention by making bids in the tens of thousands, hundreds of thousands, or even millions. When the display boards were upgraded to run with more current technology, contestants that make ridiculous bids can have their bids fit on the board.
So far, there has actually been one serious use case of allowing five-digit bids: one of the One Bid items in a 2017 "Dream Car Week" episode was... a car!
 Cap / int_5a0093
featureApplicability
1.0
 Cap / int_5a0093
featureConfidence
1.0
 The Price Is Right
hasFeature
Cap / int_5a0093
 Cap / int_5a20d585
type
Cap
 Cap / int_5a20d585
comment
SimTower had several annoying and arbitrary number-of-instance caps: the one most commonly felt was the limit of 63 stairs/escalators, as stairs and escalators were among the most effective ways to ease the perennial elevator congestion, which also had quite a low cap on how many shafts you could build.
 Cap / int_5a20d585
featureApplicability
1.0
 Cap / int_5a20d585
featureConfidence
1.0
 SimTower (Video Game)
hasFeature
Cap / int_5a20d585
 Cap / int_5a7b37c
type
Cap
 Cap / int_5a7b37c
comment
Beacon (2018): A Loading Screen message says that the maximum for stats is either 300 or 100%.
 Cap / int_5a7b37c
featureApplicability
1.0
 Cap / int_5a7b37c
featureConfidence
1.0
 Beacon (2018) (Video Game)
hasFeature
Cap / int_5a7b37c
 Cap / int_5afbc0cb
type
Cap
 Cap / int_5afbc0cb
comment
Undertale: A few items in the game are sometimes listed for sale at an absurdly expensive 9,999 each, though there is no actual gold cap. Also, damage dealt in guaranteed One Hit Kills is often quantified as some power of ten minus one; this is Played for Laughs in the True Pacifist ending (where it is used to exaggerate the effect of a kiss), but is used for increasingly excessive overkill in a Genocide Run, culminating in an attack which fills the entire screen up with nines and is inflicted upon the player.
 Cap / int_5afbc0cb
featureApplicability
1.0
 Cap / int_5afbc0cb
featureConfidence
1.0
 Undertale (Video Game)
hasFeature
Cap / int_5afbc0cb
 Cap / int_5b53043e
type
Cap
 Cap / int_5b53043e
comment
The games cap the number of coins a character (or team) can hold at 999. It's easy to reach this in Mario Party 3 with Game Guy mini-games which can give you up to 64 times what you wagered, but even if you win thousands of coins you can only keep 999.
 Cap / int_5b53043e
featureApplicability
1.0
 Cap / int_5b53043e
featureConfidence
1.0
 Mario Party 3 (Video Game)
hasFeature
Cap / int_5b53043e
 Cap / int_5bd0554b
type
Cap
 Cap / int_5bd0554b
comment
The second Warcraft game had a unit editor. The maximum damage dealt by a unit and hit points possessed by a unit were 255 and 65,535, respectively.
 Cap / int_5bd0554b
featureApplicability
1.0
 Cap / int_5bd0554b
featureConfidence
1.0
 Warcraft (Video Game)
hasFeature
Cap / int_5bd0554b
 Cap / int_5d96b889
type
Cap
 Cap / int_5d96b889
comment
Mario Kart:
Super Mario Kart: The game caps your time at 10 minutes and stops moving after that.
Mario Kart 64: It might seem counterintuitive for a racing game, but going slowly in a Time Trial will result in you hitting the time cap. The game's engine will not count any higher than ninety-nine minutes, fifty-nine-point-ninety-nine seconds (although subsequent lap times are still counted).
 Cap / int_5d96b889
featureApplicability
1.0
 Cap / int_5d96b889
featureConfidence
1.0
 Mario Kart (Video Game)
hasFeature
Cap / int_5d96b889
 Cap / int_5dfb8aa2
type
Cap
 Cap / int_5dfb8aa2
comment
Sonic Generations has a point cap of 99,999 and a life cap of 99. Score can (theoretically) reach 6 digits, but getting an S rank in a stage usually means you've obtained a score of around 50,000. Therefore, it's highly unlikely (if not impossible) to break 6 digits.
 Cap / int_5dfb8aa2
featureApplicability
1.0
 Cap / int_5dfb8aa2
featureConfidence
1.0
 Sonic Generations (Video Game)
hasFeature
Cap / int_5dfb8aa2
 Cap / int_5e88d233
type
Cap
 Cap / int_5e88d233
comment
Chrysalis (RinoZ): As an Anti-Grinding feature, several important attributes (max level, max mutation level of each body part, max MP) are capped by a monster's evolutionary level. Skills have a looser cap; they can be trained up without evolving, but they cap out after five skill levels, requiring the use of a skill point in order to upgrade to a more advanced skill and keep training — and those skill points are obtained by levelling up, which is capped. The only real exception appears to be Biomass points, which can be amassed apparently without limit (but since mutation levels are capped, they're of limited use until after evolving).
 Cap / int_5e88d233
featureApplicability
1.0
 Cap / int_5e88d233
featureConfidence
1.0
 Chrysalis (RinoZ)
hasFeature
Cap / int_5e88d233
 Cap / int_5e91c7d
type
Cap
 Cap / int_5e91c7d
comment
Resident Evil 4 - Out of all the enemies, exactly one type has a damage cap: the chainsaw wielding enemies, with their horrific one-hit kill. No more than about 6 damage can be done to them with any one hit. This leads to players wasting magnum (up to 50 damage) and rifle (up to 30 damage) shots on the strangely protected enemies. Without the damage cap, a single 50 damage magnum shot would easily take out Dr. Salvador's 40+ Hit Points. It's also disconcerting to the player using the magnum, since it takes about eight shots to put down Dr. Salvador for good, adding to his monstrous reputation.
 Cap / int_5e91c7d
featureApplicability
1.0
 Cap / int_5e91c7d
featureConfidence
1.0
 Resident Evil 4 (Video Game)
hasFeature
Cap / int_5e91c7d
 Cap / int_5f78b9c7
type
Cap
 Cap / int_5f78b9c7
comment
Tokyo Xtreme Racer:
Tokyo Xtreme Racer Zero caps every car's maximum speed at 263 MPH.
Tokyo Xtreme Racer 3 caps the maximum amount of credits the player can have in the bank at 999,999,999 in the Japanese version and 99,999,990 internation releases. Most infamously, due to the publishers changing the cap and the credits earned per race but not the credits requirement to face some opponents, one of them, "Whirlwind Fanfare", becomes impossible to challenge due to requiring 10 credits more than the cap. In turn, as the True Final Boss requires every opponent in the game to be beaten before challenging the player, it made the game effectively impossible to complete.
 Cap / int_5f78b9c7
featureApplicability
1.0
 Cap / int_5f78b9c7
featureConfidence
1.0
 Tokyo Xtreme Racer (Video Game)
hasFeature
Cap / int_5f78b9c7
 Cap / int_5fcc8c7c
type
Cap
 Cap / int_5fcc8c7c
comment
In Midnight Resistance, players' ammo is capped at 999 for their primary weapon and 99 for their secondary weapon, and they can carry no more than six keys.
 Cap / int_5fcc8c7c
featureApplicability
1.0
 Cap / int_5fcc8c7c
featureConfidence
1.0
 Midnight Resistance (Video Game)
hasFeature
Cap / int_5fcc8c7c
 Cap / int_60a2cbcc
type
Cap
 Cap / int_60a2cbcc
comment
The manual for Touhou Youyoumu ~ Perfect Cherry Blossom also states that there's a score cap of 9,999,999,990, and a Cherry Point cap of 9,999,990. But given that the world record score is less than 4 billion and nobody's ever gotten close to 2 million Cherry Points, the caps essentially have no effect on gameplay. The Cherry Point counter does start to glitch up cosmetically with 7-digit values, though.
 Cap / int_60a2cbcc
featureApplicability
1.0
 Cap / int_60a2cbcc
featureConfidence
1.0
 Touhou Youyoumu ~ Perfect Cherry Blossom (Video Game)
hasFeature
Cap / int_60a2cbcc
 Cap / int_6104baaf
type
Cap
 Cap / int_6104baaf
comment
For Free-to-Play players of The Lord of the Rings Online, the cap on currency is 2 gold pieces (most items in this game cost silver, and 1 gold = 1,000 silver). Buying a quest pack makes one a premium player and raises the cap to 5 gold. Removing the currency cap entirely (either by buying the privilege with Turbine Points or getting a subscription) brings the cap to 9,999 gold, 999 silver and 99 copper.
 Cap / int_6104baaf
featureApplicability
1.0
 Cap / int_6104baaf
featureConfidence
1.0
 The Lord of the Rings Online (Video Game)
hasFeature
Cap / int_6104baaf
 Cap / int_626741d2
type
Cap
 Cap / int_626741d2
comment
Though there is technically no cap on level in D&D, in 3rd edition, the rules balance tends to erode after level 5-7, and the standard game didn't have specific level up bonuses past level 20 in any class. The Epic Level Handbook extends this to about level 40, but any semblance of balance is long since out the window at that point.
Case in point: Epic Spellcasting is built on a point buy system that requires the caster to roll a Spellcraft check. Like all skills, Spellcraft keys off a star (Intelligence). The Fortify seed can be used to increase any attribute... including Intelligence. As written, there is nothing stopping an endless, recursive loop of making a Fortify spell that requires X Intelligence and fortifies Intelligence by Y, then making a new Fortify spell that requires X+Y Intelligence and increases it further, and so on.
 Cap / int_626741d2
featureApplicability
1.0
 Cap / int_626741d2
featureConfidence
1.0
 Epic Level Handbook (Tabletop Game)
hasFeature
Cap / int_626741d2
 Cap / int_629cd094
type
Cap
 Cap / int_629cd094
comment
Dragon Age: Origins has, beside the usual inventory caps, a cap that says you can only have ten different characters saved at any time, though you can have multiple saves with each character. This wouldn't have been so bad if it wasn't for the fact that you got achievements/trophies for playing through each of the six openings, and that playing each of the expansions counted as making a new character, even if you imported your old one from the main game.
 Cap / int_629cd094
featureApplicability
1.0
 Cap / int_629cd094
featureConfidence
1.0
 Dragon Age: Origins (Video Game)
hasFeature
Cap / int_629cd094
 Cap / int_62bf541
type
Cap
 Cap / int_62bf541
comment
Much like the Super Mario Bros. life counter, the display for bucks for the original ToeJam & Earl game is also a signed byte. Going over 127 means you will have negative bucks.
 Cap / int_62bf541
featureApplicability
1.0
 Cap / int_62bf541
featureConfidence
1.0
 Super Mario Bros. (Video Game)
hasFeature
Cap / int_62bf541
 Cap / int_62bf542
type
Cap
 Cap / int_62bf542
comment
The original Super Mario Bros. 2 caps at 254 ("FE"). This is pretty easy to get if you are at least decent with the slot machine (and ridiculously easy if you also use the unlimited coins glitch).
It also doesn't help that the lives counter is only displayed between stages or just after losing a life, so anyone using an infinite lives trick has to track the lives gained independently of the game interface anyway.
 Cap / int_62bf542
featureApplicability
1.0
 Cap / int_62bf542
featureConfidence
1.0
 Super Mario Bros. 2 (Video Game)
hasFeature
Cap / int_62bf542
 Cap / int_6365ff2d
type
Cap
 Cap / int_6365ff2d
comment
The level cap for the original Dragon Quest was 30, which you would reach at 65,535(16 bits) EXP, with 255(8 bits) for the stats. You stop learning new spells at level 20, but the additional experience for each new level doesn't change. You can gain levels faster and faster as your stats rise until you hit the cap. Given that you can beat the Dragonlord at level 19, with some luck, anything beyond about level 25 is overkill anyway. If you reach the level cap of 30 in the NES version, the king will ask why you haven't yet slain the Dragonlord.
 Cap / int_6365ff2d
featureApplicability
1.0
 Cap / int_6365ff2d
featureConfidence
1.0
 Dragon Quest (Video Game)
hasFeature
Cap / int_6365ff2d
 Cap / int_6365ff3a
type
Cap
 Cap / int_6365ff3a
comment
Dragon Quest V: Annoyingly, many monsters have a level cap lower than that of the human characters (who all can reach level 99). However, the only way to find out in-game if they've hit it is to go to a Save Point and ask how far they have until their next level.
 Cap / int_6365ff3a
featureApplicability
1.0
 Cap / int_6365ff3a
featureConfidence
1.0
 Dragon Quest V (Video Game)
hasFeature
Cap / int_6365ff3a
 Cap / int_63ac9abe
type
Cap
 Cap / int_63ac9abe
comment
The Game Gear version of Sonic the Hedgehog and the original release of Sonic the Hedgehog CD also have counters that top out at nine, but excess lives could be kept in escrow.
 Cap / int_63ac9abe
featureApplicability
1.0
 Cap / int_63ac9abe
featureConfidence
1.0
 Sonic the Hedgehog (Video Game)
hasFeature
Cap / int_63ac9abe
 Cap / int_63ed830c
type
Cap
 Cap / int_63ed830c
comment
In Touhou Koumakyou ~ the Embodiment of Scarlet Devil, there is a limit of 640 bullets onscreen at once. Even when facing Optional Boss Flandre Scarlet, this isn't a problem (though "And Then Will There Be None?" can hit the cap during the late part of the first phase), but if you install one of certain fanpatches that make the game a lot harder, it can cause some of her attacks to exceed that limit and look rather odd.
Touhou Eiyashou ~ Imperishable Night also hits the bullet cap on rare occasions, most notably during the Last Word "Saigyouji Flawless Nirvana".
 Cap / int_63ed830c
featureApplicability
1.0
 Cap / int_63ed830c
featureConfidence
1.0
 Touhou Koumakyou ~ the Embodiment of Scarlet Devil (Video Game)
hasFeature
Cap / int_63ed830c
 Cap / int_64c728b6
type
Cap
 Cap / int_64c728b6
comment
In the original The Bard's Tale, the XP reward per battle was capped at 65,535. There was a repeatable fixed low-risk battle (the barracks in Harkyn's Castle) which achieved this limit, making Level Grinding a particularly trivial task.
 Cap / int_64c728b6
featureApplicability
1.0
 Cap / int_64c728b6
featureConfidence
1.0
 The Bard's Tale Trilogy (Video Game)
hasFeature
Cap / int_64c728b6
 Cap / int_64dc8ed9
type
Cap
 Cap / int_64dc8ed9
comment
Final Fantasy Legend III just does away with trying to cap your HP (displayed as 999 if exceeded) and core stats (which still actually cap at 255 but only display as 99 if you have more). You can see someone's actual max HP if you revive them in battle; the amount of HP recovery will be displayed in full. A level 99 human or mutant will have max HP in the 2,000s (though realistically the game can comfortably be completed with levels in the 40s and the display cap would barely be an issue). Robots can just go nuts; they get stronger in the same way humans did in the first game.
The DS remake completely overhauls the level system with a Stat Grinding system like the other SaGa games and uses your base stats as a human as the standard, with a cap of 1999 for HP and 99 for other stats. Other classes' stats are calculated as percentages of your human stats. For example, Beasts have 120% the HP of humans, so their HP can go up to 2,399. They have 90% strength, so their max strength would be 89. These are only the base stat caps; they can be exceeded with equipment bonuses.
The ability "Swallow" might actually cause an overflow glitch - only one boss (Dahak) can experience this. If he manages to use Swallow on the entire party, he recovers health in accordance to the damage dealt. However, if this exceeds his max HP, it will go into the negative value and the battle is considered "over".
 Cap / int_64dc8ed9
featureApplicability
1.0
 Cap / int_64dc8ed9
featureConfidence
1.0
 Final Fantasy Legend III (Video Game)
hasFeature
Cap / int_64dc8ed9
 Cap / int_65c87783
type
Cap
 Cap / int_65c87783
comment
Wii Sports:
There's a mix of this and Overflow Error in the minigame about tennis returns. The on-screen counter will stop at 999 points, but internally this number wraps around to 0 each time it goes over 255. For example, if you returned 1002 balls, the game will write it as 231 points when the minigame is over.
Baseball runs cap at 99. Even if you score more, it will still display 99. Because of the 5-run mercy rule, you'll never see this unless you purposefully grind the visiting team score with two remotes or TAS.
 Cap / int_65c87783
featureApplicability
1.0
 Cap / int_65c87783
featureConfidence
1.0
 Wii Sports (Video Game)
hasFeature
Cap / int_65c87783
 Cap / int_68ff28c8
type
Cap
 Cap / int_68ff28c8
comment
Silent Hill: All forms of firearms ammo are capped at 200 rounds, and trying to pick up more than that wastes the ammo box entirely. This is especially noticeable with the pistol, as a keen player can hit the max capacity without even making use of the "ammo multiplier" New Game Plus feature.
 Cap / int_68ff28c8
featureApplicability
1.0
 Cap / int_68ff28c8
featureConfidence
1.0
 Silent Hill (Video Game)
hasFeature
Cap / int_68ff28c8
 Cap / int_69e47d85
type
Cap
 Cap / int_69e47d85
comment
The level cap is 25 for the main game, and 35 for Dragon Age: Origins – Awakening, although you'd have to do pretty much every quest to get that high of a level.
 Cap / int_69e47d85
featureApplicability
1.0
 Cap / int_69e47d85
featureConfidence
1.0
 Dragon Age: Origins – Awakening (Video Game)
hasFeature
Cap / int_69e47d85
 Cap / int_6ac55ec7
type
Cap
 Cap / int_6ac55ec7
comment
Dungeons & Dragons has had a few soft caps (can't go beyond with normal mechanics, but can be increased with magic items/blessing/etc.) and hard caps (can't go beyond, no matter what). Rule Zero still applies, in that the DM of any game can homebrew what else happens to the characters past these caps, if anything. But most DMs probably won't bother.
The Rules Cyclopedia caps the damage that high level magic-users can deal with their attack spells at twenty dice.
The same cap is used for fall damage, 1d6 per 3m fallen to a maximum of 20d6. This gets hilarious around lvl 10, when characters could fall from orbit and live with a strict rule interpretation. Though fire damage from friction could probably still kill them. What's really fun is the epic spell Nailed to the Sky (from a much later edition), which puts the target in orbit.
In 2nd and older editions, ability scores were capped at 18 or 18/00 for humans, with non-human races receiving different maximums that might be higher or lower: a dwarf's maximum Constitution was capped at 19, while a halfling's strength capped at 16. Magic items could be used to exceed these limits.
Though there is technically no cap on level in D&D, in 3rd edition, the rules balance tends to erode after level 5-7, and the standard game didn't have specific level up bonuses past level 20 in any class. The Epic Level Handbook extends this to about level 40, but any semblance of balance is long since out the window at that point.
Case in point: Epic Spellcasting is built on a point buy system that requires the caster to roll a Spellcraft check. Like all skills, Spellcraft keys off a star (Intelligence). The Fortify seed can be used to increase any attribute... including Intelligence. As written, there is nothing stopping an endless, recursive loop of making a Fortify spell that requires X Intelligence and fortifies Intelligence by Y, then making a new Fortify spell that requires X+Y Intelligence and increases it further, and so on.
And all of this is HIGHLY dependent on the edition you're playing and, in some editions, your character class and race as well (Feats did not exist until 3rd Edition, the "colored box" version capped level at 36 for humans and somewhere around 10 for demihumans, etc.)
4th Edition caps the levels at 30. Sort of. The mathematics in 4e is linear, so you can actually extend it all indefinitely and everything remains relatively well balanced, there are even enemies that are over level 30, although they're all gods or god-like beings. PCs who hit 30 get to finish whatever it is they are doing and then are consumed by their Epic Destiny which, more often than not, results in ascension to godhood. They do, however, run out of powers and such. Insert auto-power generation programs!
5th edition puts caps on levels and stats for both the players and the enemies.
The maximum level for any player character is 20. This can be supplemented by Epic Boons should the DM allow it — you get one Epic Boon at level 20, along with the most powerful ability of your chosen class. But you can't gain any more levels beyond level 20. It's also supposed to be an Absurdly High Level Cap, since it requires 355,000 total experience points to reach level 20; you could play a campaign for months and never hit this cap. Official campaigns are designed for players to start at level 1, and be around level 15 by the end of it; just getting to level 20 will require some homebrewing on the DM's part.
Ability scores for all creatures (player or enemy) have a soft cap of 20, which can only be increased by magic items, Epic Boons, a few chosen skills, or being some sort of "legendary" monster. There's also a hard cap of 30 for every stat; a creature's stat score can't go past 30, no matter what.
Monsters also gain a hard cap at Challenge Rating 30. And the one creature that has a challenge rating of 30 — the Tarrasque — is supposed to be a creature so powerful that the entire world is put on notice when it so much as shows up, one that requires armies of the world to unite together to defeat it. The next-closest monster is Challenge Rating 24. Like player levels, the DM can homebrew beyond this point, but the monsters and resources in the official books do not go beyond CR 30.
 Cap / int_6ac55ec7
featureApplicability
1.0
 Cap / int_6ac55ec7
featureConfidence
1.0
 Dungeons & Dragons (Tabletop Game)
hasFeature
Cap / int_6ac55ec7
 Cap / int_6b2934ed
type
Cap
 Cap / int_6b2934ed
comment
Overlord I: The number of minions is initially capped at 5, and increases to 10, and further, via upgrades.
 Cap / int_6b2934ed
featureApplicability
1.0
 Cap / int_6b2934ed
featureConfidence
1.0
 Overlord I (Video Game)
hasFeature
Cap / int_6b2934ed
 Cap / int_6b85085e
type
Cap
 Cap / int_6b85085e
comment
Mortal Kombat always has some way of capping a combo after a certain amount of hits, usually by knocking the player back as the last viable hit lands. It isn't perfect, though, as only certain attacks trigger it, and only if done almost immediately after the last one landed, meaning if one times it right, they can get into some crazy infinite combos. Mortal Kombat 4 allows the player to remove the cap (called the "Maximum Damage" in-game).
 Cap / int_6b85085e
featureApplicability
1.0
 Cap / int_6b85085e
featureConfidence
1.0
 Mortal Kombat (Franchise)
hasFeature
Cap / int_6b85085e
 Cap / int_6c1d09b1
type
Cap
 Cap / int_6c1d09b1
comment
Fallout: Multiple caps:
The level cap is 21 (fairly realistic and requires minimal Level Grinding)
Skills cap at 200.
Radiation resistance caps at 100% (The Glow needs total resistance or else you'll die as soon as you walk out).
 Cap / int_6c1d09b1
featureApplicability
1.0
 Cap / int_6c1d09b1
featureConfidence
1.0
 Fallout (Video Game)
hasFeature
Cap / int_6c1d09b1
 Cap / int_6c1d09b2
type
Cap
 Cap / int_6c1d09b2
comment
Fallout 2:
Radiation resistance caps at 95% (there are so few radiation sources in the game that you can't die from it without actively trying).
 Cap / int_6c1d09b2
featureApplicability
1.0
 Cap / int_6c1d09b2
featureConfidence
1.0
 Fallout 2 (Video Game)
hasFeature
Cap / int_6c1d09b2
 Cap / int_6c1d09b3
type
Cap
 Cap / int_6c1d09b3
comment
Fallout 3:
The level cap is 20 in base game (30 with the Broken Steel DLC)
Skills cap at 100.
Radiation and damage resistances both cap at 85%.
 Cap / int_6c1d09b3
featureApplicability
1.0
 Cap / int_6c1d09b3
featureConfidence
1.0
 Fallout 3 (Video Game)
hasFeature
Cap / int_6c1d09b3
 Cap / int_6cc2b8b2
type
Cap
 Cap / int_6cc2b8b2
comment
In Carmageddon the checkpoint timer cannot go above 19:59 on the HUD no matter how many +time powerups you pick up, but continues to increase in the background.
 Cap / int_6cc2b8b2
featureApplicability
1.0
 Cap / int_6cc2b8b2
featureConfidence
1.0
 Carmageddon (Video Game)
hasFeature
Cap / int_6cc2b8b2
 Cap / int_6d8311c4
type
Cap
 Cap / int_6d8311c4
comment
Similarly, in Pokémon G/S/C and their remakes, someone on Route 32 will try to sell you a Slowpoke Tail for 1,000,000 Pokédollars; you will never be able to afford it, and it's useless anyway.
 Cap / int_6d8311c4
featureApplicability
1.0
 Cap / int_6d8311c4
featureConfidence
1.0
 Pokémon Gold and Silver (Video Game)
hasFeature
Cap / int_6d8311c4
 Cap / int_6e0e351
type
Cap
 Cap / int_6e0e351
comment
The original Escape Velocity game had a cap on the amount of ships in a star system; this meant that, if you filled that number up with your own escorts and fighters, you could then command tribute from planets - who, not being able to send out any of their defense fleet, were forced to surrender. All you had to do was ask twice.
The sequels still had caps on how many ships could be present in a star system, but fixed the exploit by mandating that a planet's defense fleet had to be destroyed for them to surrender. Of course, if you had enough escorts and fighters to almost hit the cap, the planet would send out waves of a single ship...
 Cap / int_6e0e351
featureApplicability
1.0
 Cap / int_6e0e351
featureConfidence
1.0
 Escape Velocity (Video Game)
hasFeature
Cap / int_6e0e351
 Cap / int_6e1a3355
type
Cap
 Cap / int_6e1a3355
comment
Cube Colossus: A level cap of 99 for:
Weapon Proficiency
Shield
Energy
Attack
 Cap / int_6e1a3355
featureApplicability
1.0
 Cap / int_6e1a3355
featureConfidence
1.0
 Cube Colossus (Video Game)
hasFeature
Cap / int_6e1a3355
 Cap / int_6f20b4e
type
Cap
 Cap / int_6f20b4e
comment
EXTRAPOWER: Attack of Darkforce: Sadly a consequence of building the game off Sim RPG Maker 95. Level cap only goes as high as 20, and while Needle・Sandman and Akimoto Wagman would have preferred huge damage numbers in the thousands or even millions, the best they could do was a damage cap of 60 HP. This is also why there are 53 episodes: they couldn't fit anymore!
 Cap / int_6f20b4e
featureApplicability
1.0
 Cap / int_6f20b4e
featureConfidence
1.0
 EXTRAPOWER: Attack of Darkforce (Video Game)
hasFeature
Cap / int_6f20b4e
 Cap / int_6f8aeeb3
type
Cap
 Cap / int_6f8aeeb3
comment
The Fairyland Story counter-stops at 9,999,990 points, which can be achieved by creative score milking strategies.
 Cap / int_6f8aeeb3
featureApplicability
1.0
 Cap / int_6f8aeeb3
featureConfidence
1.0
 The Fairyland Story (Video Game)
hasFeature
Cap / int_6f8aeeb3
 Cap / int_6fe277bc
type
Cap
 Cap / int_6fe277bc
comment
Divinity: Original Sin and Divinity: Original Sin 2 cap skills at 10 ranks. They can still be increased by items, but it's rare to find more than +2 gains per item. This puts the theoretical maximum somewhere around 24.
 Cap / int_6fe277bc
featureApplicability
1.0
 Cap / int_6fe277bc
featureConfidence
1.0
 Divinity: Original Sin (Video Game)
hasFeature
Cap / int_6fe277bc
 Cap / int_7185e4b0
type
Cap
 Cap / int_7185e4b0
comment
Shantae: Half-Genie Hero: Shantae can hold a max of 6 of Monster Eggs.
 Cap / int_7185e4b0
featureApplicability
1.0
 Cap / int_7185e4b0
featureConfidence
1.0
 Shantae: Half-Genie Hero (Video Game)
hasFeature
Cap / int_7185e4b0
 Cap / int_718f3ed1
type
Cap
 Cap / int_718f3ed1
comment
Call of Duty: Black Ops II multiplayer mode caps individual scoring at 30,000 points.
 Cap / int_718f3ed1
featureApplicability
1.0
 Cap / int_718f3ed1
featureConfidence
1.0
 Call of Duty: Black Ops II (Video Game)
hasFeature
Cap / int_718f3ed1
 Cap / int_72a1ac51
type
Cap
 Cap / int_72a1ac51
comment
Grand Theft Auto: San Andreas has a 9 digit money counter. If you go one dollar past $99,999,999 (which typically involves doing Vigilante Missions past Level 200 or grinding at the casino), it rolls over and adds another digit. The actual limit is $999,999,999. And CJ will still complain about desperately needing money.
 Cap / int_72a1ac51
featureApplicability
1.0
 Cap / int_72a1ac51
featureConfidence
1.0
 Grand Theft Auto: San Andreas (Video Game)
hasFeature
Cap / int_72a1ac51
 Cap / int_72ab82
type
Cap
 Cap / int_72ab82
comment
Kid Icarus (1986) caps your hearts at 999. This can be a problem, as Pit's power increases when he reaches specific upgrade rooms after having collected enough hearts on that level (among other factors). Hearts that aren't counted because you're already at the cap don't count towards this. In stage 2-2, the upgrade room is very close to the beginning of the level; if you start the level with close to 999 hearts, easily possible with some Money Grinding in stage 1-4, it's impossible to activate it. Fortunately, there are enough other upgrade rooms that you can skip this one.
 Cap / int_72ab82
featureApplicability
1.0
 Cap / int_72ab82
featureConfidence
1.0
 Kid Icarus (1986) (Video Game)
hasFeature
Cap / int_72ab82
 Cap / int_7309ea2c
type
Cap
 Cap / int_7309ea2c
comment
F-Zero GX has a record time cap: if you get a low enough time on a course, it will not have an internet ranking password for it; i.e., Big Blue Ordeal won't give you a password if your time is under 1'20". How are such times possible? You exploit hidden checkpoints to trick the game into thinking you're going all the way around the course when in fact you're just going circles around the finish line.
 Cap / int_7309ea2c
featureApplicability
1.0
 Cap / int_7309ea2c
featureConfidence
1.0
 F-Zero GX (Video Game)
hasFeature
Cap / int_7309ea2c
 Cap / int_74da632f
type
Cap
 Cap / int_74da632f
comment
Progressbar 95: Progress points from one level cap at 50000 (other multipliers and additional bonuses also affect it outside of that, but that's the base limit).
 Cap / int_74da632f
featureApplicability
1.0
 Cap / int_74da632f
featureConfidence
1.0
 Progressbar 95 (Video Game)
hasFeature
Cap / int_74da632f
 Cap / int_74f7210c
type
Cap
 Cap / int_74f7210c
comment
The Legend of Zelda:
The Legend of Zelda has a money cap at 255, with no opportunity to increase it. Link can only hold 8 bombs. He can later upgrade his bomb capacity to 12 and then 16 if he finds certain old men in dungeons and pays the 100 rupee fee to upgrade. Later games in the series had Wallet Upgrades.
In The Legend of Zelda: Majora's Mask, the banker in Clock Town will hold on to your Rupees so you can have more available than your wallet can carry. But once you go over 5,000 Rupees, he himself will refuse to hold any more. If the player has a full wallet and 4,999 Rupees in the bank, he'll take whatever you give him but no more.
Somewhat controversially, The Legend of Zelda: Twilight Princess has a feature where if you open a treasure chest that contains more rupees than you can currently carry, you will simply put the rupees back into the chest to come back for later. Sounds good on paper, but it can hamper dungeon exploration as the player searches for which unopened chest contain a missing key, and rupee chests obstinately remain "unopened".
 Cap / int_74f7210c
featureApplicability
1.0
 Cap / int_74f7210c
featureConfidence
1.0
 The Legend of Zelda (Franchise)
hasFeature
Cap / int_74f7210c
 Cap / int_76376304
type
Cap
 Cap / int_76376304
comment
An odd example in the original Metro 2033: ammo typically doesn't have a cap, but Artyom can carry at the very most 100 Helsing arrows, counting both those in the magazine and in reserve. Metro: Last Light introduces hard caps for all ammo types, but not military-grade rounds, since those are currency; this was backported in Metro 2033 Redux.
 Cap / int_76376304
featureApplicability
1.0
 Cap / int_76376304
featureConfidence
1.0
 Metro 2033 (Video Game)
hasFeature
Cap / int_76376304
 Cap / int_76686539
type
Cap
 Cap / int_76686539
comment
Mass Effect — you can't hold more than 999 nano-gel units, and you can't hold more than 9,999,999 credits (which, toward the end of the game, you may not have that much trouble acquiring).
These limits were mostly artificial and could be surpassed on the PC by editing the INI files that came with the game. Change them to too large a value, though, and they'll roll over.
 Cap / int_76686539
featureApplicability
1.0
 Cap / int_76686539
featureConfidence
1.0
 Mass Effect (Video Game)
hasFeature
Cap / int_76686539
 Cap / int_76b8cb10
type
Cap
 Cap / int_76b8cb10
comment
Each game in the Fallout series has various caps, but SPECIAL stats always cap at 10:
Fallout: Multiple caps:
The level cap is 21 (fairly realistic and requires minimal Level Grinding)
Skills cap at 200.
Radiation resistance caps at 100% (The Glow needs total resistance or else you'll die as soon as you walk out).
Fallout 2:
Radiation resistance caps at 95% (there are so few radiation sources in the game that you can't die from it without actively trying).
Fallout 3:
The level cap is 20 in base game (30 with the Broken Steel DLC)
Skills cap at 100.
Radiation and damage resistances both cap at 85%.
Fallout: New Vegas:
The level cap is 30 in the base game (plus an extra 5 levels with each of the four DLC, for a new cap of 50). *** Skills cap at 100.
Radiation and poison resistances cap at 85%.
Similar to Skyrim before it, Fallout 4 has no "official" level cap but level 278 allows Nate/Nora to max out all of their perks and S.P.E.C.I.A.L. attributes. Additionally, the game crashes if you go over Level 65,535 (nigh impossible outside of console commands). Your S.P.E.C.I.A.L. attributes cap at 10 per series tradition but can be boosted to 11 if you got the Vault-Tec Bobbleheads and further boosted with chems, food, and clothes. Perks have a cap on how many times they can be upgraded usually to rank 2 to 5 but it also related to the appropriate S.P.E.C.I.A.L. attribute.
 Cap / int_76b8cb10
featureApplicability
1.0
 Cap / int_76b8cb10
featureConfidence
1.0
 Fallout (Franchise)
hasFeature
Cap / int_76b8cb10
 Cap / int_76c6b614
type
Cap
 Cap / int_76c6b614
comment
In Mario Super Sluggers, the maximum number of stars you can have in a given game is 5. You'll have to use them if you want to get more.
 Cap / int_76c6b614
featureApplicability
1.0
 Cap / int_76c6b614
featureConfidence
1.0
 Mario Super Sluggers (Video Game)
hasFeature
Cap / int_76c6b614
 Cap / int_77011132
type
Cap
 Cap / int_77011132
comment
In Kingdom Hearts Re:coded, the level cap is 99, Strength, Magic, and Defense caps at 200, and HP caps at 400. Also, the most Munny you can have at any time is 999,999.
Most of the games in general have a cap on how much damage you can cause per hit to bosses (Despite not using a numerical damage system), which results in the aforementioned multi-hitting move superiority.
 Cap / int_77011132
featureApplicability
1.0
 Cap / int_77011132
featureConfidence
1.0
 Kingdom Hearts coded (Video Game)
hasFeature
Cap / int_77011132
 Cap / int_774593ee
type
Cap
 Cap / int_774593ee
comment
Trauma Center: Under the Knife had a cap for the amount of lacerations that the Kyriaki GUILT strain could inflict on a patient. After 9 or 10 cuts, it would stop slicing the patient's organs apart so you were free to kill it pretty easily as long as you can keep rubbing them with antibiotic gel and jabbing needles into the patient. Strangely enough, this only seemed to affect the Kyriaki because other GUILT strains could inflict countless lacerations on the patients.
 Cap / int_774593ee
featureApplicability
1.0
 Cap / int_774593ee
featureConfidence
1.0
 Trauma Center / Videogame
hasFeature
Cap / int_774593ee
 Cap / int_775cd181
type
Cap
 Cap / int_775cd181
comment
The Streets of Rage games cap the score at 999,999 and the lives at 9. While additional lives are counted (and Streets of Rage 3 turned the '*' symbol into a '>' symbol when this happened), the score is truly capped. While you can't score enough on the original Streets of Rage to hit the cap, it is possible to hit 999,999 points on Streets of Rage 2 when playing on Hardest or Mania.
 Cap / int_775cd181
featureApplicability
1.0
 Cap / int_775cd181
featureConfidence
1.0
 Streets of Rage (Video Game)
hasFeature
Cap / int_775cd181
 Cap / int_792239e5
type
Cap
 Cap / int_792239e5
comment
In Tales of Symphonia, the EXP readout at the end of battle will only go up to 65,535, and any more will cause the counter to roll over back to 0. However, you still gain the 65,536+ EXP and level up properly; it just doesn't report correctly on the victory screen.
The same thing occurred in Tales of Symphonia: Dawn of the New World, but the cap was 999,999. Since it could be easy to string together a large combo, which on higher difficulties resulted in higher EXP multipliers for said combos, resulting in 100 times or more being moderately trivial, even in boss battles. Combine with New Game Plus, 10x EXP, and you get bonuses much higher than the standard EXP for most any enemy that lasts long enough for a good combo (which even then can be a while since juggling prevents enemies from dying).
The Damage dealt by attacks has a funky cap—in theory, it's 6,553,500 for any given hit, which is far more than the Max HP for any enemy in the entire game. In practice this won't kill the enemy—instead it will reduce their HP to 0, and the next hit will do them in. Once above 32,767, the DISPLAY for damage becomes negative. Once above 65,535, the display of damage DISAPPEARS. And it's quite possible to do this: Grind enough kills with the Devil's Arms and use a sufficiently strong special attack and you'll do huge damage.
 Cap / int_792239e5
featureApplicability
1.0
 Cap / int_792239e5
featureConfidence
1.0
 Tales of Symphonia (Video Game)
hasFeature
Cap / int_792239e5
 Cap / int_79284f0e
type
Cap
 Cap / int_79284f0e
comment
Fanfiction.net stores the wordcount as an unsigned 24-bit integer. The Loud House: Revamped was the first fanfic to hit this cap, and as a result, nobody knows how long this Doorstopper is.
 Cap / int_79284f0e
featureApplicability
1.0
 Cap / int_79284f0e
featureConfidence
1.0
 The Loud House: Revamped (Fanfic)
hasFeature
Cap / int_79284f0e
 Cap / int_7c063ba4
type
Cap
 Cap / int_7c063ba4
comment
The Oregon Trail let you go hunting in the wilds to replenish your wagon's food. However, you could only carry 100 pounds of meat back to the wagon. So there was never a good reason to shoot more than one buffalo, or, in fact, anything except buffalo and large animals - why waste the bullets? Also, the total limit of all food was about 2,000 pounds.
There are caps on any item in your inventory. 20 oxen, 50 sets of clothing, 1980 bullets (99 boxes of 20), 3 of each spare wagon part, and 2,000 pounds of food.
 Cap / int_7c063ba4
featureApplicability
1.0
 Cap / int_7c063ba4
featureConfidence
1.0
 The Oregon Trail (Video Game)
hasFeature
Cap / int_7c063ba4
 Cap / int_7c89a468
type
Cap
 Cap / int_7c89a468
comment
The Ancient Art of War had a cap to how many units total could be visible on the map at any time, total - not per side. You could group troops into units. This allowed for a strategy of making many weak units to force the computer to create stronger units - but fewer and thus easier for the player to avoid.
 Cap / int_7c89a468
featureApplicability
1.0
 Cap / int_7c89a468
featureConfidence
1.0
 The Ancient Art of War (Video Game)
hasFeature
Cap / int_7c89a468
 Cap / int_7d8c61a2
type
Cap
 Cap / int_7d8c61a2
comment
Star Wars: The Old Republic has a curious system in place for a currency cap. Free-to-play players have a limit on the credits they can hold, with any excess going into an "escrow" bucket. The only way to get it out of escrow is with real money, either spending Cartel Coins (the paid currency) to retrieve a certain amount, or subscribing which removes the cap and returns all escrowed funds. There is a workaround: credits in the player's stash are not capped, so credits can be dumped in there before hitting the cap, effectively making your own escrow. But you're still limited on what you can do with those credits, as many in-game purchases cost well over the F2P cap.
 Cap / int_7d8c61a2
featureApplicability
1.0
 Cap / int_7d8c61a2
featureConfidence
1.0
 Star Wars: The Old Republic (Video Game)
hasFeature
Cap / int_7d8c61a2
 Cap / int_7dc73376
type
Cap
 Cap / int_7dc73376
comment
The Force Unleashed has its own currency for upgrading force powers, stats and learning new attacks. If you manage to buy every upgrade and still play until you get around 80/90 points (it differs from player to player) you enter a mode that rewards you with unlimited health and unlimited force energy to do even more insane actions.
 Cap / int_7dc73376
featureApplicability
1.0
 Cap / int_7dc73376
featureConfidence
1.0
 The Force Unleashed (Video Game)
hasFeature
Cap / int_7dc73376
 Cap / int_7e850e47
type
Cap
 Cap / int_7e850e47
comment
Bravely Default and its sequel have the standard Final Fantasy damage cap of 9,999. This is actually kind of a problem in the late game, making a lot of the higher-powered abilities less useful than they should be. You can get around it with Bravely Second, but that's not really a viable strategy without spending a lot of money (and vaguely cheating).
 Cap / int_7e850e47
featureApplicability
1.0
 Cap / int_7e850e47
featureConfidence
1.0
 Bravely Default (Video Game)
hasFeature
Cap / int_7e850e47
 Cap / int_7fd4e5f5
type
Cap
 Cap / int_7fd4e5f5
comment
One of the key contributing factors to the notorious difficulty of The 7th Saga is the cap of 9 for any item in your inventory. It makes healing rather difficult — which is mind-boggling in a game that also gives you an infinite-use health restoration item.
 Cap / int_7fd4e5f5
featureApplicability
1.0
 Cap / int_7fd4e5f5
featureConfidence
1.0
 The 7th Saga (Video Game)
hasFeature
Cap / int_7fd4e5f5
 Cap / int_817b1a43
type
Cap
 Cap / int_817b1a43
comment
In Time Crisis 2, your combo is capped at 99 hits. Time Crisis 3 lets you get into the triple digits, and it is possible in Time Crisis 4's Stage 1 Area 2 to have 999 hits.
 Cap / int_817b1a43
featureApplicability
1.0
 Cap / int_817b1a43
featureConfidence
1.0
 Time Crisis (Video Game)
hasFeature
Cap / int_817b1a43
 Cap / int_819853fe
type
Cap
 Cap / int_819853fe
comment
The sequel generally has 99,999 cap on all forms of damage, with DLC-only Valkyrie Lightning being the only one with the skill to increase it to 999,999: thus, the max damage achievement is lowered to 99,999 points of damage and the last form of the final boss only has slightly over 1 million HP, with the Optional Bosses maxing out at 15.5 million.
 Cap / int_819853fe
featureApplicability
1.0
 Cap / int_819853fe
featureConfidence
1.0
 Final Fantasy XIII-2 (Video Game)
hasFeature
Cap / int_819853fe
 Cap / int_8258e260
type
Cap
 Cap / int_8258e260
comment
The 2-D Super Mario Bros. games cap typically the number of extra lives you can have at 99. You might collect a hundred thousand One Ups beyond that (easily, in Super Mario World), but the moment you die, you're back to 98.
 Cap / int_8258e260
featureApplicability
1.0
 Cap / int_8258e260
featureConfidence
1.0
 Super Mario Bros. (Franchise)
hasFeature
Cap / int_8258e260
 Cap / int_82ca6aa3
type
Cap
 Cap / int_82ca6aa3
comment
DoDonPachi Saidaioujou appears to store your combo bonus counter in fixed-point format (similar to the Disgaea series, see below) due to the addition of non-integral multipliers, resulting in a cap of 21,474,836 after any active multipliers are applied. However, for whatever strange reason, if this counter overflows, it displays 999,999,999 in narrower-than-usual digits (note that the font usually doesn't change at all; when the counter hits 8 digits, the 8th digit simply runs into the "+" next to the counter) and adds a ridiculous amount of points to your score. These videos (Nico Nico Douga, free registration and login required) show players exploiting it to earn over a trillion points in under a minute. At least CAVE seems to have learned their lesson about unexpectedly high scores, since the score counter gracefully shows 13 digits this time around.
 Cap / int_82ca6aa3
featureApplicability
1.0
 Cap / int_82ca6aa3
featureConfidence
1.0
 DonPachi (Video Game)
hasFeature
Cap / int_82ca6aa3
 Cap / int_8397a915
type
Cap
 Cap / int_8397a915
comment
There Is No Epic Loot Here, Only Puns: Double-Meaning Title + Pun-Based Title for "The Capped Limit" referring to a limit on Delta's Mana and how she has Mushrooms and therefore their caps.
 Cap / int_8397a915
featureApplicability
1.0
 Cap / int_8397a915
featureConfidence
1.0
 There Is No Epic Loot Here, Only Puns
hasFeature
Cap / int_8397a915
 Cap / int_84986bf9
type
Cap
 Cap / int_84986bf9
comment
RuneScape has a strict item stack limit of 2147483647 due to programming. It's impossible to have a stack of items higher than that; you'll simply get a message that it cannot be done if you try. There's still ways around this though, you can have more then one stack of items by storing them in separate places so the stacks don't attempt to automatically combine. A player could theoretically store a stack of 2147483647 coins in their bank, their inventory, coin pouch and house at once, giving them 8589934588 coins in total, well above the "limit".
 Cap / int_84986bf9
featureApplicability
1.0
 Cap / int_84986bf9
featureConfidence
1.0
 RuneScape (Video Game)
hasFeature
Cap / int_84986bf9
 Cap / int_86814cc3
type
Cap
 Cap / int_86814cc3
comment
Final Fantasy II is supposed to have a cap of 99 on core stats, but the orbs at the top of Mysidia Tower award 10 points to a stat, not checking if the bonus would cause the stat to go over 99. Stats of 100 or more are displayed the first "digit" as "A", a.k.a 10 in hexadecimal; 109 would be displayed as "A9".
Max HP is 9,999, and max MP is 999. The levels for magic spells and weapon proficiencies max at 16. Strangely, you can fill the progress bar again at level 16, but the level won't increase anymore, and there isn't any notable difference between level 16 with an empty bar and level 16 with a full bar.
 Cap / int_86814cc3
featureApplicability
1.0
 Cap / int_86814cc3
featureConfidence
1.0
 Final Fantasy II (Video Game)
hasFeature
Cap / int_86814cc3
 Cap / int_86814cd0
type
Cap
 Cap / int_86814cd0
comment
Final Fantasy IV is unique among the SNES games in that it allows items to stack; while each stack can't contain more than 99 items, you can have more than one stack of that item (but it would take up another slot in your limited inventory).
The DS remake has an augment called Limit Break (not to be confused with the more common type of Limit Break) that increases a character's damage cap from 9,999 to 99,999.
 Cap / int_86814cd0
featureApplicability
1.0
 Cap / int_86814cd0
featureConfidence
1.0
 Final Fantasy IV (Video Game)
hasFeature
Cap / int_86814cd0
 Cap / int_86814e56
type
Cap
 Cap / int_86814e56
comment
If a character in Final Fantasy VI is tweaked obsessively enough, their ability to deal damage can go so far over the damage cap (9,999) that it would run into the variable's overflow limit and wrap back around to low damage. This can lead to somewhat ridiculous situations where a low-level fire spell invokes the 9,999 damage cap, but spells like Ultima or Meltdown only do 100-200 damage.
It's also possible for certain stats to go past 255 and wrap around to 0. This makes a character that was previously unhittable into one that cannot be missed by a monster.
A glitch involving the Mantra/Chakra blitz hits the 9,999 cap handily... by doling out 1 divided by zero damage (which works out to 65,535 on the SNES ALU).
Once characters' levels get high enough, the Genji Glove (which allows Dual Wielding) can allow a Cap break. The Offering/Master's Scroll allows you do to four half-power hits, and the halving comes before the Cap is applied. Combine the two to get absolutely insane amounts of damage... once your level is high enough that you don't need to any more.
 Cap / int_86814e56
featureApplicability
1.0
 Cap / int_86814e56
featureConfidence
1.0
 Final Fantasy VI (Video Game)
hasFeature
Cap / int_86814e56
 Cap / int_876248eb
type
Cap
 Cap / int_876248eb
comment
Red Markets has "potentials" in place of ability scores, which limit the max level of a related skill. A character's potentials can be raised in-game, but it's expensive.
 Cap / int_876248eb
featureApplicability
1.0
 Cap / int_876248eb
featureConfidence
1.0
 Red Markets (Tabletop Game)
hasFeature
Cap / int_876248eb
 Cap / int_87d9cf80
type
Cap
 Cap / int_87d9cf80
comment
Rockman 7 EP
Your health and weapon energy now max out at 56 instead of 28, with extra health and ammo indicated by arrows beside the respective bars. Having more than 28 in either bar will cause them to drain slowly over time.
The cap on Energy and Weapon Energy Tanks are upped from four to seven, and Beat Call's max capacity was increased by the same amount.
 Cap / int_87d9cf80
featureApplicability
1.0
 Cap / int_87d9cf80
featureConfidence
1.0
 Rockman 7 EP (Video Game)
hasFeature
Cap / int_87d9cf80
 Cap / int_88156ac9
type
Cap
 Cap / int_88156ac9
comment
Battle Garegga rolls over oddly: the score counter has 7 digits, and when you achieve what is supposed to be 10,000,000 points, instead of the score counter simply maxing out at 9,999,990, it instead continues rising... but now the millions digit is a letter instead of a number, so a score of 10,000,000 will read as "A,000,000," 11 million is "B,000,000," and so on. The world record is somewhere around "K" millionnote 20,000,000 points.
Ditto with its◊ Spiritual Successor Armed Police Batrider
 Cap / int_88156ac9
featureApplicability
1.0
 Cap / int_88156ac9
featureConfidence
1.0
 Battle Garegga (Video Game)
hasFeature
Cap / int_88156ac9
 Cap / int_88f7f63d
type
Cap
 Cap / int_88f7f63d
comment
Parameters: Multiple things are capped:
The log count time in deciseconds as its lowest number: min:secs:ds, and caps at 99:99:99.
The multiple armor and attack upgrade squares are capped at 9 uses.
 Cap / int_88f7f63d
featureApplicability
1.0
 Cap / int_88f7f63d
featureConfidence
1.0
 Parameters (Video Game)
hasFeature
Cap / int_88f7f63d
 Cap / int_89695bfc
type
Cap
 Cap / int_89695bfc
comment
The All-Stars remake fixes it so the counter can now display the number 127, and can no longer overflow into negative numbers.
 Cap / int_89695bfc
featureApplicability
1.0
 Cap / int_89695bfc
featureConfidence
1.0
 Super Mario All-Stars (Video Game)
hasFeature
Cap / int_89695bfc
 Cap / int_8ae87a20
type
Cap
 Cap / int_8ae87a20
comment
Press Your Luck's score displays for the contestants could only fit six characters: one for the dollar sign and five for the digits. When Michael Larson broke the $100,000 barrier in his infamous performance, the score display just showed the number without the dollar sign, i.e., "110237" instead of "$110237".
 Cap / int_8ae87a20
featureApplicability
1.0
 Cap / int_8ae87a20
featureConfidence
1.0
 Press Your Luck
hasFeature
Cap / int_8ae87a20
 Cap / int_8aef1fcf
type
Cap
 Cap / int_8aef1fcf
comment
In Space Quest, once you earn 255 buckazoids on the Rocket Bar's slot machine, it breaks to prevent overflow.
 Cap / int_8aef1fcf
featureApplicability
1.0
 Cap / int_8aef1fcf
featureConfidence
1.0
 Space Quest (Video Game)
hasFeature
Cap / int_8aef1fcf
 Cap / int_8cc0679c
type
Cap
 Cap / int_8cc0679c
comment
A lot of the strategy in Angband involves managing inventory slots, which are capped at a paltry 22. Late in the game, players usually stop collecting loot from the dungeon (unique items excepted) so that they can have a full "kit" of offensive and defensive items. There is also a level cap of 50.
 Cap / int_8cc0679c
featureApplicability
1.0
 Cap / int_8cc0679c
featureConfidence
1.0
 Angband (Video Game)
hasFeature
Cap / int_8cc0679c
 Cap / int_8cf75fa
type
Cap
 Cap / int_8cf75fa
comment
Brave Hero Yuusha: Item stacks are capped at 15 items.
 Cap / int_8cf75fa
featureApplicability
1.0
 Cap / int_8cf75fa
featureConfidence
1.0
 Brave Hero Yuusha (Video Game)
hasFeature
Cap / int_8cf75fa
 Cap / int_8cfbe13b
type
Cap
 Cap / int_8cfbe13b
comment
Rainbow Islands has a score cap of 9,999,990 points, unless you enter a code at the title screen which increases this cap to 99,999,990 points.
 Cap / int_8cfbe13b
featureApplicability
1.0
 Cap / int_8cfbe13b
featureConfidence
1.0
 Rainbow Islands (Video Game)
hasFeature
Cap / int_8cfbe13b
 Cap / int_8d318bad
type
Cap
 Cap / int_8d318bad
comment
Super Mario RPG has some very low Caps for an RPG. Coins cap at 999 (some items sell for more than half of that) and levels cap at 30 (which takes 9,999 exp to achieve). However, the damage cap is equivalent to most Final Fantasy games at 9,999, which can be done with a well-timed Geno Whirl, which is really over the top considering almost no other attack can break three digits and the highest HP any enemy in the game has is 8,000. The Beetle Mania Mini-Game has a score cap of 99,999,999.
 Cap / int_8d318bad
featureApplicability
1.0
 Cap / int_8d318bad
featureConfidence
1.0
 Super Mario RPG (Video Game)
hasFeature
Cap / int_8d318bad
 Cap / int_8da0ea80
type
Cap
 Cap / int_8da0ea80
comment
In Pokémon R/B/Y/FR/LG, a bike costs 1,000,000 Pokédollars, which is one over the player's money cap. You have to get the coupon to obtain it.
 Cap / int_8da0ea80
featureApplicability
1.0
 Cap / int_8da0ea80
featureConfidence
1.0
 Pokémon Red and Blue (Video Game)
hasFeature
Cap / int_8da0ea80
 Cap / int_8f4731fb
type
Cap
 Cap / int_8f4731fb
comment
In Pokémon Mystery Dungeon, if an opponent in a dungeon is attacked the damage taken will appear as minus (number) above their heads. The highest number that is shown in the dungeon is -999 in red, but on the text screen below it will say the real amount of damage taken (ex: Caterpie took 1,043 damage!) You can get pretty strong in those games.
 Cap / int_8f4731fb
featureApplicability
1.0
 Cap / int_8f4731fb
featureConfidence
1.0
 Pokémon Mystery Dungeon (Video Game)
hasFeature
Cap / int_8f4731fb
 Cap / int_936b37be
type
Cap
 Cap / int_936b37be
comment
Mitten Squad has a video about Borderlands 2 Downloadable Content that increases the level cap: "Borderlands 2: Level 72 - Level Cap Increase | +11 Levels."
 Cap / int_936b37be
featureApplicability
1.0
 Cap / int_936b37be
featureConfidence
1.0
 Mitten Squad (Web Video)
hasFeature
Cap / int_936b37be
 Cap / int_9378a0fc
type
Cap
 Cap / int_9378a0fc
comment
Replicanti Incremental: Infinity Upgrade 7 caps at a 1e5000x multiplier. It becomes a softcap with Infinity Upgrade 16.
 Cap / int_9378a0fc
featureApplicability
1.0
 Cap / int_9378a0fc
featureConfidence
1.0
 Replicanti Incremental (Video Game)
hasFeature
Cap / int_9378a0fc
 Cap / int_93dccf12
type
Cap
 Cap / int_93dccf12
comment
Hyperballoid: There's a limit to how many balls can be on screen at once which grants extra 250 points if you reach it. It appears to be 27 to 30.
 Cap / int_93dccf12
featureApplicability
1.0
 Cap / int_93dccf12
featureConfidence
1.0
 Hyperballoid (Video Game)
hasFeature
Cap / int_93dccf12
 Cap / int_93ef7a8c
type
Cap
 Cap / int_93ef7a8c
comment
Super Smash Bros. Melee: Normally, the Super Scope can only shoot a total of 13 projectiles, but it can be abused to generate an infinite amount of ammo, which is most likely due to an overflow.
 Cap / int_93ef7a8c
featureApplicability
1.0
 Cap / int_93ef7a8c
featureConfidence
1.0
 Super Smash Bros. Melee (Video Game)
hasFeature
Cap / int_93ef7a8c
 Cap / int_959e6bc
type
Cap
 Cap / int_959e6bc
comment
In Dragon Quest II the EXP cap was raised to 1,000,000 for each character, but they had different experience tables resulting in level caps of 50, 40, and 35.
 Cap / int_959e6bc
featureApplicability
1.0
 Cap / int_959e6bc
featureConfidence
1.0
 Dragon Quest II (Video Game)
hasFeature
Cap / int_959e6bc
 Cap / int_961eeacc
type
Cap
 Cap / int_961eeacc
comment
In the original arcade version of Donkey Kong, the score rolls over to zero at 1 million points. This is almost, but not quite, impossible to reach, due to both the high difficulty of the game and the Kill Screen which ends the game at level 22. Only three such scores are recorded on Twin Galaxies. The level counter is also capped at 99, though the aforementioned Kill Screen does prevent anyone from seeing this. The Kill Screen itself is due to cap problems — the time limit is supposed to increase with every stage, capped at 8,000, but this cap is only applied at the very end of the calculation, which means that the time limit for level 22 rolls over to an impossibly-low 400 before the game thinks to check anything.
 Cap / int_961eeacc
featureApplicability
1.0
 Cap / int_961eeacc
featureConfidence
1.0
 Donkey Kong (Video Game)
hasFeature
Cap / int_961eeacc
 Cap / int_986691c8
type
Cap
 Cap / int_986691c8
comment
Fabula Ultima: The maximum level a player character can reach is 50, while the maximum number of levels they can invest into any one class is 10. The number of unmastered (i.e., not at level cap) classes a character can have at any one time is capped at 3, meaning you cannot start leveling a fourth class until you've maxed out one of the three you already have. NPCs, meanwhile, have a maximum level cap of 60.
 Cap / int_986691c8
featureApplicability
1.0
 Cap / int_986691c8
featureConfidence
1.0
 Fabula Ultima (Tabletop Game)
hasFeature
Cap / int_986691c8
 Cap / int_9b5c40ef
type
Cap
 Cap / int_9b5c40ef
comment
Espgaluda II also has a score cap of 3,999,999,999 although the world record is under a billion; the cap has only ever been hit by exploiting a bug in the iOS port. The Arrange Mode in the Xbox 360 version lifts this cap, although if you have the detailed score display turned on, that display glitches when trying to show a number above 9,999,999,999; the first two digits get replaced by characters after the digit '9' in ASCII (so 10 billion would be ":000000000", 11 billion is ";000000000", 12 billion is "<000000000", and so on).
 Cap / int_9b5c40ef
featureApplicability
1.0
 Cap / int_9b5c40ef
featureConfidence
1.0
 Espgaluda (Video Game)
hasFeature
Cap / int_9b5c40ef
 Cap / int_9bcf051b
type
Cap
 Cap / int_9bcf051b
comment
Characters in The Final Fantasy Legend have a visible HP cap of 999. However, human characters don't get HP from levels or other internal stats; they get them from buying HP-increasing items. The items themselves are at least partially capped in their effectiveness (use enough and even the most powerful variety only adds 1 HP) — but can increase the value well over 999.
 Cap / int_9bcf051b
featureApplicability
1.0
 Cap / int_9bcf051b
featureConfidence
1.0
 The Final Fantasy Legend (Video Game)
hasFeature
Cap / int_9bcf051b
 Cap / int_9d8badd6
type
Cap
 Cap / int_9d8badd6
comment
Eternal Senia: Hydrangea After The Rain: Cap of Level 100 for these:
Senia's level.
Weapon levels.
 Cap / int_9d8badd6
featureApplicability
1.0
 Cap / int_9d8badd6
featureConfidence
1.0
 Eternal Senia: Hydrangea After The Rain (Video Game)
hasFeature
Cap / int_9d8badd6
 Cap / int_9f89a5f0
type
Cap
 Cap / int_9f89a5f0
comment
The Pokémon games don't generally have a lot of caps existing for programming reasons - there are no limits on damage beyond the practical limits on legal values that can be plugged into the damage formula, for instance, and the various caps on levels, EVs/stat experience and so on are deliberate gameplay features that impose practical limits on visible stats at the maximum level 100. However, in the first two generations of Pokémon games, battle stats (counting in-battle multipliers) were capped at 999, and in fact there was a glitch that made it possible for a stat to overflow that value in the case of a Marowak holding the Thick Club item (which doubled its Attack stat separately from ordinary stat modifiers) that used the further Attack-raising move Swords Dance twice. While for any ordinary Pokémon using Swords Dance, the game would simply let the Attack stat maximize at 999, the programmers forgot to take into account the possibility of Thick Club Marowak, resulting in the possibility of 'raising' your Attack to a very low number.
In the first-generation games, the gameplay time capped at 255 hours and 59 minutes, while in the later games it is 999 hours and 59 minutes.
Hacking the game reveals that (at least in the third generation), the stats can safely be at 65,535. This makes sense because 999 would require at least 10 bits, but data is stored in bytes. So this would be two bytes minimum (16-bits). So even if you had a 999 Attack Marowak, unless the programmers deliberately checked for it, you'd end up with a 1998 Attack Marowak.
Although the circumstances are functionally impossible, a level 100 Shuckle can potentially deal the most damage in one single attack through the use of numerous stat boosters, by using Helping Hand, the Metronome held item, Power Trick, a Skill Swap to Pure Power or Huge Power, and the Defense Curl/Rollout combo. Also, Shuckle's partner must have the ability Flower Gift and the weather must be sunny. On the 5th impact of Rollout, if used against a level 1 Ledyba or Yanma that have been hit with negative Defense modifiers (such as Screech), it can deal 213,896,052 damage with a critical hit. That's around enough to KO all 807 Pokémon at once dozens if not hundreds of times over.
Hacking a Pokémon to have the maximum values possible for each stat as well as other enhancements (items, critical hit, super effective, etc.), the cap is well over 471,000,000 points of damage. Talk about extreme overkill.
However, from Black and White onward, the total amount of damage is capped at 65,535, rolling over to 0 and onward if does more.
In Generations I-IV, the money cap was 999,999 Poké Dollars. It was raised to 7 digits in Black and White.
In Pokémon R/B/Y/FR/LG, a bike costs 1,000,000 Pokédollars, which is one over the player's money cap. You have to get the coupon to obtain it.
Similarly, in Pokémon G/S/C and their remakes, someone on Route 32 will try to sell you a Slowpoke Tail for 1,000,000 Pokédollars; you will never be able to afford it, and it's useless anyway.
The first three Generations allow you to carry 99 of each item. Generation IV and onward allow up to 999 of each item.
In Pokémon Mystery Dungeon, if an opponent in a dungeon is attacked the damage taken will appear as minus (number) above their heads. The highest number that is shown in the dungeon is -999 in red, but on the text screen below it will say the real amount of damage taken (ex: Caterpie took 1,043 damage!) You can get pretty strong in those games.
Pokemon are limited to six (carried) per player and to four moves each. Whether these are designer imposed or interfaced induced caps is debatable.
In Pokémon Sleep, the Pokémon level cap depends on your current Research Level, which increases until Lv. 55. However, the third ingredient a Pokémon can gather is unlocked at Lv. 60, hinting that this might be increased in future updates.
 Cap / int_9f89a5f0
featureApplicability
1.0
 Cap / int_9f89a5f0
featureConfidence
1.0
 Pokémon (Franchise)
hasFeature
Cap / int_9f89a5f0
 Cap / int_a289a6cd
type
Cap
 Cap / int_a289a6cd
comment
Sunset Overdrive:
Your character doesn't have levels to speak of and has no use for XP, but that's what King Ignatius offers as a reward for The Most Epic Quest for EXP. By the end of the quest, you have enough XP to reach the level cap at 99 and have been granted the title of Sr. Captain and Commander, which is a meaningless title for the rest of the game.
Weapon Levels stop at 5.
Overdrive levels stop at 4.
OverCharge must have a cap, but it's higher than 100,000.
 Cap / int_a289a6cd
featureApplicability
1.0
 Cap / int_a289a6cd
featureConfidence
1.0
 Sunset Overdrive (Video Game)
hasFeature
Cap / int_a289a6cd
 Cap / int_a321a398
type
Cap
 Cap / int_a321a398
comment
In all New Super Mario Bros. except the first one, as well as Super Mario 3D Land, Mario and Luigi lose their cap when they reach the max life count.
 Cap / int_a321a398
featureApplicability
1.0
 Cap / int_a321a398
featureConfidence
1.0
 Super Mario 3D Land (Video Game)
hasFeature
Cap / int_a321a398
 Cap / int_a5fec434
type
Cap
 Cap / int_a5fec434
comment
Twisted Metal imposes a different cap on each weapon pickup, so the player can only store an specific amount of each different missile or weapon. These are all based on the weapon's strength (10 Fire missiles, 8 Homing, 5 Power, etc.).
 Cap / int_a5fec434
featureApplicability
1.0
 Cap / int_a5fec434
featureConfidence
1.0
 Twisted Metal (Video Game)
hasFeature
Cap / int_a5fec434
 Cap / int_a6543322
type
Cap
 Cap / int_a6543322
comment
Touhou Project games usually have a cap of 9 lives and 8 bombs. If a tenth life is earned, it's turned into an extra bomb instead; if a ninth bomb is earned, it's simply lost. (Some exceptions below.) Earlier games also capped shot power at 128 and later games had a different cap; any further power items were immediately converted to a different type of item, usually worth bonus points.
Touhou Kaeidzuka ~ Phantasmagoria of Flower View's Extra Mode makes it impossible to earn a tenth life - the player has to start with one life, and no extra lives were awarded after the 8th one.
Touhou Fuujinroku ~ Mountain of Faith also had a similar cap - the player has to start with exactly 3 lives, and it is only possible to gain 6 extra lives (3 in the Extra Stage).
A tenth extra life in Subterranean Animism appears to be simply lost, without being converted into a bomb.
The manual for Touhou Youyoumu ~ Perfect Cherry Blossom also states that there's a score cap of 9,999,999,990, and a Cherry Point cap of 9,999,990. But given that the world record score is less than 4 billion and nobody's ever gotten close to 2 million Cherry Points, the caps essentially have no effect on gameplay. The Cherry Point counter does start to glitch up cosmetically with 7-digit values, though.
In Touhou Koumakyou ~ the Embodiment of Scarlet Devil, there is a limit of 640 bullets onscreen at once. Even when facing Optional Boss Flandre Scarlet, this isn't a problem (though "And Then Will There Be None?" can hit the cap during the late part of the first phase), but if you install one of certain fanpatches that make the game a lot harder, it can cause some of her attacks to exceed that limit and look rather odd.
Touhou Eiyashou ~ Imperishable Night also hits the bullet cap on rare occasions, most notably during the Last Word "Saigyouji Flawless Nirvana".
The PC-98 games roll over very similarly to Battle Garegga below: With scores of 100,000,000 points or more, the ten millions digit will be replaced by letters: "A0,000,000" is 100 million points, "B0,000,000" is 110 million points, and so on.
Touhou Reiiden ~ Highly Responsive to Prayers has a 7-digit score counter; if the player passes 10,000,000 the counter rolls over, but the full score is still stored and is displayed at the evaluation screen at the end of the game.
Touhou Bunkachou ~ Shoot the Bullet can only display individual picture score values up to 999,990. Higher values glitch up the display (although they're still added to the total correctly).
Touhou Seirensen ~ Undefined Fantastic Object initially had a Game-Breaking Bug where it would crash trying to display 10-digit scores. This was patched, but the score counter still displays incorrectly if your score is over 2,147,483,647 (231-1), instead displaying your score minus 4,294,967,296 (232) and replacing the negative sign with an "x". Scores do display correctly on the high scores leaderboards and replays menu after the patch, though.
Point item value (the amount each item is worth) is capped from Mountain of Faith onwards, and world record scoreplays hit the cap in most games.
Fangame LASERREIMU rolls over into letters after 10 billion and caps at Z999999999 (35,999,999,999).
 Cap / int_a6543322
featureApplicability
1.0
 Cap / int_a6543322
featureConfidence
1.0
 Touhou Project (Franchise)
hasFeature
Cap / int_a6543322
 Cap / int_a66b3bbc
type
Cap
 Cap / int_a66b3bbc
comment
Many of the Endless modes in the console versions of DanceDanceRevolution have caps that can be reached in a "reasonable" amount of play. In particular, the system used in X and X2 caps at 9,999,999,999,999,999 (one less than ten quadrillion) points, at which point the player's run ends. In 4thMIX the cap is at 10^32 - 1, while in 3rdMIX the cap is 10^72 - 1.
Furthermore, it has been observed that clearing the song where the player reached the score cap in 3rdMIX Endless, causes Endless mode to actually end, with a "Congratulations!!" message.
 Cap / int_a66b3bbc
featureApplicability
1.0
 Cap / int_a66b3bbc
featureConfidence
1.0
 DanceDanceRevolution (Video Game)
hasFeature
Cap / int_a66b3bbc
 Cap / int_a6fb0678
type
Cap
 Cap / int_a6fb0678
comment
La-Mulana has caps on how many of each subweapon you can carry. The limit is 255 shurikens and 128 each of most others.
 Cap / int_a6fb0678
featureApplicability
1.0
 Cap / int_a6fb0678
featureConfidence
1.0
 La-Mulana (Video Game)
hasFeature
Cap / int_a6fb0678
 Cap / int_a74ec89b
type
Cap
 Cap / int_a74ec89b
comment
Castlevania: Circle of the Moon: Your default stats for STR, DEF, INT and LUCK start at 100, quickly go up to 4 digits and theoretically max out at 9999 (though you're not likely to reach that point unless you're playing one of the special modes). In gameplay terms, this doesn't make much of a difference, but due to the way enemy defense works, the damage done to various enemies varies to a ridiculous degree compared to the other games in the series: by the time you're strong enough to beat the game and can do about 100 damage to endgame enemies with a normal attack, you'll do close to 1000-2000 damage to the weakest enemies in the game, when in any other game in the series, it'd probably be closer to 200-300.
 Cap / int_a74ec89b
featureApplicability
1.0
 Cap / int_a74ec89b
featureConfidence
1.0
 Castlevania: Circle of the Moon (Video Game)
hasFeature
Cap / int_a74ec89b
 Cap / int_a81325d3
type
Cap
 Cap / int_a81325d3
comment
Many Final Fantasy games have "back door" methods of exceeding the damage cap (typically 9,999) by hitting twice or more in one turn. In some games it's as simple as Dual Wielding, while others go well beyond that.
The recurring Libra skill normally doesn't report HP exceeding 99,999. If an enemy does have more HP, it will be shown as ????? or 99,999, depending on the game.
Final Fantasy II is supposed to have a cap of 99 on core stats, but the orbs at the top of Mysidia Tower award 10 points to a stat, not checking if the bonus would cause the stat to go over 99. Stats of 100 or more are displayed the first "digit" as "A", a.k.a 10 in hexadecimal; 109 would be displayed as "A9".
Max HP is 9,999, and max MP is 999. The levels for magic spells and weapon proficiencies max at 16. Strangely, you can fill the progress bar again at level 16, but the level won't increase anymore, and there isn't any notable difference between level 16 with an empty bar and level 16 with a full bar.
Interestingly, Final Fantasy III, at least the DS version, doesn't actually have a damage cap. While it won't show you any more damage over 9,999, you'll still do more damage.
Final Fantasy IV is unique among the SNES games in that it allows items to stack; while each stack can't contain more than 99 items, you can have more than one stack of that item (but it would take up another slot in your limited inventory).
The DS remake has an augment called Limit Break (not to be confused with the more common type of Limit Break) that increases a character's damage cap from 9,999 to 99,999.
If a character in Final Fantasy VI is tweaked obsessively enough, their ability to deal damage can go so far over the damage cap (9,999) that it would run into the variable's overflow limit and wrap back around to low damage. This can lead to somewhat ridiculous situations where a low-level fire spell invokes the 9,999 damage cap, but spells like Ultima or Meltdown only do 100-200 damage.
It's also possible for certain stats to go past 255 and wrap around to 0. This makes a character that was previously unhittable into one that cannot be missed by a monster.
A glitch involving the Mantra/Chakra blitz hits the 9,999 cap handily... by doling out 1 divided by zero damage (which works out to 65,535 on the SNES ALU).
Once characters' levels get high enough, the Genji Glove (which allows Dual Wielding) can allow a Cap break. The Offering/Master's Scroll allows you do to four half-power hits, and the halving comes before the Cap is applied. Combine the two to get absolutely insane amounts of damage... once your level is high enough that you don't need to any more.
A couple of Final Fantasy VII's ultimate weapons can overflow the damage calculations. The game will compensate by inflicting insta-death on the target enemy (even the Optional Bosses), which means that the Death Penalty Glitch is one of the more common ways of dealing with Emerald WEAPON.
Technically breaking the cap, in Final Fantasy VII you can acquire a materia called HP<->MP, which swaps the values of the character's HP and MP. Anyone with an HP over 999 will technically break the MP limit of 999. Of course, you'd be stuck with a ridiculously low amount of HP, possibly turning the holder into a Glass Cannon.
Also, the MP cost of spells is capped to 255, as seen with the Turbo MP materia. A fully boosted Knights of the Round Table will cost 255 instead of 375 MP!
Final Fantasy VII also has a strange effect on percentage damage spells like Demi. Although the visual number is capped, the actual damage is not, so if used on the few powerful enemies not immune to Gravity (like Emerald Weapon again) it can be used to bring their HP down to a far more manageable level.
Likewise, Crisis Core includes equippable accessories that can be used elevate the damage and stat caps by a factor of ten (from 9,999 to 99,999 for damage and hit points, and from 999 to 9,999 for MP and AP)
Final Fantasy VIII also has a few specific attacks that can exceed the 9,999 damage cap. There are some attacks that do fall under the damage cap yet are more damaging than those that don't. This is because they can hit multiple times per turn, and it's each individual hit (not the cumulative damage from all of them) that is subject to the cap. Thus, Quistis's best attack (the Blue Magic skill Shockwave Pulsar, one hit with a theoretical maximum of 32,672 damage; while this is lower than the secondary damage cap, it's the highest that the spell's damage formula allows) is far inferior to Squall's (up to 24 hits with a theoretical maximum of 9,999 each or 239,976 total). Especially since achieving the theoretical maximum damage from Squall's ultimate attack is very doable, while for Quistis it's virtually impossible. The most powerful single-hit attack comes from the Eden summon, which can deal up to 60,000 damage.note Due to the data storage system, this is the most damage any single attack in the game can deal. Eden's damage formula would otherwise allow for significantly higher damage than this.
Impressive as that is, the king here is Zell. By repeatedly putting in the weakest commands of his Duel techniques, you can get in a long string of rapid hits. Since each of these is 2 buttons long, it's possible to put in each command in 0.10 seconds according to the game's timer which ranges from giving 2 to 12 seconds. With Zell's ultimate weapon and everything else normal, he would probably come right around or right under Squall. With an enemy under the effects of Meltdown (Defense reduced to 0), Zell at 255 for his strength stat and twelve seconds on the clock, he has to potential to hit in the lower 700,000s. Give or take 200,000 to account for the possible critical hits. This has the appropriate nick name Armageddon Fist. Source.
Final Fantasy X features an exception should the player ever get a hold of (and properly upgrade) the ultimate weapons for the characters. This raises the damage cap to 99,999; allowing you to kill the final boss in one hit. Given that the caps had always had the aspect of a technological limitation, this was essentially akin to changing the laws of physics.
You can also customize normal weapons to do this, but it requires insane amounts of rare materials, and the ultimate weapons are better anyway since the user's HP boosts the damage they deal. However, you can also customize armor to break the HP/MP limits, bringing them up to 99,999 and 9,999 respectively. The optional bosses practically necessitated the HP boost.
The Optional Boss Neslug goes beyond the second damage limit with the Regen-like status it gains while it's in its shell, healing a six-digit amount of HP on some turns. AAAAAARGH!!
And finally, if the summon animations are turned off, Anima can do 7 digit damage with her Overdrive in the International version of the game.
Stats max out at 255; however, using Cheer on a character with maxed-out Strength or Defense will still raise those stats.
And even with breaking the damage cap, Penance is still a Marathon Boss of legendary proportions. 99,999 damage against its 12 million HP is a drop in the bucket.
In an inverse example, in the chocobo race sidequest to get the sigil for Tidus' ultimate weapon, the lowest time that is shown is capped at 0.0 seconds. This has confused and frustrated some players in that you need a time of less than zero; getting a time of exactly zero won't get you the Sun Sigil, but both are displayed as 0.0 seconds on the results screen. You could always just do the math yourself, though.
Kimahri becomes a Low-Tier Letdown in Final Fantasy X. While all characters are ultimately limited by the damage cap, they can overcome the 99,999 limit by attacking more than once through overdrives. Khimari is the only one who, even with his overdrive, cannot hit more than once.
Final Fantasy XII has a damage cap of 9,999 and, for the most part, stays true on it. This explains why Yiazmat is such a Marathon Boss; while 50 million HP is certainly record-breaking, the battle with him could have been done in less than two hours if not for the fact that each character can only inflict 9,999 damage per attack and there are only three members in a party (to make matters worse, he reduces the damage cap by a third midway through, so each character can only inflict 6,999 damage per attack). The game itself has only a handful of limit-breaking attacks, mostly the Limit Break attacks for the Espers and the Concurrence attacks for the Quickenings; the strongest attack in the game, is Zeromus' Big Bang, hitting for just shy of 70,000 damage. Fortunately, the Zodiac rereleases remove this cap.
Final Fantasy XIII has a cap of 99,999 for single hits; Summons, Death and equipping a certain item can move the cap to 999,999 and there is an achievement for doing 6 digits in one hit. The Final Boss has close to 15 million HP so 99,999 is not all that high in perspective.
The sequel generally has 99,999 cap on all forms of damage, with DLC-only Valkyrie Lightning being the only one with the skill to increase it to 999,999: thus, the max damage achievement is lowered to 99,999 points of damage and the last form of the final boss only has slightly over 1 million HP, with the Optional Bosses maxing out at 15.5 million.
Final Fantasy Mystic Quest had a bug where the main character can cast Cure a few times on the endboss, Dark King to increase its HP over the maximum allowable value. The enemy's HP overflows back around to -65,535, killing it instantly. Ironically, entering the battle at a low level makes this overflow easier.
Final Fantasy Tactics A2 has a level cap on new recruits. By default, a new unit's level would match around the average level of your party, but if your party's levels get really high, a new recruit's level would cap off at 30, forcing players to level grind the new character. This was intentional so that players can't try to recruit a level 99 Assassin without doing any work for it.
The game also has enemies with more than 999 HP, and a HP and MP display with only three digits. To get around the interface induced cap, the game shows ??? instead.
Final Fantasy Record Keeper:
Newly obtained units are initially capped at level 50, but you can then use Memory Crystals to increase this cap to be as high as 99. Endgame battles require that all members of the party be at level 99.
This also applies to magicite, newly obtained magicite is initially capped at level 50 and can be merged with identical magicite to increase the cap up to 99. Unlike with units, it isn't as important for magicite to be at level 99.
Damage is normally capped at 9999, however endgame battles are centered around abilities and Soul Breaks that exceed this cap. Overstrike and Arcane Overstrike Soul Breaks do at least one hit which caps at 99999, Cloud's first Ultra Soul Break allows anything to exceed the damage cap, including abilities and other Soul Breaks which do not under normal circumstances, and Awakenings and Sync Soul Breaks increase the damage cap to 19999.note It's possible to then exceed this cap even further, by for example activating an Awakening after a Sync or vice-versa, or activating a second Awakening through Roaming Warriors.
A special case to be noted is with Chain Soul Breaks, in which the damage multiplier is also capped. The first chains released (referred to as Gen 1) are capped at 99 hits, while the newest chains released (referred to as Gen 2) are capped at 150 hits.
 Cap / int_a81325d3
featureApplicability
1.0
 Cap / int_a81325d3
featureConfidence
1.0
 Final Fantasy (Franchise)
hasFeature
Cap / int_a81325d3
 Cap / int_a825da3e
type
Cap
 Cap / int_a825da3e
comment
Magic: The Gathering defies this trope at the rules level. While some cards have limits written into their rules text (ex. "This ability triggers only once per turn,"), just about everything that doesn't forbid it can be stacked endlessly. Paper tournament play has rules for demonstrating a loop and allowing it to be performed an arbitrary number of times. Circa 2014, the Modern format saw its top two decks represent one capable of gaining infinite life and another capable of dealing infinite damage (in this case, infinity life won. The infinite damage deck did so by creating an arbitrary number of creature tokens and then attacking, requiring the number to be locked in. The infinite life deck used a combo with no speed restrictions, and could choose whatever number the attacker chose plus 1).
 Cap / int_a825da3e
featureApplicability
1.0
 Cap / int_a825da3e
featureConfidence
1.0
 Magic: The Gathering (Tabletop Game)
hasFeature
Cap / int_a825da3e
 Cap / int_a89452e6
type
Cap
 Cap / int_a89452e6
comment
One ridiculous example of this is Harvest Moon DS, which features several mines that go deeper and deeper. The second mine has 255 levels. The third has 999. The fourth has 65,535 levels.
 Cap / int_a89452e6
featureApplicability
1.0
 Cap / int_a89452e6
featureConfidence
1.0
 Harvest Moon DS (Video Game)
hasFeature
Cap / int_a89452e6
 Cap / int_a9add9cc
type
Cap
 Cap / int_a9add9cc
comment
Sandcastle Builder:
Maximum finite value for anything is 1.7976931348623157e+308 - anything higher causes the value to become Infinite. This is a feature of 64-bit floating-point notation.
Production Control can't be upgraded past 6e+51 at which point the player is awarded the "Nope!" badge.
 Cap / int_a9add9cc
featureApplicability
1.0
 Cap / int_a9add9cc
featureConfidence
1.0
 Sandcastle Builder (Video Game)
hasFeature
Cap / int_a9add9cc
 Cap / int_ad34ca69
type
Cap
 Cap / int_ad34ca69
comment
Final Fantasy Tactics A2 has a level cap on new recruits. By default, a new unit's level would match around the average level of your party, but if your party's levels get really high, a new recruit's level would cap off at 30, forcing players to level grind the new character. This was intentional so that players can't try to recruit a level 99 Assassin without doing any work for it.
The game also has enemies with more than 999 HP, and a HP and MP display with only three digits. To get around the interface induced cap, the game shows ??? instead.
 Cap / int_ad34ca69
featureApplicability
1.0
 Cap / int_ad34ca69
featureConfidence
1.0
 Final Fantasy Tactics A2 (Video Game)
hasFeature
Cap / int_ad34ca69
 Cap / int_af60702d
type
Cap
 Cap / int_af60702d
comment
The Legend of Zelda has a money cap at 255, with no opportunity to increase it. Link can only hold 8 bombs. He can later upgrade his bomb capacity to 12 and then 16 if he finds certain old men in dungeons and pays the 100 rupee fee to upgrade. Later games in the series had Wallet Upgrades.
 Cap / int_af60702d
featureApplicability
1.0
 Cap / int_af60702d
featureConfidence
1.0
 The Legend of Zelda (Video Game)
hasFeature
Cap / int_af60702d
 Cap / int_afbc40fb
type
Cap
 Cap / int_afbc40fb
comment
Prayer of the Faithless:
The level cap is 50, which isn't hard to reach since the end-game enemies give a level every 2 encounters at most, and is reached at around level 40.
The party can only hold ten of each consumable. At the end of the game, the cap gets raised to twenty because both parties' inventories are combined.
 Cap / int_afbc40fb
featureApplicability
1.0
 Cap / int_afbc40fb
featureConfidence
1.0
 Prayer of the Faithless (Video Game)
hasFeature
Cap / int_afbc40fb
 Cap / int_b0b22636
type
Cap
 Cap / int_b0b22636
comment
Wheel of Fortune ran into this when they got a contestant who won more than $100,000 (this was when the show had returning champions). Only the last 5 digits fit on the electronic board, prompting the production team to draw a "1" on a piece of paper and hand it to Sajak so he could hold it up next to the other digits.
 Cap / int_b0b22636
featureApplicability
1.0
 Cap / int_b0b22636
featureConfidence
1.0
 Wheel of Fortune
hasFeature
Cap / int_b0b22636
 Cap / int_b0c8849e
type
Cap
 Cap / int_b0c8849e
comment
Kid Radd plays with this trope, making sloppy programming of damage cap calculation a major plot point.
 Cap / int_b0c8849e
featureApplicability
1.0
 Cap / int_b0c8849e
featureConfidence
1.0
 Kid Radd (Webcomic)
hasFeature
Cap / int_b0c8849e
 Cap / int_b1e46e9a
type
Cap
 Cap / int_b1e46e9a
comment
In a weird case of parodying, Adventurers!! features (mostly in the final battle sequences) a cap of 9,999, with better attacks basing themselves on doing more hits than just 1. The interesting part is that three characters actually break this cap: a deity turned into a summon (99,999), Karashi with her ultimate weapon (27400) and a powered-up Spybot, who had been never really been known for his combat skills.
The most interesting part: the latter's damage is achieved by a series of melee attacks (each hit goes to 15,000 or something). Although he was flying and rocket boosted, this unnamed attack beats many attacks that were prepared for turns.
The party's shared inventory appears not to allow having more than 99 of any item.
Also, in an interesting metafictional example, the comic number reaches # 999 when the heroes reach the final boss and stays at that for the rest of the comic.
 Cap / int_b1e46e9a
featureApplicability
1.0
 Cap / int_b1e46e9a
featureConfidence
1.0
 Adventurers! (Webcomic)
hasFeature
Cap / int_b1e46e9a
 Cap / int_b3f3b0b7
type
Cap
 Cap / int_b3f3b0b7
comment
Dyztopia: Post-Human RPG:
The level cap used to be 60, but the November 2023 update increased it to 70 to compensate for the newly added Superboss fight against Archdemon Ophiuchus. However, party members won't gain FP after level 60.
Most consumables have a cap of 9, but weaker ones like the "H. Nut" have a cap of 25.
The inventory can contain up to 200 weapons and 200 pieces of armor. Body armor, accessories, and skill shards all count as armor.
 Cap / int_b3f3b0b7
featureApplicability
1.0
 Cap / int_b3f3b0b7
featureConfidence
1.0
 Dyztopia: Post-Human RPG (Video Game)
hasFeature
Cap / int_b3f3b0b7
 Cap / int_b4967d43
type
Cap
 Cap / int_b4967d43
comment
In the old Sonic the Hedgehog games, the time is capped at 9 minutes and 59 seconds, with the added caveat that you die if you reach that time.
In the first act of Sonic the Hedgehog 3's Launch Base Zone, there is a way to summon an infinite series of robots and destroy them almost instantly. Do this until you run out of time several times, and you will have the maximum score and a LOT of lives (more than 200). Here's how to do it: There's an alarm near the beginning of a level that summons a flying robot. If you do a power up for a spin dash and don't release down, the robot will fly into you and be destroyed—and another will be summoned. When you destroy several monsters in succession, the score you gain goes up: 100 for the first, 200, then 500, then 1,000. After about a 14 monsters, the score goes up to a cap of 10,000 and you get a new life every 50,000 points). There is a life cap and a score cap, and eventually you'll reach one of them.
In Sonic 3D: Flickies' Island, you cannot have more than 9 lives at a time. The Sonic Advance Trilogy has a variation of this, as the life counter only displays "9", though you can get more than 9 lives.
The Game Gear version of Sonic the Hedgehog and the original release of Sonic the Hedgehog CD also have counters that top out at nine, but excess lives could be kept in escrow.
Sonic Generations has a point cap of 99,999 and a life cap of 99. Score can (theoretically) reach 6 digits, but getting an S rank in a stage usually means you've obtained a score of around 50,000. Therefore, it's highly unlikely (if not impossible) to break 6 digits.
In Knuckles Chaotix, the most rings you can get in a level is 255. Anything beyond that gives you 4,000 points a ring. Also, the most rings you can take into a special stage is 200.
 Cap / int_b4967d43
featureApplicability
1.0
 Cap / int_b4967d43
featureConfidence
1.0
 Sonic the Hedgehog (Franchise)
hasFeature
Cap / int_b4967d43
 Cap / int_b55b8015
type
Cap
 Cap / int_b55b8015
comment
The Ninja Gaiden Arcade Game capped at 999,900. However, because the score reset when you continued, this was only possible if you...er, found some method of not running out of time, then killed tons of river monsters (the only respawning enemies in the game).
 Cap / int_b55b8015
featureApplicability
1.0
 Cap / int_b55b8015
featureConfidence
1.0
 Ninja Gaiden (Video Game)
hasFeature
Cap / int_b55b8015
 Cap / int_b5a2b326
type
Cap
 Cap / int_b5a2b326
comment
In The Elder Scrolls III: Morrowind, all attributes and all skills have a natural cap of 100. Thanks to Fortification spells and potions, however, this number could be increased above 100 for extended periods. Through a potion Fortification stacking trick, one could cause overflow errors (e.g., Fortifying STR and attacking something) and freeze the game.
This is true of Oblivion as well, but with console commands (presumably in either game) one can explore the true limits of character stats. For attributes and skills it's 255, for mana it's a complex 60,000-ish number. (Note that this only applies to the natural limits; with the aforementioned fortification spells, a person could bring their stats into the thousands. See it here.)
The stats and skills may exceed the cap in numbers, but the effects of them are capped at 100 from within the engine, so even modders can't break the effective 100-limit. The exceptions are Athletics and Acrobatics; the player can run faster and jump higher up to the 255-limit.
While in game spells don't get any stronger, increasing your skill past 100 continues to make them cheaper to cast.
That, however, is not true of Morrowind. The other skills do not have their effects capped at 100 (though the effect can often be hard to note), and you can jump much, much farther with acrobatics boosted to 1100 than you can with acrobatics boosted to 600.
Being a vampire should let you increase your skills beyond 100, but due to a bug you can't level up your skills if they hit 100 or higher from the vampirism-given skill bonuses.
Use of console commands in Morrowind lets a player set the skill levels to whatever they want. Especially hilarious is the continent-spanning jumps that come with a 9,000 Acrobatics score.
In Skyrim, all skills are capped at 100, although they can be fortified with equipment or potions above this:
The skill cap initially created a level cap of 81. The level cap was removed with the ability to mark a skill as legendary (resetting it to the base of 15 and refunded your perks) allowing you to progress further and eventually claim every single perk.
The physical damage reduction cap for armour is 80%, or 567 armor rating. Going above this cap has no more effect on damage reduction, although higher armor ratings will still display as if they were actually doing something.
 Cap / int_b5a2b326
featureApplicability
1.0
 Cap / int_b5a2b326
featureConfidence
1.0
 The Elder Scrolls III: Morrowind (Video Game)
hasFeature
Cap / int_b5a2b326
 Cap / int_b643928f
type
Cap
 Cap / int_b643928f
comment
The max score in Bookworm is 2.14 billion according to Pop Cap.
 Cap / int_b643928f
featureApplicability
1.0
 Cap / int_b643928f
featureConfidence
1.0
 Bookworm (Video Game)
hasFeature
Cap / int_b643928f
 Cap / int_b995f75c
type
Cap
 Cap / int_b995f75c
comment
Zoo Keeper (1983) only displays a 6-digit score counter. This is in a game where it is possible to get up to 30,000,000 points in a single jump. The game internally keeps track of up to 99,999,990 points though.
 Cap / int_b995f75c
featureApplicability
1.0
 Cap / int_b995f75c
featureConfidence
1.0
 Zoo Keeper (1983) (Video Game)
hasFeature
Cap / int_b995f75c
 Cap / int_b9c76a6e
type
Cap
 Cap / int_b9c76a6e
comment
Family Double Dare originally used the three-digit scoreboards in the upfront game but one family dominated with a $1,050 blowout win. The display could only read "050" leading to Marc claiming they broke the scoreboard.
 Cap / int_b9c76a6e
featureApplicability
1.0
 Cap / int_b9c76a6e
featureConfidence
1.0
 Double Dare (1986)
hasFeature
Cap / int_b9c76a6e
 Cap / int_ba297634
type
Cap
 Cap / int_ba297634
comment
The King of Dragons for the SNES has a lives cheat which gets one 99 lives by taking advantage of the combined life pool. A single player would use up the standard allotment until only one life remained. While the continue counted down, a second player would join, using the remaining life credit. The first player would then choose to continue, causing the life credits to wraparound from 0 to 99.
 Cap / int_ba297634
featureApplicability
1.0
 Cap / int_ba297634
featureConfidence
1.0
 The King of Dragons (Video Game)
hasFeature
Cap / int_ba297634
 Cap / int_ba6cc3a1
type
Cap
 Cap / int_ba6cc3a1
comment
Granblue Fantasy:
With regards to characters, weapons, and summons, the Level Cap is represented by the number of stars. If the said character or item has reached its cap, it will no longer gain additional levels until it is uncapped one more (unless of course, the last uncap is reached). Though characters can still improve by means of accumulating Extended Mastery Levels and Perks.
As a part of gameplay balancing, there is also a Damage Cap to a majority of the skills and abilities of characters. However, this can be increased by "DMG Cap Up" buffs and perks that will amplify the damage dealt only if the character is perfectly capable of reaching the damage cap.
Certain Buffs and Debuffs also have a cap on the maximum amount of stat increments or decrements that can be applied to the party or to the enemy.
 Cap / int_ba6cc3a1
featureApplicability
1.0
 Cap / int_ba6cc3a1
featureConfidence
1.0
 Granblue Fantasy (Video Game)
hasFeature
Cap / int_ba6cc3a1
 Cap / int_bb435cf2
type
Cap
 Cap / int_bb435cf2
comment
In Phantom Breaker: Battlegrounds, characters' levels are initially capped at 50. With the release of DLC that added Kurisu Makise from Steins;Gate as a Guest Fighter, the cap is raised to 99, allowing the player to fully maximize their characters' stat points.
 Cap / int_bb435cf2
featureApplicability
1.0
 Cap / int_bb435cf2
featureConfidence
1.0
 Phantom Breaker (Video Game)
hasFeature
Cap / int_bb435cf2
 Cap / int_bc63151
type
Cap
 Cap / int_bc63151
comment
Going Under: Debt can't be deeper than -100 before it stops letting you go more in debt.
 Cap / int_bc63151
featureApplicability
1.0
 Cap / int_bc63151
featureConfidence
1.0
 Going Under (Video Game)
hasFeature
Cap / int_bc63151
 Cap / int_bc907c69
type
Cap
 Cap / int_bc907c69
comment
The Tetris: The Grand Master series has a unique kind of level cap. You gain 1 level every time you drop a piece or clear a line, but once you are one level below a multiple of 100 or level 999 (the last level), your level stops increasing until you clear a line. This seems useful at first, but causes you to waste time if you're going for a time-sensitive rank, or if the mode you're in has a torikan (a checkpoint that, if reached too slowly, yields a Nonstandard Game Over).
 Cap / int_bc907c69
featureApplicability
1.0
 Cap / int_bc907c69
featureConfidence
1.0
 Tetris: The Grand Master (Video Game)
hasFeature
Cap / int_bc907c69
 Cap / int_bcadd7cb
type
Cap
 Cap / int_bcadd7cb
comment
Warhammer 40,000 has an unofficial limit of models having a maximum of 10 wounds, which is not coincidentally also the highest damage that can be done with the most powerful weapons that use a 10-sided die to roll damage. Although the system is perfectly capable of handling any numbers you care to choose, no models have been released that exceed these; since the only models that tough are greater demons, avatars of gods and the like, none are likely to.
 Cap / int_bcadd7cb
featureApplicability
1.0
 Cap / int_bcadd7cb
featureConfidence
1.0
 Warhammer 40,000 (Tabletop Game)
hasFeature
Cap / int_bcadd7cb
 Cap / int_bcc05def
type
Cap
 Cap / int_bcc05def
comment
The arcade Bad Dudes capped your score at 999,990.
As did nearly every other Data East game of that era; it was just really easy with Bad Dudes (pretty much guaranteed if you played all the way through 1-player). It was possible in Sly Spy if you were willing to spend some time blowing up respawning mines.
 Cap / int_bcc05def
featureApplicability
1.0
 Cap / int_bcc05def
featureConfidence
1.0
 Bad Dudes (Video Game)
hasFeature
Cap / int_bcc05def
 Cap / int_be68ee29
type
Cap
 Cap / int_be68ee29
comment
Super Smash Bros. for Nintendo 3DS and Wii U: You can only make up to 89 Mii Fighters.
 Cap / int_be68ee29
featureApplicability
1.0
 Cap / int_be68ee29
featureConfidence
1.0
 Super Smash Bros. for Nintendo 3DS and Wii U (Video Game)
hasFeature
Cap / int_be68ee29
 Cap / int_beac6ffb
type
Cap
 Cap / int_beac6ffb
comment
In The Legend of Zelda: Majora's Mask, the banker in Clock Town will hold on to your Rupees so you can have more available than your wallet can carry. But once you go over 5,000 Rupees, he himself will refuse to hold any more. If the player has a full wallet and 4,999 Rupees in the bank, he'll take whatever you give him but no more.
 Cap / int_beac6ffb
featureApplicability
1.0
 Cap / int_beac6ffb
featureConfidence
1.0
 The Legend of Zelda: Majora's Mask (Video Game)
hasFeature
Cap / int_beac6ffb
 Cap / int_c0c57462
type
Cap
 Cap / int_c0c57462
comment
The caps in Chrono Trigger are a bit of an oddball compared to other Square-made Role Playing Games. The heroes' HP and MP cap at 999 and 99, respectively, one-tenth of the values Final Fantasy heroes have. However the heroes still deal damage comparable to Final Fantasy heroes, and their damage cap is 9,999 (Ayla's strongest fists hit this cap with every critical). Meanwhile, the enemies that deal 700 damage on a strike are genuinely terrifying.
 Cap / int_c0c57462
featureApplicability
1.0
 Cap / int_c0c57462
featureConfidence
1.0
 Chrono Trigger (Video Game)
hasFeature
Cap / int_c0c57462
 Cap / int_c15169e3
type
Cap
 Cap / int_c15169e3
comment
8 Beat Story:
The number of Energy Blues that can be held on a player is limited at 100 per type.
The number of event items that can be held on a player is limited at 30,000.
 Cap / int_c15169e3
featureApplicability
1.0
 Cap / int_c15169e3
featureConfidence
1.0
 8 Beat Story (Video Game)
hasFeature
Cap / int_c15169e3
 Cap / int_c19c6efa
type
Cap
 Cap / int_c19c6efa
comment
In Minecraft the majority of items/blocks have a maximum stack of 64. A few have a maximum stack of 16, and before the release of Beta 1.8, food had a max stack of 1. This is slightly different than most examples, as instead of being a maximum holding capacity for a particular item, you can carry as many stacks of the item as will fit into your inventory. The maximum distance you can travel on foot from the map center before block physics stop working and the game becomes completely unplayable is X/Z ±32,000,000 blocks.
 Cap / int_c19c6efa
featureApplicability
1.0
 Cap / int_c19c6efa
featureConfidence
1.0
 Minecraft (Video Game)
hasFeature
Cap / int_c19c6efa
 Cap / int_c1f68d22
type
Cap
 Cap / int_c1f68d22
comment
Open Sorcery: In Open Sorcery, 100% for relationships. It's possible to add 50% to an 80% with Decker, but that just leaves it at 100%.
 Cap / int_c1f68d22
featureApplicability
1.0
 Cap / int_c1f68d22
featureConfidence
1.0
 Open Sorcery (Video Game)
hasFeature
Cap / int_c1f68d22
 Cap / int_c2463c55
type
Cap
 Cap / int_c2463c55
comment
Final Fantasy X features an exception should the player ever get a hold of (and properly upgrade) the ultimate weapons for the characters. This raises the damage cap to 99,999; allowing you to kill the final boss in one hit. Given that the caps had always had the aspect of a technological limitation, this was essentially akin to changing the laws of physics.
You can also customize normal weapons to do this, but it requires insane amounts of rare materials, and the ultimate weapons are better anyway since the user's HP boosts the damage they deal. However, you can also customize armor to break the HP/MP limits, bringing them up to 99,999 and 9,999 respectively. The optional bosses practically necessitated the HP boost.
The Optional Boss Neslug goes beyond the second damage limit with the Regen-like status it gains while it's in its shell, healing a six-digit amount of HP on some turns. AAAAAARGH!!
And finally, if the summon animations are turned off, Anima can do 7 digit damage with her Overdrive in the International version of the game.
Stats max out at 255; however, using Cheer on a character with maxed-out Strength or Defense will still raise those stats.
And even with breaking the damage cap, Penance is still a Marathon Boss of legendary proportions. 99,999 damage against its 12 million HP is a drop in the bucket.
In an inverse example, in the chocobo race sidequest to get the sigil for Tidus' ultimate weapon, the lowest time that is shown is capped at 0.0 seconds. This has confused and frustrated some players in that you need a time of less than zero; getting a time of exactly zero won't get you the Sun Sigil, but both are displayed as 0.0 seconds on the results screen. You could always just do the math yourself, though.
Kimahri becomes a Low-Tier Letdown in Final Fantasy X. While all characters are ultimately limited by the damage cap, they can overcome the 99,999 limit by attacking more than once through overdrives. Khimari is the only one who, even with his overdrive, cannot hit more than once.
 Cap / int_c2463c55
featureApplicability
1.0
 Cap / int_c2463c55
featureConfidence
1.0
 Final Fantasy X (Video Game)
hasFeature
Cap / int_c2463c55
 Cap / int_c326acd9
type
Cap
 Cap / int_c326acd9
comment
The Inazuma Eleven series limits you to carrying 99 of any given item. However, unlike most examples of an item quantity cap, further duplicates are not simply discarded or lost. Instead, they're automatically sold, and the game will report you gaining the sell value of the item rather than the item itself.
 Cap / int_c326acd9
featureApplicability
1.0
 Cap / int_c326acd9
featureConfidence
1.0
 Inazuma Eleven (Video Game)
hasFeature
Cap / int_c326acd9
 Cap / int_c42e88f4
type
Cap
 Cap / int_c42e88f4
comment
Marvel vs. Capcom 2 has an arbitrary 50-hit limit for combos, meaning that if you reach that hitcount, your opponent will be flung high into the air, invincible to your attacks until they get back up again. Suffice to say, tournament players quickly found ways to break that limit.
Marvel vs. Capcom: Infinite has a similar limitation on performing 20 light punches in a single combo (even if both characters participate). When that happens the engine throws the opponent into a vertical tailspin and out of harm's way.
 Cap / int_c42e88f4
featureApplicability
1.0
 Cap / int_c42e88f4
featureConfidence
1.0
 Marvel vs. Capcom 2 (Video Game)
hasFeature
Cap / int_c42e88f4
 Cap / int_c43ed6f1
type
Cap
 Cap / int_c43ed6f1
comment
Boktai infamously had very high item caps. You could carry 99 of each individual type of item, and having 8 different kinds of health-replenishing apples alone that were handed out in ludicrous quantities for good ratings in levels (often as many as 20 apples at a time), it meant it was almost impossible to die (it was difficult to reach even Sol City without apples in the high 80s). Later games amended this by having not only limited inventory space but also items that could spoil in time to prevent hoarding the good ones.
 Cap / int_c43ed6f1
featureApplicability
1.0
 Cap / int_c43ed6f1
featureConfidence
1.0
 Boktai (Video Game)
hasFeature
Cap / int_c43ed6f1
 Cap / int_c4e008eb
type
Cap
 Cap / int_c4e008eb
comment
In Sonic 3D: Flickies' Island, you cannot have more than 9 lives at a time. The Sonic Advance Trilogy has a variation of this, as the life counter only displays "9", though you can get more than 9 lives.
The Game Gear version of Sonic the Hedgehog and the original release of Sonic the Hedgehog CD also have counters that top out at nine, but excess lives could be kept in escrow.
 Cap / int_c4e008eb
featureApplicability
1.0
 Cap / int_c4e008eb
featureConfidence
1.0
 Sonic 3D: Flickies' Island (Video Game)
hasFeature
Cap / int_c4e008eb
 Cap / int_c54045d1
type
Cap
 Cap / int_c54045d1
comment
Loop Hero: The max number of cards that can be held for placement at once, and the number of unworn equipment, is 12.
 Cap / int_c54045d1
featureApplicability
1.0
 Cap / int_c54045d1
featureConfidence
1.0
 Loop Hero (Video Game)
hasFeature
Cap / int_c54045d1
 Cap / int_c716e9ff
type
Cap
 Cap / int_c716e9ff
comment
Fantasy Zone caps score at 99,999,990 points, which can only be reached by looping the game many times. The stage counter also stops at 99, which can be reached on the 13th loop. However, the game's Nintendo Hard; not many gamers can clear the game even once.
 Cap / int_c716e9ff
featureApplicability
1.0
 Cap / int_c716e9ff
featureConfidence
1.0
 Fantasy Zone (Video Game)
hasFeature
Cap / int_c716e9ff
 Cap / int_c747c41c
type
Cap
 Cap / int_c747c41c
comment
The Guardian Legend has an extreme example of this. Older versions of the game will crash if you max out the score. This is especially bad, since the game gives you life-increase bonuses when you reach certain plateaus.
 Cap / int_c747c41c
featureApplicability
1.0
 Cap / int_c747c41c
featureConfidence
1.0
 The Guardian Legend (Video Game)
hasFeature
Cap / int_c747c41c
 Cap / int_c7ce3663
type
Cap
 Cap / int_c7ce3663
comment
Disgaea 6: Defiance of Destiny: Some of the highest damage recorded in-game has been somewhere within the sextillions, with septillions being possible in a combo. Mana count for a character can be somewhere in the hundred trillions, HP and SP have been in the hundred Quintillions, and stats themselves can go into the trillions, if not quadrillions.
 Cap / int_c7ce3663
featureApplicability
1.0
 Cap / int_c7ce3663
featureConfidence
1.0
 Disgaea 6: Defiance of Destiny (Video Game)
hasFeature
Cap / int_c7ce3663
 Cap / int_c861aa06
type
Cap
 Cap / int_c861aa06
comment
Psionics: The Next Stage in Human Evolution:
Stats for normal humans are capped at 6.
Stats for espers and certain special humans are capped at 10.
Espers with somakinesis have a base stat cap of 10, like any other esper, however, the passive bonus to speed and strength they receive means that their passive maximum speed and strength can go up to 14 and they can temporarily boost them up to 18. To put that in perspective, a boosting, max level somakinetic with a base speed of 10 can run three times faster than the fastest human to ever live.
 Cap / int_c861aa06
featureApplicability
1.0
 Cap / int_c861aa06
featureConfidence
1.0
 Psionics: The Next Stage in Human Evolution (Tabletop Game)
hasFeature
Cap / int_c861aa06
 Cap / int_ca192152
type
Cap
 Cap / int_ca192152
comment
Afterimage: Most items are capped at 999 each in your inventory, though some consumables have smaller caps, such as Tree Radish Meat Stew being limited to a maximum of 5.
 Cap / int_ca192152
featureApplicability
1.0
 Cap / int_ca192152
featureConfidence
1.0
 Afterimage (Video Game)
hasFeature
Cap / int_ca192152
 Cap / int_ca4925a9
type
Cap
 Cap / int_ca4925a9
comment
Born Under the Rain: The potion refill crate says:
 Cap / int_ca4925a9
featureApplicability
1.0
 Cap / int_ca4925a9
featureConfidence
1.0
 Born Under the Rain (Video Game)
hasFeature
Cap / int_ca4925a9
 Cap / int_ca713b1c
type
Cap
 Cap / int_ca713b1c
comment
Fatal Frame: The inventory cap alows 99 of every film-type and health restorative item, like Sacred Water and Herbal Medicine. But the player is allowed to carry only 1 Stone Mirror at a time. However, the fifth game removed the cap on the Mirrorstones.
 Cap / int_ca713b1c
featureApplicability
1.0
 Cap / int_ca713b1c
featureConfidence
1.0
 Fatal Frame (Video Game)
hasFeature
Cap / int_ca713b1c
 Cap / int_cab3141e
type
Cap
 Cap / int_cab3141e
comment
Shantae and the Seven Sirens:
Shantae can only hold 9 of a consumable item at most.
Monster Cards probably have a cap, but it's at least 40.
Shantae can hold up to 999 gems.
 Cap / int_cab3141e
featureApplicability
1.0
 Cap / int_cab3141e
featureConfidence
1.0
 Shantae and the Seven Sirens (Video Game)
hasFeature
Cap / int_cab3141e
 Cap / int_cbae024e
type
Cap
 Cap / int_cbae024e
comment
Twitter: You can only post 500,000 tweets a day. You can also only follow up to a maximum amount of 5,000 accounts until you get a certain number of accounts to follow you.
 Cap / int_cbae024e
featureApplicability
1.0
 Cap / int_cbae024e
featureConfidence
1.0
 Twitter
hasFeature
Cap / int_cbae024e
 Cap / int_cbf0ee94
type
Cap
 Cap / int_cbf0ee94
comment
Unlike other MMOs which cap the number of players per server, and also usually use instancing to limit the number of players in one location, EVE Online has absolutely no limits on players at all - everyone plays on the same server and is able to travel to any system and interact with any other player in the game. This has required all kinds of clever tricks in both the hardware and software running the game to cope with having several thousand people all taking part in a single fight.
 Cap / int_cbf0ee94
featureApplicability
1.0
 Cap / int_cbf0ee94
featureConfidence
1.0
 EVE Online (Video Game)
hasFeature
Cap / int_cbf0ee94
 Cap / int_cc01f6bc
type
Cap
 Cap / int_cc01f6bc
comment
Galaga can only display 6 digits for the first player, but can display 7 digits on the second player's side. Either will roll over when it exceeds its limit. For this reason, very skilled players will play on the 2P side so they don't have to keep track of the millions. Also, for whatever reason, extra lives stop being given after 1,000,000 points.
 Cap / int_cc01f6bc
featureApplicability
1.0
 Cap / int_cc01f6bc
featureConfidence
1.0
 Galaga (Video Game)
hasFeature
Cap / int_cc01f6bc
 Cap / int_cc9f0389
type
Cap
 Cap / int_cc9f0389
comment
Titan Quest: There are caps on the various kind of speed possible:
Attack Speeds:
Dual thrown weapons have their attack speed capped at 141%.
Thrown weapons used alone or with a shield have their attack speed capped at 208%.
Dual Swords, Axes and Clubs, are capped at 200%.
Swords, Clubs, Axes, and Spears alone or with a shield, and bows, at 222%.
Staffs at 229%.
Fists or Fists and Shields: 300%
Movement speed is capped at 166%.
 Cap / int_cc9f0389
featureApplicability
1.0
 Cap / int_cc9f0389
featureConfidence
1.0
 Titan Quest (Video Game)
hasFeature
Cap / int_cc9f0389
 Cap / int_cdbca8cf
type
Cap
 Cap / int_cdbca8cf
comment
The Tree of Life:
Color levels and B buyables are capped at 5000.
Nitrogen XXV's effect maxes out at 1e50000.
Dilation can't be completed more than 110 times.
Gem effects max out at 10000.
Life exponential dividers are hardcapped at 1e9.
Mu II is capped at 1e50 until you reach 5e1435 Cells.
The Primary challenge can be beaten up to 10 times (later extended to 25), Secondary 95, and Tertiary 3.
With Tissue LXIII, the goal for the Primary challenge doesn't go above 1e8500 Stem Cells.
The level cap for Taxonomy buyables is 400. The Chromosomes III upgrade increases that by 4*(Chromosomes-37), eventually capping at 850. Then the Chromosomes VIII upgrade increases that by 3*Chromosomes, going as high as 1100. Then the Chromosomes 14 milestone increases that further by Chromosomes - 234, up to 1210. Chromosome Milestone 29 then replaces that with 1500+Nucleuses, but Chromosome Milestone 32 reduces that to 1200+Nucleuses. Some other upgrades and Truly Chromosomeless also affect the cap, but the main affecting factor in the end is Human Milestone 44 which makes it 10*Plants (which is further boosted by Human Milestones 71 and 95) and is expected to go above 1e20 by the endgame.
Multiplier from Humans to Biomass gain is limited to 1e100, the one to Ecosystem gain to 1e500, and the rest to 1e1000.
The effects of "Give me a place to stand and I will move the earth" always have some kind of limit. They are eventually maxed at .08/2.6/.08.
The Reduce buyable in Nitrogen Science maxes out at 6.
Science and Nitrogen Science bonus from Lives caps at 1e10.
 Cap / int_cdbca8cf
featureApplicability
1.0
 Cap / int_cdbca8cf
featureConfidence
1.0
 The Tree of Life (Video Game)
hasFeature
Cap / int_cdbca8cf
 Cap / int_cdeed79a
type
Cap
 Cap / int_cdeed79a
comment
Autoduel from Origin Systems has a cap of $1,000,000.00 for your money (easily reached by gambling in Atlantic City). If you are about to get more than that the IRS investigate you and confiscate your money beyond that limit.
 Cap / int_cdeed79a
featureApplicability
1.0
 Cap / int_cdeed79a
featureConfidence
1.0
 Car Wars (Tabletop Game)
hasFeature
Cap / int_cdeed79a
 Cap / int_d212a05e
type
Cap
 Cap / int_d212a05e
comment
Resonance of Fate has an item cap of 999, and a level cap of 300. There are three categories of weapons (handguns, machineguns, and throwing weapons), each with a level cap of 100; a character's total level is the sum of the levels of each weapon type.
 Cap / int_d212a05e
featureApplicability
1.0
 Cap / int_d212a05e
featureConfidence
1.0
 Resonance of Fate (Video Game)
hasFeature
Cap / int_d212a05e
 Cap / int_d29994ae
type
Cap
 Cap / int_d29994ae
comment
Live A Live: In the remake, the maximum value for any stat before equipment is taken into account is 99, at that point the stat will stop increasing when gaining levels. After equipment the max value is 150, this means any additional boosts beyond that are "wasted" and it's better to swap equipment for something boosts a stat that hasn't reached 150 or provides some other benefit like status immunities.
 Cap / int_d29994ae
featureApplicability
1.0
 Cap / int_d29994ae
featureConfidence
1.0
 Live A Live (Video Game)
hasFeature
Cap / int_d29994ae
 Cap / int_d4fa523c
type
Cap
 Cap / int_d4fa523c
comment
In Faria, the player character's level maxes out at 30, and hit points, ammo and magic stats are all capped at 250.
 Cap / int_d4fa523c
featureApplicability
1.0
 Cap / int_d4fa523c
featureConfidence
1.0
 Faria (Video Game)
hasFeature
Cap / int_d4fa523c
 Cap / int_d6f8eb21
type
Cap
 Cap / int_d6f8eb21
comment
Guwange has a score cap of 99,999,999 points, which has been reached.
The Xbox 360 port adds an extra digit, though (start at 5:23)
 Cap / int_d6f8eb21
featureApplicability
1.0
 Cap / int_d6f8eb21
featureConfidence
1.0
 Guwange (Video Game)
hasFeature
Cap / int_d6f8eb21
 Cap / int_d8811eb6
type
Cap
 Cap / int_d8811eb6
comment
Damage caps usually come into play in Captain SNES: The Game Masta whenever characters enter into a world with a JRPG system, mainly because Alex is obsessive enough to have leveled his characters as far as they will go. In one particularly interesting example; a Sorrow-possessed Lucca manages to break both her usual health cap (going from 999/999 to 0000/0000), and Final Fantasy IV's damage cap. However, she doesn't go past 9,999 by going into five digits, she does it by using four digits... in base sixteen! note For those who don't want to work out the hexadecimal notation, "D6DB" comes out to 55003 points of damage. Lucca Lampshades this in a few comics: "But I did more damage to you than is even possible!"
When she scans him after the Lampshade, he's short of his maximum health by that exact amount.
 Cap / int_d8811eb6
featureApplicability
1.0
 Cap / int_d8811eb6
featureConfidence
1.0
 Captain SNES: The Game Masta (Webcomic)
hasFeature
Cap / int_d8811eb6
 Cap / int_d9990a0a
type
Cap
 Cap / int_d9990a0a
comment
Eternal Senia: For its multiple games:
Eternal Senia:
Senia's max level is 50.
Senia can only hold 99 of any item.
Eternal Senia: Hydrangea After The Rain: Cap of Level 100 for these:
Senia's level.
Weapon levels.
 Cap / int_d9990a0a
featureApplicability
1.0
 Cap / int_d9990a0a
featureConfidence
1.0
 Eternal Senia (Video Game)
hasFeature
Cap / int_d9990a0a
 Cap / int_da92c130
type
Cap
 Cap / int_da92c130
comment
Erfworld:  The world has caps on most things, both hard caps (impossible to exceed) and soft caps (impractical or inefficient to exceed).
Cities cap at level 5.  Their cities can be highly customized so that they are effectively higher level, but they will not produce extra Schmuckers or give more money when razed.
Theoretically, a Side can have an unlimited number of cities, but there is a diminishing return on Schmuckers that cities produce.  At around ten to fifteen cities, all your cities will be producing next to nothing.  Haffaton once had sixty-nine cities, but they only managed it with judicious use of magic (which their Chief Caster squandered in an effort to prove that her discipline was superior), and even then they had a laughably small army that even the smallest Side would find easy pickings.  The standard way of getting around this cap is to spin off some of the cities into their own allied Side.
Sides have no limit to the amount of Schmuckers they can keep in their treasury, but barbarian warlords can only hold an amount in their purse equal to their level times a thousand.  They can get around it by carrying gems that can later be converted into Schmuckers.
There is no known maximum unit level, but experience required to advance in level appears to operate on a logarithmic scale (it's hard to say for sure, since Erfworlders don't have an innate sense of their own experience bar).  Regardless, gaining higher levels is extremely difficult; level 10 warlords and casters are rare but a Side will usually have at least one, while anything above that is almost unheard of.  The highest level we've actually seen is a level 12 Hippiemancer.
Stacks are small formations of units.  Stacks gain a bonus for each unit in the stack, maxing out at eight and decaying from there.  Eight-man stacks are therefore quite common, but the actual hard cap is a function of the size of the units making up the stack.  The smallest units, like scouting bats, have a theoretically unlimited stack size.  While normally they're too weak to be useful, Transylvito has found that stuffing a few dozen bats into the Chief Warlord's stack makes each individual bat on par with heavy infantry, albeit of the Glass Cannon variety.
 Cap / int_da92c130
featureApplicability
1.0
 Cap / int_da92c130
featureConfidence
1.0
 Erfworld (Webcomic)
hasFeature
Cap / int_da92c130
 Cap / int_db50113f
type
Cap
 Cap / int_db50113f
comment
Kirby's Dream Land 2 has a score cap of 9,999,990, which is possible to reach within a week or so of playing (because the score is kept unless you game over). Once you reach the cap though, anything that would add points would simply convert into one-ups, with the sound. As cool as this may seem, as you'll never worry about dying, the sound will get old after five minutes.
 Cap / int_db50113f
featureApplicability
1.0
 Cap / int_db50113f
featureConfidence
1.0
 Kirby's Dream Land 2 (Video Game)
hasFeature
Cap / int_db50113f
 Cap / int_db59313b
type
Cap
 Cap / int_db59313b
comment
Pac-Man Fever has a few games where it's possible to score higher than 999, most notably Vend-A-Fruit. Interestingly enough, while the game can recognize scores higher than 999 (and will place them accordingly), they'll all show as 999 on the high score table.
 Cap / int_db59313b
featureApplicability
1.0
 Cap / int_db59313b
featureConfidence
1.0
 Pac-Man (Video Game)
hasFeature
Cap / int_db59313b
 Cap / int_dbee7cb5
type
Cap
 Cap / int_dbee7cb5
comment
Shantae and the Pirate's Curse:
The max number of gems that Shantae can hold is 999.
The max stack of an item that Shantae can hold is 9.
 Cap / int_dbee7cb5
featureApplicability
1.0
 Cap / int_dbee7cb5
featureConfidence
1.0
 Shantae and the Pirate's Curse (Video Game)
hasFeature
Cap / int_dbee7cb5
 Cap / int_dbf18509
type
Cap
 Cap / int_dbf18509
comment
The current highest possible one-day score on Jeopardy! is $566,400. This is only obtainable under if ALL of the following conditions are met:
One player has to respond to all clues correctly, completely shutting out the other two contestants.
The first round's Daily Double has to be in the $200 slot (the current lowest value per clue).
The second round's two Daily Doubles have to be in the $400 position in two different categories.
The Daily Doubles MUST be the last clues selected in their respective rounds.
The contestant must go double-or-nothing on all three Daily Doubles and respond correctly to each.
The contestant must also go double-or-nothing on the Final Jeopardy clue and, once again, respond correctly.
 Cap / int_dbf18509
featureApplicability
1.0
 Cap / int_dbf18509
featureConfidence
1.0
 Jeopardy!
hasFeature
Cap / int_dbf18509
 Cap / int_de1259da
type
Cap
 Cap / int_de1259da
comment
In Super Monkey Ball Banana Blitz, the highest possible score in the Number Ball mini-game is 9,800. The game crashes the instant you hit 9,900.
 Cap / int_de1259da
featureApplicability
1.0
 Cap / int_de1259da
featureConfidence
1.0
 Super Monkey Ball (Video Game)
hasFeature
Cap / int_de1259da
 Cap / int_df344113
type
Cap
 Cap / int_df344113
comment
Crush Crush:
The levels of hobbies is capped at 75.
Reset Boosts can't go higher than 2048.
 Cap / int_df344113
featureApplicability
1.0
 Cap / int_df344113
featureConfidence
1.0
 Crush Crush (Video Game)
hasFeature
Cap / int_df344113
 Cap / int_df9e0da3
type
Cap
 Cap / int_df9e0da3
comment
In Jazz Jackrabbit, you can only collect each weapon type up to 99 in the story levels and up to 50 in the multiplayer ones like the Battle, Treasure Hunt and Capture levels.
 Cap / int_df9e0da3
featureApplicability
1.0
 Cap / int_df9e0da3
featureConfidence
1.0
 Jazz Jackrabbit (Video Game)
hasFeature
Cap / int_df9e0da3
 Cap / int_e144ba19
type
Cap
 Cap / int_e144ba19
comment
Dragon Age II has a level cap of 50, but if you do everything, you'd be somewhere around halfway there.
 Cap / int_e144ba19
featureApplicability
1.0
 Cap / int_e144ba19
featureConfidence
1.0
 Dragon Age II (Video Game)
hasFeature
Cap / int_e144ba19
 Cap / int_e19d973b
type
Cap
 Cap / int_e19d973b
comment
Initial D Arcade Stage has a points cap of 16,777,215. A bug in the early version of ID:AS Ver.2 only protected against an underflow for 1,000-point losses in Bunta Challenge mode, and if the player lost 2,000 points at once, the counter could roll under and loop around to 16.77 million.
 Cap / int_e19d973b
featureApplicability
1.0
 Cap / int_e19d973b
featureConfidence
1.0
 Initial D Arcade Stage (Video Game)
hasFeature
Cap / int_e19d973b
 Cap / int_e22c949c
type
Cap
 Cap / int_e22c949c
comment
Dragon Quest:
The level cap for the original Dragon Quest was 30, which you would reach at 65,535(16 bits) EXP, with 255(8 bits) for the stats. You stop learning new spells at level 20, but the additional experience for each new level doesn't change. You can gain levels faster and faster as your stats rise until you hit the cap. Given that you can beat the Dragonlord at level 19, with some luck, anything beyond about level 25 is overkill anyway. If you reach the level cap of 30 in the NES version, the king will ask why you haven't yet slain the Dragonlord.
In Dragon Quest II the EXP cap was raised to 1,000,000 for each character, but they had different experience tables resulting in level caps of 50, 40, and 35.
In Dragon Quest III the maximum level for any class is the standard 99 and EXP caps somewhere over 9 million (most likely either 9,999,999 or 24 bits). Every game after this uses a level cap of 99 save for a few recruitable monsters.
Dragon Quest V: Annoyingly, many monsters have a level cap lower than that of the human characters (who all can reach level 99). However, the only way to find out in-game if they've hit it is to go to a Save Point and ask how far they have until their next level.
 Cap / int_e22c949c
featureApplicability
1.0
 Cap / int_e22c949c
featureConfidence
1.0
 DragonQuest
hasFeature
Cap / int_e22c949c
 Cap / int_e26a4546
type
Cap
 Cap / int_e26a4546
comment
In all Tenchu games, there's a cap on the total number of items you can carry into any stage, as well as specific cap for each item that limits how many of a single item you can pack along for the ride.
 Cap / int_e26a4546
featureApplicability
1.0
 Cap / int_e26a4546
featureConfidence
1.0
 Tenchu (Video Game)
hasFeature
Cap / int_e26a4546
 Cap / int_e26d37ec
type
Cap
 Cap / int_e26d37ec
comment
Tetris Friends in Arena Mode caps players' ratings at 19,999. The reason for this strange number seems to stem from the game's ratings-based ranks. A new rank is awarded every 1,000 points (so players with a 0-999 rating are "Newbies", 1,000-1,999 are "Novices", etc.), and it appears they simply ran out of rank names. Of course, the ratings are moot anyways since the entire Top 100 leaderboard is tied at 19,999, due to the ability to prevent ratings decreases entirely via Bribing Your Way to Victory.
 Cap / int_e26d37ec
featureApplicability
1.0
 Cap / int_e26d37ec
featureConfidence
1.0
 Tetris / Videogame
hasFeature
Cap / int_e26d37ec
 Cap / int_e39afa46
type
Cap
 Cap / int_e39afa46
comment
Exponential Idle defines infinity as its cap for money. At first, it's ee200$, or 10^10^200$. However, doing a Supremacy eventually lets you increase the infinite value. High scores show that the real cap has not been reached as of 2022, but it's definitely higher than ee59999$.
 Cap / int_e39afa46
featureApplicability
1.0
 Cap / int_e39afa46
featureConfidence
1.0
 Exponential Idle (Video Game)
hasFeature
Cap / int_e39afa46
 Cap / int_e3bd358
type
Cap
 Cap / int_e3bd358
comment
Touhou Kaeidzuka ~ Phantasmagoria of Flower View's Extra Mode makes it impossible to earn a tenth life - the player has to start with one life, and no extra lives were awarded after the 8th one.
 Cap / int_e3bd358
featureApplicability
1.0
 Cap / int_e3bd358
featureConfidence
1.0
 Touhou Kaeidzuka ~ Phantasmagoria of Flower View (Video Game)
hasFeature
Cap / int_e3bd358
 Cap / int_e408ecdf
type
Cap
 Cap / int_e408ecdf
comment
Giana Sisters DS caps the number of extra lives Giana can have at 99.
 Cap / int_e408ecdf
featureApplicability
1.0
 Cap / int_e408ecdf
featureConfidence
1.0
 Giana Sisters DS (Video Game)
hasFeature
Cap / int_e408ecdf
 Cap / int_e5d5d23c
type
Cap
 Cap / int_e5d5d23c
comment
The Doom engine can support custom monsters with a maximum HP of 2,147,483,647. The strongest boss in the vanilla game has 4000, so two billion should be enough for even the most masochistic creator.
 Cap / int_e5d5d23c
featureApplicability
1.0
 Cap / int_e5d5d23c
featureConfidence
1.0
 Doom (Video Game)
hasFeature
Cap / int_e5d5d23c
 Cap / int_e5da0072
type
Cap
 Cap / int_e5da0072
comment
Muri: A cap of 99 of each ammo type, unless they've been made infinite by a Power-Up.
 Cap / int_e5da0072
featureApplicability
1.0
 Cap / int_e5da0072
featureConfidence
1.0
 Muri (Video Game)
hasFeature
Cap / int_e5da0072
 Cap / int_e62b7190
type
Cap
 Cap / int_e62b7190
comment
Virtua Cop 3 has a score cap of 99,999,999. A combination of building up your score multiplier and using Exceeding Sense to Shoot The Bullets for massive points can make reaching this score very much possible by the end of the game.
 Cap / int_e62b7190
featureApplicability
1.0
 Cap / int_e62b7190
featureConfidence
1.0
 Virtua Cop (Video Game)
hasFeature
Cap / int_e62b7190
 Cap / int_e72137be
type
Cap
 Cap / int_e72137be
comment
Bloodstained: Ritual of the Night: Miriam's Level cap is 99, someone on gamefaqs wrote that without her attribute enhancing shards on and after eating food her max stats are HP 2271, MP 1447, STR 160, CON 164, INT 188, MND 188 and LUCK 83. What wasn't mentioned was her max AMMO and if they had found all the HP & MP UP items. One extra note on Miriam's caps, New Game Plus won't help much except to get power-ups not found the first time, getting a HP Up from the same place has no effect. Additionally there are various caps on her shards, inventory and familiars.
 Cap / int_e72137be
featureApplicability
1.0
 Cap / int_e72137be
featureConfidence
1.0
 Bloodstained: Ritual of the Night (Video Game)
hasFeature
Cap / int_e72137be
 Cap / int_e8cba250
type
Cap
 Cap / int_e8cba250
comment
The Milestone Tree: Transcend points are hardcapped at 1e16 to prevent milestone cost scaling from starting too late.
 Cap / int_e8cba250
featureApplicability
1.0
 Cap / int_e8cba250
featureConfidence
1.0
 The Milestone Tree (Video Game)
hasFeature
Cap / int_e8cba250
 Cap / int_eb6719f6
type
Cap
 Cap / int_eb6719f6
comment
Final Fantasy VIII also has a few specific attacks that can exceed the 9,999 damage cap. There are some attacks that do fall under the damage cap yet are more damaging than those that don't. This is because they can hit multiple times per turn, and it's each individual hit (not the cumulative damage from all of them) that is subject to the cap. Thus, Quistis's best attack (the Blue Magic skill Shockwave Pulsar, one hit with a theoretical maximum of 32,672 damage; while this is lower than the secondary damage cap, it's the highest that the spell's damage formula allows) is far inferior to Squall's (up to 24 hits with a theoretical maximum of 9,999 each or 239,976 total). Especially since achieving the theoretical maximum damage from Squall's ultimate attack is very doable, while for Quistis it's virtually impossible. The most powerful single-hit attack comes from the Eden summon, which can deal up to 60,000 damage.note Due to the data storage system, this is the most damage any single attack in the game can deal. Eden's damage formula would otherwise allow for significantly higher damage than this.
Impressive as that is, the king here is Zell. By repeatedly putting in the weakest commands of his Duel techniques, you can get in a long string of rapid hits. Since each of these is 2 buttons long, it's possible to put in each command in 0.10 seconds according to the game's timer which ranges from giving 2 to 12 seconds. With Zell's ultimate weapon and everything else normal, he would probably come right around or right under Squall. With an enemy under the effects of Meltdown (Defense reduced to 0), Zell at 255 for his strength stat and twelve seconds on the clock, he has to potential to hit in the lower 700,000s. Give or take 200,000 to account for the possible critical hits. This has the appropriate nick name Armageddon Fist. Source.
 Cap / int_eb6719f6
featureApplicability
1.0
 Cap / int_eb6719f6
featureConfidence
1.0
 Final Fantasy VIII (Video Game)
hasFeature
Cap / int_eb6719f6
 Cap / int_eb6802b4
type
Cap
 Cap / int_eb6802b4
comment
Final Fantasy XIII has a cap of 99,999 for single hits; Summons, Death and equipping a certain item can move the cap to 999,999 and there is an achievement for doing 6 digits in one hit. The Final Boss has close to 15 million HP so 99,999 is not all that high in perspective.
The sequel generally has 99,999 cap on all forms of damage, with DLC-only Valkyrie Lightning being the only one with the skill to increase it to 999,999: thus, the max damage achievement is lowered to 99,999 points of damage and the last form of the final boss only has slightly over 1 million HP, with the Optional Bosses maxing out at 15.5 million.
 Cap / int_eb6802b4
featureApplicability
1.0
 Cap / int_eb6802b4
featureConfidence
1.0
 Final Fantasy XIII (Video Game)
hasFeature
Cap / int_eb6802b4
 Cap / int_ecb18afb
type
Cap
 Cap / int_ecb18afb
comment
Touhou Seirensen ~ Undefined Fantastic Object initially had a Game-Breaking Bug where it would crash trying to display 10-digit scores. This was patched, but the score counter still displays incorrectly if your score is over 2,147,483,647 (231-1), instead displaying your score minus 4,294,967,296 (232) and replacing the negative sign with an "x". Scores do display correctly on the high scores leaderboards and replays menu after the patch, though.
 Cap / int_ecb18afb
featureApplicability
1.0
 Cap / int_ecb18afb
featureConfidence
1.0
 Touhou Seirensen ~ Undefined Fantastic Object (Video Game)
hasFeature
Cap / int_ecb18afb
 Cap / int_ecd2d797
type
Cap
 Cap / int_ecd2d797
comment
In the first Baldur's Gate, you were allowed an unlimited number of summons. In the sequel this was nerfed to a maximum of 5. That doesn't stop you from mind controlling an infinite number of monsters however.
 Cap / int_ecd2d797
featureApplicability
1.0
 Cap / int_ecd2d797
featureConfidence
1.0
 Baldur's Gate (Video Game)
hasFeature
Cap / int_ecd2d797
 Cap / int_ed422854
type
Cap
 Cap / int_ed422854
comment
No Man's Sky: The maximum amount of units a player can carry is 4,294,967,295.note This is stored as a 32 bit integer value, which in hexidecimal is FFFF FFFF. In theory it's possible for Hello Games to make the cap higher by making it a 64 bit value instead, but really, what are you going to do with more than 4 billion units anyway?
 Cap / int_ed422854
featureApplicability
1.0
 Cap / int_ed422854
featureConfidence
1.0
 No Man's Sky (Video Game)
hasFeature
Cap / int_ed422854
 Cap / int_ee384546
type
Cap
 Cap / int_ee384546
comment
Cyberpunk 2077 caps both Character Level and "Street Cred" (a sort of fame meter that unlocks additional content) at 50, although due to how XP rewards work in the game, you are likely to max out Street Cred, unlocking all of the optional side content, long before hitting the level cap.note At release day (i.e. before any DLC), the game has had just enough content for you to hit level 50 before the Point of No Return, provided if you complete every gig, side job, and police dispatch you can find. Apart from these two, V's five core Stats are capped at 20, and their subordinate skill scores are capped by the current value of the corresponding stat.
 Cap / int_ee384546
featureApplicability
1.0
 Cap / int_ee384546
featureConfidence
1.0
 Cyberpunk 2077 (Video Game)
hasFeature
Cap / int_ee384546
 Cap / int_ee666734
type
Cap
 Cap / int_ee666734
comment
Mushihime Sama Futari versions 1.01 and 1.5 have a score cap of 3,999,999,999 points. The Black Label version averts this. However, the Xbox 360 port once again has one; it is possible to reach 9,999,999,999 points in Arrange Mode.
 Cap / int_ee666734
featureApplicability
1.0
 Cap / int_ee666734
featureConfidence
1.0
 Mushihime-sama (Video Game)
hasFeature
Cap / int_ee666734
 Cap / int_f120845f
type
Cap
 Cap / int_f120845f
comment
The online game Kingdom of Loathing had an infamous example where the problem of poorly capped Global Currency resulted in the massive bug known as "Black Sunday". An item called the Meat Vortex could steal meat (your currency in this game) from enemies in combat, but it lowered the amount of meat you had if used any other time. If you had 0 meat, using a meat vortex from your inventory caused the value to roll under, thus placing you at the maximum possible integer amount of meat, which at the time was 2^64-1, or 18,446,744,073,709,551,615. This hosed the game's economy for several months, but was eventually mostly fixed through currency sinks. The cap itself has also been lowered to 2^32-1, or 4,294,967,295.
 Cap / int_f120845f
featureApplicability
1.0
 Cap / int_f120845f
featureConfidence
1.0
 Kingdom of Loathing (Video Game)
hasFeature
Cap / int_f120845f
 Cap / int_f1785a72
type
Cap
 Cap / int_f1785a72
comment
Gran Turismo:
In 3, there's a glitch where if you do a wheelie with a tuned-up Escudo, the speedometer jumps to 2147483647 and locks up the game.
Gran Turismo 5, 6, and Sport have money caps of 20 million, 50 million, and 20 million credits, respectively —compared to previous iterations when you could have as much as hundreds of millions of credits.
In a similar way, in Gran Turismo 2 you can't have more than 100 cars, which ruins the "Gotta Catch 'Em All" self-imposed challenge.
 Cap / int_f1785a72
featureApplicability
1.0
 Cap / int_f1785a72
featureConfidence
1.0
 Gran Turismo (Video Game)
hasFeature
Cap / int_f1785a72
 Cap / int_f3d674c8
type
Cap
 Cap / int_f3d674c8
comment
In Dead Rising 2: Off the Record, one of the items you can carry is Zombrex which is a medication required to temporarily halt the progress of the zombie parasite that Frank has. You only need 6 to complete the game (8 for all side quests). However, there is a limit of 60 programmed (you can still pick up more than 60, but your counter won't count past 60). There are around 10 that can be found for free either laying around in the world or can be awarded from survivors/psychopaths. There is no way to reach this in regular gameplay without grinding lots of money to be used at pawn shops to buy more Zombrex. This cap doesn't really mean much because there's no benefit to carrying more Zombrex because there's nothing else that you can do with it, and you lose all of your Zombrex on a New Game+ anyway.
And of course, the money in this game is capped to $2,147,483,647. Getting more money than that will overflow your score and put it into the negatives. However, the developers have anticipated that possibility and made it so if you get money while you have a negative amount, your money will continue to climb up until it reaches 0, so a save file won't be stuck in debt for long periods of time.
 Cap / int_f3d674c8
featureApplicability
1.0
 Cap / int_f3d674c8
featureConfidence
1.0
 Dead Rising 2: Off the Record (Video Game)
hasFeature
Cap / int_f3d674c8
 Cap / int_f46a85a4
type
Cap
 Cap / int_f46a85a4
comment
The Communitree:
After removing their softcaps, the "Initialize.", "Coding.", and "Release." upgrades have a hardcap of 1e1,000,000.
You can only have 100 buildings of each type in the Farming tab of the Acamaeda layer.
Quest difficulty caps at 999,999,999,999.
 Cap / int_f46a85a4
featureApplicability
1.0
 Cap / int_f46a85a4
featureConfidence
1.0
 The Communitree (Video Game)
hasFeature
Cap / int_f46a85a4
 Cap / int_f6bdc380
type
Cap
 Cap / int_f6bdc380
comment
Postknight: At version 1.0.17(124), the maximum level is 70.
 Cap / int_f6bdc380
featureApplicability
1.0
 Cap / int_f6bdc380
featureConfidence
1.0
 Postknight (Video Game)
hasFeature
Cap / int_f6bdc380
 Cap / int_f6fb1f35
type
Cap
 Cap / int_f6fb1f35
comment
In A Wild Last Boss Appeared!, the highest Character Level possible is level 1000. This is an artificial limitation set by the goddess Alovenus, to ensure no one becomes powerful enough to break the world. Lufas and Benetnash were able to break through the goddess's restrictions and surpass that limit.
 Cap / int_f6fb1f35
featureApplicability
1.0
 Cap / int_f6fb1f35
featureConfidence
1.0
 A Wild Last Boss Appeared!
hasFeature
Cap / int_f6fb1f35
 Cap / int_f790b90f
type
Cap
 Cap / int_f790b90f
comment
Mogeko Castle: Yonaka is able to collect 99 of every item.
 Cap / int_f790b90f
featureApplicability
1.0
 Cap / int_f790b90f
featureConfidence
1.0
 Mogeko Castle (Video Game)
hasFeature
Cap / int_f790b90f
 Cap / int_f7c8e36e
type
Cap
 Cap / int_f7c8e36e
comment
Both Octopath Traveler and Octopath Traveler II have a damage cap of 9,999 which can be raised to 99,999 with a Warrior passive skill.
 Cap / int_f7c8e36e
featureApplicability
1.0
 Cap / int_f7c8e36e
featureConfidence
1.0
 Octopath Traveler (Video Game)
hasFeature
Cap / int_f7c8e36e
 Cap / int_f7d89303
type
Cap
 Cap / int_f7d89303
comment
The Compact Tree: Dust that can be owned at once is capped based on compactors.
 Cap / int_f7d89303
featureApplicability
1.0
 Cap / int_f7d89303
featureConfidence
1.0
 The Compact Tree (Video Game)
hasFeature
Cap / int_f7d89303
 Cap / int_f8257957
type
Cap
 Cap / int_f8257957
comment
In Pokémon Sleep, the Pokémon level cap depends on your current Research Level, which increases until Lv. 55. However, the third ingredient a Pokémon can gather is unlocked at Lv. 60, hinting that this might be increased in future updates.
 Cap / int_f8257957
featureApplicability
1.0
 Cap / int_f8257957
featureConfidence
1.0
 Pokémon Sleep (Video Game)
hasFeature
Cap / int_f8257957
 Cap / int_f891a20d
type
Cap
 Cap / int_f891a20d
comment
Terraria has a maximum item stack per inventory space: if a stack is filled, any other open slot can have a new stack of the same item. Usually, blocks, ammo, and torches as of 1.4 stack at 999, Healing Potions and food stacks at 30, and tools and weapons only have stacks of 1.
 Cap / int_f891a20d
featureApplicability
1.0
 Cap / int_f891a20d
featureConfidence
1.0
 Terraria (Video Game)
hasFeature
Cap / int_f891a20d
 Cap / int_fa575b33
type
Cap
 Cap / int_fa575b33
comment
Wangan Midnight Maximum Tune 2 has you collect a star for every opponent for defeat in versus mode. The stars cap out at 3,999. Interestingly, once you're over 2,000 stars, a last-place finish in an in-store versus battle will remove a star.
 Cap / int_fa575b33
featureApplicability
1.0
 Cap / int_fa575b33
featureConfidence
1.0
 Wangan Midnight (Video Game)
hasFeature
Cap / int_fa575b33
 Cap / int_fa5e90fd
type
Cap
 Cap / int_fa5e90fd
comment
About 18 months after the game was first released, City of Heroes capped the number of enemies you could "aggro" (hold the attention of) at once. Although this seems purely beneficial, the cap was still well above what the more delicate character types could withstand, so the actual purpose was to keep the tankers from being able to lure obscene amounts of critters into a confined space for easy disposal.
Speaking of City of..., while the individual characters have caps on how much buffing will affect them (example, a Brute cannot deal more than 850% base damage with an attack), the individual damage dealt isn't capped. This was proved when a bugged power was dealing 10x the target's hit points in damage. The game had to switch to using scientific notation to express the damage dealt.
There's also a cap for how much damage a player can take in one hit. Assuming you start off with full hp, NOTHING can kill you in one hit. You can be brought down to 1 hp, after which anything can kill you, but not killed in one attack.
There's also a limit of 2 billion influence (currency). This is arbitrary, but the integer limit is just over 2 billion (see the World of Warcraft example below), so the devs decided to just cap it at a nice, round even number.
 Cap / int_fa5e90fd
featureApplicability
1.0
 Cap / int_fa5e90fd
featureConfidence
1.0
 City of Heroes (Video Game)
hasFeature
Cap / int_fa5e90fd
 Cap / int_fa97835d
type
Cap
 Cap / int_fa97835d
comment
In Knuckles Chaotix, the most rings you can get in a level is 255. Anything beyond that gives you 4,000 points a ring. Also, the most rings you can take into a special stage is 200.
 Cap / int_fa97835d
featureApplicability
1.0
 Cap / int_fa97835d
featureConfidence
1.0
 Knuckles' Chaotix (Video Game)
hasFeature
Cap / int_fa97835d
 Cap / int_fad1ddfe
type
Cap
 Cap / int_fad1ddfe
comment
The Last Starfighter uses a high score as a means to recruit candidates. In the novelization, said high score involves breaking the score cap.
 Cap / int_fad1ddfe
featureApplicability
1.0
 Cap / int_fad1ddfe
featureConfidence
1.0
 The Last Starfighter
hasFeature
Cap / int_fad1ddfe
 Cap / int_fb0bfff3
type
Cap
 Cap / int_fb0bfff3
comment
You can't score more than 99 runs in Arc Style: Baseball!! 3D. If you get another player home, the scoreboard will still display 99.
 Cap / int_fb0bfff3
featureApplicability
1.0
 Cap / int_fb0bfff3
featureConfidence
1.0
 Arc Style: Baseball!! 3D (Video Game)
hasFeature
Cap / int_fb0bfff3
 Cap / int_fb83c1fe
type
Cap
 Cap / int_fb83c1fe
comment
X Com UFO Defense has several.
Transports carry 80 items of equipment. It doesn't matter how big each piece is, they all count one - a pistol magazine takes up the same amount of space as an Auto-cannon. This can get annoying.
Laser weapons are listed as having unlimited ammo, but their actual capacity is hardware capped at exactly 255 (2^8-1) shots. Granted, it is bordering on impossible to fire 255 shots in a mission unless you are actively trying to, but still.
Abilities are similarly hardware capped at 255 (2^8-1). This is more of a problem, since pushing a character over 255 time units, causing an overflow error and leaving you with a highly skilled and valuable soldier who can't move, is actually something that can conceivably happen during normal gameplay.
 Cap / int_fb83c1fe
featureApplicability
1.0
 Cap / int_fb83c1fe
featureConfidence
1.0
 X-COM: UFO Defense (Video Game)
hasFeature
Cap / int_fb83c1fe
 Cap / int_fb9fefa6
type
Cap
 Cap / int_fb9fefa6
comment
Hc Svnt Dracones: Traits range from 1 to 5 dice, Mind and Body traits can't get past 3 without augmentations, and the surgeries that enable higher traits can only be used to raise traits from 4 to 5 three times. Proficiencies range from 0 to 4 dots, the number of 3-dot skills that a character can have is limited by their Mind:Strength stat and achieving 4 dots in a proficiency requires a special quest. And the number of Focus abilities is limited by the number of proficiencies at 3 dots or higher.
 Cap / int_fb9fefa6
featureApplicability
1.0
 Cap / int_fb9fefa6
featureConfidence
1.0
 Hc Svnt Dracones (Tabletop Game)
hasFeature
Cap / int_fb9fefa6
 Cap / int_fc411d2f
type
Cap
 Cap / int_fc411d2f
comment
Bloodline Champions has a maximum amount of health that a bloodline can regenerate from healing abilities. If their health goes below that, it cannot be regained aside from using the impractical-near-opponents Bloodline Medallion.
 Cap / int_fc411d2f
featureApplicability
1.0
 Cap / int_fc411d2f
featureConfidence
1.0
 Bloodline Champions (Video Game)
hasFeature
Cap / int_fc411d2f
 Cap / int_fe85bfc8
type
Cap
 Cap / int_fe85bfc8
comment
Super Smash Bros.:
The series sets the damage cap at 999%. If you haven't already gone flying offscreen by that point, you certainly will now.
Super Smash Bros. Melee: Normally, the Super Scope can only shoot a total of 13 projectiles, but it can be abused to generate an infinite amount of ammo, which is most likely due to an overflow.
Super Smash Bros. for Nintendo 3DS and Wii U: You can only make up to 89 Mii Fighters.
 Cap / int_fe85bfc8
featureApplicability
1.0
 Cap / int_fe85bfc8
featureConfidence
1.0
 Super Smash Bros. (Video Game)
hasFeature
Cap / int_fe85bfc8
 Cap / int_ff0f1797
type
Cap
 Cap / int_ff0f1797
comment
In Rogue Galaxy, you can store 99 of anything in your warehouse, and carry up to 99 of the various materials needed for Item Crafting or unlocking abilities, but healing items have much less forgiving limits.
 Cap / int_ff0f1797
featureApplicability
1.0
 Cap / int_ff0f1797
featureConfidence
1.0
 Rogue Galaxy (Video Game)
hasFeature
Cap / int_ff0f1797
 Cap / int_ffd41b1b
type
Cap
 Cap / int_ffd41b1b
comment
Touhou Reiiden ~ Highly Responsive to Prayers has a 7-digit score counter; if the player passes 10,000,000 the counter rolls over, but the full score is still stored and is displayed at the evaluation screen at the end of the game.
 Cap / int_ffd41b1b
featureApplicability
1.0
 Cap / int_ffd41b1b
featureConfidence
1.0
 Touhou Reiiden ~ Highly Responsive to Prayers (Video Game)
hasFeature
Cap / int_ffd41b1b

The following is a list of statements referring to the current page from other pages.

 Cap
processingCategory2
Acceptable Breaks from Reality
 Cap
processingCategory2
Number Tropes
 Peanuts (Comic Strip) / int_834427cd
type
Cap
 Arcanum (Fanfic) / int_834427cd
type
Cap
 Now You Feel Like Number None (Fanfic) / int_834427cd
type
Cap
 Willow / int_834427cd
type
Cap
 Disgaea (Franchise) / int_834427cd
type
Cap
 Fatal Frame (Franchise) / int_834427cd
type
Cap
 Fire Emblem (Franchise) / int_834427cd
type
Cap
 Twitch Plays Pokémon Metronome Sapphire (Lets Play) / int_834427cd
type
Cap
 A Wild Last Boss Appeared! / int_834427cd
type
Cap
 Log Horizon / int_834427cd
type
Cap
 So I'm a Spider, So What? / int_834427cd
type
Cap
 That Time I Got Reincarnated as a Slime / int_834427cd
type
Cap
 The Magicians / int_834427cd
type
Cap
 Threadbare / int_834427cd
type
Cap
 Void Forge / int_834427cd
type
Cap
 CaP
sameAs
Cap
 DawnOfHeroes
seeAlso
Cap
 Give-N-Take
seeAlso
Cap
 How Video Game Specs Work
seeAlso
Cap
 So Bad, It's Good / int_834427cd
type
Cap
 Tanto
seeAlso
Cap
 Magical Taruruto-kun (Manga) / int_834427cd
type
Cap
 UQ Holder! (Manga) / int_834427cd
type
Cap
 Shadows over the South (Roleplay) / int_834427cd
type
Cap
 Skylessia (Roleplay) / int_834427cd
type
Cap
 Couch Potatoes / int_834427cd
type
Cap
 Double Dare (1986) / int_834427cd
type
Cap
 Give-N-Take
seeAlso
Cap
 Jungle Run / int_834427cd
type
Cap
 Match Game / int_834427cd
type
Cap
 Scrabble / int_834427cd
type
Cap
 Supermarket Sweep / int_834427cd
type
Cap
 The Gong Show / int_834427cd
type
Cap
 Who Wants to Be a Millionaire? / int_834427cd
type
Cap
 GURPS (Tabletop Game) / int_834427cd
type
Cap
 Arkham Horror: The Card Game (Tabletop Game) / int_834427cd
type
Cap
 Blades in the Dark (Tabletop Game) / int_834427cd
type
Cap
 Castlevania: Nocturne of the Tabletop (Tabletop Game) / int_834427cd
type
Cap
 Final Girl (Tabletop Game) / int_834427cd
type
Cap
 Oko Yrrhedesa (Tabletop Game) / int_834427cd
type
Cap
 Princess: The Hopeful (Tabletop Game) / int_834427cd
type
Cap
 Psionics: The Next Stage in Human Evolution (Tabletop Game) / int_834427cd
type
Cap
 The Witcher: Game of Imagination (Tabletop Game) / int_834427cd
type
Cap
 Unknown Armies (Tabletop Game) / int_834427cd
type
Cap
 A Girl Adrift (Video Game) / int_834427cd
type
Cap
 AI War: Fleet Command (Video Game) / int_834427cd
type
Cap
 A Very Long Rope to the Top of the Sky (Video Game) / int_834427cd
type
Cap
 ActRaiser (Video Game) / int_834427cd
type
Cap
 Advent Incremental (Video Game) / int_834427cd
type
Cap
 Adventure Kingdom (Video Game) / int_834427cd
type
Cap
 AdventureQuest 3D (Video Game) / int_834427cd
type
Cap
 AdventureQuest Worlds (Video Game) / int_834427cd
type
Cap
 Aetherius (Video Game) / int_834427cd
type
Cap
 Afterimage (Video Game) / int_834427cd
type
Cap
 Age of Empires Online (Video Game) / int_834427cd
type
Cap
 Akai Katana (Video Game) / int_834427cd
type
Cap
 Akanesasu Sekai de Kimi to Utau (Video Game) / int_834427cd
type
Cap
 Alien Carnage (Video Game) / int_834427cd
type
Cap
 Alien: Isolation (Video Game) / int_834427cd
type
Cap
 Alter A.I.L.A. (Video Game) / int_834427cd
type
Cap
 Anti-Idle: The Game (Video Game) / int_834427cd
type
Cap
 Antimatter Dimensions (Video Game) / int_834427cd
type
Cap
 Antreematter Dimensions (Video Game) / int_834427cd
type
Cap
 Arcaea (Video Game) / int_834427cd
type
Cap
 Arcanum: Of Steamworks &amp; Magick Obscura (Video Game) / int_834427cd
type
Cap
 Arknights (Video Game) / int_834427cd
type
Cap
 Assassin's Creed: Odyssey (Video Game) / int_834427cd
type
Cap
 AtariQwak1974
seeAlso
Cap
 Atlantica Online (Video Game) / int_834427cd
type
Cap
 Balatro (Video Game) / int_834427cd
type
Cap
 BanG Dream! Girls Band Party! (Video Game) / int_834427cd
type
Cap
 Battle Garegga (Video Game) / int_834427cd
type
Cap
 Battlestar Galactica Deadlock (Video Game) / int_834427cd
type
Cap
 Battletoads (Video Game) / int_834427cd
type
Cap
 Beyond the Titanic (Video Game) / int_834427cd
type
Cap
 Black&#9733;Rock Shooter (Video Game) / int_834427cd
type
Cap
 Black Sigil (Video Game) / int_834427cd
type
Cap
 Bleach: The 3rd Phantom (Video Game) / int_834427cd
type
Cap
 Bloodline Champions (Video Game) / int_834427cd
type
Cap
 Bloodstained: Ritual of the Night (Video Game) / int_834427cd
type
Cap
 Bloons Adventure Time TD (Video Game) / int_834427cd
type
Cap
 Blue Archive (Video Game) / int_834427cd
type
Cap
 Blur (2010) (Video Game) / int_834427cd
type
Cap
 Boktai (Video Game) / int_834427cd
type
Cap
 Bookworm (Video Game) / int_834427cd
type
Cap
 Bookworm Adventures (Video Game) / int_834427cd
type
Cap
 Borderlands: The Pre-Sequel! (Video Game) / int_834427cd
type
Cap
 Boxxy Quest (Video Game) / int_834427cd
type
Cap
 BoxxyQuest: The Gathering Storm (Video Game) / int_834427cd
type
Cap
 Brave Hero Yuusha (Video Game) / int_834427cd
type
Cap
 Bravely Default (Video Game) / int_834427cd
type
Cap
 Bravely Default II (Video Game) / int_834427cd
type
Cap
 Bravely Second (Video Game) / int_834427cd
type
Cap
 Bubble Bobble (Video Game) / int_834427cd
type
Cap
 Buddy Toss (Video Game) / int_834427cd
type
Cap
 Bullet Hell Monday (Video Game) / int_834427cd
type
Cap
 Cadence of Hyrule (Video Game) / int_834427cd
type
Cap
 Call of Cthulhu: Dark Corners of the Earth (Video Game) / int_834427cd
type
Cap
 Captain Novolin (Video Game) / int_834427cd
type
Cap
 Card City Nights (Video Game) / int_834427cd
type
Cap
 Castlevania: Circle of the Moon (Video Game) / int_834427cd
type
Cap
 Castlevania II: Simon's Quest (Video Game) / int_834427cd
type
Cap
 Chantelise (Video Game) / int_834427cd
type
Cap
 Chippy (Video Game) / int_834427cd
type
Cap
 Chronicles of Tsufanubra (Video Game) / int_834427cd
type
Cap
 Civilization (Video Game) / int_834427cd
type
Cap
 ClaDun (Video Game) / int_834427cd
type
Cap
 Clash of Clans (Video Game) / int_834427cd
type
Cap
 Code Vein (Video Game) / int_834427cd
type
Cap
 Coinbox Hero (Video Game) / int_834427cd
type
Cap
 Collection of Everything (Video Game) / int_834427cd
type
Cap
 Conquests of the Longbow (Video Game) / int_834427cd
type
Cap
 Conway's Game of Life (Video Game) / int_834427cd
type
Cap
 Cool Spot (Video Game) / int_834427cd
type
Cap
 Crimzon Clover (Video Game) / int_834427cd
type
Cap
 Crush Pinball (Video Game) / int_834427cd
type
Cap
 Crystalis (Video Game) / int_834427cd
type
Cap
 Cube Colossus (Video Game) / int_834427cd
type
Cap
 Cube World (Video Game) / int_834427cd
type
Cap
 Dangun Feveron (Video Game) / int_834427cd
type
Cap
 Darkstone (Video Game) / int_834427cd
type
Cap
 Deepwoken (Video Game) / int_834427cd
type
Cap
 Despacit Tree &#916; (Video Game) / int_834427cd
type
Cap
 Destiny (Video Game) / int_834427cd
type
Cap
 Devil May Cry 4 (Video Game) / int_834427cd
type
Cap
 Devil May Cry 5 (Video Game) / int_834427cd
type
Cap
 Digimon Adventure (PSP) (Video Game) / int_834427cd
type
Cap
 Digimon Survive (Video Game) / int_834427cd
type
Cap
 Digimon World 4 (Video Game) / int_834427cd
type
Cap
 Digimon World -next 0rder- (Video Game) / int_834427cd
type
Cap
 Disc Creatures (Video Game) / int_834427cd
type
Cap
 Disney Dreamlight Valley (Video Game) / int_834427cd
type
Cap
 Disney Emoji Blitz (Video Game) / int_834427cd
type
Cap
 Disney Infinity (Video Game) / int_834427cd
type
Cap
 Disney Magic Kingdoms (Video Game) / int_834427cd
type
Cap
 Disney Tsum Tsum (Video Game) / int_834427cd
type
Cap
 Divinity: Original Sin (Video Game) / int_834427cd
type
Cap
 Divinity: Original Sin II (Video Game) / int_834427cd
type
Cap
 Dokapon Kingdom (Video Game) / int_834427cd
type
Cap
 DonPachi (Video Game) / int_834427cd
type
Cap
 Donkey Kong Country Returns (Video Game) / int_834427cd
type
Cap
 Doom (Video Game) / int_834427cd
type
Cap
 Dragon Quest (Video Game) / int_834427cd
type
Cap
 Dragon Quest Monsters (Video Game) / int_834427cd
type
Cap
 Dragon Quest Monsters: Joker (Video Game) / int_834427cd
type
Cap
 Dragon Quest Monsters: Joker 2 (Video Game) / int_834427cd
type
Cap
 Dragon Quest V (Video Game) / int_834427cd
type
Cap
 Duck Hunt (Video Game) / int_834427cd
type
Cap
 Dungeon Fighter Online (Video Game) / int_834427cd
type
Cap
 Duolingo (Video Game) / int_834427cd
type
Cap
 Dwarf Fortress (Video Game) / int_834427cd
type
Cap
 Dyztopia: Post-Human RPG (Video Game) / int_834427cd
type
Cap
 EVE Online (Video Game) / int_834427cd
type
Cap
 8 Beat Story (Video Game) / int_834427cd
type
Cap
 Elements (Video Game) / int_834427cd
type
Cap
 Elite Beat Agents (Video Game) / int_834427cd
type
Cap
 Epic Seven (Video Game) / int_834427cd
type
Cap
 Eternal Card Game (Video Game) / int_834427cd
type
Cap
 Etrian Odyssey (Video Game) / int_834427cd
type
Cap
 Etrian Odyssey III: The Drowned City (Video Game) / int_834427cd
type
Cap
 Etrian Odyssey Nexus (Video Game) / int_834427cd
type
Cap
 Evolve Idle (Video Game) / int_834427cd
type
Cap
 Exponential Idle (Video Game) / int_834427cd
type
Cap
 FE000000 (Video Game) / int_834427cd
type
Cap
 FTL: Faster Than Light (Video Game) / int_834427cd
type
Cap
 F-Zero: GP Legend (Video Game) / int_834427cd
type
Cap
 Fairune (Video Game) / int_834427cd
type
Cap
 Fallen London (Video Game) / int_834427cd
type
Cap
 Falling Mountain's AlterPrestige (Video Game) / int_834427cd
type
Cap
 Fallout (Video Game) / int_834427cd
type
Cap
 Fallout 76 (Video Game) / int_834427cd
type
Cap
 Fallout Shelter (Video Game) / int_834427cd
type
Cap
 Fantasy Life (Video Game) / int_834427cd
type
Cap
 Fatal Frame (Video Game) / int_834427cd
type
Cap
 Final Fantasy Brave Exvius (Video Game) / int_834427cd
type
Cap
 Final Fantasy Crystal Chronicles: My Life as a King (Video Game) / int_834427cd
type
Cap
 Final Fantasy Legend II (Video Game) / int_834427cd
type
Cap
 Final Fantasy Mystic Quest (Video Game) / int_834427cd
type
Cap
 Final Fantasy Tactics A2 (Video Game) / int_834427cd
type
Cap
 Final Fantasy VIII (Video Game) / int_834427cd
type
Cap
 Final Fantasy XIII (Video Game) / int_834427cd
type
Cap
 Final Fantasy XV (Video Game) / int_834427cd
type
Cap
 Fire Emblem Engage (Video Game) / int_834427cd
type
Cap
 Fire Emblem: Genealogy of the Holy War (Video Game) / int_834427cd
type
Cap
 Fire Emblem: Path of Radiance (Video Game) / int_834427cd
type
Cap
 Five Nights at Freddy's World (Video Game) / int_834427cd
type
Cap
 Flawed Crystals (Video Game) / int_834427cd
type
Cap
 Funko Pop! Blitz (Video Game) / int_834427cd
type
Cap
 Game of War: Fire Age (Video Game) / int_834427cd
type
Cap
 Gauntlet (Video Game) / int_834427cd
type
Cap
 Gemcraft (Video Game) / int_834427cd
type
Cap
 Ghosts 'n Goblins (Video Game) / int_834427cd
type
Cap
 Giga Wing (Video Game) / int_834427cd
type
Cap
 Girl Café Gun (Video Game) / int_834427cd
type
Cap
 Girls' Frontline (Video Game) / int_834427cd
type
Cap
 Girls' Frontline: Neural Cloud (Video Game) / int_834427cd
type
Cap
 Gods of Incremental (Video Game) / int_834427cd
type
Cap
 Going Under (Video Game) / int_834427cd
type
Cap
 GoldenEye (1997) (Video Game) / int_834427cd
type
Cap
 Grand Chase (Video Game) / int_834427cd
type
Cap
 Grand Theft Auto IV (Video Game) / int_834427cd
type
Cap
 Grimms Notes (Video Game) / int_834427cd
type
Cap
 Gundam Wing: Endless Duel (Video Game) / int_834427cd
type
Cap
 Gundemonium Series (Video Game) / int_834427cd
type
Cap
 Half-Minute Hero (Video Game) / int_834427cd
type
Cap
 Hardspace: Shipbreaker (Video Game) / int_834427cd
type
Cap
 Harry Potter: Hogwarts Mystery (Video Game) / int_834427cd
type
Cap
 Harvest Moon (Video Game) / int_834427cd
type
Cap
 Hatsune Miku: Colorful Stage! (Video Game) / int_834427cd
type
Cap
 Hearts of Iron (Video Game) / int_834427cd
type
Cap
 Helldivers II (Video Game) / int_834427cd
type
Cap
 Hellsinker (Video Game) / int_834427cd
type
Cap
 Hero & Daughter (Video Game) / int_834427cd
type
Cap
 Hero Must Die (Video Game) / int_834427cd
type
Cap
 Hill Climb Racing (Video Game) / int_834427cd
type
Cap
 Hollow Knight (Video Game) / int_834427cd
type
Cap
 Home Quest (Video Game) / int_834427cd
type
Cap
 I Miss the Sunrise (Video Game) / int_834427cd
type
Cap
 I, Robot (Video Game) / int_834427cd
type
Cap
 Idle Empire (Video Game) / int_834427cd
type
Cap
 Idle Planet (Video Game) / int_834427cd
type
Cap
 Iji (Video Game) / int_834427cd
type
Cap
 Impressive Title (Video Game) / int_834427cd
type
Cap
 Incremental Mass (Video Game) / int_834427cd
type
Cap
 Incremental Mass: Altrascendum (Video Game) / int_834427cd
type
Cap
 Infinite Craft (Video Game) / int_834427cd
type
Cap
 Infinite Layers (Video Game) / int_834427cd
type
Cap
 Jaws (Video Game) / int_834427cd
type
Cap
 Jazz Jackrabbit (Video Game) / int_834427cd
type
Cap
 Jimmy and the Pulsating Mass (Video Game) / int_834427cd
type
Cap
 Jurassic Park Builder (Video Game) / int_834427cd
type
Cap
 Jurassic World: The Game (Video Game) / int_834427cd
type
Cap
 KanColle (Video Game) / int_834427cd
type
Cap
 Karin's Skin Diving Diary! (Video Game) / int_834427cd
type
Cap
 Kerbal Space Program (Video Game) / int_834427cd
type
Cap
 Kid Icarus (1986) (Video Game) / int_834427cd
type
Cap
 Killer Instinct (Video Game) / int_834427cd
type
Cap
 Killer Instinct (2013) (Video Game) / int_834427cd
type
Cap
 Kingdom Hearts: Birth by Sleep (Video Game) / int_834427cd
type
Cap
 Kingdom Hearts coded (Video Game) / int_834427cd
type
Cap
 King's Knight (Video Game) / int_834427cd
type
Cap
 Klonoa Heroes: Densetsu no Star Medal (Video Game) / int_834427cd
type
Cap
 Knuckles' Chaotix (Video Game) / int_834427cd
type
Cap
 LEGO Adaptation Game (Video Game) / int_834427cd
type
Cap
 Let It Die (Video Game) / int_834427cd
type
Cap
 Link! Like! Love Live! (Video Game) / int_834427cd
type
Cap
 Littlest Pet Shop 3: Biggest Stars (Video Game) / int_834427cd
type
Cap
 Littlest Pet Shop: Friends (Video Game) / int_834427cd
type
Cap
 Live A Hero (Video Game) / int_834427cd
type
Cap
 Love Live! School Idol Festival ALL STARS (Video Game) / int_834427cd
type
Cap
 Lufia (Video Game) / int_834427cd
type
Cap
 Luigi's Mansion 3 (Video Game) / int_834427cd
type
Cap
 Lumines (Video Game) / int_834427cd
type
Cap
 LunarLux (Video Game) / int_834427cd
type
Cap
 Magia Record: Puella Magi Madoka Magica Side Story (Video Game) / int_834427cd
type
Cap
 Mana Series (Video Game) / int_834427cd
type
Cap
 Maneater (Video Game) / int_834427cd
type
Cap
 MapleStory (Video Game) / int_834427cd
type
Cap
 Marathon (Video Game) / int_834427cd
type
Cap
 Marble Madness (Video Game) / int_834427cd
type
Cap
 Mario & Luigi (Video Game) / int_834427cd
type
Cap
 Mario &amp; Luigi: Dream Team (Video Game) / int_834427cd
type
Cap
 Mario Kart (Video Game) / int_834427cd
type
Cap
 Mario Kart 64 (Video Game) / int_834427cd
type
Cap
 Mario Kart 8 (Video Game) / int_834427cd
type
Cap
 Mario Kart Tour (Video Game) / int_834427cd
type
Cap
 Mario + Rabbids Sparks of Hope (Video Game) / int_834427cd
type
Cap
 Marvel: Avengers Alliance (Video Game) / int_834427cd
type
Cap
 Marvel Future Fight (Video Game) / int_834427cd
type
Cap
 Marvel Heroes (Video Game) / int_834427cd
type
Cap
 MARVEL SNAP (Video Game) / int_834427cd
type
Cap
 Marvel vs. Capcom: Infinite (Video Game) / int_834427cd
type
Cap
 Marvel's Avengers (Video Game) / int_834427cd
type
Cap
 Medabots: Metabee and Rokusho (Video Game) / int_834427cd
type
Cap
 Mega Man Battle Network (Video Game) / int_834427cd
type
Cap
 Mega Man Battle Network 6: Cybeast Gregar and Cybeast Falzar (Video Game) / int_834427cd
type
Cap
 Mega Man Maker (Video Game) / int_834427cd
type
Cap
 Mega Man X DiVE (Video Game) / int_834427cd
type
Cap
 Metal Gear (Video Game) / int_834427cd
type
Cap
 Metal Slug Defense (Video Game) / int_834427cd
type
Cap
 Metro 2033 (Video Game) / int_834427cd
type
Cap
 Metro: Last Light (Video Game) / int_834427cd
type
Cap
 Micro Emblem (Video Game) / int_834427cd
type
Cap
 Miitopia (Video Game) / int_834427cd
type
Cap
 Mobius Final Fantasy (Video Game) / int_834427cd
type
Cap
 Mogeko Castle (Video Game) / int_834427cd
type
Cap
 Monster Hunter: World (Video Game) / int_834427cd
type
Cap
 Monster Rancher (Video Game) / int_834427cd
type
Cap
 Monster Sanctuary (Video Game) / int_834427cd
type
Cap
 Mort the Chicken (Video Game) / int_834427cd
type
Cap
 Mortal Kombat 4 (Video Game) / int_834427cd
type
Cap
 Mount & Blade (Video Game) / int_834427cd
type
Cap
 MÚSECA (Video Game) / int_834427cd
type
Cap
 Mushihime-sama (Video Game) / int_834427cd
type
Cap
 My Little Pony (Gameloft) (Video Game) / int_834427cd
type
Cap
 NARC (Video Game) / int_834427cd
type
Cap
 NEO: The World Ends with You (Video Game) / int_834427cd
type
Cap
 NGU IDLE (Video Game) / int_834427cd
type
Cap
 Namu Amida Butsu! -UTENA- (Video Game) / int_834427cd
type
Cap
 Need for Speed: Most Wanted (2012) (Video Game) / int_834427cd
type
Cap
 NEEDY STREAMER OVERLOAD (Video Game) / int_834427cd
type
Cap
 Neopets: The Darkest Faerie (Video Game) / int_834427cd
type
Cap
 NetHack (Video Game) / int_834427cd
type
Cap
 New Super Mario Bros. 2 (Video Game) / int_834427cd
type
Cap
 Night Driver (Video Game) / int_834427cd
type
Cap
 Nobody Saves the World (Video Game) / int_834427cd
type
Cap
 Nocturne (RPG Maker) (Video Game) / int_834427cd
type
Cap
 Noel and the Tower of Doom (Video Game) / int_834427cd
type
Cap
 Novastorm (Video Game) / int_834427cd
type
Cap
 Okiku, Star Apprentice (Video Game) / int_834427cd
type
Cap
 Onmy&#333;ji (2016) (Video Game) / int_834427cd
type
Cap
 Open Sorcery (Video Game) / int_834427cd
type
Cap
 Orchard (Video Game) / int_834427cd
type
Cap
 Orcs Must Die! Unchained (Video Game) / int_834427cd
type
Cap
 Palworld (Video Game) / int_834427cd
type
Cap
 Pandemonium! (1996) (Video Game) / int_834427cd
type
Cap
 Panel de Pon (Video Game) / int_834427cd
type
Cap
 Paper Mario 64 (Video Game) / int_834427cd
type
Cap
 Paper Mario: Sticker Star (Video Game) / int_834427cd
type
Cap
 Perfect Dark (Video Game) / int_834427cd
type
Cap
 Persona 3 Reload (Video Game) / int_834427cd
type
Cap
 Phantasy Star IV (Video Game) / int_834427cd
type
Cap
 Phantasy Star Nova (Video Game) / int_834427cd
type
Cap
 Phantasy Star Online 2es (Video Game) / int_834427cd
type
Cap
 Pinball FX (Video Game) / int_834427cd
type
Cap
 Plague Tree (Video Game) / int_834427cd
type
Cap
 Planar Pioneers (Video Game) / int_834427cd
type
Cap
 Plants vs. Zombies (Video Game) / int_834427cd
type
Cap
 Pokémon Azure (Video Game) / int_834427cd
type
Cap
 Pokémon Clover (Video Game) / int_834427cd
type
Cap
 Pokémon Conquest (Video Game) / int_834427cd
type
Cap
 Pokémon Crystal Clear (Video Game) / int_834427cd
type
Cap
 Pokémon Empire (Video Game) / int_834427cd
type
Cap
 Pokémon Gold and Silver (Video Game) / int_834427cd
type
Cap
 Pokémon: Magikarp Jump (Video Game) / int_834427cd
type
Cap
 Pokémon Red and Blue (Video Game) / int_834427cd
type
Cap
 Pokémon Shuffle (Video Game) / int_834427cd
type
Cap
 Pokémon Sleep (Video Game) / int_834427cd
type
Cap
 Postknight (Video Game) / int_834427cd
type
Cap
 Potion Craft (Video Game) / int_834427cd
type
Cap
 Power Rangers: Battle for the Grid (Video Game) / int_834427cd
type
Cap
 Prayer of the Faithless (Video Game) / int_834427cd
type
Cap
 Prestige Tree (Video Game) / int_834427cd
type
Cap
 Prestige Tree Dimensions (Video Game) / int_834427cd
type
Cap
 Prestige Universe (Video Game) / int_834427cd
type
Cap
 Primordia (2022) (Video Game) / int_834427cd
type
Cap
 Pro Pinball: Big Race USA (Video Game) / int_834427cd
type
Cap
 Pro Pinball: Timeshock! (Video Game) / int_834427cd
type
Cap
 Progressbar 95 (Video Game) / int_834427cd
type
Cap
 Putt Party (Video Game) / int_834427cd
type
Cap
 Puyo Puyo (1991) (Video Game) / int_834427cd
type
Cap
 Puzzle &amp; Dragons (Video Game) / int_834427cd
type
Cap
 Quest for Glory (Video Game) / int_834427cd
type
Cap
 Quiz Nanairo DREAMS (Video Game) / int_834427cd
type
Cap
 Ragnarok (Roguelike) (Video Game) / int_834427cd
type
Cap
 Railroad Tycoon (Video Game) / int_834427cd
type
Cap
 Raindrop: The Battle Of Connecting Hallway (Video Game) / int_834427cd
type
Cap
 Rakenzarn Tales (Video Game) / int_834427cd
type
Cap
 Rapture 30 (Video Game) / int_834427cd
type
Cap
 Rayman 3: Hoodlum Havoc (Video Game) / int_834427cd
type
Cap
 Rayman Legends (Video Game) / int_834427cd
type
Cap
 REELism (Video Game) / int_834427cd
type
Cap
 Replicanti Incremental (Video Game) / int_834427cd
type
Cap
 Resident Evil 2 (Remake) (Video Game) / int_834427cd
type
Cap
 Resident Evil 4 (Video Game) / int_834427cd
type
Cap
 Revolution Idle (Video Game) / int_834427cd
type
Cap
 Risk of Rain 2 (Video Game) / int_834427cd
type
Cap
 Robopon (Video Game) / int_834427cd
type
Cap
 Robotron: 2084 (Video Game) / int_834427cd
type
Cap
 Rockman 7 EP (Video Game) / int_834427cd
type
Cap
 Rolo to the Rescue (Video Game) / int_834427cd
type
Cap
 Ruina: Fairy Tale of the Forgotten Ruins (Video Game) / int_834427cd
type
Cap
 Runes of Magic (Video Game) / int_834427cd
type
Cap
 Ruphand: An Apothecary's Adventure (Video Game) / int_834427cd
type
Cap
 SaGa 2 (Video Game) / int_834427cd
type
Cap
 Sandcastle Builder (Video Game) / int_834427cd
type
Cap
 Satisfactory (Video Game) / int_834427cd
type
Cap
 Science Girls! (Video Game) / int_834427cd
type
Cap
 SegaSonic Bros. (Video Game) / int_834427cd
type
Cap
 Shadowverse (Video Game) / int_834427cd
type
Cap
 Shantae and the Pirate's Curse (Video Game) / int_834427cd
type
Cap
 Shantae and the Seven Sirens (Video Game) / int_834427cd
type
Cap
 Shantae: Half-Genie Hero (Video Game) / int_834427cd
type
Cap
 Shenmue III (Video Game) / int_834427cd
type
Cap
 Shin Megami Tensei IV (Video Game) / int_834427cd
type
Cap
 Shin Megami Tensei Liberation: Dx2 (Video Game) / int_834427cd
type
Cap
 Shiness: The Lightning Kingdom (Video Game) / int_834427cd
type
Cap
 Shovel Knight (Video Game) / int_834427cd
type
Cap
 Sinistar (Video Game) / int_834427cd
type
Cap
 625 Sandwich Stacker (Video Game) / int_834427cd
type
Cap
 Skylanders (Video Game) / int_834427cd
type
Cap
 Smash TV (Video Game) / int_834427cd
type
Cap
 Soaring Machinariae (Video Game) / int_834427cd
type
Cap
 Social Pressure (Video Game) / int_834427cd
type
Cap
 Songs of Conquest (Video Game) / int_834427cd
type
Cap
 Sonic 3 &amp; Knuckles (Video Game) / int_834427cd
type
Cap
 Sonic Speed Simulator (Video Game) / int_834427cd
type
Cap
 Sonic the Hedgehog (Video Game) / int_834427cd
type
Cap
 Sonic the Hedgehog (8-bit) (Video Game) / int_834427cd
type
Cap
 Sonic the Hedgehog 2 (Video Game) / int_834427cd
type
Cap
 Sonic the Hedgehog CD (Video Game) / int_834427cd
type
Cap
 SpellCast (Video Game) / int_834427cd
type
Cap
 Spider-Man (PS4) (Video Game) / int_834427cd
type
Cap
 Spiral Knights (Video Game) / int_834427cd
type
Cap
 SpongeBob SquarePants: Battle for Bikini Bottom (Video Game) / int_834427cd
type
Cap
 Spore Creatures (Video Game) / int_834427cd
type
Cap
 Sryth (Video Game) / int_834427cd
type
Cap
 Standstill Girl (Video Game) / int_834427cd
type
Cap
 Star Conflict (Video Game) / int_834427cd
type
Cap
 Star Fox Adventures (Video Game) / int_834427cd
type
Cap
 StarCraft (Video Game) / int_834427cd
type
Cap
 Stargunner (Video Game) / int_834427cd
type
Cap
 Starsector (Video Game) / int_834427cd
type
Cap
 StreetPass Mii Plaza (Video Game) / int_834427cd
type
Cap
 Streets of Rogue (Video Game) / int_834427cd
type
Cap
 Stunt Race FX (Video Game) / int_834427cd
type
Cap
 Sunset Overdrive (Video Game) / int_834427cd
type
Cap
 Super Kirby Clash (Video Game) / int_834427cd
type
Cap
 Super Mario 3D Land (Video Game) / int_834427cd
type
Cap
 Super Mario 64 (Video Game) / int_834427cd
type
Cap
 Super Mario All-Stars (Video Game) / int_834427cd
type
Cap
 Super Mario Bros. (Video Game) / int_834427cd
type
Cap
 Super Mario Bros. 3 (Video Game) / int_834427cd
type
Cap
 Super Mario Bros. 35 (Video Game) / int_834427cd
type
Cap
 Super Mario Bros. Crossover (Video Game) / int_834427cd
type
Cap
 Super Mario Bros. Wonder (Video Game) / int_834427cd
type
Cap
 Super Mario Kart (Video Game) / int_834427cd
type
Cap
 Super Mario Land 2: 6 Golden Coins (Video Game) / int_834427cd
type
Cap
 Super Mario Maker (Video Game) / int_834427cd
type
Cap
 Super Mario RPG (Video Game) / int_834427cd
type
Cap
 Super Mario Run (Video Game) / int_834427cd
type
Cap
 Super Smash Bros. for Nintendo 3DS and Wii U (Video Game) / int_834427cd
type
Cap
 Swordz.io (Video Game) / int_834427cd
type
Cap
 Tales of Symphonia (Video Game) / int_834427cd
type
Cap
 Team Kirby Clash Deluxe (Video Game) / int_834427cd
type
Cap
 Tecmo Bowl (Video Game) / int_834427cd
type
Cap
 Teki Paki (Video Game) / int_834427cd
type
Cap
 Terminator: Resistance (Video Game) / int_834427cd
type
Cap
 The Art Tree (Video Game) / int_834427cd
type
Cap
 The Bard's Tale Trilogy (Video Game) / int_834427cd
type
Cap
 The Binding of Isaac (Video Game) / int_834427cd
type
Cap
 The Christmas Tree (Video Game) / int_834427cd
type
Cap
 The Communitree (Video Game) / int_834427cd
type
Cap
 The Compact Tree (Video Game) / int_834427cd
type
Cap
 The Ditty of Carmeana (Video Game) / int_834427cd
type
Cap
 The Drop (Video Game) / int_834427cd
type
Cap
 The Dynas Tree (Video Game) / int_834427cd
type
Cap
 The Elder Scrolls Online (Video Game) / int_834427cd
type
Cap
 The Factoree (Video Game) / int_834427cd
type
Cap
 The Fairyland Story (Video Game) / int_834427cd
type
Cap
 The Fermi Paradox (Video Game) / int_834427cd
type
Cap
 The Fuel Tree (Video Game) / int_834427cd
type
Cap
 The Game of Life (Video Game) / int_834427cd
type
Cap
 The Gaokao Tree (Video Game) / int_834427cd
type
Cap
 The Guardian Legend (Video Game) / int_834427cd
type
Cap
 The h0nde Tree (Video Game) / int_834427cd
type
Cap
 theHunter: Call of the Wild (Video Game) / int_834427cd
type
Cap
 THE iDOLM@STER: Million Live! (Video Game) / int_834427cd
type
Cap
 The Incremental Dev Tree (Video Game) / int_834427cd
type
Cap
 The Incremental God Tree (Video Game) / int_834427cd
type
Cap
 The Incrementreeverse (Video Game) / int_834427cd
type
Cap
 The King of Fighters All Star (Video Game) / int_834427cd
type
Cap
 The Kings League (Video Game) / int_834427cd
type
Cap
 The Last of Us Part II (Video Game) / int_834427cd
type
Cap
 The Legend of Heroes: Trails into Reverie (Video Game) / int_834427cd
type
Cap
 The Legend of Zelda: A Link to the Past (Video Game) / int_834427cd
type
Cap
 The Legend of Zelda (Video Game) / int_834427cd
type
Cap
 The Legend of Zelda: Majora's Mask (Video Game) / int_834427cd
type
Cap
 The Legendary Starfy (Video Game) / int_834427cd
type
Cap
 The Milestone Tree (Video Game) / int_834427cd
type
Cap
 The Multitree (Video Game) / int_834427cd
type
Cap
 The Null Tree (Video Game) / int_834427cd
type
Cap
 The Oregon Trail (Video Game) / int_834427cd
type
Cap
 The Outlaw, The Drunk & The Whore (Video Game) / int_834427cd
type
Cap
 The Prestige Rectangle (Video Game) / int_834427cd
type
Cap
 The Prestige Tree: Alternate (Video Game) / int_834427cd
type
Cap
 The Prestreestuck (Video Game) / int_834427cd
type
Cap
 The Riftbreaker (Video Game) / int_834427cd
type
Cap
 The Simpsons Skateboarding (Video Game) / int_834427cd
type
Cap
 The Tree of Death (Video Game) / int_834427cd
type
Cap
 The Tree of Life (Video Game) / int_834427cd
type
Cap
 The Tree of Nerfs 2 (Video Game) / int_834427cd
type
Cap
 The Universe Is Dark (Video Game) / int_834427cd
type
Cap
 The Upgrading Tree (Video Game) / int_834427cd
type
Cap
 The User Tree (Video Game) / int_834427cd
type
Cap
 The Word: TREE (Video Game) / int_834427cd
type
Cap
 Theatrhythm Final Fantasy (Video Game) / int_834427cd
type
Cap
 This War of Mine (Video Game) / int_834427cd
type
Cap
 3D Dot Game Heroes (Video Game) / int_834427cd
type
Cap
 Time Bandit (Video Game) / int_834427cd
type
Cap
 Time Cruise (Video Game) / int_834427cd
type
Cap
 Tiny Toon Adventures (Video Game) / int_834427cd
type
Cap
 Titan Quest (Video Game) / int_834427cd
type
Cap
 Tokyo Xtreme Racer (Video Game) / int_834427cd
type
Cap
 Tomb Raider: Legend (Video Game) / int_834427cd
type
Cap
 Tomodachi Life (Video Game) / int_834427cd
type
Cap
 Toontown Online (Video Game) / int_834427cd
type
Cap
 Total War: Shogun 2 (Video Game) / int_834427cd
type
Cap
 Total War: Warhammer (Video Game) / int_834427cd
type
Cap
 Tower Of The Sorcerer (Video Game) / int_834427cd
type
Cap
 Transistor (Video Game) / int_834427cd
type
Cap
 Transport Tycoon (Video Game) / int_834427cd
type
Cap
 Treasure of Tarmin (Video Game) / int_834427cd
type
Cap
 Uchu Mega Fight (Video Game) / int_834427cd
type
Cap
 Under Defeat (Video Game) / int_834427cd
type
Cap
 Under Mine (Video Game) / int_834427cd
type
Cap
 Universal Paperclips (Video Game) / int_834427cd
type
Cap
 Universe Shrinker (Video Game) / int_834427cd
type
Cap
 Unreal Championship (Video Game) / int_834427cd
type
Cap
 Unreal Championship 2: The Liandri Conflict (Video Game) / int_834427cd
type
Cap
 Unreal Tournament (Video Game) / int_834427cd
type
Cap
 Unreal Tournament 2003 (Video Game) / int_834427cd
type
Cap
 Unreal Tournament 2004 (Video Game) / int_834427cd
type
Cap
 Unreal Tournament 4 (Video Game) / int_834427cd
type
Cap
 Unreal Tournament III (Video Game) / int_834427cd
type
Cap
 Valfaris (Video Game) / int_834427cd
type
Cap
 Valkyria Chronicles 4 (Video Game) / int_834427cd
type
Cap
 Valkyrie Profile (Video Game) / int_834427cd
type
Cap
 Virtua Cop (Video Game) / int_834427cd
type
Cap
 Wario Land 3 (Video Game) / int_834427cd
type
Cap
 Wario Land 4 (Video Game) / int_834427cd
type
Cap
 Weird and Unfortunate Things Are Happening (Video Game) / int_834427cd
type
Cap
 Wii Sports (Video Game) / int_834427cd
type
Cap
 Wii Sports Resort (Video Game) / int_834427cd
type
Cap
 Wizard101 (Video Game) / int_834427cd
type
Cap
 Wizards & Warriors (Video Game) / int_834427cd
type
Cap
 World of Horror (Video Game) / int_834427cd
type
Cap
 Xenoblade Chronicles X (Video Game) / int_834427cd
type
Cap
 Yet Another Merge Game (Video Game) / int_834427cd
type
Cap
 Yu-Gi-Oh! Master Duel (Video Game) / int_834427cd
type
Cap
 Zodiac Story Of The Guardian (Video Game) / int_834427cd
type
Cap
 Zoo Keeper (1983) (Video Game) / int_834427cd
type
Cap
 Zookeeper (Video Game) / int_834427cd
type
Cap
 Ayakashi Ghost Guild (Video Game) / int_834427cd
type
Cap
 Dark Messiah of Might and Magic (Video Game) / int_834427cd
type
Cap
 Disgaea 4: A Promise Unforgotten / Videogame / int_834427cd
type
Cap
 Mario Super Sluggers (Video Game) / int_834427cd
type
Cap
 NieR: Automata / Videogame / int_834427cd
type
Cap
 Rogue Legacy (Video Game) / int_834427cd
type
Cap
 Shadowrun Returns / Videogame / int_834427cd
type
Cap
 Splatoon (Video Game) / int_834427cd
type
Cap
 Mr. Love: Queen's Choice (Visual Novel) / int_834427cd
type
Cap
 Princess Debut (Visual Novel) / int_834427cd
type
Cap
 Tears of Themis (Visual Novel) / int_834427cd
type
Cap
 Twitch Plays Pokémon Metronome Sapphire (Web Video) / int_834427cd
type
Cap
 Unus Annus (Web Video) / int_834427cd
type
Cap
 Adventurers! (Webcomic) / int_834427cd
type
Cap
 Captain SNES: The Game Masta (Webcomic) / int_834427cd
type
Cap
 Erfworld (Webcomic) / int_834427cd
type
Cap
 Manly Guys Doing Manly Things (Webcomic) / int_834427cd
type
Cap
 Paranatural (Webcomic) / int_834427cd
type
Cap
 The Gamer (Webcomic) / int_834427cd
type
Cap
 2/0 (Webcomic) / int_834427cd
type
Cap
 DeviantArt (Website) / int_834427cd
type
Cap
 The RPG Cliches Game (Website) / int_834427cd
type
Cap
 Writing.Com (Website) / int_834427cd
type
Cap
 Bangai-O (Video Game) / int_834427cd
type
Cap
 Dark Sun (Video Game) / int_834427cd
type
Cap
 Pro Pinball: Fantastic Journey (Video Game) / int_834427cd
type
Cap
 Ys (Video Game) / int_834427cd
type
Cap