A .Net API Implementation for Skylords Reborn API
Find a file
2021-01-24 12:44:34 +01:00
.github/workflows Create dotnet.yml 2021-01-24 12:44:34 +01:00
ReplayTestRunner Some Debugging going on 2021-01-23 19:51:55 +01:00
Sample1 Code Cleanup 2021-01-18 08:29:45 +01:00
Sample2 Code Cleanup 2021-01-18 08:29:45 +01:00
SkylordsRebornAPI Code Cleanup 2021-01-18 08:29:45 +01:00
SkylordsRebornAPI.Replay Code Cleanup 2021-01-24 12:36:27 +01:00
.gitignore git ignore update & solution update 2021-01-15 12:18:47 +01:00
LICENSE.md nuget related fixes 2021-01-15 12:48:13 +01:00
README.md Create README.md 2021-01-15 12:00:21 +01:00
SkylordsRebornAPI.sln ReplayReader WIP 2021-01-20 11:32:44 +01:00

SkylordsRebornAPI

A .Net API Implementation for Skylords Reborn API

Example

private static readonly JsonSerializerSettings Settings = new() {
    MetadataPropertyHandling = MetadataPropertyHandling.Ignore,
        DateParseHandling = DateParseHandling.None,
        Converters = {
            new StringEnumConverter()
        }
};

static void Main() {
    var x = SkylordsRebornAPI.Cardbase.CardService.GetCardsByName("Dread");
    foreach(var card in x) {
        Console.WriteLine(JsonConvert.SerializeObject(card, Settings));
    }
}