Mostly Initial Setup And Testing Stuff

This commit is contained in:
Annika Merris 2024-01-26 17:11:42 -05:00
parent 8c147b23d8
commit d52d9968ba
12 changed files with 502 additions and 0 deletions

19
Types/PowerItem.go Normal file
View 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"`
}