public async Task <string> ListHeaders() { Rpc rpc = new Rpc(); List <string> args = new List <string> { }; return(await rpc.CallApi("ListHeaders", args)); }
public async Task <string> ListMultType() { Rpc rpc = new Rpc(); List <string> args = new List <string> { }; return(await rpc.CallApi("ListMultType", args)); }
public async Task <string> ListAllLegendary() { Rpc rpc = new Rpc(); List <string> args = new List <string> { }; return(await rpc.CallApi("ListAllLegendary", args)); }
public async Task <string> SearchName(string name) { Rpc rpc = new Rpc(); List <string> args = new List <string> { name }; return(await rpc.CallApi("SearchName", args)); }
public async Task <string> SearchType(string type) { Rpc rpc = new Rpc(); List <string> args = new List <string> { type }; return(await rpc.CallApi("SearchType", args)); }
public async Task <string> SearchHeader(string header, string value) { Rpc rpc = new Rpc(); List <string> args = new List <string> { header, value }; return(await rpc.CallApi("SearchHeader", args)); }
public async Task <string> Battle(string a, string b) { Rpc rpc = new Rpc(); List <string> args = new List <string> { a, b }; return(await rpc.CallApi("Battle", args)); }