重击体力消耗

This commit is contained in:
huangxiaolei
2022-12-12 19:13:32 +08:00
parent 62b08c2ac7
commit 3e9e375e19
10 changed files with 228 additions and 101 deletions

View File

@@ -27,3 +27,10 @@ func TestAesCFB(t *testing.T) {
dec, _ := AesCFBDecrypt(enc, key, key[0:16])
fmt.Printf("dec: %v\n", dec)
}
func TestHk4eAbilityHashCode(t *testing.T) {
hashCode := Hk4eAbilityHashCode("Avatar_Ayato_ExtraAttack")
fmt.Printf("Avatar_Ayato_ExtraAttack hashCode: %v\n", hashCode)
hashCode = Hk4eAbilityHashCode("Avatar_Ayato_ExtraAttack_CreateBullet")
fmt.Printf("Avatar_Ayato_ExtraAttack_CreateBullet hashCode: %v\n", hashCode)
}