bnstooltips 1.10.2 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/Utilities/ISkill.d.ts +2 -0
- package/build/index.es.js +10 -0
- package/build/index.es.js.map +1 -1
- package/build/index.js +10 -0
- package/build/index.js.map +1 -1
- package/package.json +4 -4
package/build/index.es.js
CHANGED
|
@@ -7056,6 +7056,11 @@ function AddIds(subInfoGroups, skill) {
|
|
|
7056
7056
|
"Gcd group: ",
|
|
7057
7057
|
React.createElement(BlueColoredText, { text: skill.GcdGroup.toString() })));
|
|
7058
7058
|
}
|
|
7059
|
+
if (skill.GcdDuration != null) {
|
|
7060
|
+
subInfoGroup.texts.push(React.createElement("div", null,
|
|
7061
|
+
"Gcd duration: ",
|
|
7062
|
+
React.createElement(BlueColoredText, { text: skill.GcdDuration.toString() })));
|
|
7063
|
+
}
|
|
7059
7064
|
if (skill.CdRecycle != null) {
|
|
7060
7065
|
subInfoGroup.texts.push(React.createElement("div", null,
|
|
7061
7066
|
"Cd group: ",
|
|
@@ -7064,6 +7069,11 @@ function AddIds(subInfoGroups, skill) {
|
|
|
7064
7069
|
"Cd id: ",
|
|
7065
7070
|
React.createElement(BlueColoredText, { text: skill.CdRecycle.Item2.toString() })));
|
|
7066
7071
|
}
|
|
7072
|
+
if (skill.RealCooldown != null) {
|
|
7073
|
+
subInfoGroup.texts.push(React.createElement("div", null,
|
|
7074
|
+
"Real cooldown: ",
|
|
7075
|
+
React.createElement(BlueColoredText, { text: skill.RealCooldown.toString() })));
|
|
7076
|
+
}
|
|
7067
7077
|
subInfoGroups.push(subInfoGroup);
|
|
7068
7078
|
}
|
|
7069
7079
|
function AddRealCastConds(subInfoGroups, skill) {
|