From 6e0dec847f4e77badc43d5339b33517f281295a9 Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Wed, 20 Mar 2024 20:40:04 +0200 Subject: [PATCH] Give rolls full power only during movement stage + Make roll only give hitbox reduction during movement + Make roll only give iframes during movement + Move slowly while in roll-buildup --- common/src/comp/character_state.rs | 10 ++++++++-- common/src/states/roll.rs | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/common/src/comp/character_state.rs b/common/src/comp/character_state.rs index f6b5d18f47..08d85bc993 100644 --- a/common/src/comp/character_state.rs +++ b/common/src/comp/character_state.rs @@ -405,7 +405,13 @@ impl CharacterState { } } - pub fn is_dodge(&self) -> bool { matches!(self, CharacterState::Roll(_)) } + pub fn is_dodge(&self) -> bool { + if let CharacterState::Roll(c) = self { + c.stage_section == StageSection::Movement + } else { + false + } + } pub fn is_glide(&self) -> bool { matches!(self, CharacterState::Glide(_)) } @@ -415,7 +421,7 @@ impl CharacterState { pub fn attack_immunities(&self) -> Option { if let CharacterState::Roll(c) = self { - Some(c.static_data.attack_immunities) + (c.stage_section == StageSection::Movement).then_some(c.static_data.attack_immunities) } else { None } diff --git a/common/src/states/roll.rs b/common/src/states/roll.rs index 30c00f8f67..0b038e819b 100644 --- a/common/src/states/roll.rs +++ b/common/src/states/roll.rs @@ -60,7 +60,7 @@ impl CharacterBehavior for Data { match self.stage_section { StageSection::Buildup => { - handle_move(data, &mut update, 1.0); + handle_move(data, &mut update, 0.3); if self.timer < self.static_data.buildup_duration { // Build up update.character = CharacterState::Roll(Data {