Add descriptions for hellfire variants (#8157)

This commit is contained in:
Steve Zhao 2021-03-09 18:04:17 -05:00 committed by GitHub
parent dcfb5aa224
commit c0db53770a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 11 deletions

View File

@ -7,7 +7,7 @@ class CfgMagazines {
ammo = "ACE_Hellfire_AGM114K";
displayName = "AGM-114K [ACE]";
displayNameShort = "AGM-114K";
descriptionShort = "AGM-114K";
descriptionShort = CSTRING(KDescriptionShort);
};
// 1.70 pylon magazines:
@ -52,35 +52,35 @@ class CfgMagazines {
ammo = "ACE_Hellfire_AGM114N";
displayName = "AGM-114N [ACE]";
displayNameShort = "AGM-114N";
descriptionShort = "AGM-114N";
descriptionShort = CSTRING(NDescriptionShort);
};
// 1.70 pylon magazines:
class PylonMissile_1Rnd_ACE_Hellfire_AGM114N: PylonMissile_1Rnd_ACE_Hellfire_AGM114K { // Bare missle
displayName = "1x AGM-114N [ACE]";
displayNameShort = "AGM-114N";
descriptionShort = "AGM-114N";
descriptionShort = CSTRING(NDescriptionShort);
ammo = "ACE_Hellfire_AGM114N";
pylonWeapon = QGVAR(launcher_N);
};
class PylonRack_1Rnd_ACE_Hellfire_AGM114N: PylonRack_1Rnd_ACE_Hellfire_AGM114K { // 1x Launcher Support Rack
displayName = "1x AGM-114N [ACE]";
displayNameShort = "AGM-114N";
descriptionShort = "AGM-114N";
descriptionShort = CSTRING(NDescriptionShort);
ammo = "ACE_Hellfire_AGM114N";
pylonWeapon = QGVAR(launcher_N);
};
class PylonRack_3Rnd_ACE_Hellfire_AGM114N: PylonRack_3Rnd_ACE_Hellfire_AGM114K { // 3x Launcher Support Rack
displayName = "3x AGM-114N [ACE]";
displayNameShort = "AGM-114N";
descriptionShort = "AGM-114N";
descriptionShort = CSTRING(NDescriptionShort);
ammo = "ACE_Hellfire_AGM114N";
pylonWeapon = QGVAR(launcher_N);
};
class PylonRack_4Rnd_ACE_Hellfire_AGM114N: PylonRack_4Rnd_ACE_Hellfire_AGM114K { // 4x Launcher Support Rack
displayName = "4x AGM-114N [ACE]";
displayNameShort = "AGM-114N";
descriptionShort = "AGM-114N";
descriptionShort = CSTRING(NDescriptionShort);
ammo = "ACE_Hellfire_AGM114N";
pylonWeapon = QGVAR(launcher_N);
};
@ -91,35 +91,35 @@ class CfgMagazines {
ammo = "ACE_Hellfire_AGM114L";
displayName = "AGM-114L [ACE]";
displayNameShort = "AGM-114L";
descriptionShort = "AGM-114L";
descriptionShort = CSTRING(LDescriptionShort);
};
// 1.70 pylon magazines:
class PylonMissile_1Rnd_ACE_Hellfire_AGM114L: PylonMissile_1Rnd_ACE_Hellfire_AGM114K { // Bare missle
displayName = "1x AGM-114L [ACE]";
displayNameShort = "AGM-114L";
descriptionShort = "AGM-114L";
descriptionShort = CSTRING(LDescriptionShort);
ammo = "ACE_Hellfire_AGM114L";
pylonWeapon = QGVAR(launcher_L);
};
class PylonRack_1Rnd_ACE_Hellfire_AGM114L: PylonRack_1Rnd_ACE_Hellfire_AGM114K { // 1x Launcher Support Rack
displayName = "1x AGM-114L [ACE]";
displayNameShort = "AGM-114L";
descriptionShort = "AGM-114L";
descriptionShort = CSTRING(LDescriptionShort);
ammo = "ACE_Hellfire_AGM114L";
pylonWeapon = QGVAR(launcher_L);
};
class PylonRack_3Rnd_ACE_Hellfire_AGM114L: PylonRack_3Rnd_ACE_Hellfire_AGM114K { // 3x Launcher Support Rack
displayName = "3x AGM-114L [ACE]";
displayNameShort = "AGM-114L";
descriptionShort = "AGM-114L";
descriptionShort = CSTRING(LDescriptionShort);
ammo = "ACE_Hellfire_AGM114L";
pylonWeapon = QGVAR(launcher_L);
};
class PylonRack_4Rnd_ACE_Hellfire_AGM114L: PylonRack_4Rnd_ACE_Hellfire_AGM114K { // 4x Launcher Support Rack
displayName = "4x AGM-114L [ACE]";
displayNameShort = "AGM-114L";
descriptionShort = "AGM-114L";
descriptionShort = CSTRING(LDescriptionShort);
ammo = "ACE_Hellfire_AGM114L";
pylonWeapon = QGVAR(launcher_L);
};

View File

@ -17,5 +17,14 @@
<Turkish>Hellfire modunu ayarla</Turkish>
<Spanish>Ajustar modo Hellfire</Spanish>
</Key>
<Key ID="STR_ACE_Hellfire_KDescriptionShort">
<English>Semi-active laser homing missile with high explosive anti-tank warhead</English>
</Key>
<Key ID="STR_ACE_Hellfire_LDescriptionShort">
<English>Millimeter-wave radar guided missile with high explosive anti-tank warhead</English>
</Key>
<Key ID="STR_ACE_Hellfire_NDescriptionShort">
<English>Semi-active laser homing missile with metal augmented charge anti-personnel warhead</English>
</Key>
</Package>
</Project>