This commit is contained in:
parent
548031076b
commit
3de584bf8b
7 changed files with 116 additions and 3 deletions
|
@ -185,6 +185,10 @@
|
|||
#include "enemy\nshell.h"
|
||||
#endif
|
||||
|
||||
#ifndef __ENEMY_NMJBACK_H__
|
||||
#include "enemy\nmjback.h"
|
||||
#endif
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Enemy NPCs
|
||||
|
@ -357,7 +361,17 @@ CNpcEnemy *CNpcEnemy::Create(sThingActor *ThisActor)
|
|||
case CNpcEnemy::NPC_MOTHER_JELLYFISH:
|
||||
{
|
||||
printf("NPC_MOTHER_JELLYFISH\n");
|
||||
enemy = new ("mother jellyfish") CNpcMotherJellyfishEnemy;
|
||||
|
||||
if ( CLevel::getCurrentChapterLevel() == 4 )
|
||||
{
|
||||
enemy = new ("mother jellyfish background") CNpcMotherJellyfishBackground;
|
||||
enemyType = NPC_MOTHER_JELLYFISH_BACKGROUND;
|
||||
}
|
||||
else
|
||||
{
|
||||
enemy = new ("mother jellyfish") CNpcMotherJellyfishEnemy;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue