2020-12-13 15:01:13 +00:00
|
|
|
class KFWeeklyOutbreakInformation extends Object
|
|
|
|
PerObjectConfig
|
|
|
|
Config(Game)
|
|
|
|
native(UI);
|
|
|
|
|
|
|
|
//Item ID reward
|
|
|
|
var config array<int> RewardIDs;
|
|
|
|
|
|
|
|
//Map index for lookup
|
|
|
|
var config int Index;
|
|
|
|
|
|
|
|
//Icon for the weekly mode
|
|
|
|
var config string IconPath;
|
|
|
|
|
|
|
|
//Array of icon paths, one per listed modifier
|
|
|
|
var config array<string> ModifierIconPaths;
|
|
|
|
|
|
|
|
//Friendly Name of the mode
|
|
|
|
var localized string FriendlyName;
|
|
|
|
|
|
|
|
//List of any description info that we need (typically difficulty and a short description)
|
|
|
|
var localized array<string> DescriptionStrings;
|
|
|
|
|
|
|
|
//List of any modifer information we need specific to the mode
|
|
|
|
var localized array<string> ModifierDescriptions;
|
|
|
|
|
2021-06-22 22:34:46 +00:00
|
|
|
cpptext
|
|
|
|
{
|
|
|
|
/** Num of Weekly events available */
|
2021-09-02 21:46:08 +00:00
|
|
|
static const int NumWeeklyEvents = 14;
|
2021-06-22 22:34:46 +00:00
|
|
|
}
|
2020-12-13 15:01:13 +00:00
|
|
|
DefaultProperties
|
|
|
|
{
|
2021-06-22 22:34:46 +00:00
|
|
|
|
2020-12-13 15:01:13 +00:00
|
|
|
}
|