This commit is contained in:
parent
7939188800
commit
000d0922df
8 changed files with 98 additions and 3 deletions
|
@ -502,6 +502,18 @@ CNpcPlatform::NPC_PLATFORM_DATA CNpcPlatform::m_data[NPC_PLATFORM_TYPE_MAX] =
|
|||
0,
|
||||
NPC_PLATFORM_TIMER_NONE,
|
||||
},
|
||||
|
||||
{ // NPC_LOVE_BOAT_PLATFORM
|
||||
3,
|
||||
128,
|
||||
true,
|
||||
DAMAGE__NONE,
|
||||
0,
|
||||
4,
|
||||
NPC_PLATFORM_INFINITE_LIFE,
|
||||
2,
|
||||
NPC_PLATFORM_TIMER_NONE,
|
||||
},
|
||||
};
|
||||
|
||||
CNpcPlatform::NPC_PLATFORM_UNIT_TYPE CNpcPlatform::mapEditConvertTable[NPC_PLATFORM_TYPE_MAX] =
|
||||
|
@ -541,6 +553,7 @@ CNpcPlatform::NPC_PLATFORM_UNIT_TYPE CNpcPlatform::mapEditConvertTable[NPC_PLATF
|
|||
NPC_DROP_PLATFORM,
|
||||
NPC_STEAM_SWITCH_PLATFORM,
|
||||
NPC_LIFT_PLATFORM,
|
||||
NPC_LOVE_BOAT_PLATFORM,
|
||||
NPC_CONVEYOR_PLATFORM,
|
||||
NPC_PLAYER_BUBBLE_PLATFORM,
|
||||
NPC_CLAM_PLATFORM,
|
||||
|
|
|
@ -183,6 +183,10 @@
|
|||
#include "platform\plift.h"
|
||||
#endif
|
||||
|
||||
#ifndef __PLATFORM_PLURVE_H__
|
||||
#include "platform\plurve.h"
|
||||
#endif
|
||||
|
||||
#include "fx\fx.h"
|
||||
#include "fx\fxjfish.h"
|
||||
|
||||
|
@ -421,6 +425,12 @@ CNpcPlatform *CNpcPlatform::Create(int Type)
|
|||
break;
|
||||
}
|
||||
|
||||
case NPC_LOVE_BOAT_PLATFORM:
|
||||
{
|
||||
platform = new ("love boat platform") CNpcLoveBoatPlatform;
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
{
|
||||
ASSERT( 0 );
|
||||
|
|
|
@ -92,6 +92,7 @@ public:
|
|||
NPC_DROP_PLATFORM,
|
||||
NPC_STEAM_SWITCH_PLATFORM,
|
||||
NPC_LIFT_PLATFORM,
|
||||
NPC_LOVE_BOAT_PLATFORM,
|
||||
NPC_PLATFORM_TYPE_MAX,
|
||||
};
|
||||
enum
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue