mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-06 21:11:43 +00:00
0e69196370
- Removed doom.x, heretic.x and strife.x from the SVN repository. These are generated files. - Fixed: A_PainDie has to check whether a valid target exists before calling IsFriend. - Fixed: FDecalLib::FindAnimator needs a signed counter to work properly. May 1, 2006 (Changes by Graf Zahl) - Added support for game specific pickup messages, if only to be able to define Raven's invulnerability item in DECORATE. - Removed A_TreeDeath because it is no longer used. - Fixed: When picking up a PowerupGiver for an active powerup the blend color and the duration were transferred to a temorary item and never took effect. They have to be trnasferred to the newly created powerup item before trying to give it to the player, not afterward. - Made the colormap of the InvulnerabilitySphere item specific. The base power class still needs to have its color adjusted per game though and since Raven's invulnerability item is used in both Hexen and Heretic it can't define its own colormap/blend. - Separated the invulnerability colormaps from the game being played and made them item specific. They can also be specified as regular blend colors in DECORATE now. - Converted a_hereticarmor.cpp and most of a_doomartifacts.cpp, a_hereticartifacts.cpp and a_heretickeys.cpp to DECORATE. - Changed the Soulsphere to be a real health item with the Dehacked modifications made in d_dehacked.cpp as for most other items which need to be adjusted. - Added IF_BIGPOWERUP flag to AInventory to expose the RESPAWN_SUPER dmflag to DECORATE. Also removed the now obsolete ShouldRespawn methods from AInvulnerabilitySphere and ABlurSphere. - Converted a_splashes.cpp to DECORATE. - Converted most of a_debris.cpp to DECORATE. SVN r73 (trunk)
199 lines
2.3 KiB
Text
199 lines
2.3 KiB
Text
|
|
// Water --------------------------------------------------------------------
|
|
|
|
ACTOR WaterSplash
|
|
{
|
|
Radius 2
|
|
Height 4
|
|
+NOBLOCKMAP
|
|
+MISSILE
|
|
+DROPOFF
|
|
+NOTELEPORT
|
|
+LOWGRAVITY
|
|
+CANNOTPUSH
|
|
+DONTSPLASH
|
|
+DONTBLAST
|
|
States
|
|
{
|
|
Spawn:
|
|
SPSH ABC 8
|
|
SPSH D 16
|
|
Stop
|
|
Death:
|
|
SPSH D 10
|
|
Stop
|
|
}
|
|
}
|
|
|
|
|
|
ACTOR WaterSplashBase
|
|
{
|
|
+NOBLOCKMAP
|
|
+NOCLIP
|
|
+NOGRAVITY
|
|
+DONTSPLASH
|
|
+DONTBLAST
|
|
States
|
|
{
|
|
Spawn:
|
|
SPSH EFGHIJK 5
|
|
Stop
|
|
}
|
|
}
|
|
|
|
// Lava ---------------------------------------------------------------------
|
|
|
|
ACTOR LavaSplash
|
|
{
|
|
+NOBLOCKMAP
|
|
+NOCLIP
|
|
+NOGRAVITY
|
|
+DONTSPLASH
|
|
+DONTBLAST
|
|
States
|
|
{
|
|
Spawn:
|
|
LVAS ABCDEF 5 Bright
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR LavaSmoke
|
|
{
|
|
+NOBLOCKMAP
|
|
+NOCLIP
|
|
+NOGRAVITY
|
|
+DONTSPLASH
|
|
RenderStyle Translucent
|
|
Alpha Default
|
|
States
|
|
{
|
|
Spawn:
|
|
LVAS GHIJK 5 Bright
|
|
Stop
|
|
}
|
|
}
|
|
|
|
// Sludge -------------------------------------------------------------------
|
|
|
|
ACTOR SludgeChunk
|
|
{
|
|
Radius 2
|
|
Height 4
|
|
+NOBLOCKMAP
|
|
+MISSILE
|
|
+DROPOFF
|
|
+NOTELEPORT
|
|
+LOWGRAVITY
|
|
+CANNOTPUSH
|
|
+DONTSPLASH
|
|
States
|
|
{
|
|
Spawn:
|
|
SLDG ABCD 8
|
|
Stop
|
|
Death:
|
|
SLDG D 6
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR SludgeSplash
|
|
{
|
|
+NOBLOCKMAP
|
|
+NOCLIP
|
|
+NOGRAVITY
|
|
+DONTSPLASH
|
|
States
|
|
{
|
|
Spawn:
|
|
SLDG EFGH 6
|
|
Stop
|
|
}
|
|
}
|
|
|
|
/*
|
|
* These next four classes are not used by me anywhere.
|
|
* They are for people who want to use them in a TERRAIN lump.
|
|
*/
|
|
|
|
// Blood (water with a different sprite) ------------------------------------
|
|
|
|
ACTOR BloodSplash
|
|
{
|
|
Radius 2
|
|
Height 4
|
|
+NOBLOCKMAP
|
|
+MISSILE
|
|
+DROPOFF
|
|
+NOTELEPORT
|
|
+LOWGRAVITY
|
|
+CANNOTPUSH
|
|
+DONTSPLASH
|
|
+DONTBLAST
|
|
States
|
|
{
|
|
Spawn:
|
|
BSPH ABC 8
|
|
BSPH D 16
|
|
Stop
|
|
Death:
|
|
BSPH D 10
|
|
Stop
|
|
}
|
|
}
|
|
|
|
|
|
ACTOR BloodSplashBase
|
|
{
|
|
+NOBLOCKMAP
|
|
+NOCLIP
|
|
+NOGRAVITY
|
|
+DONTSPLASH
|
|
+DONTBLAST
|
|
States
|
|
{
|
|
Spawn:
|
|
BSPH EFGHIJK 5
|
|
Stop
|
|
}
|
|
}
|
|
|
|
// Slime (sludge with a different sprite) -----------------------------------
|
|
|
|
ACTOR SlimeChunk
|
|
{
|
|
Radius 2
|
|
Height 4
|
|
+NOBLOCKMAP
|
|
+MISSILE
|
|
+DROPOFF
|
|
+NOTELEPORT
|
|
+LOWGRAVITY
|
|
+CANNOTPUSH
|
|
+DONTSPLASH
|
|
States
|
|
{
|
|
Spawn:
|
|
SLIM ABCD 8
|
|
Stop
|
|
Death:
|
|
SLIM D 6
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR SlimeSplash
|
|
{
|
|
+NOBLOCKMAP
|
|
+NOCLIP
|
|
+NOGRAVITY
|
|
+DONTSPLASH
|
|
States
|
|
{
|
|
Spawn:
|
|
SLIM EFGH 6
|
|
Stop
|
|
}
|
|
}
|
|
|