Add Nightstalker EVR storms

Includes manual on/off for APSI and localized strings.
This commit is contained in:
worldwidesorrow
2022-04-21 02:00:25 -05:00
parent f51d4f2867
commit 3bb6b94185
9 changed files with 656 additions and 0 deletions

View File

@@ -951,4 +951,87 @@ class RscTitles
text="\nst\textures\skrabanec.paa";
};
};
class RscAPSI
{
idd = -1;
duration = 10;
fadein = 0;
movingEnable = 0;
enableSimulation = 0;
enableDisplay = 0;
class controls
{
class APSILog: RscTextAPSI
{
text = $STR_EVR_ACTIVITY;
ColorText[] = {1,0.2,0.1,1};
};
};
};
class RscAPSI_Detected: RscAPSI
{
class controls
{
class APSILog: RscTextAPSI
{
text = $STR_EVR_DETECT;
ColorText[] = {1,0,0.2,1};
};
};
};
class RscAPSI_Protected: RscAPSI
{
class controls
{
class APSILog: RscTextAPSI
{
text = $STR_EVR_PROTECT;
ColorText[] = {0,1,0.2,1};
};
};
};
class RscAPSI_On: RscAPSI
{
class controls
{
class APSILog: RscTextAPSI
{
text = $STR_EVR_ENABLED;
ColorText[] = {0,1,0.2,1};
};
};
};
class RscAPSI_Off: RscAPSI
{
class controls
{
class APSILog: RscTextAPSI
{
text = $STR_EVR_DISABLED;
ColorText[] = {0,1,0.2,1};
};
};
};
class RscAPSI_Start: RscAPSI
{
class controls
{
class APSILog: RscTextAPSI
{
text = $STR_EVR_START;
ColorText[] = {1,0,0.2,1};
};
};
};
class RscAPSI_End: RscAPSI
{
class controls
{
class APSILog: RscTextAPSI
{
text = $STR_EVR_END;
ColorText[] = {0,1,0.2,1};
};
};
};
};