1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-25 16:45:23 +00:00
OpenDiablo2/d2core/d2inventory/character_equipment.go

15 lines
582 B
Go
Raw Normal View History

package d2inventory
2019-11-15 03:20:01 +00:00
// CharacterEquipment stores equipments of a character
2019-11-15 03:20:01 +00:00
type CharacterEquipment struct {
Head *InventoryItemArmor `json:"head"` // Head
Torso *InventoryItemArmor `json:"torso"` // TR
Legs *InventoryItemArmor `json:"legs"` // Legs
RightArm *InventoryItemArmor `json:"rightArm"` // RA
LeftArm *InventoryItemArmor `json:"leftArm"` // LA
LeftHand *InventoryItemWeapon `json:"leftHand"` // LH
RightHand *InventoryItemWeapon `json:"rightHand"` // RH
Shield *InventoryItemArmor `json:"shield"` // SH
2019-11-15 03:20:01 +00:00
// S1-S8?
}