Skip to content
Jan0660 edited this page Nov 7, 2020 · 2 revisions

Get all ships

var ships = Client.GetAllShips();

Get a ship by name

The Client.GetShip method searches for a ship using it's English name, code, id, Japanese and Chinese name, in this order.

var ship = Client.GetShip("takao");
// or for the real ones
var waifu = Client.GetWaifu("takao");

You can also search for a ship using only it's id / en,jp,cn,kr name / code

// get ship by id
Client.GetShipById("200");
// by english,japanese,chinese,korean name
Client.GetShipByEnglishName("takao");
Client.GetShipByJapaneseName("高雄");
Client.GetShipByChineseName("獒");
Client.GetShipByKoreanName("타카오");
// by code
Client.GetShipByCode("IJN Takao");
Clone this wiki locally