mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Updated repair config
This commit is contained in:
parent
071a673f28
commit
e9d51aa57b
@ -1,32 +1,39 @@
|
||||
class ACE_Repair {
|
||||
class Actions {
|
||||
class ReplaceWheel {
|
||||
displayName = CSTRING(Wheel);
|
||||
displayNameProgress = CSTRING(ReplacingWheel);
|
||||
displayName = CSTRING(ReplaceWheel);
|
||||
displayNameProgress = CSTRING(ReplacingWheel);
|
||||
|
||||
locations[] = {"All"};
|
||||
requiredEngineer = 0;
|
||||
repairingTime = 5;
|
||||
repairingTimeSelfCoef = 1;
|
||||
items[] = {};
|
||||
condition = "";
|
||||
itemConsumed = 0;
|
||||
locations[] = {"All"};
|
||||
requiredEngineer = 0;
|
||||
repairingTime = 5;
|
||||
repairingTimeSelfCoef = 1;
|
||||
items[] = {};
|
||||
condition = "";
|
||||
itemConsumed = 0;
|
||||
|
||||
callbackSuccess = QUOTE(DFUNC(repairBasic_bandage));
|
||||
callbackFailure = "";
|
||||
callbackProgress = "";
|
||||
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[] = {};
|
||||
animationCaller = "AinvPknlMstpSlayWrflDnon_medicOther";
|
||||
animationCallerProne = "AinvPpneMstpSlayW[wpn]Dnon_medicOther";
|
||||
animationCallerSelf = "AinvPknlMstpSlayW[wpn]Dnon_medic";
|
||||
animationCallerSelfProne = "AinvPpneMstpSlayW[wpn]Dnon_medic";
|
||||
litter[] = {};
|
||||
};
|
||||
class Tracks: Wheel {
|
||||
class RemoveWheel: ReplaceWheel {
|
||||
|
||||
};
|
||||
class RepairEngine {
|
||||
|
||||
};
|
||||
class Tracks: ReplaceWheel {
|
||||
|
||||
};
|
||||
class MiscRepair: Wheel {
|
||||
|
||||
class MiscRepair: ReplaceWheel {
|
||||
displayName = ""; // let's make empty string an auto generated string
|
||||
displayNameProgress = CSTRING(Repairing);
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -18,3 +18,4 @@ class CfgPatches {
|
||||
#include "CfgVehicles.hpp"
|
||||
|
||||
#include "ACE_Settings.hpp"
|
||||
#include "ACE_repair.hpp"
|
||||
|
Loading…
Reference in New Issue
Block a user