gzdoom/wadsrc/static/zscript/shared/morph.txt

31 lines
450 B
Plaintext
Raw Normal View History

class MorphProjectile : Actor native
{
native Class<PlayerPawn> PlayerClass;
native Class<Actor> MonsterClass, MorphFlash, UnMorphFlash;
native int Duration, MorphStyle;
Default
{
Damage 1;
Projectile;
-ACTIVATEIMPACT
-ACTIVATEPCROSS
}
}
class MorphedMonster : Actor native
{
native Actor UnmorphedMe;
native int UnmorphTime, MorphStyle;
native Class<Actor> MorphExitFlash;
Default
{
Monster;
-COUNTKILL
+FLOORCLIP
}
}