mirror of https://github.com/sm64pc/sm64pc.git
39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
|
|
struct ObjectHitbox sRecoveryHeartHitbox = {
|
|
/* interactType: */ 0,
|
|
/* downOffset: */ 0,
|
|
/* damageOrCoinValue: */ 0,
|
|
/* health: */ 0,
|
|
/* numLootCoins: */ 0,
|
|
/* radius: */ 50,
|
|
/* height: */ 50,
|
|
/* hurtboxRadius: */ 50,
|
|
/* hurtboxHeight: */ 50,
|
|
};
|
|
|
|
void bhv_recovery_heart_loop(void) {
|
|
obj_set_hitbox(o, &sRecoveryHeartHitbox);
|
|
if (obj_check_if_collided_with_object(o, gMarioObject)) {
|
|
if (o->oSpinningHeartPlayedSound == 0) {
|
|
cur_obj_play_sound_2(SOUND_GENERAL_HEART_SPIN);
|
|
o->oSpinningHeartPlayedSound += 1;
|
|
}
|
|
|
|
o->oAngleVelYaw = (s32)(200.0f * gMarioStates[0].forwardVel) + 1000;
|
|
} else {
|
|
o->oSpinningHeartPlayedSound = 0;
|
|
|
|
if ((o->oAngleVelYaw -= 50) < 400) {
|
|
o->oAngleVelYaw = 400;
|
|
o->oSpinningHeartTotalSpin = 0;
|
|
}
|
|
}
|
|
|
|
if ((o->oSpinningHeartTotalSpin += o->oAngleVelYaw) >= 0x10000) {
|
|
gMarioStates[0].healCounter += 4;
|
|
o->oSpinningHeartTotalSpin -= 0x10000;
|
|
}
|
|
|
|
o->oFaceAngleYaw += o->oAngleVelYaw;
|
|
}
|