28 lines
570 B
Ucode
Raw Normal View History

2017-10-19 21:00:49 -05:00
Class UI_PrestigeNote extends UI_ResetWarning;
2020-09-01 06:20:02 +03:00
var localized string WindowTitleText;
var localized string PrestigeButtonToolTip;
var localized string InfoLabelTextPart1;
var localized string InfoLabelTextPart2;
function InitMenu()
{
Super.InitMenu();
YesButton.ToolTip=PrestigeButtonToolTip;
}
2020-11-28 23:04:55 +03:00
function SetupTo(Ext_PerkBase P)
2017-10-19 21:00:49 -05:00
{
PerkToReset = P.Class;
2020-09-01 06:20:02 +03:00
WindowTitle = WindowTitleText$" "$P.PerkName;
InfoLabel.SetText(InfoLabelTextPart1$P.PrestigeSPIncrease$InfoLabelTextPart2);
2017-10-19 21:00:49 -05:00
}
defaultproperties
{
bIsPrestige=true
Begin Object Name=YesButten
End Object
2023-05-14 05:49:12 +03:00
}