Vampire Gamemode!

This commit is contained in:
ZomgPonies
2013-12-13 19:38:49 -05:00
parent 25becb2c49
commit 912601a30d
22 changed files with 1013 additions and 25 deletions
+18 -2
View File
@@ -665,6 +665,7 @@ var/list/TAGGERLOCATIONS = list("Disposals",
#define BE_NINJA 1024
#define BE_VOX 2048
#define BE_PLANT 4096
#define BE_VAMPIRE 8192
var/list/be_special_flags = list(
"Traitor" = BE_TRAITOR,
@@ -679,7 +680,8 @@ var/list/be_special_flags = list(
"Monkey" = BE_MONKEY,
"Ninja" = BE_NINJA,
"Vox" = BE_VOX,
"Diona" = BE_PLANT
"Diona" = BE_PLANT,
"Vampire" = BE_VAMPIRE
)
#define AGE_MIN 17 //youngest a character can be
@@ -771,4 +773,18 @@ var/list/RESTRICTED_CAMERA_NETWORKS = list( //Those networks can only be accesse
//Flags for zone sleeping
#define ZONE_ACTIVE 1
#define ZONE_SLEEPING 0
#define ZONE_SLEEPING 0
// Vampire power defines
#define VAMP_REJUV 1
#define VAMP_GLARE 2
#define VAMP_HYPNO 3
#define VAMP_SHAPE 4
#define VAMP_VISION 5
#define VAMP_DISEASE 6
#define VAMP_CLOAK 7
#define VAMP_BATS 8
#define VAMP_SCREAM 9
#define VAMP_JAUNT 10
#define VAMP_SLAVE 11
#define VAMP_FULL 12