aboutsummaryrefslogtreecommitdiff
path: root/communities/uag/mods/ACE3_Painkillers
diff options
context:
space:
mode:
Diffstat (limited to 'communities/uag/mods/ACE3_Painkillers')
-rw-r--r--communities/uag/mods/ACE3_Painkillers/.gitignore4
-rw-r--r--communities/uag/mods/ACE3_Painkillers/.hemtt/project.toml13
-rw-r--r--communities/uag/mods/ACE3_Painkillers/README.md1
-rw-r--r--communities/uag/mods/ACE3_Painkillers/addons/painkillers/$PBOPREFIX$1
-rw-r--r--communities/uag/mods/ACE3_Painkillers/addons/painkillers/config.cpp69
-rw-r--r--communities/uag/mods/ACE3_Painkillers/addons/painkillers/data/Painkiller.p3dbin246602 -> 0 bytes
-rw-r--r--communities/uag/mods/ACE3_Painkillers/addons/painkillers/data/PainkillerIcon_ca.paabin34919 -> 0 bytes
-rw-r--r--communities/uag/mods/ACE3_Painkillers/addons/painkillers/data/Painkiller_ca.paabin59610 -> 0 bytes
-rw-r--r--communities/uag/mods/ACE3_Painkillers/steam/description.txt3
-rw-r--r--communities/uag/mods/ACE3_Painkillers/steam/image.pngbin151357 -> 0 bytes
-rw-r--r--communities/uag/mods/ACE3_Painkillers/steam/workshop_id.txt1
11 files changed, 0 insertions, 92 deletions
diff --git a/communities/uag/mods/ACE3_Painkillers/.gitignore b/communities/uag/mods/ACE3_Painkillers/.gitignore
deleted file mode 100644
index d109ec3..0000000
--- a/communities/uag/mods/ACE3_Painkillers/.gitignore
+++ /dev/null
@@ -1,4 +0,0 @@
-.hemttout/
-releases/
-*.pbo
-*.pbo.bisign \ No newline at end of file
diff --git a/communities/uag/mods/ACE3_Painkillers/.hemtt/project.toml b/communities/uag/mods/ACE3_Painkillers/.hemtt/project.toml
deleted file mode 100644
index 633941f..0000000
--- a/communities/uag/mods/ACE3_Painkillers/.hemtt/project.toml
+++ /dev/null
@@ -1,13 +0,0 @@
-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/communities/uag/mods/ACE3_Painkillers/README.md b/communities/uag/mods/ACE3_Painkillers/README.md
deleted file mode 100644
index ed7d029..0000000
--- a/communities/uag/mods/ACE3_Painkillers/README.md
+++ /dev/null
@@ -1 +0,0 @@
-# ACE3 Painkillers
diff --git a/communities/uag/mods/ACE3_Painkillers/addons/painkillers/$PBOPREFIX$ b/communities/uag/mods/ACE3_Painkillers/addons/painkillers/$PBOPREFIX$
deleted file mode 100644
index cd90c0f..0000000
--- a/communities/uag/mods/ACE3_Painkillers/addons/painkillers/$PBOPREFIX$
+++ /dev/null
@@ -1 +0,0 @@
-z\ACE3_Painkillers\addons\painkillers \ No newline at end of file
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"};
- };
-};
diff --git a/communities/uag/mods/ACE3_Painkillers/addons/painkillers/data/Painkiller.p3d b/communities/uag/mods/ACE3_Painkillers/addons/painkillers/data/Painkiller.p3d
deleted file mode 100644
index ae042d8..0000000
--- a/communities/uag/mods/ACE3_Painkillers/addons/painkillers/data/Painkiller.p3d
+++ /dev/null
Binary files differ
diff --git a/communities/uag/mods/ACE3_Painkillers/addons/painkillers/data/PainkillerIcon_ca.paa b/communities/uag/mods/ACE3_Painkillers/addons/painkillers/data/PainkillerIcon_ca.paa
deleted file mode 100644
index e9776dc..0000000
--- a/communities/uag/mods/ACE3_Painkillers/addons/painkillers/data/PainkillerIcon_ca.paa
+++ /dev/null
Binary files differ
diff --git a/communities/uag/mods/ACE3_Painkillers/addons/painkillers/data/Painkiller_ca.paa b/communities/uag/mods/ACE3_Painkillers/addons/painkillers/data/Painkiller_ca.paa
deleted file mode 100644
index 4da496f..0000000
--- a/communities/uag/mods/ACE3_Painkillers/addons/painkillers/data/Painkiller_ca.paa
+++ /dev/null
Binary files differ
diff --git a/communities/uag/mods/ACE3_Painkillers/steam/description.txt b/communities/uag/mods/ACE3_Painkillers/steam/description.txt
deleted file mode 100644
index 2f2308a..0000000
--- a/communities/uag/mods/ACE3_Painkillers/steam/description.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-1 in 10 operators approve!
-
-Check out the source: https://github.com/uagpmc/arma3/tree/main/mods/ACE3_Painkillers
diff --git a/communities/uag/mods/ACE3_Painkillers/steam/image.png b/communities/uag/mods/ACE3_Painkillers/steam/image.png
deleted file mode 100644
index b52bf50..0000000
--- a/communities/uag/mods/ACE3_Painkillers/steam/image.png
+++ /dev/null
Binary files differ
diff --git a/communities/uag/mods/ACE3_Painkillers/steam/workshop_id.txt b/communities/uag/mods/ACE3_Painkillers/steam/workshop_id.txt
deleted file mode 100644
index b46e1f4..0000000
--- a/communities/uag/mods/ACE3_Painkillers/steam/workshop_id.txt
+++ /dev/null
@@ -1 +0,0 @@
-2607850181 \ No newline at end of file