diff --git a/src/entity/item/mag.rs b/src/entity/item/mag.rs index d8333bf..401dc94 100644 --- a/src/entity/item/mag.rs +++ b/src/entity/item/mag.rs @@ -69,6 +69,16 @@ pub enum MagType { Sato, Bhima, Nidra, + Geungsi, + Tellusis, + StrikerUnit, + Pioneer, + Puyo, + Moro, + Rappy, + Yahoo, + GaelGiel, + Agastya, } impl MagType { @@ -138,8 +148,18 @@ impl MagType { MagType::Pushan => [0x02, 0x3D, 0x00], MagType::Diwari => [0x02, 0x3E, 0x00], MagType::Sato => [0x02, 0x3F, 0x00], - MagType::Bhima => [0x24, 0x00, 0x00], - MagType::Nidra => [0x24, 0x10, 0x00], + MagType::Bhima => [0x02, 0x40, 0x00], + MagType::Nidra => [0x02, 0x41, 0x00], + MagType::Geungsi => [0x02, 0x42, 0x00], + MagType::Tellusis => [0x02, 0x44, 0x00], + MagType::StrikerUnit => [0x02, 0x45, 0x00], + MagType::Pioneer => [0x02, 0x46, 0x00], + MagType::Puyo => [0x02, 0x47, 0x00], + MagType::Moro => [0x02, 0x48, 0x00], + MagType::Rappy => [0x02, 0x49, 0x00], + MagType::Yahoo => [0x02, 0x4A, 0x00], + MagType::GaelGiel => [0x02, 0x4B, 0x00], + MagType::Agastya => [0x02, 0x4C, 0x00], } } }