From 1ba0ef77a3de712e407310a05facb9f39253fda5 Mon Sep 17 00:00:00 2001 From: ExLin Date: Tue, 7 Jun 2022 00:16:37 +0600 Subject: [PATCH 1/8] some corrections; added equipList, weapon, reliquary, flat descriptions; --- api.md | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 56 insertions(+), 8 deletions(-) diff --git a/api.md b/api.md index 4cced85..387b17e 100644 --- a/api.md +++ b/api.md @@ -7,13 +7,15 @@ For example https://enka.network/u/700378769/__data.json ## Data Structure Info -| Name | Description | +| Name | Description | :--- | :---------- | | [playerInfo](#playerinfo) | Profile Info | | [avatarInfoList](#avatarinfolist) | List of detailed information for every character from showcase | ### playerInfo +For any additional info, check the [Characters Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarExcelConfigData.json) incuding IDs and other stuff. + | Name | Description | | :--- | :--------- | | nickname | Player Nickname | @@ -23,11 +25,11 @@ For example https://enka.network/u/700378769/__data.json | finishAchievementNum | Number of Completed Achievements | | towerFloorIndex | Abyss Floor | | towerLevelIndex | Abyss Floor's Level | -| [showAvatarInfoList](#showavatarinfolist) | List of Character IDs and Levels | +| [showAvatarInfoList](#showavatarinfolist-avatarinfo) | List of Character IDs and Levels | | showNameCardIdList | List of Namecard IDs | | profilePicture.avatarID | Character ID of Profile Picture | -#### showAvatarInfoList +#### showAvatarInfoList - AvatarInfo | Name | Description | | :--- | :--------- | @@ -40,11 +42,14 @@ For example https://enka.network/u/700378769/__data.json | :--- | :---------- | | avatarID | Character ID | | [propMap](#propmap) | Character Info Properties List | -| fightPropMap | Map of Character's Combat Properties `{id: value}`. [Definitions for IDs](#fightprop)| -| skillDepotId | Charater Skill Set ID. [Additional Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarSkillDepotExcelConfigData.json) -> `"id"`| -| inherentProudSkillList | List of Unlocked Skill Ids. [Additional Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarSkillDepotExcelConfigData.json) -> `"inherentProudSkillOpens"` | +| fightPropMap -> `{id: value}` | Map of Character's Combat Properties.
Check the [Definitions for IDs](#fightprop)| +| skillDepotId | Character Skill Set ID
[Skills Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarSkillDepotExcelConfigData.json) -> `"id"`| +| inherentProudSkillList | List of Unlocked Skill Ids
[Skills Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarSkillDepotExcelConfigData.json) -> `"inherentProudSkillOpens"` | +| skillLevelMap -> `{skill_id: level}`| Map of Skill Levels
[Skills Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarSkillDepotExcelConfigData.json) -> `"inherentProudSkillOpens"` | +| [equipList](#equiplist-equip) | List of Equipments: Weapon, Ariftacts | +| fetterInfo.expLevel | Character Friendship Level | -### propMap +#### propMap | Name | Description | | :--- | :--------- | @@ -52,6 +57,47 @@ For example https://enka.network/u/700378769/__data.json | ival | Ignore it | | val | Value of Property | +#### equipList - Equip + +| Name | Description | +| :--- | :--------- | +| itemId | Equipment ID
[Equipments Data](https://raw.githubusercontent.com/Dimbreath/GenshinData/master/ExcelBinOutput/GadgetExcelConfigData.json) -> `"id"` | +| [weapon](#weapon) `[Weapon Only]` | Weapon Base Info | +| [reliquary](#reliquary) `[Artifact Only]` | Artifact Base Info | +| [flat](#flat) | Detailed Info of Equipment | + +#### weapon + +| Name | Description | +| :--- | :---------- | +| level | Weapon Level | +| promoteLevel | Weapon Ascension Level | +| affixMap | Weapon Refinement Level `[0-4]` | + + +### reliquary + +| Name | Description | +| :--- | :---------- | +| level | Artifact Level `[1-21]` | +| mainPropId | Artifact Main Stat ID
[MainProps Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/ReliquaryMainPropExcelConfigData.json) | + +### flat + +For any additional info about names, descriptions and etc, check the [TextMap Data](https://github.com/Dimbreath/GenshinData/tree/master/TextMap) including any languages supported by game. + +| Name | Description | +| :--- | :---------- | +| nameTextHashMap | Hash for Equipment Name | +| setNameTextHashMap `[Artifact Only]`| Hash for Artifact Set Name | +| rankLevel | Rarity Level of Equipment | +| weaponStats `[Weapon Only]`| Weapon Stats | +| reliquaryMainstat `[Artifact Only]` | Artifact Main Stat | +| reliquarySubstats `[Artifact Only]` | Arifact Substats | +| itemType | Equipment Type: Weapon or Artifact| +| icon | Equipment Icon Name | +| [equipType](#equiptype) `[Artifact Only]` | Artifact Type | + ## Definitions ### Prop @@ -99,4 +145,6 @@ For example https://enka.network/u/700378769/__data.json | 76 | Geo Energy Cost | | 2000 | Max HP | | 2001 | ATK | -| 2002 | DEF | \ No newline at end of file +| 2002 | DEF | + +### EquipType From 88b1de5791d79be3b96443c173df984b7212f45f Mon Sep 17 00:00:00 2001 From: ExLin Date: Tue, 7 Jun 2022 00:18:41 +0600 Subject: [PATCH 2/8] some corrections; added equipList, weapon, reliquary, flat descriptions; --- api.md | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 81 insertions(+), 8 deletions(-) diff --git a/api.md b/api.md index 8649a73..7e39236 100644 --- a/api.md +++ b/api.md @@ -14,22 +14,93 @@ For example https://enka.network/u/700378769/__data.json ### playerInfo -| Name | Desciption | +For any additional info, check the [Characters Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarExcelConfigData.json), includes IDs and other stuff. + +| Name | Description | | :--- | :--------- | | nickname | Player Nickname | | signature | Profile Signature | | worldLevel | Player World Level | | namecardId | Profile Namecard ID | -| finishAchievementNum | Number of Completed Achievments | +| finishAchievementNum | Number of Completed Achievements | | towerFloorIndex | Abyss Floor | | towerLevelIndex | Abyss Floor's Level | -| showAvatarInfoList | List of Charaters ID and Level | -| showNameCardIdList | List of Namecards ID | -| profilePicture.avatarID | Charater ID of Profile Picture | +| [showAvatarInfoList](#showavatarinfolist-avatarinfo) | List of Character IDs and Levels | +| showNameCardIdList | List of Namecard IDs | +| profilePicture.avatarID | Character ID of Profile Picture | + +#### showAvatarInfoList - AvatarInfo + +| Name | Description | +| :--- | :--------- | +| avatarId | Character ID | +| level | Character Level | + +### avatarInfoList + +| Name | Description | +| :--- | :---------- | +| avatarID | Character ID | +| [propMap](#propmap) | Character Info Properties List | +| fightPropMap -> `{id: value}` | Map of Character's Combat Properties.
Check the [Definitions for IDs](#fightprop)| +| skillDepotId | Character Skill Set ID
[Skills Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarSkillDepotExcelConfigData.json) -> `"id"`| +| inherentProudSkillList | List of Unlocked Skill Ids
[Skills Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarSkillDepotExcelConfigData.json) -> `"inherentProudSkillOpens"` | +| skillLevelMap -> `{skill_id: level}`| Map of Skill Levels
[Skills Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarSkillDepotExcelConfigData.json) -> `"inherentProudSkillOpens"` | +| [equipList](#equiplist-equip) | List of Equipments: Weapon, Ariftacts | +| fetterInfo.expLevel | Character Friendship Level | + +#### propMap + +| Name | Description | +| :--- | :--------- | +| type | ID of Property Type, Check the [Definitions for IDs](#prop) | +| ival | Ignore it | +| val | Value of Property | + +#### equipList - Equip + +| Name | Description | +| :--- | :--------- | +| itemId | Equipment ID
[Equipments Data](https://raw.githubusercontent.com/Dimbreath/GenshinData/master/ExcelBinOutput/GadgetExcelConfigData.json) -> `"id"` | +| [weapon](#weapon) `[Weapon Only]` | Weapon Base Info | +| [reliquary](#reliquary) `[Artifact Only]` | Artifact Base Info | +| [flat](#flat) | Detailed Info of Equipment | + +#### weapon + +| Name | Description | +| :--- | :---------- | +| level | Weapon Level | +| promoteLevel | Weapon Ascension Level | +| affixMap | Weapon Refinement Level `[0-4]` | + + +### reliquary + +| Name | Description | +| :--- | :---------- | +| level | Artifact Level `[1-21]` | +| mainPropId | Artifact Main Stat ID
[MainProps Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/ReliquaryMainPropExcelConfigData.json) | + +### flat + +For any additional info about names, descriptions and etc, check the [TextMap Data](https://github.com/Dimbreath/GenshinData/tree/master/TextMap), includes any languages supported by game. + +| Name | Description | +| :--- | :---------- | +| nameTextHashMap | Hash for Equipment Name | +| setNameTextHashMap `[Artifact Only]`| Hash for Artifact Set Name | +| rankLevel | Rarity Level of Equipment | +| weaponStats `[Weapon Only]`| Weapon Stats | +| reliquaryMainstat `[Artifact Only]` | Artifact Main Stat | +| reliquarySubstats `[Artifact Only]` | Arifact Substats | +| itemType | Equipment Type: Weapon or Artifact| +| icon | Equipment Icon Name | +| [equipType](#equiptype) `[Artifact Only]` | Artifact Type | ## Definitions -### PropMap +### Prop | Type | Description | | :--: | :---------- | @@ -37,7 +108,7 @@ For example https://enka.network/u/700378769/__data.json | 1002 | Ascension | | 4001 | Level | -### FightPropMap +### FightProp | Type | Description | | :--: | :---------- | @@ -74,4 +145,6 @@ For example https://enka.network/u/700378769/__data.json | 76 | Geo Energy Cost | | 2000 | Max HP | | 2001 | ATK | -| 2002 | DEF | \ No newline at end of file +| 2002 | DEF | + +### EquipType From d3340826c96b7122103bb8779833ecbd55782cfe Mon Sep 17 00:00:00 2001 From: ExLin Date: Tue, 7 Jun 2022 00:20:34 +0600 Subject: [PATCH 3/8] some corrections; added equipList, weapon, reliquary, flat descriptions; --- api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api.md b/api.md index a2c6d03..8517e80 100644 --- a/api.md +++ b/api.md @@ -7,7 +7,7 @@ For example https://enka.network/u/700378769/__data.json ## Data Structure Info -| Name | Description +| Name | Description | | :--- | :---------- | | [playerInfo](#playerinfo) | Profile Info | | [avatarInfoList](#avatarinfolist) | List of detailed information for every character from showcase | From e408dbb07c702df15046e14d784b61a1df75b923 Mon Sep 17 00:00:00 2001 From: ExLin Date: Tue, 7 Jun 2022 00:22:28 +0600 Subject: [PATCH 4/8] some corrections; added equipList, weapon, reliquary, flat descriptions; --- api.md | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 81 insertions(+), 8 deletions(-) diff --git a/api.md b/api.md index 8649a73..7e39236 100644 --- a/api.md +++ b/api.md @@ -14,22 +14,93 @@ For example https://enka.network/u/700378769/__data.json ### playerInfo -| Name | Desciption | +For any additional info, check the [Characters Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarExcelConfigData.json), includes IDs and other stuff. + +| Name | Description | | :--- | :--------- | | nickname | Player Nickname | | signature | Profile Signature | | worldLevel | Player World Level | | namecardId | Profile Namecard ID | -| finishAchievementNum | Number of Completed Achievments | +| finishAchievementNum | Number of Completed Achievements | | towerFloorIndex | Abyss Floor | | towerLevelIndex | Abyss Floor's Level | -| showAvatarInfoList | List of Charaters ID and Level | -| showNameCardIdList | List of Namecards ID | -| profilePicture.avatarID | Charater ID of Profile Picture | +| [showAvatarInfoList](#showavatarinfolist-avatarinfo) | List of Character IDs and Levels | +| showNameCardIdList | List of Namecard IDs | +| profilePicture.avatarID | Character ID of Profile Picture | + +#### showAvatarInfoList - AvatarInfo + +| Name | Description | +| :--- | :--------- | +| avatarId | Character ID | +| level | Character Level | + +### avatarInfoList + +| Name | Description | +| :--- | :---------- | +| avatarID | Character ID | +| [propMap](#propmap) | Character Info Properties List | +| fightPropMap -> `{id: value}` | Map of Character's Combat Properties.
Check the [Definitions for IDs](#fightprop)| +| skillDepotId | Character Skill Set ID
[Skills Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarSkillDepotExcelConfigData.json) -> `"id"`| +| inherentProudSkillList | List of Unlocked Skill Ids
[Skills Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarSkillDepotExcelConfigData.json) -> `"inherentProudSkillOpens"` | +| skillLevelMap -> `{skill_id: level}`| Map of Skill Levels
[Skills Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarSkillDepotExcelConfigData.json) -> `"inherentProudSkillOpens"` | +| [equipList](#equiplist-equip) | List of Equipments: Weapon, Ariftacts | +| fetterInfo.expLevel | Character Friendship Level | + +#### propMap + +| Name | Description | +| :--- | :--------- | +| type | ID of Property Type, Check the [Definitions for IDs](#prop) | +| ival | Ignore it | +| val | Value of Property | + +#### equipList - Equip + +| Name | Description | +| :--- | :--------- | +| itemId | Equipment ID
[Equipments Data](https://raw.githubusercontent.com/Dimbreath/GenshinData/master/ExcelBinOutput/GadgetExcelConfigData.json) -> `"id"` | +| [weapon](#weapon) `[Weapon Only]` | Weapon Base Info | +| [reliquary](#reliquary) `[Artifact Only]` | Artifact Base Info | +| [flat](#flat) | Detailed Info of Equipment | + +#### weapon + +| Name | Description | +| :--- | :---------- | +| level | Weapon Level | +| promoteLevel | Weapon Ascension Level | +| affixMap | Weapon Refinement Level `[0-4]` | + + +### reliquary + +| Name | Description | +| :--- | :---------- | +| level | Artifact Level `[1-21]` | +| mainPropId | Artifact Main Stat ID
[MainProps Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/ReliquaryMainPropExcelConfigData.json) | + +### flat + +For any additional info about names, descriptions and etc, check the [TextMap Data](https://github.com/Dimbreath/GenshinData/tree/master/TextMap), includes any languages supported by game. + +| Name | Description | +| :--- | :---------- | +| nameTextHashMap | Hash for Equipment Name | +| setNameTextHashMap `[Artifact Only]`| Hash for Artifact Set Name | +| rankLevel | Rarity Level of Equipment | +| weaponStats `[Weapon Only]`| Weapon Stats | +| reliquaryMainstat `[Artifact Only]` | Artifact Main Stat | +| reliquarySubstats `[Artifact Only]` | Arifact Substats | +| itemType | Equipment Type: Weapon or Artifact| +| icon | Equipment Icon Name | +| [equipType](#equiptype) `[Artifact Only]` | Artifact Type | ## Definitions -### PropMap +### Prop | Type | Description | | :--: | :---------- | @@ -37,7 +108,7 @@ For example https://enka.network/u/700378769/__data.json | 1002 | Ascension | | 4001 | Level | -### FightPropMap +### FightProp | Type | Description | | :--: | :---------- | @@ -74,4 +145,6 @@ For example https://enka.network/u/700378769/__data.json | 76 | Geo Energy Cost | | 2000 | Max HP | | 2001 | ATK | -| 2002 | DEF | \ No newline at end of file +| 2002 | DEF | + +### EquipType From 5ea44d7abe667c1443fb0cece68b0addfbbc3cf5 Mon Sep 17 00:00:00 2001 From: ExLin Date: Tue, 7 Jun 2022 00:29:24 +0600 Subject: [PATCH 5/8] some corrections; added equipList, weapon, reliquary, flat descriptions; --- api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api.md b/api.md index 7e39236..1be52ef 100644 --- a/api.md +++ b/api.md @@ -75,14 +75,14 @@ For any additional info, check the [Characters Data](https://github.com/Dimbreat | affixMap | Weapon Refinement Level `[0-4]` | -### reliquary +#### reliquary | Name | Description | | :--- | :---------- | | level | Artifact Level `[1-21]` | | mainPropId | Artifact Main Stat ID
[MainProps Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/ReliquaryMainPropExcelConfigData.json) | -### flat +#### flat For any additional info about names, descriptions and etc, check the [TextMap Data](https://github.com/Dimbreath/GenshinData/tree/master/TextMap), includes any languages supported by game. From 18c8acf27d4bcafa711b155bf4863c4cc04f26b3 Mon Sep 17 00:00:00 2001 From: ExLin Date: Tue, 7 Jun 2022 01:00:50 +0600 Subject: [PATCH 6/8] seom corrections, addded equipList, weapon, reliquary, flat descriptions; --- api.md | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 81 insertions(+), 8 deletions(-) diff --git a/api.md b/api.md index 8649a73..1be52ef 100644 --- a/api.md +++ b/api.md @@ -14,22 +14,93 @@ For example https://enka.network/u/700378769/__data.json ### playerInfo -| Name | Desciption | +For any additional info, check the [Characters Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarExcelConfigData.json), includes IDs and other stuff. + +| Name | Description | | :--- | :--------- | | nickname | Player Nickname | | signature | Profile Signature | | worldLevel | Player World Level | | namecardId | Profile Namecard ID | -| finishAchievementNum | Number of Completed Achievments | +| finishAchievementNum | Number of Completed Achievements | | towerFloorIndex | Abyss Floor | | towerLevelIndex | Abyss Floor's Level | -| showAvatarInfoList | List of Charaters ID and Level | -| showNameCardIdList | List of Namecards ID | -| profilePicture.avatarID | Charater ID of Profile Picture | +| [showAvatarInfoList](#showavatarinfolist-avatarinfo) | List of Character IDs and Levels | +| showNameCardIdList | List of Namecard IDs | +| profilePicture.avatarID | Character ID of Profile Picture | + +#### showAvatarInfoList - AvatarInfo + +| Name | Description | +| :--- | :--------- | +| avatarId | Character ID | +| level | Character Level | + +### avatarInfoList + +| Name | Description | +| :--- | :---------- | +| avatarID | Character ID | +| [propMap](#propmap) | Character Info Properties List | +| fightPropMap -> `{id: value}` | Map of Character's Combat Properties.
Check the [Definitions for IDs](#fightprop)| +| skillDepotId | Character Skill Set ID
[Skills Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarSkillDepotExcelConfigData.json) -> `"id"`| +| inherentProudSkillList | List of Unlocked Skill Ids
[Skills Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarSkillDepotExcelConfigData.json) -> `"inherentProudSkillOpens"` | +| skillLevelMap -> `{skill_id: level}`| Map of Skill Levels
[Skills Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/AvatarSkillDepotExcelConfigData.json) -> `"inherentProudSkillOpens"` | +| [equipList](#equiplist-equip) | List of Equipments: Weapon, Ariftacts | +| fetterInfo.expLevel | Character Friendship Level | + +#### propMap + +| Name | Description | +| :--- | :--------- | +| type | ID of Property Type, Check the [Definitions for IDs](#prop) | +| ival | Ignore it | +| val | Value of Property | + +#### equipList - Equip + +| Name | Description | +| :--- | :--------- | +| itemId | Equipment ID
[Equipments Data](https://raw.githubusercontent.com/Dimbreath/GenshinData/master/ExcelBinOutput/GadgetExcelConfigData.json) -> `"id"` | +| [weapon](#weapon) `[Weapon Only]` | Weapon Base Info | +| [reliquary](#reliquary) `[Artifact Only]` | Artifact Base Info | +| [flat](#flat) | Detailed Info of Equipment | + +#### weapon + +| Name | Description | +| :--- | :---------- | +| level | Weapon Level | +| promoteLevel | Weapon Ascension Level | +| affixMap | Weapon Refinement Level `[0-4]` | + + +#### reliquary + +| Name | Description | +| :--- | :---------- | +| level | Artifact Level `[1-21]` | +| mainPropId | Artifact Main Stat ID
[MainProps Data](https://github.com/Dimbreath/GenshinData/blob/master/ExcelBinOutput/ReliquaryMainPropExcelConfigData.json) | + +#### flat + +For any additional info about names, descriptions and etc, check the [TextMap Data](https://github.com/Dimbreath/GenshinData/tree/master/TextMap), includes any languages supported by game. + +| Name | Description | +| :--- | :---------- | +| nameTextHashMap | Hash for Equipment Name | +| setNameTextHashMap `[Artifact Only]`| Hash for Artifact Set Name | +| rankLevel | Rarity Level of Equipment | +| weaponStats `[Weapon Only]`| Weapon Stats | +| reliquaryMainstat `[Artifact Only]` | Artifact Main Stat | +| reliquarySubstats `[Artifact Only]` | Arifact Substats | +| itemType | Equipment Type: Weapon or Artifact| +| icon | Equipment Icon Name | +| [equipType](#equiptype) `[Artifact Only]` | Artifact Type | ## Definitions -### PropMap +### Prop | Type | Description | | :--: | :---------- | @@ -37,7 +108,7 @@ For example https://enka.network/u/700378769/__data.json | 1002 | Ascension | | 4001 | Level | -### FightPropMap +### FightProp | Type | Description | | :--: | :---------- | @@ -74,4 +145,6 @@ For example https://enka.network/u/700378769/__data.json | 76 | Geo Energy Cost | | 2000 | Max HP | | 2001 | ATK | -| 2002 | DEF | \ No newline at end of file +| 2002 | DEF | + +### EquipType From 6cf89a86170c22be8e3b7ef01a413867aa677075 Mon Sep 17 00:00:00 2001 From: ExLin Date: Tue, 7 Jun 2022 02:06:31 +0600 Subject: [PATCH 7/8] more defintitions - ItemType, EquipType, AppendProp; more info on flat --- api.md | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 54 insertions(+), 6 deletions(-) diff --git a/api.md b/api.md index 1be52ef..41833b0 100644 --- a/api.md +++ b/api.md @@ -25,18 +25,18 @@ For any additional info, check the [Characters Data](https://github.com/Dimbreat | finishAchievementNum | Number of Completed Achievements | | towerFloorIndex | Abyss Floor | | towerLevelIndex | Abyss Floor's Level | -| [showAvatarInfoList](#showavatarinfolist-avatarinfo) | List of Character IDs and Levels | +| [showAvatarInfoList](#showavatarinfolist-showavatarinfo) | List of Character IDs and Levels | | showNameCardIdList | List of Namecard IDs | | profilePicture.avatarID | Character ID of Profile Picture | -#### showAvatarInfoList - AvatarInfo +#### showAvatarInfoList - ShowAvatarInfo | Name | Description | | :--- | :--------- | | avatarId | Character ID | | level | Character Level | -### avatarInfoList +### avatarInfoList - AvatarInfo | Name | Description | | :--- | :---------- | @@ -92,12 +92,21 @@ For any additional info about names, descriptions and etc, check the [TextMap Da | setNameTextHashMap `[Artifact Only]`| Hash for Artifact Set Name | | rankLevel | Rarity Level of Equipment | | weaponStats `[Weapon Only]`| Weapon Stats | -| reliquaryMainstat `[Artifact Only]` | Artifact Main Stat | -| reliquarySubstats `[Artifact Only]` | Arifact Substats | -| itemType | Equipment Type: Weapon or Artifact| +| [reliquaryMainstat](#reliquarymainstat-reliquarysubstats-weaponstats) `[Artifact Only]` | Artifact Main Stat | +| [reliquarySubstats](#reliquarymainstat-reliquarysubstats-weaponstats) `[Artifact Only]` | List of Artifact Substats | +| [weaponStats](#reliquarymainstat-reliquarysubstats-weaponstats) `[Weapon Only]`| List of Weapon Stat: Base ATK, Substat | +| [itemType](#itemtype) | Equipment Type: Weapon or Artifact| | icon | Equipment Icon Name | | [equipType](#equiptype) `[Artifact Only]` | Artifact Type | +#### reliquaryMainstat, reliquarySubstats, weaponStats + +| Name | Description | +| :--- | :---------- | +| mainPropId / appendPropID | Equipment Append Property Name. Check the [Definitions for Names](#appendprop)| +| propValue | Property Value | + + ## Definitions ### Prop @@ -147,4 +156,43 @@ For any additional info about names, descriptions and etc, check the [TextMap Da | 2001 | ATK | | 2002 | DEF | +### ItemType + +| Name | Description | +| :--- | :---------- | +| ITEM_WEAPON | Weapon | +| ITEM_RELIQUARY | Artifact | + ### EquipType + +| Name | Description | +| :--- | :---------- | +| EQUIP_BRACER | Flower | +| EQUIP_NECKLACE | Feather | +| EQUIP_SHOES | Sands | +| EQUIP_RING | Goblet | +| EQUIP_DRESS | Circlet | + +### AppendProp + +| Name | Description | +| :--- | :---------- | +| FIGHT_PROP_BASE_ATTACK `[Weapon]` | Base ATK | +| FIGHT_PROP_HP | Flat HP | +| FIGHT_PROP_ATTACK | Flat ATK | +| FIGHT_PROP_DEFENSE | Flat DEF | +| FIGHT_PROP_HP_PERCENT | HP% | +| FIGHT_PROP_ATTACK_PERCENT | ATK% | +| FIGHT_PROP_DEFENSE_PERCENT | DEF% | +| FIGHT_PROP_CRITICAL | Crit RATE | +| FIGHT_PROP_CRITICAL_HURT | Crit DMG | +| FIGHT_PROP_CHARGE_EFFICIENCY | Energy Recharge | +| FIGHT_PROP_HEAL_ADD | Healing Bonus | +| FIGHT_PROP_ELEMENT_MASTERY | Elemental Mastery | +| FIGHT_PROP_PHYSICAL_ADD_HURT | Physical DMG Bonus | +| FIGHT_PROP_FIRE_ADD_HURT | Pyro DMG Bonus | +| FIGHT_PROP_ELEC_ADD_HURT | Electro DMG Bonus | +| FIGHT_PROP_WATER_ADD_HURT | Hydro DMG Bonus | +| FIGHT_PROP_WIND_ADD_HURT | Anemo DMG Bonus | +| FIGHT_PROP_ICE_ADD_HURT | Cryo DMG Bonus | +| FIGHT_PROP_ROCK_ADD_HURT | Geo DMG Bonus | \ No newline at end of file From d7b86e9e168dc09879950359a0425637e4735a16 Mon Sep 17 00:00:00 2001 From: ExLin Date: Tue, 7 Jun 2022 02:23:31 +0600 Subject: [PATCH 8/8] hot fix --- api.md | 1 - 1 file changed, 1 deletion(-) diff --git a/api.md b/api.md index 41833b0..e6fc82e 100644 --- a/api.md +++ b/api.md @@ -91,7 +91,6 @@ For any additional info about names, descriptions and etc, check the [TextMap Da | nameTextHashMap | Hash for Equipment Name | | setNameTextHashMap `[Artifact Only]`| Hash for Artifact Set Name | | rankLevel | Rarity Level of Equipment | -| weaponStats `[Weapon Only]`| Weapon Stats | | [reliquaryMainstat](#reliquarymainstat-reliquarysubstats-weaponstats) `[Artifact Only]` | Artifact Main Stat | | [reliquarySubstats](#reliquarymainstat-reliquarysubstats-weaponstats) `[Artifact Only]` | List of Artifact Substats | | [weaponStats](#reliquarymainstat-reliquarysubstats-weaponstats) `[Weapon Only]`| List of Weapon Stat: Base ATK, Substat |