mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-27 06:54:18 +01:00
* Split up and rename `var/flags` * Various fixes * CL * Don't rename Phoron Guard phoron preset --------- Co-authored-by: Cody Brittain <cbrittain10@live.com>
26 lines
947 B
Plaintext
26 lines
947 B
Plaintext
|
|
/obj/item/reagent_containers/glass/bottle/robot
|
|
amount_per_transfer_from_this = 10
|
|
possible_transfer_amounts = list(5,10,15,25,30,50,100)
|
|
atom_flags = ATOM_FLAG_OPEN_CONTAINER
|
|
volume = 60
|
|
fragile = 0 // do NOT shatter
|
|
var/reagent = /singleton/reagent/
|
|
|
|
|
|
/obj/item/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 = "bottle-4"
|
|
reagent = /singleton/reagent/inaprovaline
|
|
reagents_to_add = list(/singleton/reagent/inaprovaline = 60)
|
|
|
|
/obj/item/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 = "bottle-4"
|
|
reagent = /singleton/reagent/dylovene
|
|
reagents_to_add = list(/singleton/reagent/dylovene = 60)
|