Armor Options

Armor allows moves to resit hits without getting canceled. You can also use this option to emulate and override certain hits as it links to other moves (such as Gouken's counter attack). You can read more about armors and its behavor on SF4 by following this link.


Hit Absorption: The number of hits this move can absorb before being canceled. Leave at 0 for no armor.

Damage Absorption (%): When being hit by a damaging attack, how much of the damage should it nullify.

Block Hits: Force the hit character to block.

Override Hit Effect: If enabled, it will replace the default hit effect by the one selected in the panel below this option.

Non Affected Body Parts: Allows you to select which part of the body can't resist hits (doesn't have armor). Useful in case you'd like to create your own block system.


Code example:

void OnHit(HitBox strokeHitBox, MoveInfo move, CharacterInfo hitter){
	if (move.armorOptions.hitAbsorption > 0) Debug.Log("This move has armor!");
}

< Back to Move Editor