forked from genshinsim/gcsim
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbolide.go
More file actions
53 lines (46 loc) · 1.42 KB
/
Copy pathbolide.go
File metadata and controls
53 lines (46 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package bolide
import (
"github.com/genshinsim/gcsim/pkg/core"
"github.com/genshinsim/gcsim/pkg/core/attacks"
"github.com/genshinsim/gcsim/pkg/core/attributes"
"github.com/genshinsim/gcsim/pkg/core/info"
"github.com/genshinsim/gcsim/pkg/core/keys"
"github.com/genshinsim/gcsim/pkg/core/player/character"
"github.com/genshinsim/gcsim/pkg/modifier"
)
func init() {
core.RegisterSetFunc(keys.RetracingBolide, NewSet)
}
type Set struct {
Index int
Count int
}
func (s *Set) SetIndex(idx int) { s.Index = idx }
func (s *Set) GetCount() int { return s.Count }
func (s *Set) Init() error { return nil }
func NewSet(c *core.Core, char *character.CharWrapper, count int, param map[string]int) (info.Set, error) {
s := Set{Count: count}
if count >= 2 {
// shield bonus always active
c.Player.Shields.AddShieldBonusMod("bolide-2pc", -1, func() (float64, bool) {
return 0.35, false
})
}
if count >= 4 {
m := make([]float64, attributes.EndStatType)
m[attributes.DmgP] = 0.4
char.AddAttackMod(character.AttackMod{
Base: modifier.NewBase("bolide-4pc", -1),
Amount: func(atk *info.AttackEvent, t info.Target) ([]float64, bool) {
if atk.Info.AttackTag != attacks.AttackTagNormal && atk.Info.AttackTag != attacks.AttackTagExtra {
return nil, false
}
if !c.Player.Shields.CharacterIsShielded(char.Index, c.Player.Active()) {
return nil, false
}
return m, true
},
})
}
return &s, nil
}