resonance-data-columba 1.1.28 → 1.1.29
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/dist/columbabuild.d.ts +33 -1
- package/dist/columbabuild.js +1355 -0
- package/dist/columbabuild.js.map +1 -1
- package/package.json +3 -3
package/dist/columbabuild.d.ts
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
interface Formula {
|
|
2
|
+
produce: FormulaProduce;
|
|
3
|
+
extraProduces: FormulaExtraProduce;
|
|
4
|
+
consumes: FormulaConsume[];
|
|
5
|
+
fatigue: number;
|
|
6
|
+
unlockCondition: FormulaUnlockCondition;
|
|
7
|
+
formulaLevel: number;
|
|
8
|
+
formulaName: string;
|
|
9
|
+
}
|
|
10
|
+
interface FormulaProduce {
|
|
11
|
+
product: string;
|
|
12
|
+
num: number;
|
|
13
|
+
}
|
|
14
|
+
interface FormulaExtraProduce {
|
|
15
|
+
chance: number;
|
|
16
|
+
product: string;
|
|
17
|
+
min: number;
|
|
18
|
+
max: number;
|
|
19
|
+
}
|
|
20
|
+
type FormulaConsume = FormulaProduce;
|
|
21
|
+
interface FormulaUnlockCondition {
|
|
22
|
+
熔炉核心: number;
|
|
23
|
+
负能核心: number;
|
|
24
|
+
超载核心: number;
|
|
25
|
+
冷凝核心: number;
|
|
26
|
+
混响核心: number;
|
|
27
|
+
}
|
|
28
|
+
|
|
1
29
|
declare const PRODUCTS: {
|
|
2
30
|
[key: string]: any;
|
|
3
31
|
};
|
|
@@ -8,4 +36,8 @@ declare const GOODS_UNLOCK_CONDITIONS: {
|
|
|
8
36
|
[key: string]: any;
|
|
9
37
|
};
|
|
10
38
|
|
|
11
|
-
|
|
39
|
+
declare const FORMULAS: {
|
|
40
|
+
[key: string]: Formula[];
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
export { CITY_ATTACH_LIST, FORMULAS, GOODS_UNLOCK_CONDITIONS, PRODUCTS };
|