Skip to content

Commit

Permalink
feat(bingo): update models
Browse files Browse the repository at this point in the history
  • Loading branch information
DorielRivalet committed Aug 24, 2023
1 parent 2b50a3a commit bcbac76
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
10 changes: 10 additions & 0 deletions MHFZ_Overlay/Models/BingoMonster.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,16 @@ public sealed class BingoMonster
/// </summary>
public List<int>? QuestIDs { get; set; }

/// <summary>
/// Whether the monster to hunt should be in Unlimited mode. If so, the QuestIDs are ignored if any and any non-custom quest counts as a completion.
/// </summary>
public bool IsUnlimited { get; set; }

/// <summary>
/// The monster ID of the unlimited monster.
/// </summary>
public int UnlimitedMonsterID { get; set; }

/// <summary>
/// The base bingo score obtained if defeated the monster.
/// </summary>
Expand Down
5 changes: 5 additions & 0 deletions MHFZ_Overlay/Models/BingoUpgrade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ public sealed class BingoUpgrade
/// </summary>
public string Description { get; set; } = string.Empty;

/// <summary>
/// The icon of the upgrade.
/// </summary>
public string Icon { get; set; } = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/png/unknown.png";

/// <summary>
/// The type of the bingo upgrade.
/// </summary>
Expand Down

0 comments on commit bcbac76

Please sign in to comment.