31 lines
470 B
Go
31 lines
470 B
Go
package db
|
|
|
|
type Table struct {
|
|
ID string
|
|
|
|
Name string
|
|
Description string
|
|
Formula string
|
|
Img string
|
|
Folder string
|
|
Sort int
|
|
Replacement bool
|
|
DisplayRoll bool
|
|
Stats Stats
|
|
Ownership []OwnershipString
|
|
Results []TableResult
|
|
}
|
|
|
|
type TableResult struct {
|
|
ID string
|
|
|
|
Type string
|
|
Img string
|
|
Description string
|
|
Name string
|
|
Weight int
|
|
Drawn bool
|
|
Stats Stats
|
|
Range []int
|
|
}
|