Slide Kick

From Ukikipedia
Revision as of 17:22, 19 August 2025 by Icecream17 (talk | contribs) (Complete everything about action)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Slide Kick is an attack action. The only way to enter this action is to be in Crouch Slide and press B with at least 10 speed.

Slide Kick
Properties
Hex 0x018008AA
Action Flags Air, Attacking, Allow Vertical Wind Action
Action Group Airborne
ID 0x0AA
Transitions
Into airborne cancels: Water Plunge, Squished, Vertical Wind, main: Freefall, Slide Kick Slide, Backward Air Kb, Lava Boost
Out of Crouch Slide +B
Other
Animation 0x8C


Interactions

One of the actions that merely wobble the kickable board in Whomp's Fortress.

This is an attacking action: affecting bullies and bounce-top enemies like goombas, and Mario cannot be grabbed when also invulnerable.

Transition In

  1. Set y-velocity to 12
  2. If forward velocity is less than 32, set it to 32. (inverse cap)

Behavior

As with all Airborne actions there are Airborne cancels, see Single Jump#Airborne cancels

When a slide kick is happening:[1]

  1. If actionState and actionTimer are 0
    1. play the terrain's jump sound and Mario's "hoohoo" sound
    2. change to the slide kick animation
  2. If actionTimer > 30 or yPos - floorHeight > 500; Freefall(actionArg 2)
  3. update_air_without_turn
  4. if perform_air_step() (gravity = 2, y-velocity inverse capped to -75)
    1. is AIR_STEP_NONE
      1. if actionState == 0, change graphics angle
    2. is AIR_STEP_LANDED
      1. if actionState != 0 or vel[1] >= 0; Slide Kick Slide
      2. else y-velocity is negative (Mario is falling down); set vel[1] to -vel[1]/2 (this is the slide kick bounce), actionState to 1, actionTimer to 0, and play_mario_landing_sound
    3. is AIR_STEP_HIT_WALL, cap speed to 0, set star particles to display, and Backward Air Knockback
    4. is AIR_STEP_HIT_LAVA_WALL, Lava Boost on Wall

(perform_air_step returns NONE if all quartersteps were cancelled)

References