Skip to content
This repository has been archived by the owner on Dec 17, 2022. It is now read-only.
/ SkylordsRebornAPI Public archive

A .Net API Implementation for Skylords Reborn API

License

Notifications You must be signed in to change notification settings

gaschenk/SkylordsRebornAPI

Repository files navigation

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));
    }
}

About

A .Net API Implementation for Skylords Reborn API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages