mirror of
https://github.com/1dot13/source.git
synced 2026-08-05 14:00:23 +02:00
New feature: radio operator trait allows calling in artillery, requesting reinforcements, scanning for enemies and a few other skills.
Also includes mechansim for easy implementation of new skills. For more info see http://www.bears-pit.com/board/ubbthreads.php/topics/327348.html#Post327348 Requires GameDir >= r1848. git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@6547 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
+63
-4
@@ -1655,6 +1655,7 @@ STR16 pAssignmentStrings[] =
|
||||
L"Fahrzeug", // in a vehicle
|
||||
L"Transit", // in transit - abbreviated form
|
||||
L"Repar.", // repairing
|
||||
L"Radio Scan", // scanning for nearby patrols // TODO.Translate
|
||||
L"Üben", // training themselves
|
||||
L"Miliz", // training a town to revolt
|
||||
L"M.Miliz", //training moving militia units
|
||||
@@ -1739,6 +1740,7 @@ STR16 pPersonnelAssignmentStrings[] =
|
||||
L"Fahrzeug",
|
||||
L"Transit",
|
||||
L"Reparieren",
|
||||
L"Radio Scan", // radio scan // TODO.Translate
|
||||
L"Üben",
|
||||
L"Miliz",
|
||||
L"Trainiere Mobile Miliz",
|
||||
@@ -1785,6 +1787,7 @@ STR16 pLongAssignmentStrings[] =
|
||||
L"Fahrzeug",
|
||||
L"Transit",
|
||||
L"Reparieren",
|
||||
L"Radio Scan", // radio scan // TODO.Translate
|
||||
L"Üben",
|
||||
L"Miliz",
|
||||
L"Trainiere Mobile",
|
||||
@@ -1910,6 +1913,7 @@ STR16 pAssignMenuStrings[] =
|
||||
L"Patient", // the merc is receiving medical attention
|
||||
L"Fahrzeug", // the merc is in a vehicle
|
||||
L"Repar.", // the merc is repairing items
|
||||
L"Radio Scan", // Flugente: the merc is scanning for patrols in neighbouring sectors
|
||||
L"Training", // the merc is training
|
||||
L"Umzug", // move items
|
||||
L"Betrieb", // the merc is using/staffing a facility
|
||||
@@ -1938,6 +1942,44 @@ STR16 pMilitiaControlMenuStrings[] =
|
||||
L"Abbrechen", // cancel this menu
|
||||
};
|
||||
|
||||
//Flugente
|
||||
STR16 pTraitSkillsMenuStrings[] = // TODO.Translate
|
||||
{
|
||||
// radio operator
|
||||
L"Artillery Strike",
|
||||
L"Jam communications",
|
||||
L"Scan frequencies",
|
||||
L"Eavesdrop",
|
||||
L"Call reinforcements",
|
||||
L"Switch off radio set",
|
||||
};
|
||||
|
||||
//Flugente: short description of the above skills for the skill selection menu
|
||||
STR16 pTraitSkillsMenuDescStrings[] =
|
||||
{
|
||||
// radio operator
|
||||
L"Order an artillery strike from sector...",
|
||||
L"Fill all radio frequencies with white noise, making communications impossible.",
|
||||
L"Scan for jamming signals.",
|
||||
L"Use your radio equipment to continously listen for enemy movement",
|
||||
L"Call in reinforcements from neighbouring sectors.",
|
||||
L"Turn off radio set to save batteries.",
|
||||
};
|
||||
|
||||
STR16 pTraitSkillsDenialStrings[] =
|
||||
{
|
||||
L"Requires:\n",
|
||||
L" - %d AP\n",
|
||||
L" - %s\n",
|
||||
L" - %s or higher\n",
|
||||
L" - %s or higher or\n",
|
||||
L" - %d minutes to be ready\n",
|
||||
L" - mortar positions in neighbouring sectors\n",
|
||||
L" - %s |o|r %s |a|n|d %s or %s or higher\n"
|
||||
L" - posession by a demon",
|
||||
};
|
||||
|
||||
|
||||
//STR16 pTalkToAllMenuStrings[] =
|
||||
//{
|
||||
// L"Attack", // set militia to aggresive
|
||||
@@ -2162,6 +2204,8 @@ STR16 gzMercSkillTextNew[] =
|
||||
L"Aufklärer",
|
||||
// covert ops is a major trait that was added later
|
||||
L"Geheimagent",
|
||||
// new minor traits
|
||||
L"Funker", // 21
|
||||
// second names for major skills
|
||||
L"MG-Veteran",
|
||||
L"Artillerist",
|
||||
@@ -2173,17 +2217,18 @@ STR16 gzMercSkillTextNew[] =
|
||||
L"Ingenieur",
|
||||
L"Arzt",
|
||||
// placeholders for minor traits
|
||||
L"Placeholder", // 30
|
||||
L"Placeholder", // 31
|
||||
L"Placeholder",
|
||||
L"Placeholder",
|
||||
L"Placeholder",
|
||||
L"Placeholder",
|
||||
L"Placeholder", // 35
|
||||
L"Placeholder", // 36
|
||||
L"Placeholder",
|
||||
L"Placeholder",
|
||||
L"Placeholder",
|
||||
L"Placeholder", // 39
|
||||
L"Spion", // 30
|
||||
L"Placeholder", // 40
|
||||
L"Spion", // 41
|
||||
L"Placeholder", // for radio operator (minor trait)
|
||||
L"Mehr...",
|
||||
};
|
||||
|
||||
@@ -6181,6 +6226,8 @@ STR16 MissingIMPSkillsDescriptions[] =
|
||||
L"Aufklärer: Sie sind über die Maßen aufmerksam, haben ein sehr reges Auge und einen nimmermüden Geist. ± ",
|
||||
// Covert ops
|
||||
L"Geheimagent: Neben Ihnen schaut 007 wie der reinste Amateur aus! ± ",
|
||||
// Radio Operator
|
||||
L"Radio Operator: Your usage of communication devices broaden your team's tactical and strategic skills. ± ", // TOO.Translate
|
||||
};
|
||||
|
||||
STR16 NewInvMessage[] =
|
||||
@@ -7669,4 +7716,16 @@ STR16 szSexistText[]=
|
||||
L"a Gentleman",
|
||||
};
|
||||
|
||||
// Flugente: power pack texts
|
||||
STR16 gPowerPackDesc[] =
|
||||
{
|
||||
L"Batteries are ",
|
||||
L"full",
|
||||
L"good",
|
||||
L"at half",
|
||||
L"low",
|
||||
L"depleted",
|
||||
L"."
|
||||
};
|
||||
|
||||
#endif //GERMAN
|
||||
|
||||
Reference in New Issue
Block a user