This commit is contained in:
Charles 2001-07-16 16:21:36 +00:00
parent 23eb3b6f29
commit ed08839edd
4 changed files with 8 additions and 8 deletions

View file

@ -778,9 +778,9 @@ void CNpcMotherJellyfishEnemy::processShot( int _frames )
{
case NPC_GENERIC_HIT_CHECK_HEALTH:
{
if ( m_health > 5 )
if ( m_health > 3 )
{
m_health -= 5;
m_health -= 3;
m_renderScale = 2048 + ( ( ( 4096 - 2048 ) * m_health ) / m_data[m_type].initHealth );
m_speed = m_data[m_type].speed + ( ( 2 * ( m_data[m_type].initHealth - m_health ) ) / m_data[m_type].initHealth );