mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
0545adfac3
Have fun!
17 lines
402 B
C++
17 lines
402 B
C++
#include "AgSurvivalSpiderling.h"
|
|
#include "BaseCombatAIComponent.h"
|
|
#include "GameMessages.h"
|
|
|
|
void AgSurvivalSpiderling::OnStartup(Entity *self) {
|
|
BaseWavesGenericEnemy::OnStartup(self);
|
|
|
|
auto* combatAI = self->GetComponent<BaseCombatAIComponent>();
|
|
if (combatAI != nullptr) {
|
|
combatAI->SetStunImmune(true);
|
|
}
|
|
}
|
|
|
|
uint32_t AgSurvivalSpiderling::GetPoints() {
|
|
return 300;
|
|
}
|