mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-13 16:13:19 +01:00
fFixed missing vodkamartini entity
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@229 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -1305,6 +1305,24 @@ datum
|
||||
M.confused += 2
|
||||
..()
|
||||
|
||||
vodkamartini
|
||||
name = "Vodka Martini"
|
||||
id = "vodkamartini"
|
||||
description = "Vodka with Gin. Not quite how 007 enjoyed it, but still delicious."
|
||||
reagent_state = LIQUID
|
||||
on_mob_life(var/mob/M)
|
||||
if(!data) data = 1
|
||||
data++
|
||||
M.make_dizzy(3)
|
||||
M.jitteriness = max(M.jitteriness-3,0)
|
||||
if(data >= 30)
|
||||
if (!M:stuttering) M.stuttering = 1
|
||||
M.stuttering += 3
|
||||
if(data >= 50 && prob(33))
|
||||
if (!M.confused) M.confused = 1
|
||||
M.confused += 2
|
||||
..()
|
||||
|
||||
white_russian
|
||||
name = "White Russian"
|
||||
id = "whiterussian"
|
||||
|
||||
Reference in New Issue
Block a user