mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 03:33:21 +00:00
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4494 316c924e-a436-60f5-8080-3fe189b3f50e
33 lines
937 B
Plaintext
33 lines
937 B
Plaintext
|
|
/obj/item/weapon/reagent_containers/glass/bottle/robot
|
|
amount_per_transfer_from_this = 10
|
|
possible_transfer_amounts = list(5,10,15,25,30,50,100)
|
|
flags = FPRINT | TABLEPASS | OPENCONTAINER
|
|
volume = 60
|
|
var/reagent = ""
|
|
|
|
|
|
/obj/item/weapon/reagent_containers/glass/bottle/robot/inaprovaline
|
|
name = "internal inaprovaline bottle"
|
|
desc = "A small bottle. Contains inaprovaline - used to stabilize patients."
|
|
icon = 'icons/obj/chemical.dmi'
|
|
icon_state = "bottle16"
|
|
reagent = "inaprovaline"
|
|
|
|
New()
|
|
..()
|
|
reagents.add_reagent("inaprovaline", 60)
|
|
return
|
|
|
|
|
|
/obj/item/weapon/reagent_containers/glass/bottle/robot/antitoxin
|
|
name = "internal anti-toxin bottle"
|
|
desc = "A small bottle of Anti-toxins. Counters poisons, and repairs damage, a wonder drug."
|
|
icon = 'icons/obj/chemical.dmi'
|
|
icon_state = "bottle17"
|
|
reagent = "anti_toxin"
|
|
|
|
New()
|
|
..()
|
|
reagents.add_reagent("anti_toxin", 60)
|
|
return |