Skip to content

Commit 6b6bca8

Browse files
committed
add lore text to challenges
1 parent 4b8d2e7 commit 6b6bca8

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

DataTool/DataModels/Challenge.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ public class Challenge {
1010
public teResourceGUID GUID { get; set; }
1111
public string? Name { get; set; }
1212
public string? Description { get; set; }
13+
public string? LoreText { get; set; }
1314

1415
public GenericGUIDValue? Hero { get; set; }
1516
public teResourceGUID? IconGUID { get; set; }
@@ -30,6 +31,7 @@ public void Init(STU_F9392C2B stu, ulong key = default) {
3031
GUID = (teResourceGUID) key;
3132
Name = IO.GetString(stu.m_name);
3233
Description = IO.GetString(stu.m_description);
34+
LoreText = IO.GetString(stu.m_CEC13AC8);
3335
IconGUID = stu.m_544A6A4F;
3436
CelebrationGUID = stu.m_B44A42A0;
3537
SeasonGUID = stu.m_29E273F8;

0 commit comments

Comments
 (0)