forked from genshinsim/gcsim
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathemblem.go
More file actions
68 lines (60 loc) · 1.64 KB
/
Copy pathemblem.go
File metadata and controls
68 lines (60 loc) · 1.64 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package emblem
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.EmblemOfSeveredFate, 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 {
m := make([]float64, attributes.EndStatType)
m[attributes.ER] = 0.20
char.AddStatMod(character.StatMod{
Base: modifier.NewBase("emblem-2pc", -1),
AffectedStat: attributes.ER,
Amount: func() ([]float64, bool) {
return m, true
},
})
}
if count >= 4 {
m := make([]float64, attributes.EndStatType)
er := char.NonExtraStat(attributes.ER)
amt := 0.25 * er
if amt > 0.75 {
amt = 0.75
}
m[attributes.DmgP] = amt
char.AddAttackMod(character.AttackMod{
Base: modifier.NewBase("emblem-4pc", -1),
Amount: func(atk *info.AttackEvent, t info.Target) ([]float64, bool) {
if atk.Info.AttackTag != attacks.AttackTagElementalBurst {
return nil, false
}
// calc er
er := char.NonExtraStat(attributes.ER)
amt := 0.25 * er
if amt > 0.75 {
amt = 0.75
}
m[attributes.DmgP] = amt
return m, true
},
})
}
return &s, nil
}