go_dreamfactory/modules/stonehenge/core.go
2023-11-02 22:10:01 +08:00

26 lines
883 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package stonehenge
// 事件类型
const (
EventType10 = 10 // 宝箱事件
EventType11 = 11 // 剧情事件
EventType13 = 13 // 扣除背包中指定道具数量
EventType14 = 14 // 战斗事件
EventType16 = 16 // 捡垃圾事件
EventType17 = 17 // 回血事件
EventType18 = 18 // 回血事件 非场景
EventType19 = 19 // 扣血事件 非场景
EventType20 = 20 // 克隆一名英雄
EventType22 = 22 // 删除buff商店用
EventType23 = 23 // 事件buff强化
EventType24 = 24 // 增加背包中指定道具数量
EventType25 = 25 // buff三选一
EventType26 = 26 // 所有1级buff强化至2级
EventType28 = 28 // BOSS 战斗
EventType29 = 29 // 商店强化
EventType30 = 30 // 下场战斗,扣除敌方血量
EventType31 = 31 // 持续N场战斗战斗开始时扣除我方当前血量千分比
EventType999 = 999 // 特殊空事件
)