mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Added pain killer medication class draft
This commit is contained in:
parent
f8421b2589
commit
8f76832177
@ -630,9 +630,9 @@ class ACE_Medical_Advanced {
|
||||
// How much does the pain get reduced?
|
||||
painReduce = 0;
|
||||
// How much will the heart rate be increased when the HR is low (below 55)? {minIncrease, maxIncrease, seconds}
|
||||
hrIncreaseLow[] = {10, 20, 35};
|
||||
hrIncreaseNormal[] = {10, 50, 40};
|
||||
hrIncreaseHigh[] = {10, 40, 50};
|
||||
hrIncreaseLow[] = {0, 0, 0};
|
||||
hrIncreaseNormal[] = {0, 0, 0};
|
||||
hrIncreaseHigh[] = {0, 0, 0};
|
||||
// How long until this medication has disappeared
|
||||
timeInSystem = 120;
|
||||
// How many of this type of medication can be in the system before the patient overdoses?
|
||||
@ -670,6 +670,13 @@ class ACE_Medical_Advanced {
|
||||
maxDose = 6;
|
||||
inCompatableMedication[] = {};
|
||||
};
|
||||
class PainKillers {
|
||||
painReduce = 0.7;
|
||||
timeInSystem = 120;
|
||||
maxDose = 10;
|
||||
inCompatableMedication[] = {};
|
||||
viscosityChange = 5;
|
||||
};
|
||||
};
|
||||
class IV {
|
||||
// volume is in millileters
|
||||
|
Loading…
Reference in New Issue
Block a user