mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-07 13:30:16 +00:00
44932a6c56
overridden in custom player classes by changing their Obituary property to something else. - ClientObituary() now only looks up the obituary message from the killing player's weapon if the damage type was 'Melee' or 'Hitscan'. - Gave P_GunShot() and A_FireBullets the new damage type 'Hitscan'. - Switched A_Saw and A_CustomPunch to the 'Melee' damage type. SVN r3646 (trunk)
48 lines
767 B
Text
48 lines
767 B
Text
Actor PlayerPawn : Actor native
|
|
{
|
|
Health 100
|
|
Radius 16
|
|
Height 56
|
|
Mass 100
|
|
Painchance 255
|
|
Speed 1
|
|
+SOLID
|
|
+SHOOTABLE
|
|
+DROPOFF
|
|
+PICKUP
|
|
+NOTDMATCH
|
|
+FRIENDLY
|
|
+SLIDESONWALLS
|
|
+CANPASS
|
|
+CANPUSHWALLS
|
|
+FLOORCLIP
|
|
+WINDTHRUST
|
|
+TELESTOMP
|
|
+NOBLOCKMONST
|
|
Player.AttackZOffset 8
|
|
Player.JumpZ 8
|
|
Player.ViewHeight 41
|
|
Player.ForwardMove 1,1
|
|
Player.SideMove 1,1
|
|
Player.ColorRange 0,0
|
|
Player.SoundClass "player"
|
|
Player.DamageScreenColor "ff 00 00"
|
|
Player.MugShotMaxHealth 0
|
|
Player.FlechetteType "ArtiPoisonBag3"
|
|
Obituary "$OB_MPDEFAULT"
|
|
}
|
|
|
|
Actor PlayerChunk : PlayerPawn native
|
|
{
|
|
+NOSKIN
|
|
-SOLID
|
|
-SHOOTABLE
|
|
-PICKUP
|
|
-NOTDMATCH
|
|
-FRIENDLY
|
|
-SLIDESONWALLS
|
|
-CANPUSHWALLS
|
|
-FLOORCLIP
|
|
-WINDTHRUST
|
|
-TELESTOMP
|
|
}
|