We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c3e2d1 commit de59381Copy full SHA for de59381
src/cache/prepare-cache/processServant.ts
@@ -40,6 +40,7 @@ export function createServantProcessor({
40
...enhancements
41
};
42
43
+ if (servantJP.bondEquip) servant.bondCE = servantJP.bondEquip;
44
if (servantEN) servant.en = true;
45
46
servantsList.push(servant);
src/types/servant.d.ts
@@ -30,4 +30,5 @@ interface Servant extends EntityBase {
30
passiveSkills: Array<number>;
31
noblePhantasms: Array<ServantNP>;
32
costumes: Array<ServantCostume>;
33
+ bondCE?: number;
34
}
0 commit comments