Talk:Enemies

From EDukeWiki
Revision as of 22:54, 26 October 2006 by Fox (talk | contribs)
Jump to navigation Jump to search

Please, before rememder that Assault Captain strength is 60, not 50.


Probably you found that line in USER.CON:

define CAPTAINSTRENGTH          50

But looking at GAME.CON you can see that this is unusued and Assault Captain strength is activated by TROOPSTRENGTH:

state checktrooppalette
  ifai 0
  {
    ifspritepal 0
        nullop
    else
        ifspritepal 21
          addstrength TROOPSTRENGTH // Double the hitpoint vals
  }
ends

You can test this by yourself, changin TROOPSTRENGTH and seeing that this affect boot Assault Trooper and Assault Captain, but CAPTAINSTRENGTH has no effect.