act_super_bomb.go 536 B

12345678910111213141516
  1. package model
  2. // SuperBombConf 超级炸弹配置
  3. type SuperBombConf struct {
  4. RobotConf SuperBombRobotConf `json:"robotConf"`
  5. AttackNums int64 `json:"attackNums"`
  6. ShootRate int64 `json:"shootRate"`
  7. MinFloorAttack int64 `json:"minFloorAttack"`
  8. MaxFloorAttack int64 `json:"maxFloorAttack"`
  9. }
  10. // SuperBombRobotConf 超级炸弹机器人配置
  11. type SuperBombRobotConf struct {
  12. UseShieldPet [2]int64 `json:"useShieldPet"`
  13. ShieldNums [5]int64 `json:"shieldNums"`
  14. }