├── cmCards.go ├── cmChar.go ├── cmLogin.go ├── cmRaid.go ├── commands.go ├── data ├── card │ ├── card001.json │ └── card002.json ├── scene │ ├── scene01-01.json │ ├── scene01-02.json │ ├── scene02-01.json │ └── scene02-02.json └── skill │ ├── skill001.json │ └── skill002.json ├── database.go ├── errCode.go ├── gameScript.go ├── gameServer.go ├── player.go ├── readme.md └── utils.go /cmCards.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/cmCards.go -------------------------------------------------------------------------------- /cmChar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/cmChar.go -------------------------------------------------------------------------------- /cmLogin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/cmLogin.go -------------------------------------------------------------------------------- /cmRaid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/cmRaid.go -------------------------------------------------------------------------------- /commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/commands.go -------------------------------------------------------------------------------- /data/card/card001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/data/card/card001.json -------------------------------------------------------------------------------- /data/card/card002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/data/card/card002.json -------------------------------------------------------------------------------- /data/scene/scene01-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/data/scene/scene01-01.json -------------------------------------------------------------------------------- /data/scene/scene01-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/data/scene/scene01-02.json -------------------------------------------------------------------------------- /data/scene/scene02-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/data/scene/scene02-01.json -------------------------------------------------------------------------------- /data/scene/scene02-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/data/scene/scene02-02.json -------------------------------------------------------------------------------- /data/skill/skill001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/data/skill/skill001.json -------------------------------------------------------------------------------- /data/skill/skill002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/data/skill/skill002.json -------------------------------------------------------------------------------- /database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/database.go -------------------------------------------------------------------------------- /errCode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/errCode.go -------------------------------------------------------------------------------- /gameScript.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/gameScript.go -------------------------------------------------------------------------------- /gameServer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/gameServer.go -------------------------------------------------------------------------------- /player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/player.go -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/readme.md -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SK_CardGameServer/HEAD/utils.go --------------------------------------------------------------------------------