mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 13:01:03 +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)
362 lines
3.7 KiB
Text
362 lines
3.7 KiB
Text
|
|
// Rocks --------------------------------------------------------------------
|
|
|
|
ACTOR Rock1
|
|
{
|
|
SpawnID 41
|
|
+NOBLOCKMAP
|
|
+DROPOFF
|
|
+MISSILE
|
|
+NOTELEPORT
|
|
States
|
|
{
|
|
Spawn:
|
|
ROKK A 20
|
|
Loop
|
|
Death:
|
|
ROKK A 10
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR Rock2
|
|
{
|
|
SpawnID 42
|
|
+NOBLOCKMAP
|
|
+DROPOFF
|
|
+MISSILE
|
|
+NOTELEPORT
|
|
States
|
|
{
|
|
Spawn:
|
|
ROKK B 20
|
|
Loop
|
|
Death:
|
|
ROKK B 10
|
|
Stop
|
|
}
|
|
}
|
|
|
|
|
|
ACTOR Rock3
|
|
{
|
|
SpawnID 43
|
|
+NOBLOCKMAP
|
|
+DROPOFF
|
|
+MISSILE
|
|
+NOTELEPORT
|
|
States
|
|
{
|
|
Spawn:
|
|
ROKK C 20
|
|
Loop
|
|
Death:
|
|
ROKK C 10
|
|
Stop
|
|
}
|
|
}
|
|
|
|
|
|
// Dirt --------------------------------------------------------------------
|
|
|
|
ACTOR Dirt1
|
|
{
|
|
SpawnID 44
|
|
+NOBLOCKMAP
|
|
+DROPOFF
|
|
+MISSILE
|
|
+NOTELEPORT
|
|
States
|
|
{
|
|
Spawn:
|
|
ROKK D 20
|
|
Loop
|
|
Death:
|
|
ROKK D 10
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR Dirt2
|
|
{
|
|
SpawnID 45
|
|
+NOBLOCKMAP
|
|
+DROPOFF
|
|
+MISSILE
|
|
+NOTELEPORT
|
|
States
|
|
{
|
|
Spawn:
|
|
ROKK E 20
|
|
Loop
|
|
Death:
|
|
ROKK E 10
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR Dirt3
|
|
{
|
|
SpawnID 46
|
|
+NOBLOCKMAP
|
|
+DROPOFF
|
|
+MISSILE
|
|
+NOTELEPORT
|
|
States
|
|
{
|
|
Spawn:
|
|
ROKK F 20
|
|
Loop
|
|
Death:
|
|
ROKK F 10
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR Dirt4
|
|
{
|
|
SpawnID 47
|
|
+NOBLOCKMAP
|
|
+DROPOFF
|
|
+MISSILE
|
|
+NOTELEPORT
|
|
States
|
|
{
|
|
Spawn:
|
|
ROKK G 20
|
|
Loop
|
|
Death:
|
|
ROKK G 10
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR Dirt5
|
|
{
|
|
SpawnID 48
|
|
+NOBLOCKMAP
|
|
+DROPOFF
|
|
+MISSILE
|
|
+NOTELEPORT
|
|
States
|
|
{
|
|
Spawn:
|
|
ROKK H 20
|
|
Loop
|
|
Death:
|
|
ROKK H 10
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR Dirt6
|
|
{
|
|
SpawnID 49
|
|
+NOBLOCKMAP
|
|
+DROPOFF
|
|
+MISSILE
|
|
+NOTELEPORT
|
|
States
|
|
{
|
|
Spawn:
|
|
ROKK I 20
|
|
Loop
|
|
Death:
|
|
ROKK I 10
|
|
Stop
|
|
}
|
|
}
|
|
|
|
// Stained glass ------------------------------------------------------------
|
|
|
|
|
|
ACTOR SGShard1 : GlassShard
|
|
{
|
|
SpawnID 54
|
|
Radius 5
|
|
Projectile
|
|
-ACTIVATEMCROSS
|
|
-ACTIVATEIMPACT
|
|
BounceFactor 0.3
|
|
States
|
|
{
|
|
Spawn:
|
|
SGSA ABCDE 4
|
|
Loop
|
|
Death:
|
|
SGSA E 30
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR SGShard2 : GlassShard
|
|
{
|
|
SpawnID 55
|
|
Radius 5
|
|
Projectile
|
|
-ACTIVATEMCROSS
|
|
-ACTIVATEIMPACT
|
|
BounceFactor 0.3
|
|
States
|
|
{
|
|
Spawn:
|
|
SGSA FGHIJ 4
|
|
Loop
|
|
Death:
|
|
SGSA J 30
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR SGShard3 : GlassShard
|
|
{
|
|
SpawnID 56
|
|
Radius 5
|
|
Projectile
|
|
-ACTIVATEMCROSS
|
|
-ACTIVATEIMPACT
|
|
BounceFactor 0.3
|
|
States
|
|
{
|
|
Spawn:
|
|
SGSA KLMNO 4
|
|
Loop
|
|
Death:
|
|
SGSA O 30
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR SGShard4 : GlassShard
|
|
{
|
|
SpawnID 57
|
|
Radius 5
|
|
Projectile
|
|
-ACTIVATEMCROSS
|
|
-ACTIVATEIMPACT
|
|
BounceFactor 0.3
|
|
States
|
|
{
|
|
Spawn:
|
|
SGSA PQRST 4
|
|
Loop
|
|
Death:
|
|
SGSA T 30
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR SGShard5 : GlassShard
|
|
{
|
|
SpawnID 58
|
|
Radius 5
|
|
Projectile
|
|
-ACTIVATEMCROSS
|
|
-ACTIVATEIMPACT
|
|
BounceFactor 0.3
|
|
States
|
|
{
|
|
Spawn:
|
|
SGSA UVWXY 4
|
|
Loop
|
|
Death:
|
|
SGSA Y 30
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR SGShard6 : GlassShard
|
|
{
|
|
SpawnID 59
|
|
Radius 5
|
|
Projectile
|
|
-ACTIVATEMCROSS
|
|
-ACTIVATEIMPACT
|
|
BounceFactor 0.3
|
|
States
|
|
{
|
|
Spawn:
|
|
SGSB A 4
|
|
Loop
|
|
Death:
|
|
SGSB A 30
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR SGShard7 : GlassShard
|
|
{
|
|
SpawnID 60
|
|
Radius 5
|
|
Projectile
|
|
-ACTIVATEMCROSS
|
|
-ACTIVATEIMPACT
|
|
BounceFactor 0.3
|
|
States
|
|
{
|
|
Spawn:
|
|
SGSB B 4
|
|
Loop
|
|
Death:
|
|
SGSB B 30
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR SGShard8 : GlassShard
|
|
{
|
|
SpawnID 61
|
|
Radius 5
|
|
Projectile
|
|
-ACTIVATEMCROSS
|
|
-ACTIVATEIMPACT
|
|
BounceFactor 0.3
|
|
States
|
|
{
|
|
Spawn:
|
|
SGSB C 4
|
|
Loop
|
|
Death:
|
|
SGSB C 30
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR SGShard9 : GlassShard
|
|
{
|
|
SpawnID 62
|
|
Radius 5
|
|
Projectile
|
|
-ACTIVATEMCROSS
|
|
-ACTIVATEIMPACT
|
|
BounceFactor 0.3
|
|
States
|
|
{
|
|
Spawn:
|
|
SGSB D 4
|
|
Loop
|
|
Death:
|
|
SGSB D 30
|
|
Stop
|
|
}
|
|
}
|
|
|
|
ACTOR SGShard0 : GlassShard
|
|
{
|
|
SpawnID 63
|
|
Radius 5
|
|
Projectile
|
|
-ACTIVATEMCROSS
|
|
-ACTIVATEIMPACT
|
|
BounceFactor 0.3
|
|
States
|
|
{
|
|
Spawn:
|
|
SGSB E 4
|
|
Loop
|
|
Death:
|
|
SGSB E 30
|
|
Stop
|
|
}
|
|
}
|
|
|