mirror of
https://forgejo.merr.is/annika/isl-api.git
synced 2025-12-11 17:17:43 -05:00
Mostly Initial Setup And Testing Stuff
This commit is contained in:
parent
8c147b23d8
commit
d52d9968ba
12 changed files with 502 additions and 0 deletions
19
Types/PowerItem.go
Normal file
19
Types/PowerItem.go
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package Types
|
||||
|
||||
import (
|
||||
"github.com/gofrs/uuid"
|
||||
uuid "github.com/jackc/pgtype/ext/gofrs-uuid"
|
||||
)
|
||||
|
||||
type PowerItem struct {
|
||||
ID uuid.UUID `json:"id"`
|
||||
ItemType int32 `json:"itemType"`
|
||||
IconUrl string `json:"iconUrl"`
|
||||
ItemName string `json:"itemName"`
|
||||
MinItemPower int32 `json:"minItemPower"`
|
||||
MaxItemPower int32 `json:"maxItemPower"`
|
||||
Rarity int32 `json:"rarity"`
|
||||
Origin string `json:"origin"`
|
||||
Tooltip string `json:"tooltip"`
|
||||
IsEventItem bool `json:"isEventItem"`
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue