Yes, there are a few choices:kickytink wrote:I am assuming it would also be possible to have 2 or more of the same monster on the same map use different sprite skins? For example 2 cyberdemons, one with the original sprites and another with modified sprites?
1) You can have a Cyberdemon replaced by a new actor which could then spawn a normal Cyberdemon in one spot and a new modified one in another in a given radius. They'd have to be far enough apart so they don't get stuck in each other, but then another concern is that they might get stuck in the wall or fail to spawn.
2) Replace the Cyberdemon with a RandomSpawner which could choose out of a percent chance to spawn the old normal one or the new one but you'll only ever get the one
3) Create a new actor and inherit from the normal Cyberdemon and simply change all of its state frames to the new set and give it a new DoomEd number, then it can be placed in any map and behave identical to the normal Cyberdemon only with new sprites. This will require modifying the original maps however if you wanted to do this approach.