utils/infinitecraft/item.go
Dan Jones 8a3da4c5fe Add ic-merge command
Still needs some work, like saving to a new file, but works well so far.
2025-05-02 11:33:23 -05:00

9 lines
263 B
Go

package infinitecraft
type Item struct {
Id int32 `json:"id"`
Text string `json:"text" db:"name"`
Emoji string `json:"emoji"`
Discovery bool `json:"discovery,omitempty"`
Recipes [][]int32 `json:"recipes,omitempty" db:"-"`
}