Frame

From Wavu Wiki, the 🌊 wavy Tekken wiki
Revision as of 03:17, 2 May 2024 by Tricksyfroggy (talk | contribs) (→‎Frame advantage: added section for frame traps, reworked some descriptions, and added a demonstrative table)

A frame is a unit of time roughly equal to 16.67ms, with Tekken's logic running at 60 frames per second. When talking about time it's more precise to speak in terms of frames than real time, because that's how the game understands it.

A “frame” in this context does not refer to an image rendered on the screen, although for most practical purposes it can be considered the same thing.

Attacks

Attacks in Tekken have 3 key states for the attacker:

  1. Startup — time before the attack is active
  2. Active — time where the attack can hit the opponent
  3. Recovery — time after the attack was active

Every move spends a certain number of frames in each of these. The attacker cannot guard during any of them.

For example, a generic jab has 9 startup frames, 1 active frame, and 17 recovery frames.

Startup
Active
Recovery
Neutral
Frame
Input
State
1
1
2
3
4
5
6
7
8
9
10
11
26
27
28

This is often simplified to saying that the move is i10, i.e. that its first active frame is on the 10th frame.

It might also be said that the attack has a 10 frame startup (adding the startup and active frames together), which is sort of confusing. In most contexts, it should be assumed that this is what's meant by startup.

For projectiles, there no active frames in this sense. Instead, the “active frames” are the frames where the projectile can still be live. In this case, the active and recovery frames overlap and it's possible that the attacker recovers before the active frames have finished.

Frame advantage

When a move hits an opponent, they're put into hitstun. If the move is blocked, they're put into blockstun. During these stuns, the defender can't act.

Frame advantage is the difference in frames between the recovery of the attacker and the stun of the defender. This indicates who can act first after a move hits or is blocked, and by how much.

To reward players for landing a hit, hitstun is typically longer than blockstun. Because of this, attacking after getting hit is usually a bad idea. The main exception to this is some weaker/universal lows that are minus on hit, such as the crouch shin kick.

Frame trap

Kazumi's jab is i10, +1 on block and her opponent attempts to jab back. Her next attack, an i11 magic four starts 1 frame earlier than her opponent's, winning the exchange. This is a basic frame trap.

If an attacker is aware of the frame advantage of a situation and uses a move that is fast enough to interrupt their opponent's options, this is known as a frame trap. This can be done in many different situations and is a very common concept in fighting games. Characters with many reliable moves that are plus on block often have the highest potential for frame trapping, but any character can theoretically frame trap, especially on hit.

Punishment

If the frame advantage is big enough and there is enough time to react, it's possible to get guaranteed damage by hitting the opponent before they've recovered. Doing this after blocking an attack is called block punishment.

Some moves can be punished on block. Don't miss out on free damage!

The fastest attack for most characters is 10 frames, so moves that are -10 on block or worse are considered punishable. Conversely, moves that are -9 on block or better are considered “safe”.

The fastest launcher for most characters is 15 frames, so moves that are -15 on block or worse are considered launch punishable.

Though the concept of frame advantage isn't really applicable when a move whiffs, or hits empty air, the opponent still has to recover, and cannot block. Hitting the opponent during their recovery frames after they've whiffed an attack is called whiff punishment.

General frame situations

The options you have from a given frame advantage state depends on aspects such as matchup and distance, but the startup of standard moves such as jabs can act as a guide.

Broadly speaking, your options given the scenario tend to reflect these fundamental rules:

Advantage Options
+10~ Able to combo jabs and other quick moves.
+6 Reliably able to counterhit most options as well as beating sidestep.
+4 Able to counterhit most options, but moves may still lose to sidestep.
+1 Able to throw out a jab and win, but not much else.
0 Completely even. Your jabs will trade with each other.
-4 Difficult to counter-attack and prone to damaging counterhits, but you can still sidestep.
-6 Difficult to counter-attack or sidestep.
-9 Cannot do anything but block without getting interrupted.
-10 Starting from here, you are punishable.
-15 Launch punishable by nearly every character.

The key rule is that being beyond -5 in a situation makes sidestepping generally difficult or impossible.

Meaty

Some attacks have multiple active frames. If such a move connects in the first active frame, the other active frames are ignored, i.e. only one of an attack's active frames are allowed to connect. And the hitstun, blockstun, and recovery don't change based on when the move connects (unless they do, e.g. stagger on block), but the stun starts later if it's caused by later active frames.

A meaty is a move connecting with its later active frames to get a better frame advantage. The main ways to do this are:

  • Timing the move with an opponent's tech recovery so that their invulnerability ignores the earlier active frames.
  • Connecting the move at a particular angle so that the hitboxes of the earlier frames don't connect but the later ones do, as each active frame has a slightly different hitbox. Typically, but not always, this is just connecting it at max range.

A meaty may also simply refer to any move with many active frames.

Input processing

When it's said that a 1 jab's first active frame is the 10th frame, this is counting from the first frame that the game acts on the 1 input. This is not the same as the frame when the game receives the input, which is also not the same as when the physical button that sent the input was pressed.

Broadly speaking:

  • The input from a physical controller takes some time to be received by the computer
  • This input falls within one of the game's polling windows, which is some time after the current frame's behavior has been decided, but before the next one's
  • This input is read by the game as “character controller inputs” (1,2,3,4,up,down,left,right) into a buffer
  • When the game is looking to use game input, it reads input from the buffer received X frames ago into the variables «inputAttack» and «inputDirection»
  • When a frame is deciding what to do, it uses the value of these two variables that was set on the previous frame

X is equal to 1 frame normally. It changes online depending on the connection quality, and can be changed by the «Input Delay» setting in training mode. In effect, this means there's a minimum of 2 frames of input delay no matter what (1 for X, and 1 because the game uses the previous frame's values of «inputAttack» and «inputDirection» to decide the current frame's behavior), or more practically between 2 and 3 frames, depending on what time in the polling window the input is sent.

External links