This commit is contained in:
昔念
2026-02-11 11:06:28 +08:00
parent ab1445510a
commit 71a0ae2157
4 changed files with 52 additions and 61 deletions

View File

@@ -6,6 +6,7 @@ import (
"blazing/logic/service/fight"
"blazing/logic/service/pet"
"blazing/logic/service/player"
"blazing/modules/player/model"
)
// CatchPet 传送仓抓稀有宠物
@@ -20,6 +21,9 @@ func (h Controller) HanLiuQiang(data *pet.C2S_2608, c *player.Player) (result *f
if cool.Config.ServerInfo.IsVip != 0 {
c.ItemAdd(500655, 1)
pet := model.GenPetInfo(315, 31, -1, -1, 100, nil, 0)
pet.FixShiny()
c.Service.Pet.PetAdd(pet)
}
return result, -1
}