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

Latest commit

 

History

History
20 lines (18 loc) · 559 Bytes

README.md

File metadata and controls

20 lines (18 loc) · 559 Bytes

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