1
0
KF2-Dev-Scripts/KFGame/Classes/KFWeeklyOutbreakInformation.uc

35 lines
814 B
Ucode
Raw Normal View History

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 */
2022-10-29 23:52:58 +00:00
static const int NumWeeklyEvents = 18;
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
}