localise vikhr

This commit is contained in:
Brandon Danyluk 2021-05-02 01:37:03 -06:00
parent 72297be13e
commit 7988469fe3
3 changed files with 34 additions and 8 deletions

View File

@ -9,43 +9,43 @@ class CfgMagazines {
class GVAR(2Rnd): 2Rnd_LG_scalpel {
author = "Brandon (TCVM)";
displayName = "2x 9K121 Vikhr [ACE]";
displayName = CSTRING(2x);
ammo = QGVAR(9k121);
};
class GVAR(6Rnd): 6Rnd_LG_scalpel {
author = "Brandon (TCVM)";
displayName = "6x 9K121 Vikhr [ACE]";
displayName = CSTRING(6x);
ammo = QGVAR(9k121);
};
class GVAR(8Rnd): 8Rnd_LG_scalpel {
author = "Brandon (TCVM)";
displayName = "8x 9K121 Vikhr [ACE]";
displayName = CSTRING(8x);
ammo = QGVAR(9k121);
};
class GVAR(PylonRack_1Rnd): PylonRack_1Rnd_LG_scalpel {
author = "Brandon (TCVM)";
displayName = "1x 9K121 Vikhr [ACE]";
displayName = CSTRING(1x);
ammo = QGVAR(9k121);
pylonWeapon = QGVAR(9k121);
};
class GVAR(PylonMissile_1Rnd): PylonMissile_1Rnd_LG_scalpel {
author = "Brandon (TCVM)";
displayName = "1x 9K121 Vikhr [ACE]";
displayName = CSTRING(1x);
ammo = QGVAR(9k121);
pylonWeapon = QGVAR(9k121);
};
class GVAR(PylonRack_3Rnd): PylonRack_3Rnd_LG_scalpel {
author = "Brandon (TCVM)";
displayName = "3x 9K121 Vikhr [ACE]";
displayName = CSTRING(3x);
ammo = QGVAR(9k121);
pylonWeapon = QGVAR(9k121);
};
class GVAR(PylonRack_4Rnd): PylonRack_4Rnd_LG_scalpel {
author = "Brandon (TCVM)";
displayName = "4x 9K121 Vikhr [ACE]";
displayName = CSTRING(4x);
ammo = QGVAR(9k121);
pylonWeapon = QGVAR(9k121);
};

View File

@ -2,7 +2,7 @@ class CfgWeapons {
class missiles_SCALPEL;
class GVAR(9k121): missiles_SCALPEL {
author = "Brandon (TCVM)";
displayName = "Skalpel ATGM";
displayName = CSTRING(9k121);
magazines[] = {
QGVAR(2Rnd),
QGVAR(6Rnd),

View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<Project name="ACE">
<Package name="vikhr">
<Key ID="STR_ACE_vikhr_9k121">
<English>9k121 Vikhr [ACE]</English>
</Key>
<Key ID="STR_ACE_vikhr_1x">
<English>1x 9k121 Vikhr [ACE]</English>
</Key>
<Key ID="STR_ACE_vikhr_2x">
<English>2x 9k121 Vikhr [ACE]</English>
</Key>
<Key ID="STR_ACE_vikhr_3x">
<English>3x 9k121 Vikhr [ACE]</English>
</Key>
<Key ID="STR_ACE_vikhr_4x">
<English>4x 9k121 Vikhr [ACE]</English>
</Key>
<Key ID="STR_ACE_vikhr_6x">
<English>6x 9k121 Vikhr [ACE]</English>
</Key>
<Key ID="STR_ACE_vikhr_8x">
<English>8x 9k121 Vikhr [ACE]</English>
</Key>
</Package>
</Project>