ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
I just wanted to let people know that the formulas for skill's damage and Characters Stats can be read by looking at the formula bar for a particular attack. Pressing F2 while a attack is selected will expand its formula to make it easier to view. If this does not work then look at the formula bar near the top on PC instead or at the bottom if on Mobile.
2
The formula will look something like this: =E:E+1.1*E:E+1.2*E:E+1.3*E:E+1.9*E:E+0.1*E:E
3
The breakdown for what this means is as follows:
4
E:E is Base Damage
5
I then add it when I need to calculate the next hit of the combo.
6
A conversion of this to show what I mean looks like this:
7
(99.81)+(1.1*99.81)+(1.2*99.81)+(1.3*99.81)+(1.9*99.81)+(0.1*99.81)=651.816
8
A move ending with 0.1*E:E is a Smash.
9
Some formulas will look very strange, namely Chopper and Law. This is because I inserted a Checkbox for enabling Lock-On bonus damage.
10
Other formulas might have additional numbers that look like this: =(0.6+0.3+0.15)*E:E+1.1*(0.7+0.35)*E:E
11
Attacks in parenthesis are multi hit moves or use multiple damage coefficients to change the damage.
12
Sometimes these will not be in parenthesis and if this is the case its a damage coefficient that is used to modify the damage, I presume this was used to easily change damage on moves of the same type but on different characters as a form of Balancing them.
13
Here is an example: =15.6*0.9*E:E
14
In this case the move "The Man Who Shakes the World" does less damage when Blackbeard uses it than when Whitebeard does. So Blackbeards multiplies the damage by 0.9 to signify this.
15
-------------------------------------------------------------------------------------------------------------------------------
16
I hope the above information helps and if you have any other questions feel free to DM me on Discord. Nighlin#4236
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100