From 01da430a6a9a863085779cb1e70d1bb08d157e54 Mon Sep 17 00:00:00 2001 From: "tronaldnwn@hotmail.com" Date: Thu, 7 Apr 2011 21:57:27 +0000 Subject: [PATCH] Wizordizine is now Adminordazine! For admin use only. One pill made for admin spawn only. Stopping plans for making regeneration spell, as i don't need to anymore! Since Neo's update tanks/ guns don't black wizards out in one shot anymore! Why do I need to make a new spell for it? git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1411 316c924e-a436-60f5-8080-3fe189b3f50e --- code/WorkInProgress/Chemistry-Reagents.dm | 18 +++++++++--------- code/WorkInProgress/Chemistry-Tools.dm | 15 ++++++++------- 2 files changed, 17 insertions(+), 16 deletions(-) diff --git a/code/WorkInProgress/Chemistry-Reagents.dm b/code/WorkInProgress/Chemistry-Reagents.dm index 4e157a1500..4b645a6c12 100644 --- a/code/WorkInProgress/Chemistry-Reagents.dm +++ b/code/WorkInProgress/Chemistry-Reagents.dm @@ -895,16 +895,16 @@ datum ..() return - wizordrazine //Going to use this for a spell soon, regeneration, it might seem OP, but that's the point. - name = "Wizordrazine" - id = "wizordrazine" - description = "I don't have to explain shit about Wizordrazine, its magic." + adminordrazine //An OP chemical for adminis + name = "Adminordrazine" + id = "adminordrazine" + description = "I don't have to explain shit about adminordrazine, its magic." reagent_state = LIQUID on_mob_life(var/mob/M) if(!M) M = holder.my_atom - if(M:cloneloss) M:cloneloss = max(0, M:cloneloss-3) - if(M:oxyloss) M:oxyloss = max(0, M:oxyloss-3) - M:heal_organ_damage(3,3) + if(M:cloneloss) M:cloneloss = max(0, M:cloneloss-5) + if(M:oxyloss) M:oxyloss = max(0, M:oxyloss-5) + M:heal_organ_damage(5,5) M:drowsyness = max(M:drowsyness-2, 0) if(holder.has_reagent("toxin")) holder.remove_reagent("toxin", 2) @@ -924,14 +924,14 @@ datum holder.remove_reagent("carpotoxin", 1) if(holder.has_reagent("zombiepowder")) holder.remove_reagent("zombiepowder", 0.5) - M:brainloss = max(M:brainloss-3 , 0) + M:brainloss = max(M:brainloss-5 , 0) M.disabilities = 0 M.sdisabilities = 0 M:eye_blurry = max(M:eye_blurry-5 , 0) M:eye_blind = max(M:eye_blind-5 , 0) M:disabilities &= ~1 M:sdisabilities &= ~1 - if(M:toxloss) M:toxloss = max(0, M:toxloss-3) + if(M:toxloss) M:toxloss = max(0, M:toxloss-5) ..() return diff --git a/code/WorkInProgress/Chemistry-Tools.dm b/code/WorkInProgress/Chemistry-Tools.dm index 9d35627aad..c270abe354 100644 --- a/code/WorkInProgress/Chemistry-Tools.dm +++ b/code/WorkInProgress/Chemistry-Tools.dm @@ -2877,11 +2877,18 @@ ..() reagents.add_reagent("cyanide", 50) +/obj/item/weapon/reagent_containers/pill/adminordrazine + name = "Adminordrazine pill" + desc = "It's magic, I don't have to explain shit." + icon_state = "pill16" + New() + ..() + reagents.add_reagent("adminordrazine", 50) + /obj/item/weapon/reagent_containers/pill/stox name = "Sleeping pill" desc = "Commonly used to treat insomnia." icon_state = "pill8" - New() ..() reagents.add_reagent("stoxin", 30) @@ -2890,7 +2897,6 @@ name = "Kelotane pill" desc = "Used to treat burns." icon_state = "pill11" - New() ..() reagents.add_reagent("kelotane", 30) @@ -2899,7 +2905,6 @@ name = "Inaprovaline pill" desc = "Used to stabilize patients." icon_state = "pill20" - New() ..() reagents.add_reagent("inaprovaline", 30) @@ -2908,7 +2913,6 @@ name = "Dexalin pill" desc = "Used to treat oxygen deprivation." icon_state = "pill16" - New() ..() reagents.add_reagent("dexalin", 30) @@ -2920,7 +2924,6 @@ icon = 'objects.dmi' icon_state = "watertank" amount_per_transfer_from_this = 10 - New() ..() reagents.add_reagent("water",1000) @@ -2931,7 +2934,6 @@ icon = 'objects.dmi' icon_state = "weldtank" amount_per_transfer_from_this = 10 - New() ..() reagents.add_reagent("fuel",1000) @@ -2965,7 +2967,6 @@ icon = 'objects.dmi' icon_state = "beertankTEMP" amount_per_transfer_from_this = 10 - New() ..() reagents.add_reagent("beer",1000)