diff --git a/addons/explosives/Cfg3DEN.hpp b/addons/explosives/Cfg3DEN.hpp
new file mode 100644
index 0000000000..d36baa9c40
--- /dev/null
+++ b/addons/explosives/Cfg3DEN.hpp
@@ -0,0 +1,22 @@
+#define DEFAULT_IS_EOD (_this getUnitTrait 'explosiveSpecialist')
+
+class Cfg3DEN {
+ class Object {
+ class AttributeCategories {
+ class ace_attributes {
+ class Attributes {
+ class ace_isEOD {
+ displayName = CSTRING(IsEOD_DisplayName);
+ tooltip = CSTRING(IsEOD_Description);
+ property = QUOTE(ace_isEOD);
+ control = "Checkbox";
+ expression = QUOTE(_this setVariable [ARR_3('ACE_isEOD',_value,true)]);
+ defaultValue = QUOTE(DEFAULT_IS_EOD);
+ condition = "objectBrain";
+ typeName = "BOOL";
+ };
+ };
+ };
+ };
+ };
+};
diff --git a/addons/explosives/config.cpp b/addons/explosives/config.cpp
index 3d2077ff1d..0ae218be25 100644
--- a/addons/explosives/config.cpp
+++ b/addons/explosives/config.cpp
@@ -16,6 +16,7 @@ class CfgPatches {
#include "ACE_Settings.hpp"
#include "CfgEventHandlers.hpp"
+#include "Cfg3DEN.hpp"
#include "CfgAmmo.hpp"
#include "CfgMagazines.hpp"
#include "CfgWeapons.hpp"
diff --git a/addons/explosives/stringtable.xml b/addons/explosives/stringtable.xml
index eac81158f3..2240642084 100644
--- a/addons/explosives/stringtable.xml
+++ b/addons/explosives/stringtable.xml
@@ -1042,5 +1042,13 @@
Таймер взрывчатки
Timer de explosão
+
+ Is EOD
+ Kampfmittelbeseitigung
+
+
+ Controls whether the unit is an explosive specialist.
+ Steuert, ob die Einheit ein Sprengstoffspezialist ist.
+