From aa6e5bbafe28e84011ce6209f2fb8b03839d1de3 Mon Sep 17 00:00:00 2001 From: wilson Date: Mon, 16 Mar 2020 23:06:11 -0400 Subject: [PATCH] BB Mags (#86) Reviewed-by: jake --- src/entity/item/mag.rs | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) 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], } } }