Skip to content

Commit

Permalink
add support for sirenhunts; add map and mob managers
Browse files Browse the repository at this point in the history
  • Loading branch information
dit-zy committed Feb 3, 2024
1 parent 5c747cc commit 0ad47ec
Show file tree
Hide file tree
Showing 20 changed files with 1,178 additions and 66 deletions.
2 changes: 2 additions & 0 deletions ScoutHelper/Config/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ public class Configuration : IPluginConfiguration {
public string BearSiteTrainUrl { get; set; } = "https://tracker.beartoolkit.com/train";
public string BearTrainName { get; set; } = "Scout Helper Train";

public string SirenBaseUrl { get; set; } = "https://sirenhunts.com/scouting/";

public string CopyTemplate { get; set; } = Constants.DefaultCopyTemplate;
public bool IsCopyModeFullText { get; set; } = false;

Expand Down
3 changes: 2 additions & 1 deletion ScoutHelper/Config/ScoutHelperOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
namespace ScoutHelper.Config;

public record ScoutHelperOptions(
string BearDataFile
string BearDataFile,
string SirenDataFile
) { }
1 change: 1 addition & 0 deletions ScoutHelper/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public static class Constants {

public const string DefaultCopyTemplate = "{patch} {#}/{#max} {world} [{tracker}]({link})";
public const string BearDataFile = @"Data\Bear.json";
public const string SirenDataFile = @"Data\Siren.json";

#endregion

Expand Down
Loading

0 comments on commit 0ad47ec

Please sign in to comment.