mirror of
https://github.com/Walter-Sparrow/lunar-tear.git
synced 2026-07-02 05:43:41 +03:00
12 lines
200 B
Go
12 lines
200 B
Go
package model
|
|
|
|
type RarityType = int32
|
|
|
|
const (
|
|
RarityNormal RarityType = 10
|
|
RarityRare RarityType = 20
|
|
RaritySRare RarityType = 30
|
|
RaritySSRare RarityType = 40
|
|
RarityLegend RarityType = 50
|
|
)
|