File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -240,12 +240,12 @@ To work with W-Engine stats, you need to use:
240240
241241
242242- ** Main Stat:**
243- ` Result = MainStat.BaseValue * (1 + WeaponLevel.FIELD_XXX / 10000 + WeaponStar.FIELD_YYY / 10000) `
243+ ` Result = MainStat.PropertyValue * (1 + WeaponLevel.FIELD_XXX / 10000 + WeaponStar.FIELD_YYY / 10000) `
244244 ** Example (Level 60, BreakLevel 5):**
245245 ` 684 = 46 * (1 + 94090 / 10000 + 44610 / 10000) `
246246
247247- ** Secondary Stat:**
248- ` Result = MainStat.BaseValue * (1 + WeaponStar.FIELD_ZZZ / 10000) `
248+ ` Result = SecondaryStat.PropertyValue * (1 + WeaponStar.FIELD_ZZZ / 10000) `
249249 ** Example (BreakLevel 5):**
250250 ` 2400 = 960 * (1 + 15000 / 10000) `
251251
@@ -266,10 +266,10 @@ This file determines the Drive Disc value based on its level and rarity.
266266#### W-Engine
267267
268268- ** Main Stat:**
269- ` Result = MainStat.BaseValue * (1 + 0.1568166666666667 * Level + 0.8922 * BreakLevel) `
269+ ` Result = MainStat.PropertyValue * (1 + 0.1568166666666667 * Level + 0.8922 * BreakLevel) `
270270
271271- ** Secondary Stat:**
272- ` Result = SubStat.BaseValue * (1 + 0.3 * BreakLevel) `
272+ ` Result = SecondaryStat.PropertyValue * (1 + 0.3 * BreakLevel) `
273273
274274#### Drive Disc
275275
Original file line number Diff line number Diff line change @@ -240,12 +240,12 @@ Um mit W-Motor-Statistiken zu arbeiten, musst du die folgenden JSONs benutzen:
240240
241241
242242- ** Hauptattribut:**
243- ` Ergebnis = MainStat.BaseValue * (1 + WeaponLevel.FIELD_XXX / 10000 + WeaponStar.FIELD_YYY / 10000) `
243+ ` Ergebnis = MainStat.PropertyValue * (1 + WeaponLevel.FIELD_XXX / 10000 + WeaponStar.FIELD_YYY / 10000) `
244244 ** Beispiel (Level 60, BreakLevel 5):**
245245 ` 684 = 46 * (1 + 94090 / 10000 + 44610 / 10000) `
246246
247247- ** Zweitattribut:**
248- ` Ergebnis = MainStat.BaseValue * (1 + WeaponStar.FIELD_ZZZ / 10000) `
248+ ` Ergebnis = SecondaryStat.PropertyValue * (1 + WeaponStar.FIELD_ZZZ / 10000) `
249249 ** Beispiel (BreakLevel 5):**
250250 ` 2400 = 960 * (1 + 15000 / 10000) `
251251
@@ -267,10 +267,10 @@ Diese Datei gibt den Wert basierend auf seinem Level und seiner Rarität an.
267267#### W-Motor
268268
269269- ** Hauptattribut:**
270- ` Ergebnis = MainStat.BaseValue * (1 + 0.1568166666666667 * Level + 0.8922 * BreakLevel) `
270+ ` Ergebnis = MainStat.PropertyValue * (1 + 0.1568166666666667 * Level + 0.8922 * BreakLevel) `
271271
272272- ** Zweitattribut:**
273- ` Ergebnis = SubStat.BaseValue * (1 + 0.3 * BreakLevel) `
273+ ` Ergebnis = SecondaryStat.PropertyValue * (1 + 0.3 * BreakLevel) `
274274
275275#### Antriebsscheibe
276276
You can’t perform that action at this time.
0 commit comments