summaryrefslogtreecommitdiff
path: root/src/strife/doomdef.h
diff options
context:
space:
mode:
authorSamuel Villareal2010-09-11 07:48:27 +0000
committerSamuel Villareal2010-09-11 07:48:27 +0000
commitad87636e1296e525f3a3979e5f0d00d16f2c54fc (patch)
tree72a17d9fff0d006a7c6e9081b5b4dbd1d1a1d6de /src/strife/doomdef.h
parent993520eecddbdddddb1a562646c755e1efd0fa29 (diff)
downloadchocolate-doom-ad87636e1296e525f3a3979e5f0d00d16f2c54fc.tar.gz
chocolate-doom-ad87636e1296e525f3a3979e5f0d00d16f2c54fc.tar.bz2
chocolate-doom-ad87636e1296e525f3a3979e5f0d00d16f2c54fc.zip
+ P_GivePower update
+ Power tics implemented + Power enums implemented + More inventory functions implemented Subversion-branch: /branches/strife-branch Subversion-revision: 2061
Diffstat (limited to 'src/strife/doomdef.h')
-rw-r--r--src/strife/doomdef.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/strife/doomdef.h b/src/strife/doomdef.h
index 1423bf51..536e99d3 100644
--- a/src/strife/doomdef.h
+++ b/src/strife/doomdef.h
@@ -185,14 +185,15 @@ typedef enum
// Power up artifacts.
+// villsa [STRIFE]
typedef enum
{
- pw_invulnerability,
pw_strength,
pw_invisibility,
pw_ironfeet,
pw_allmap,
- pw_infrared,
+ pw_communicator,
+ pw_targeter,
NUMPOWERS
} powertype_t;
@@ -206,10 +207,10 @@ typedef enum
//
typedef enum
{
- INVULNTICS = (30*TICRATE),
- INVISTICS = (60*TICRATE),
- INFRATICS = (120*TICRATE),
- IRONTICS = (60*TICRATE)
+ INVISTICS = (55*TICRATE), // villsa [STRIFE] changed from 60 to 55
+ IRONTICS = (80*TICRATE), // villsa [STRIFE] changed from 60 to 80
+ PMUPTICS = (80*TICRATE), // villsa [STRIFE]
+ TARGTICS = (160*TICRATE),// villsa [STRIFE]
} powerduration_t;