mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 19:47:22 +01:00
Reagents:
Made the Admin drug more potent, now causes diseases to go away and sets all negative effects and statuses to zero. Changed the description. Tools: Changed admin pill's description. Sprites: Harvest- Added sun flowers Hydroponics - added sunflowers, reorganized plants Seeds - added sunflower seeds Yes I'm going to add sun flowers (and Hydroponic PDA carts) in my next update. And, sunflower seed cake/ roast sun flower seeds. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1449 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -933,7 +933,7 @@ datum
|
||||
adminordrazine //An OP chemical for adminis
|
||||
name = "Adminordrazine"
|
||||
id = "adminordrazine"
|
||||
description = "I don't have to explain shit about adminordrazine, its magic."
|
||||
description = "It's magic. We don't have to explain it."
|
||||
reagent_state = LIQUID
|
||||
on_mob_life(var/mob/living/M as mob)
|
||||
if(!M) M = holder.my_atom
|
||||
@@ -941,27 +941,29 @@ datum
|
||||
M:oxyloss = 0
|
||||
M:radiation = 0
|
||||
M:heal_organ_damage(5,5)
|
||||
M:drowsyness = 0
|
||||
if(M:toxloss) M:toxloss = max(0, M:toxloss-5)
|
||||
if(holder.has_reagent("toxin"))
|
||||
holder.remove_reagent("toxin", 2)
|
||||
holder.remove_reagent("toxin", 5)
|
||||
if(holder.has_reagent("stoxin"))
|
||||
holder.remove_reagent("stoxin", 2)
|
||||
holder.remove_reagent("stoxin", 5)
|
||||
if(holder.has_reagent("plasma"))
|
||||
holder.remove_reagent("plasma", 1)
|
||||
holder.remove_reagent("plasma", 5)
|
||||
if(holder.has_reagent("acid"))
|
||||
holder.remove_reagent("acid", 1)
|
||||
holder.remove_reagent("acid", 5)
|
||||
if(holder.has_reagent("pacid"))
|
||||
holder.remove_reagent("pacid", 5)
|
||||
if(holder.has_reagent("cyanide"))
|
||||
holder.remove_reagent("cyanide", 1)
|
||||
holder.remove_reagent("cyanide", 5)
|
||||
if(holder.has_reagent("lexorin"))
|
||||
holder.remove_reagent("lexorin", 2)
|
||||
holder.remove_reagent("lexorin", 5)
|
||||
if(holder.has_reagent("amatoxin"))
|
||||
holder.remove_reagent("amatoxin", 2)
|
||||
holder.remove_reagent("amatoxin", 5)
|
||||
if(holder.has_reagent("chloralhydrate"))
|
||||
holder.remove_reagent("chloralhydrate", 5)
|
||||
if(holder.has_reagent("carpotoxin"))
|
||||
holder.remove_reagent("carpotoxin", 1)
|
||||
holder.remove_reagent("carpotoxin", 5)
|
||||
if(holder.has_reagent("zombiepowder"))
|
||||
holder.remove_reagent("zombiepowder", 0.5)
|
||||
holder.remove_reagent("zombiepowder", 5)
|
||||
M:brainloss = 0
|
||||
M.disabilities = 0
|
||||
M.sdisabilities = 0
|
||||
@@ -969,7 +971,21 @@ datum
|
||||
M:eye_blind = 0
|
||||
M:disabilities &= ~1
|
||||
M:sdisabilities &= ~1
|
||||
if(M:toxloss) M:toxloss = max(0, M:toxloss-5)
|
||||
M:weakened = 0
|
||||
M:stunned = 0
|
||||
M:paralysis = 0
|
||||
M:silent = 0
|
||||
M.dizziness = 0
|
||||
M:drowsyness = 0
|
||||
M:stuttering = 0
|
||||
M:confused = 0
|
||||
M:sleeping = 0
|
||||
M:jitteriness = 0
|
||||
M.virus.spread = "Remissive"
|
||||
M.virus.stage--
|
||||
if(M.virus.stage <= 0)
|
||||
M.resistances += M.virus.type
|
||||
M.virus = null
|
||||
..()
|
||||
return
|
||||
|
||||
|
||||
@@ -1013,7 +1013,7 @@
|
||||
usr << "\blue \The [src] was bitten [bitecount] times!"
|
||||
else
|
||||
usr << "\blue \The [src] was bitten multiple times!"
|
||||
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/sliceable
|
||||
var/slice_path
|
||||
var/slices_num
|
||||
@@ -1060,7 +1060,7 @@
|
||||
reagents.trans_to(slice,reagents_per_slice)
|
||||
del(src)
|
||||
return
|
||||
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
/// FOOD END
|
||||
@@ -2118,7 +2118,7 @@
|
||||
|
||||
/obj/item/weapon/reagent_containers/pill/adminordrazine
|
||||
name = "Adminordrazine pill"
|
||||
desc = "It's magic, I don't have to explain shit."
|
||||
desc = "It's magic. We don't have to explain it."
|
||||
icon_state = "pill16"
|
||||
New()
|
||||
..()
|
||||
|
||||
Reference in New Issue
Block a user