2020-09-17 23:02:14 +00:00
|
|
|
pub struct Character {
|
|
|
|
pub character_id: i64,
|
|
|
|
pub player_uuid: String,
|
|
|
|
pub alias: String,
|
2021-01-01 22:39:36 +00:00
|
|
|
pub waypoint: Option<String>,
|
2020-05-09 15:41:25 +00:00
|
|
|
}
|
|
|
|
|
2021-04-13 22:05:47 +00:00
|
|
|
#[derive(Debug)]
|
2020-09-17 23:02:14 +00:00
|
|
|
pub struct Item {
|
|
|
|
pub item_id: i64,
|
|
|
|
pub parent_container_item_id: i64,
|
|
|
|
pub item_definition_id: String,
|
|
|
|
pub stack_size: i32,
|
|
|
|
pub position: String,
|
2020-05-09 15:41:25 +00:00
|
|
|
}
|
2020-04-20 08:44:29 +00:00
|
|
|
|
2020-09-17 23:02:14 +00:00
|
|
|
pub struct Body {
|
|
|
|
pub body_id: i64,
|
|
|
|
pub variant: String,
|
|
|
|
pub body_data: String,
|
2020-05-11 10:06:53 +00:00
|
|
|
}
|
2020-12-13 17:21:51 +00:00
|
|
|
|
|
|
|
pub struct SkillGroup {
|
2021-01-13 08:11:31 +00:00
|
|
|
pub entity_id: i64,
|
2021-01-18 19:08:13 +00:00
|
|
|
pub skill_group_kind: String,
|
2021-10-13 14:44:28 +00:00
|
|
|
pub earned_exp: i32,
|
2021-10-21 14:53:46 +00:00
|
|
|
pub skills: String,
|
2020-12-13 17:21:51 +00:00
|
|
|
}
|
2021-07-28 22:36:41 +00:00
|
|
|
|
|
|
|
pub struct Pet {
|
|
|
|
pub database_id: i64,
|
|
|
|
pub name: String,
|
|
|
|
pub body_variant: String,
|
|
|
|
pub body_data: String,
|
|
|
|
}
|