diff options
| author | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-05-27 23:44:57 +0100 |
|---|---|---|
| committer | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-05-27 23:44:57 +0100 |
| commit | 490eebdede73880ab5d7daebb250ab41e9640e25 (patch) | |
| tree | 6c5f89e6021d4f61eede570307369afbb3872ff5 /communities/uag/mods/ACE3_Painkillers/addons/painkillers/config.cpp | |
| parent | c25aa035fecd2427831cdfa17d912dcf1bfd55c8 (diff) | |
| download | unnamed-group-490eebdede73880ab5d7daebb250ab41e9640e25.tar unnamed-group-490eebdede73880ab5d7daebb250ab41e9640e25.tar.gz unnamed-group-490eebdede73880ab5d7daebb250ab41e9640e25.tar.bz2 unnamed-group-490eebdede73880ab5d7daebb250ab41e9640e25.tar.xz unnamed-group-490eebdede73880ab5d7daebb250ab41e9640e25.zip | |
better namespacing
Diffstat (limited to 'communities/uag/mods/ACE3_Painkillers/addons/painkillers/config.cpp')
| -rw-r--r-- | communities/uag/mods/ACE3_Painkillers/addons/painkillers/config.cpp | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/communities/uag/mods/ACE3_Painkillers/addons/painkillers/config.cpp b/communities/uag/mods/ACE3_Painkillers/addons/painkillers/config.cpp deleted file mode 100644 index 09f2c24..0000000 --- a/communities/uag/mods/ACE3_Painkillers/addons/painkillers/config.cpp +++ /dev/null @@ -1,69 +0,0 @@ -class CfgPatches -{ - class painkillers - { - authors[] = {"zuedev","fluffy"}; - authorUrl = "https://uagpmc.com"; - name = "painkillers"; - units[] = {}; - weapons[] = {}; - requireAddons[] = {"ace_medical_treatment"}; - }; -}; - -class CfgWeapons -{ - class CBA_MiscItem_ItemInfo; - class ACE_morphine; - - class UAGPMC_Painkiller: ACE_morphine - { - displayName = "Painkiller"; - author = "Fluffy"; - model = "\z\ACE3_Painkillers\addons\painkillers\data\Painkiller.p3d"; - picture = "\z\ACE3_Painkillers\addons\painkillers\data\PainkillerIcon_ca.paa"; - descriptionShort = "Used to Treat Pain"; - descriptionUse = "Tablets used to cure Slight Pain, 1 out of 10 Operators Recommend!"; - hiddenSelections[] = {"camo"}; - hiddenSelectionsTextures[] = {"\z\ACE3_Painkillers\addons\painkillers\data\painkiller_ca.paa"}; - - class ItemInfo: CBA_MiscItem_ItemInfo - { - mass = 0.875; - }; - }; -}; - -class ace_medical_treatment -{ - class Medication - { - class Morphine; - - class UAGPMC_Painkiller: Morphine - { - painReduce = 0.2; - hrIncreaseLow[] = {0, 0}; - hrIncreaseNormal[] = {0, 0}; - hrIncreaseHigh[] = {0, 0}; - timeInSystem = 600; - timeTillMaxEffect = 120; - maxDose = 5; - incompatibleMedication[] = {}; - viscosityChange = 0; - }; - }; -}; - -class ace_medical_treatment_actions -{ - class Morphine; - - class UAGPMC_Painkiller: Morphine - { - allowedSelections[] = {"Head"}; - displayName = "Use Painkiller"; - displayNameProgress = "Using Painkiller"; - items[] = {"UAGPMC_Painkiller"}; - }; -}; |
