mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
071a673f28
copied across treatment framework from medical and adjusted it to suit the repair actions
33 lines
913 B
C++
33 lines
913 B
C++
class ACE_Repair {
|
|
class Actions {
|
|
class ReplaceWheel {
|
|
displayName = CSTRING(Wheel);
|
|
displayNameProgress = CSTRING(ReplacingWheel);
|
|
|
|
locations[] = {"All"};
|
|
requiredEngineer = 0;
|
|
repairingTime = 5;
|
|
repairingTimeSelfCoef = 1;
|
|
items[] = {};
|
|
condition = "";
|
|
itemConsumed = 0;
|
|
|
|
callbackSuccess = QUOTE(DFUNC(repairBasic_bandage));
|
|
callbackFailure = "";
|
|
callbackProgress = "";
|
|
|
|
animationCaller = "AinvPknlMstpSlayWrflDnon_medicOther";
|
|
animationCallerProne = "AinvPpneMstpSlayW[wpn]Dnon_medicOther";
|
|
animationCallerSelf = "AinvPknlMstpSlayW[wpn]Dnon_medic";
|
|
animationCallerSelfProne = "AinvPpneMstpSlayW[wpn]Dnon_medic";
|
|
litter[] = {};
|
|
};
|
|
class Tracks: Wheel {
|
|
|
|
};
|
|
class MiscRepair: Wheel {
|
|
|
|
};
|
|
};
|
|
};
|