mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
Buffed basic pvp attacks
This commit is contained in:
parent
44df9f864c
commit
0a41cc70e9
1 changed files with 2 additions and 1 deletions
|
|
@ -1368,7 +1368,8 @@ static u8 resolve_player_collision(struct MarioState* m, struct MarioState* m2)
|
||||||
u8 determine_player_damage_value(u32 interaction) {
|
u8 determine_player_damage_value(u32 interaction) {
|
||||||
if (interaction & INT_GROUND_POUND_OR_TWIRL) { return 3; }
|
if (interaction & INT_GROUND_POUND_OR_TWIRL) { return 3; }
|
||||||
if (interaction & INT_KICK) { return 2; }
|
if (interaction & INT_KICK) { return 2; }
|
||||||
return 1;
|
if (interaction & INT_ATTACK_SLIDE) { return 1; }
|
||||||
|
return 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
u8 player_is_sliding(struct MarioState* m) {
|
u8 player_is_sliding(struct MarioState* m) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue