mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-13 08:03:43 +01:00
Monkeys can now be stungloved
Cyborgs got a makeover
Standard model now gets an energy sword when emagged
Engineering model
RCDs now run on cell charge for engyborgs
Emagged engyborgs get the functional equivalent of stungloves
Security model gets a laser when emagged
Janitor model
Spraybottle contents slowly refill at the cost of cell charge
Emagged janitors get a spraybottle full of space lube
Brobot
Bottle contents slowly refill at the cost of cell charge
Emagged brobots get a bottle of Mickey Finn's Special Brew
Traitor/malf AIs can 'emag' their borgs with the robotics terminal (subject to removal/conversion to malf module should it prove hilariously overpowered)
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@634 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -865,6 +865,7 @@
|
||||
return
|
||||
attack(mob/M as mob, mob/user as mob, def_zone)
|
||||
var/datum/reagents/R = src.reagents
|
||||
var/fillevel = gulp_size
|
||||
|
||||
if(!R.total_volume || !R)
|
||||
user << "\red None of [src] left, oh no!"
|
||||
@@ -892,6 +893,14 @@
|
||||
spawn(5)
|
||||
reagents.trans_to(M, gulp_size)
|
||||
|
||||
if(isrobot(user)) //Cyborg modules that include drinks automatically refill themselves, but drain the borg's cell
|
||||
var/mob/living/silicon/robot/bro = user
|
||||
bro.cell.charge -= 30
|
||||
var/refill = R.get_master_reagent_id()
|
||||
spawn(600)
|
||||
R.add_reagent(refill, fillevel)
|
||||
|
||||
|
||||
playsound(M.loc,'drink.ogg', rand(10,50), 1)
|
||||
return 1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user