mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 13:01:03 +00:00
784f7ed671
- fixed a few problems that were encountered during conversion: * action specials as action functions were not recognized by the parser. * Player.StartItem could not be parsed. * disabled the naming hack for PowerupType. ZScript, unlike DECORATE will never prepend 'Power' to the power's name, it always needs to specified by its full name. * states and defaults were not checked for empty bodies. * the scope qualifier for goto labels was not properly converted to a string, because it is an ENamedName, not an FName.
77 lines
1.3 KiB
Text
77 lines
1.3 KiB
Text
//===========================================================================
|
|
//
|
|
// Pink Demon
|
|
//
|
|
//===========================================================================
|
|
class Demon : Actor
|
|
{
|
|
Default
|
|
{
|
|
Health 150;
|
|
PainChance 180;
|
|
Speed 10;
|
|
Radius 30;
|
|
Height 56;
|
|
Mass 400;
|
|
Monster;
|
|
+FLOORCLIP
|
|
SeeSound "demon/sight";
|
|
AttackSound "demon/melee";
|
|
PainSound "demon/pain";
|
|
DeathSound "demon/death";
|
|
ActiveSound "demon/active";
|
|
Obituary "$OB_DEMONHIT";
|
|
}
|
|
States
|
|
{
|
|
Spawn:
|
|
SARG AB 10 A_Look;
|
|
Loop;
|
|
See:
|
|
SARG AABBCCDD 2 Fast A_Chase;
|
|
Loop;
|
|
Melee:
|
|
SARG EF 8 Fast A_FaceTarget;
|
|
SARG G 8 Fast A_SargAttack;
|
|
Goto See;
|
|
Pain:
|
|
SARG H 2 Fast;
|
|
SARG H 2 Fast A_Pain;
|
|
Goto See;
|
|
Death:
|
|
SARG I 8;
|
|
SARG J 8 A_Scream;
|
|
SARG K 4;
|
|
SARG L 4 A_NoBlocking;
|
|
SARG M 4;
|
|
SARG N -1;
|
|
Stop;
|
|
Raise:
|
|
SARG N 5;
|
|
SARG MLKJI 5;
|
|
Goto See;
|
|
}
|
|
}
|
|
|
|
//===========================================================================
|
|
//
|
|
// Spectre
|
|
//
|
|
//===========================================================================
|
|
class Spectre : Demon
|
|
{
|
|
Default
|
|
{
|
|
+SHADOW
|
|
RenderStyle "OptFuzzy";
|
|
Alpha 0.5;
|
|
SeeSound "spectre/sight";
|
|
AttackSound "spectre/melee";
|
|
PainSound "spectre/pain";
|
|
DeathSound "spectre/death";
|
|
ActiveSound "spectre/active";
|
|
HitObituary "$OB_SPECTREHIT";
|
|
}
|
|
}
|
|
|
|
|