mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-07 21:41:07 +00:00
549712e719
can perform based on the amount of damage actually taken after all modifications are done to it. However, if the damage is canceled away, blood will still spawn for the original damage amount rather than the modified amount. SVN r4012 (trunk)
35 lines
801 B
C++
35 lines
801 B
C++
/*
|
|
#include "actor.h"
|
|
#include "info.h"
|
|
#include "m_random.h"
|
|
#include "s_sound.h"
|
|
#include "p_local.h"
|
|
#include "p_enemy.h"
|
|
#include "gstrings.h"
|
|
#include "a_action.h"
|
|
#include "thingdef/thingdef.h"
|
|
*/
|
|
|
|
static FRandom pr_troopattack ("TroopAttack");
|
|
|
|
//
|
|
// A_TroopAttack
|
|
//
|
|
DEFINE_ACTION_FUNCTION(AActor, A_TroopAttack)
|
|
{
|
|
if (!self->target)
|
|
return;
|
|
|
|
A_FaceTarget (self);
|
|
if (self->CheckMeleeRange ())
|
|
{
|
|
int damage = (pr_troopattack()%8+1)*3;
|
|
S_Sound (self, CHAN_WEAPON, "imp/melee", 1, ATTN_NORM);
|
|
int newdam = P_DamageMobj (self->target, self, self, damage, NAME_Melee);
|
|
P_TraceBleed (newdam > 0 ? newdam : damage, self->target, self);
|
|
return;
|
|
}
|
|
|
|
// launch a missile
|
|
P_SpawnMissile (self, self->target, PClass::FindClass("DoomImpBall"));
|
|
}
|