Skip to content

Commit

Permalink
Adding Item Sets to Character Equipment Struct (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaneajeffery authored Apr 9, 2024
1 parent 13116c0 commit 5c3cd27
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions wowp/characterEquipment.go
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,31 @@ type CharacterEquipmentSummary struct {
DisplayString string `json:"display_string"`
} `json:"skill"`
} `json:"requirements,omitempty"`
Set struct {
ItemSet struct {
Key struct {
Href string `json:"href"`
} `json:"key"`
Name string `json:"name"`
ID int `json:"id"`
} `json:"item_set"`
Items []struct {
Item struct {
Key struct {
Href string `json:"href"`
} `json:"key"`
Name string `json:"name"`
ID int `json:"id"`
} `json:"item"`
IsEquipped bool `json:"is_equipped"`
} `json:"items"`
Effects []struct {
DisplayString string `json:"display_string"`
RequiredCount int `json:"required_count"`
IsActive bool `json:"is_active"`
} `json:"effects"`
DisplayString string `json:"display_string"`
}
Weapon struct {
Damage struct {
MinValue int `json:"min_value"`
Expand Down

0 comments on commit 5c3cd27

Please sign in to comment.