Initial commit

This commit is contained in:
Ilya Groshev
2026-04-14 09:28:26 +03:00
commit 02f511f40c
161 changed files with 21541 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
package model
type RarityType = int32
const (
RarityNormal RarityType = 10
RarityRare RarityType = 20
RaritySRare RarityType = 30
RaritySSRare RarityType = 40
RarityLegend RarityType = 50
)