This commit is contained in:
aozhiwei 2022-08-01 14:34:45 +08:00
parent 15b449521a
commit ee7175e06d
5 changed files with 20 additions and 0 deletions

View File

@ -908,3 +908,8 @@ void Buff::ProcReserve()
}
}
}
void Buff::ProcMachineGun()
{
}

View File

@ -78,6 +78,7 @@ class Buff
void ProcInWater();
void ProcRemoveInWater();
void ProcReserve();
void ProcMachineGun();
void CalcPassengerShotOffset();

View File

@ -350,6 +350,9 @@ enum ObstacleType_e
kObstacleAirDropBox = 8,
kObstacleOilBucket = 9,
kObstacleKeepRangeBuff = 10,
kObstacleShield = 11,
kObstacleStrengthenWall = 12,
kObstacleMedicalStation = 13,
};
enum BulletHit_e

View File

@ -97,6 +97,8 @@ enum BuffEffectType_e
kBET_ClientUse2 = 71, //
kBET_Dive = 72, //下潜模式
kBET_Reverse = 73, //人物反向
kBET_ReverseMove = 74, //人物反向移动
kBET_MachineGun = 75, //机枪
kBET_End
};

View File

@ -1437,6 +1437,15 @@ void Creature::ProcBuffEffect(Creature* caster, Buff* buff)
buff->ProcReserve();
}
break;
case kBET_ReverseMove:
{
}
break;
case kBET_MachineGun:
{
buff->ProcMachineGun();
}
break;
default:
{
}