From e1db537443a49759041cfe432ec6984a0c642c02 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Sun, 5 Apr 2015 23:37:41 -0400 Subject: [PATCH] [Goonchem] Poison Traitor Bottles --- code/datums/uplink_item.dm | 9 +++++++++ .../reagents/reagent_containers/glass/bottle.dm | 14 +++++++++++++- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm index 19afa493e1f..8b2c49ad9e3 100644 --- a/code/datums/uplink_item.dm +++ b/code/datums/uplink_item.dm @@ -218,6 +218,15 @@ var/list/uplink_items = list() cost = 7 job = list("Scientist","Research Director","Geneticist","Chief Medical Officer","Medical Doctor","Psychiatrist","Chemist","Paramedic","Virologist","Brig Physician") +//Tator Poison Bottles + +/datum/uplink_item/jobspecific/poisonbottle + name = "Poison Bottle" + desc = "The Syndicate will ship a bottle containing 40 units of a randomly selected poison. The poison can range from highly irritating to incredibly lethal." + item = /obj/item/weapon/reagent_containers/glass/bottle/traitor + cost = 2 + job = list("Scientist","Research Director","Chief Medical Officer","Medical Doctor","Psychiatrist","Chemist","Paramedic","Virologist","Bartender") + // DANGEROUS WEAPONS /datum/uplink_item/dangerous diff --git a/code/modules/reagents/reagent_containers/glass/bottle.dm b/code/modules/reagents/reagent_containers/glass/bottle.dm index c948daa4bc7..adf41f60eea 100644 --- a/code/modules/reagents/reagent_containers/glass/bottle.dm +++ b/code/modules/reagents/reagent_containers/glass/bottle.dm @@ -250,4 +250,16 @@ icon_state = "rbottle" New() ..() - reagents.add_reagent("formaldehyde", 50) \ No newline at end of file + reagents.add_reagent("formaldehyde", 50) + + +////////////////////Traitor Poison Bottle////////////////////////////// + +/obj/item/weapon/reagent_containers/glass/bottle/traitor + desc = "It has a small skull and crossbones on it. Uh-oh!" + possible_transfer_amounts = list(5,10,15,25,30,40) + volume = 40 + + New() + ..() + reagents.add_reagent(pick("polonium","initropidril","concentrated_initro","pancuronium","sodium_thiopental","ketamine","sulfonal","amanitin","coniine","curare","sarin","histamine","venom","cyanide"), 40) \ No newline at end of file