New virus called Retrovirus. It scrambles your UI and SE after a certain stage.

Implemented CTRL+DIRECTION KEY to face a direction.

Tweaked some drink icons.

Added in two new icon_states to genetics.dmi. It doesn't do anything yet, but I might toy with them later on.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1954 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
vageyenaman@gmail.com
2011-07-30 18:57:37 +00:00
parent b7bc3fa7c3
commit 320ef1dd22
9 changed files with 159 additions and 7 deletions
+83
View File
@@ -2257,3 +2257,86 @@ note dizziness decrements automatically in the mob's Life() proc.
else
boom.icon_state = "loss_general"
#endif
// facing verbs
/mob/verb/eastface()
set hidden = 1
if(!canmove)
return
if (client.moving)
return 0
if (world.time < client.move_delay)
return
if (stat==2)
return
if (anchored)
return
if (monkeyizing)
return
if (restrained())
return
dir = EAST
client.move_delay += movement_delay()
/mob/verb/westface()
set hidden = 1
if(!canmove)
return
if (client.moving)
return 0
if (world.time < client.move_delay)
return
if (stat==2)
return
if (anchored)
return
if (monkeyizing)
return
if (restrained())
return
dir = WEST
client.move_delay += movement_delay()
/mob/verb/northface()
set hidden = 1
if(!canmove)
return
if (client.moving)
return 0
if (world.time < client.move_delay)
return
if (stat==2)
return
if (anchored)
return
if (monkeyizing)
return
if (restrained())
return
dir = NORTH
client.move_delay += movement_delay()
/mob/verb/southface()
set hidden = 1
if(!canmove)
return
if (client.moving)
return 0
if (world.time < client.move_delay)
return
if (stat==2)
return
if (anchored)
return
if (monkeyizing)
return
if (restrained())
return
dir = SOUTH
client.move_delay += movement_delay()