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 /uag/mods/ACE3_Painkillers | |
| 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 'uag/mods/ACE3_Painkillers')
| -rw-r--r-- | uag/mods/ACE3_Painkillers/.gitignore | 4 | ||||
| -rw-r--r-- | uag/mods/ACE3_Painkillers/.hemtt/project.toml | 13 | ||||
| -rw-r--r-- | uag/mods/ACE3_Painkillers/README.md | 1 | ||||
| -rw-r--r-- | uag/mods/ACE3_Painkillers/addons/painkillers/$PBOPREFIX$ | 1 | ||||
| -rw-r--r-- | uag/mods/ACE3_Painkillers/addons/painkillers/config.cpp | 69 | ||||
| -rw-r--r-- | uag/mods/ACE3_Painkillers/addons/painkillers/data/Painkiller.p3d | bin | 0 -> 246602 bytes | |||
| -rw-r--r-- | uag/mods/ACE3_Painkillers/addons/painkillers/data/PainkillerIcon_ca.paa | bin | 0 -> 34919 bytes | |||
| -rw-r--r-- | uag/mods/ACE3_Painkillers/addons/painkillers/data/Painkiller_ca.paa | bin | 0 -> 59610 bytes | |||
| -rw-r--r-- | uag/mods/ACE3_Painkillers/steam/description.txt | 3 | ||||
| -rw-r--r-- | uag/mods/ACE3_Painkillers/steam/image.png | bin | 0 -> 151357 bytes | |||
| -rw-r--r-- | uag/mods/ACE3_Painkillers/steam/workshop_id.txt | 1 |
11 files changed, 92 insertions, 0 deletions
diff --git a/uag/mods/ACE3_Painkillers/.gitignore b/uag/mods/ACE3_Painkillers/.gitignore new file mode 100644 index 0000000..d109ec3 --- /dev/null +++ b/uag/mods/ACE3_Painkillers/.gitignore @@ -0,0 +1,4 @@ +.hemttout/ +releases/ +*.pbo +*.pbo.bisign
\ No newline at end of file diff --git a/uag/mods/ACE3_Painkillers/.hemtt/project.toml b/uag/mods/ACE3_Painkillers/.hemtt/project.toml new file mode 100644 index 0000000..633941f --- /dev/null +++ b/uag/mods/ACE3_Painkillers/.hemtt/project.toml @@ -0,0 +1,13 @@ +name = "ACE3 Painkillers" +prefix = "ACE3_Painkillers" +mainprefix = "z" + +[version] +major = 0 +minor = 0 +patch = 0 +git_hash = 8 + +[properties] +author = "UAG Development Team" +url = "https://github.com/uagpmc/arma3"
\ No newline at end of file diff --git a/uag/mods/ACE3_Painkillers/README.md b/uag/mods/ACE3_Painkillers/README.md new file mode 100644 index 0000000..ed7d029 --- /dev/null +++ b/uag/mods/ACE3_Painkillers/README.md @@ -0,0 +1 @@ +# ACE3 Painkillers diff --git a/uag/mods/ACE3_Painkillers/addons/painkillers/$PBOPREFIX$ b/uag/mods/ACE3_Painkillers/addons/painkillers/$PBOPREFIX$ new file mode 100644 index 0000000..cd90c0f --- /dev/null +++ b/uag/mods/ACE3_Painkillers/addons/painkillers/$PBOPREFIX$ @@ -0,0 +1 @@ +z\ACE3_Painkillers\addons\painkillers
\ No newline at end of file diff --git a/uag/mods/ACE3_Painkillers/addons/painkillers/config.cpp b/uag/mods/ACE3_Painkillers/addons/painkillers/config.cpp new file mode 100644 index 0000000..09f2c24 --- /dev/null +++ b/uag/mods/ACE3_Painkillers/addons/painkillers/config.cpp @@ -0,0 +1,69 @@ +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"}; + }; +}; diff --git a/uag/mods/ACE3_Painkillers/addons/painkillers/data/Painkiller.p3d b/uag/mods/ACE3_Painkillers/addons/painkillers/data/Painkiller.p3d Binary files differnew file mode 100644 index 0000000..ae042d8 --- /dev/null +++ b/uag/mods/ACE3_Painkillers/addons/painkillers/data/Painkiller.p3d diff --git a/uag/mods/ACE3_Painkillers/addons/painkillers/data/PainkillerIcon_ca.paa b/uag/mods/ACE3_Painkillers/addons/painkillers/data/PainkillerIcon_ca.paa Binary files differnew file mode 100644 index 0000000..e9776dc --- /dev/null +++ b/uag/mods/ACE3_Painkillers/addons/painkillers/data/PainkillerIcon_ca.paa diff --git a/uag/mods/ACE3_Painkillers/addons/painkillers/data/Painkiller_ca.paa b/uag/mods/ACE3_Painkillers/addons/painkillers/data/Painkiller_ca.paa Binary files differnew file mode 100644 index 0000000..4da496f --- /dev/null +++ b/uag/mods/ACE3_Painkillers/addons/painkillers/data/Painkiller_ca.paa diff --git a/uag/mods/ACE3_Painkillers/steam/description.txt b/uag/mods/ACE3_Painkillers/steam/description.txt new file mode 100644 index 0000000..2f2308a --- /dev/null +++ b/uag/mods/ACE3_Painkillers/steam/description.txt @@ -0,0 +1,3 @@ +1 in 10 operators approve! + +Check out the source: https://github.com/uagpmc/arma3/tree/main/mods/ACE3_Painkillers diff --git a/uag/mods/ACE3_Painkillers/steam/image.png b/uag/mods/ACE3_Painkillers/steam/image.png Binary files differnew file mode 100644 index 0000000..b52bf50 --- /dev/null +++ b/uag/mods/ACE3_Painkillers/steam/image.png diff --git a/uag/mods/ACE3_Painkillers/steam/workshop_id.txt b/uag/mods/ACE3_Painkillers/steam/workshop_id.txt new file mode 100644 index 0000000..b46e1f4 --- /dev/null +++ b/uag/mods/ACE3_Painkillers/steam/workshop_id.txt @@ -0,0 +1 @@ +2607850181
\ No newline at end of file |
