Werewolf placeholder

This commit is contained in:
quotefox
2019-10-14 12:42:37 +01:00
parent 34e6cbb439
commit 637c7d8712
8 changed files with 259 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
/mob/living/simple_animal/hostile/werewolf
name = "Werewolf"
desc = "A towering creature!"
icon = 'hyperstation/icons/mobs/werewolf.dmi'
icon_state = "idle"
icon_living = "idle"
icon_dead = "idle"
gender = NEUTER
speak_chance = 0
turns_per_move = 2
maxHealth = 30
health = 30
see_in_dark = 7
response_help = "pets"
response_disarm = "pushes aside"
response_harm = "smacks"
melee_damage_lower = 12
melee_damage_upper = 20
attacktext = "slams"
attack_sound = 'sound/weapons/punch1.ogg'
faction = list("werewolf")
atmos_requirements = list("min_oxy" = 5, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0)
minbodytemp = 150
maxbodytemp = 500
+233
View File
@@ -0,0 +1,233 @@
/obj/decal/stencil
name = "stencil"
desc = "A letter, one of many used to make words."
icon = 'hyperstation/icons/decals/decal_new.dmi'
icon_state = "a"
anchored = TRUE
layer = WALL_OBJ_LAYER
left
pixel_x = -3 //fine-tune from this offset
pixel_y = 8
alpha = 200
a
name = "a"
icon_state = "a"
b
name = "b"
icon_state = "b"
c
name = "c"
icon_state = "c"
d
name = "d"
icon_state = "d"
e
name = "e"
icon_state = "e"
f
name = "f"
icon_state = "f"
g
name = "g"
icon_state = "g"
h
name = "h"
icon_state = "h"
i
name = "i"
icon_state = "i"
j
name = "j"
icon_state = "j"
k
name = "k"
icon_state = "k"
l
name = "l"
icon_state = "l"
m
name = "m"
icon_state = "m"
n
name = "n"
icon_state = "n"
o
name = "o"
icon_state = "o"
p
name = "p"
icon_state = "p"
q
name = "q"
icon_state = "q"
r
name = "r"
icon_state = "r"
s
name = "s"
icon_state = "s"
t
name = "t"
icon_state = "t"
u
name = "u"
icon_state = "u"
v
name = "v"
icon_state = "v"
w
name = "w"
icon_state = "w"
x
name = "x"
icon_state = "x"
y
name = "y"
icon_state = "y"
z
name = "z"
icon_state = "z"
one
name = "one"
icon_state = "1"
two
name = "two"
icon_state = "2"
three
name = "three"
icon_state = "3"
four
name = "four"
icon_state = "4"
five
name = "five"
icon_state = "5"
six
name = "six"
icon_state = "6"
seven
name = "seven"
icon_state = "7"
eight
name = "eight"
icon_state = "8"
nine
name = "nine"
icon_state = "9"
zero
name = "zero"
icon_state = "0"
right
pixel_x = 13 // fine-tune from this offset
pixel_y = 8
alpha = 200
a
name = "a"
icon_state = "a"
b
name = "b"
icon_state = "b"
c
name = "c"
icon_state = "c"
d
name = "d"
icon_state = "d"
e
name = "e"
icon_state = "e"
f
name = "f"
icon_state = "f"
g
name = "g"
icon_state = "g"
h
name = "h"
icon_state = "h"
i
name = "i"
icon_state = "i"
j
name = "j"
icon_state = "j"
k
name = "k"
icon_state = "k"
l
name = "l"
icon_state = "l"
m
name = "m"
icon_state = "m"
n
name = "n"
icon_state = "n"
o
name = "o"
icon_state = "o"
p
name = "p"
icon_state = "p"
q
name = "q"
icon_state = "q"
r
name = "r"
icon_state = "r"
s
name = "s"
icon_state = "s"
t
name = "t"
icon_state = "t"
u
name = "u"
icon_state = "u"
v
name = "v"
icon_state = "v"
w
name = "w"
icon_state = "w"
x
name = "x"
icon_state = "x"
y
name = "y"
icon_state = "y"
z
name = "z"
icon_state = "z"
one
name = "one"
icon_state = "1"
two
name = "two"
icon_state = "2"
three
name = "three"
icon_state = "3"
four
name = "four"
icon_state = "4"
five
name = "five"
icon_state = "5"
six
name = "six"
icon_state = "6"
seven
name = "seven"
icon_state = "7"
eight
name = "eight"
icon_state = "8"
nine
name = "nine"
icon_state = "9"
zero
name = "zero"
icon_state = "0"
Binary file not shown.

After

Width:  |  Height:  |  Size: 659 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.
+1
View File
@@ -2836,6 +2836,7 @@
#include "hyperstation\code\mobs\mimic.dm"
#include "hyperstation\code\mobs\werewolf.dm"
#include "hyperstation\code\modules\antagonists\werewolf\werewolf.dm"
#include "hyperstation\code\obj\decal.dm"
#include "interface\interface.dm"
#include "interface\menu.dm"
#include "interface\stylesheet.dm"