2020-02-01 18:55:56 -05:00
|
|
|
package d2inventory
|
2019-11-14 22:20:01 -05:00
|
|
|
|
2020-06-30 17:04:41 -04:00
|
|
|
// CharacterEquipment stores equipments of a character
|
2019-11-14 22:20:01 -05:00
|
|
|
type CharacterEquipment struct {
|
2020-06-13 18:32:09 -04:00
|
|
|
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-14 22:20:01 -05:00
|
|
|
// S1-S8?
|
|
|
|
}
|