Browse Source

Another oopsie. See ya in da woods

pull/81/head
ExLin 1 year ago
parent
commit
1cba6bb3ba
2 changed files with 8 additions and 8 deletions
  1. +4
    -4
      docs/zzz/api.md
  2. +4
    -4
      docs/zzz/api_de.md

+ 4
- 4
docs/zzz/api.md View File

@@ -240,12 +240,12 @@ To work with W-Engine stats, you need to use:


- **Main Stat:**
`Result = MainStat.BaseValue * (1 + WeaponLevel.FIELD_XXX / 10000 + WeaponStar.FIELD_YYY / 10000)`
`Result = MainStat.PropertyValue * (1 + WeaponLevel.FIELD_XXX / 10000 + WeaponStar.FIELD_YYY / 10000)`
**Example (Level 60, BreakLevel 5):**
`684 = 46 * (1 + 94090 / 10000 + 44610 / 10000)`

- **Secondary Stat:**
`Result = MainStat.BaseValue * (1 + WeaponStar.FIELD_ZZZ / 10000)`
`Result = SecondaryStat.PropertyValue * (1 + WeaponStar.FIELD_ZZZ / 10000)`
**Example (BreakLevel 5):**
`2400 = 960 * (1 + 15000 / 10000)`

@@ -266,10 +266,10 @@ This file determines the Drive Disc value based on its level and rarity.
#### W-Engine

- **Main Stat:**
`Result = MainStat.BaseValue * (1 + 0.1568166666666667 * Level + 0.8922 * BreakLevel)`
`Result = MainStat.PropertyValue * (1 + 0.1568166666666667 * Level + 0.8922 * BreakLevel)`

- **Secondary Stat:**
`Result = SubStat.BaseValue * (1 + 0.3 * BreakLevel)`
`Result = SecondaryStat.PropertyValue * (1 + 0.3 * BreakLevel)`

#### Drive Disc



+ 4
- 4
docs/zzz/api_de.md View File

@@ -240,12 +240,12 @@ Um mit W-Motor-Statistiken zu arbeiten, musst du die folgenden JSONs benutzen:


- **Hauptattribut:**
`Ergebnis = MainStat.BaseValue * (1 + WeaponLevel.FIELD_XXX / 10000 + WeaponStar.FIELD_YYY / 10000)`
`Ergebnis = MainStat.PropertyValue * (1 + WeaponLevel.FIELD_XXX / 10000 + WeaponStar.FIELD_YYY / 10000)`
**Beispiel (Level 60, BreakLevel 5):**
`684 = 46 * (1 + 94090 / 10000 + 44610 / 10000)`

- **Zweitattribut:**
`Ergebnis = MainStat.BaseValue * (1 + WeaponStar.FIELD_ZZZ / 10000)`
`Ergebnis = SecondaryStat.PropertyValue * (1 + WeaponStar.FIELD_ZZZ / 10000)`
**Beispiel (BreakLevel 5):**
`2400 = 960 * (1 + 15000 / 10000)`

@@ -267,10 +267,10 @@ Diese Datei gibt den Wert basierend auf seinem Level und seiner Rarität an.
#### W-Motor

- **Hauptattribut:**
`Ergebnis = MainStat.BaseValue * (1 + 0.1568166666666667 * Level + 0.8922 * BreakLevel)`
`Ergebnis = MainStat.PropertyValue * (1 + 0.1568166666666667 * Level + 0.8922 * BreakLevel)`

- **Zweitattribut:**
`Ergebnis = SubStat.BaseValue * (1 + 0.3 * BreakLevel)`
`Ergebnis = SecondaryStat.PropertyValue * (1 + 0.3 * BreakLevel)`

#### Antriebsscheibe



Loading…
Cancel
Save