mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
21 lines
649 B
C++
21 lines
649 B
C++
|
class EGVAR(medical_treatment,actions) {
|
||
|
class BasicBandage;
|
||
|
class PatDown: BasicBandage {
|
||
|
displayName = CSTRING(Actions_PatDown);
|
||
|
displayNameProgress = CSTRING(Actions_PerformingPatDown);
|
||
|
icon = "";
|
||
|
category = "advanced";
|
||
|
treatmentLocations = 0;
|
||
|
allowedSelections[] = {"All"};
|
||
|
allowSelfTreatment = 1;
|
||
|
medicRequired = 0;
|
||
|
treatmentTime = 5;
|
||
|
items[] = {};
|
||
|
condition = QFUNC(medical_canPatDown);
|
||
|
callbackSuccess = QFUNC(medical_success);
|
||
|
callbackProgress = QFUNC(medical_progress);
|
||
|
consumeItem = 0;
|
||
|
litter[] = {};
|
||
|
};
|
||
|
};
|