///////////////////////////////////////////////////
//
// Ward Drugs
// 
// This file determines the organisation of the
// Drugs cabinet. Each item in the 'Categories' 
// section is shown as an item in the list of drug
// categories. These items must be names of other 
// sections in this file.
//
// Under each category's section is the list of 
// preparation names. These items must also be
// names of other sections in this file.
//
// Under each preparation's section the Fluid that 
// the drug is dissolved in followed by its volume, 
// The name of the Drug that is to be added (as 
// specified in Pharmacy.txt) followed by its quantity,
// and the image file that is to be used for this item
// in the display - which must be found in this 
// folder (resources/doctor).
//
////////////////
//
// format:
//
// [Categories]
// LIST_NAME_1
// LIST_NAME_2
//
//
// [LIST_NAME_1]
// PREPARATION_NAME_1
// PREPARATION_NAME_2
//
// [LIST_NAME_2]
// PREPARATION_NAME_3
//
//
// [PREPARATION_NAME_1]
// property = value
//
// etc.



[Categories]
Emergency
Diabetes
Anaesthesia



[Emergency]
Frusemide 40mg
Desmopressin 100mg
Dobutamine 10mg
Adrenaline 1g
Chlorpheniramine 100mg
50ml 50% Dextrose

[Anaesthesia]
Propofol 20ml
Morphine 10mg

[Diabetes]
Insulin 10 U
50ml 50% Dextrose
KCl 20mg










// Individual drug preparation definitions

[KCl 20mg]
Fluid	=	Water 0.005 + K 0.020
Image	=	doctor/Ampoule3.jpg

[Frusemide 40mg]
Fluid	=	Saline 0.001
Drug	=	Frusemide 0.040
Image	=	doctor/Ampoule2.jpg

[Morphine 10mg]
Fluid	=	Saline 0.005
Drug	=	Morphine 0.010
Image	=	doctor/Ampoule2.jpg

[Desmopressin 100mg]
Fluid	=	Saline 0.001
Drug	=	Desmopressin 0.100
Image	=	doctor/Ampoule1.jpg

[Dobutamine 10mg]
Fluid	=	Saline 0.001
Drug	=	Dobutamine 0.010
Image	=	doctor/Ampoule2.jpg

[Adrenaline 1g]
Fluid	=	Saline 0.001
Drug	=	Adrenaline 1
Image	=	doctor/Ampoule3.jpg

[Insulin 10 U]
Fluid	=	Water 0.100
Drug	=	Insulin 10
Image	=	doctor/syringes/Syringe1.jpg

[50ml 50% Dextrose]
Fluid	=	Water 0.050 + glucose 0.139
Image	=	doctor/syringes/SyringeFat.jpg
// 139 mmol = 25g in 50g water (180g/mol)

[Chlorpheniramine 100mg]
Fluid	=	Saline 0.001
Drug	=	Chlorpheniramine 0.100
Image	=	doctor/Ampoule3.jpg

[Propofol 20ml]
Fluid	=	Water 0.020
Drug	=	Propofol 0.010
Image	=	doctor/syringes/SyringeWhite.jpg

