11 lines
278 B
Go
11 lines
278 B
Go
package models
|
|
|
|
// CardWeakResistance represent the weakeness or resistance of a card.
|
|
type CardWeakResistance struct {
|
|
// Type affected.
|
|
Type string `json:"type"`
|
|
|
|
// Value represents the multiplier but can be an number depending of the card.
|
|
Value string `json:"value"`
|
|
}
|