mirror of
https://github.com/1dot13/source.git
synced 2026-07-29 13:52:17 +02:00
- New Feature: The rosine system now allows to capture enemy soldeirs via using handcuffs on them. They can e transferred to a prison the player controls, and be interrogated there.
- GameDir revision 1568 is required for this feature. - Savegame compatibility is maintained. git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@5709 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
+22
-3
@@ -1635,13 +1635,14 @@ STR16 pAssignmentStrings[] =
|
||||
L"In Trans", // in transit - abbreviated form
|
||||
L"Repair", // repairing
|
||||
L"Practice", // training themselves
|
||||
L"Militia", // training a town to revolt
|
||||
L"Militia", // training a town to revolt
|
||||
L"M.Militia", //training moving militia units
|
||||
L"Trainer", // training a teammate
|
||||
L"Student", // being trained by someone else
|
||||
L"Staff", // operating a strategic facility
|
||||
L"Eat", // eating at a facility (cantina etc.)
|
||||
L"Rest", // Resting at a facility
|
||||
L"Prison", // Flugente: interrogate prisoners
|
||||
L"Dead", // dead
|
||||
L"Incap.", // abbreviation for incapacitated
|
||||
L"POW", // Prisoner of war - captured
|
||||
@@ -1727,6 +1728,7 @@ STR16 pPersonnelAssignmentStrings[] =
|
||||
L"Facility Staff", // Missing
|
||||
L"Eat", // eating at a facility (cantina etc.)
|
||||
L"Resting at Facility", // Missing
|
||||
L"Interrogate prisoners", // Flugente: interrogate prisoners
|
||||
L"Dead",
|
||||
L"Incap.",
|
||||
L"POW",
|
||||
@@ -1772,6 +1774,7 @@ STR16 pLongAssignmentStrings[] =
|
||||
L"Student",
|
||||
L"Staff Facility", // Missing
|
||||
L"Rest at Facility", // Missing
|
||||
L"Interrogate prisoners", // Flugente: interrogate prisoners
|
||||
L"Dead",
|
||||
L"Incap.",
|
||||
L"POW",
|
||||
@@ -2592,12 +2595,13 @@ CHAR16 gMoneyStatsDesc[][ 14 ] =
|
||||
CHAR16 zHealthStr[][13] =
|
||||
{
|
||||
L"DYING", // >= 0
|
||||
L"CRITICAL", // >= 15
|
||||
L"CRITICAL", // >= 15
|
||||
L"POOR", // >= 30
|
||||
L"WOUNDED", // >= 45
|
||||
L"HEALTHY", // >= 60
|
||||
L"STRONG", // >= 75
|
||||
L"EXCELLENT", // >= 90
|
||||
L"EXCELLENT", // >= 90
|
||||
L"CAPTURED", // added by Flugente
|
||||
};
|
||||
|
||||
STR16 gzHiddenHitCountStr[1] =
|
||||
@@ -2910,6 +2914,10 @@ CHAR16 TacticalStr[][ MED_STRING_LENGTH ] =
|
||||
|
||||
// Flugente: weapon cleaning
|
||||
L"%s cleaned %s",
|
||||
|
||||
// added by Flugente: decide what to do with prisoners
|
||||
L"You have no prison for these prisoners, you have to let them go",
|
||||
L"Yes - Send prisoners to jail No - Let them go",
|
||||
};
|
||||
|
||||
//Varying helptext explains (for the "Go to Sector/Map" checkbox) what will happen given different circumstances in the "exiting sector" interface.
|
||||
@@ -3408,6 +3416,7 @@ STR16 pTransactionText[] =
|
||||
L"Sold Item(s) to the Locals",
|
||||
L"Facility Use", // HEADROCK HAM 3.6
|
||||
L"Militia upkeep", // HEADROCK HAM 3.6
|
||||
L"Ransom for released prisoners", // Flugente: prisoner system
|
||||
};
|
||||
|
||||
STR16 pTransactionAlternateText[] =
|
||||
@@ -6693,6 +6702,7 @@ STR16 gzFacilityAssignmentStrings[]=
|
||||
L"Trainer Mechanical",
|
||||
L"Trainer Leadership",
|
||||
L"Trainer Explosives",
|
||||
L"Interrogate Prisoners", // added by Flugente
|
||||
};
|
||||
STR16 Additional113Text[]=
|
||||
{
|
||||
@@ -7457,4 +7467,13 @@ STR16 szFoodTextStr[]=
|
||||
L"Sectorwide canteen filling not possible, Food System is off!"
|
||||
};
|
||||
|
||||
STR16 szPrisonerTextStr[]=
|
||||
{
|
||||
L"%d prisoners were interrogated.",
|
||||
L"%d prisoners paid ransom money.",
|
||||
L"%d prisoners revealed enemy positions.",
|
||||
L"%d prisoners joined our cause.",
|
||||
L"Prisoners start a massive riot in %s!",
|
||||
};
|
||||
|
||||
#endif //ENGLISH
|
||||
|
||||
Reference in New Issue
Block a user