1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-28 01:17:45 +00:00
kawari/src/world/ipc/status_effect_list.rs
Joshua Goins 4927fa9119 Send ActorControl and StatusEffectList packets in vain
This was hopefully supposed to show the player spawned by !spawnactor, but it
still doesn't work...
2025-03-18 23:30:59 -04:00

20 lines
387 B
Rust

use binrw::binrw;
use super::StatusEffect;
#[binrw]
#[derive(Debug, Clone, Copy, Default)]
pub struct StatusEffectList {
pub classjob_id: u8,
pub level: u8,
pub unk1: u8,
pub unk2: u8,
pub curr_hp: u32,
pub max_hp: u32,
pub curr_mp: u16,
pub max_mp: u16,
pub shield: u16,
pub unk3: u16,
pub statues: [StatusEffect; 30],
pub unk4: u32,
}