/// How many of your turns until this frame becomes a robot public int getCompletionTime() { validify(); return Client.INSTANCE.frameGetCompletionTime(ptr); }
/// The length of one side of this robot, such that size^2 = number of bots combined into this bot public int getSize() { validify(); return Client.INSTANCE.frameGetSize(ptr); }
/// What type this robot will be public Pointer getType() { validify(); return Client.INSTANCE.frameGetType(ptr); }
/// The maximum amount of health this unit can ever have public int getMaxHealth() { validify(); return Client.INSTANCE.frameGetMaxHealth(ptr); }
/// The owning player public int getOwner() { validify(); return Client.INSTANCE.frameGetOwner(ptr); }
/// Sends a message to be visualized when this unit is selected int talk(String message) { validify(); return Client.INSTANCE.frameTalk(ptr, message); }