Compare commits
48 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5990689264 | ||
|
|
b875898efa | ||
|
|
9ffd0468ed | ||
|
|
9cc2bb9402 | ||
|
|
696fa0ffca | ||
|
|
456503b2e3 | ||
|
|
515ec72fec | ||
|
|
bd44e25f71 | ||
|
|
41549aad96 | ||
|
|
a58d440173 | ||
|
|
87495518d1 | ||
|
|
7819746e35 | ||
|
|
bfd42e6caa | ||
|
|
de153497e5 | ||
|
|
d025131034 | ||
|
|
7593c45dc2 | ||
|
|
70c56c3501 | ||
|
|
a937552c1e | ||
|
|
00277f521e | ||
|
|
7ab9898f97 | ||
|
|
ca6bbccd89 | ||
|
|
062e34e585 | ||
|
|
d1fa7348c8 | ||
|
|
5d1a961c47 | ||
|
|
7394d32578 | ||
|
|
d960d21177 | ||
|
|
28ab533060 | ||
|
|
5cb45475f2 | ||
|
|
36e99ba5d2 | ||
|
|
4b407ea56e | ||
|
|
09c1bd81fa | ||
|
|
f0abb2ce55 | ||
|
|
709f210cea | ||
|
|
eab72c1503 | ||
|
|
07bc93ab39 | ||
|
|
cb98a236c6 | ||
|
|
1b523a3eea | ||
|
|
b1dc27da32 | ||
|
|
26989d455a | ||
|
|
a614865663 | ||
|
|
f083886a98 | ||
|
|
12c71a176f | ||
|
|
2795870953 | ||
|
|
05c6bde2f4 | ||
|
|
cb68d22028 | ||
|
|
83bf263801 | ||
|
|
c85c4128c6 | ||
|
|
1c951e8b56 |
2
.github/workflows/build.yml
vendored
@@ -23,7 +23,7 @@ jobs:
|
||||
- name: setup pnpm
|
||||
uses: pnpm/action-setup@v2
|
||||
with:
|
||||
version: 8.6.5
|
||||
version: 8.6.7
|
||||
- name: Install Rust stable
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
- name: Restore Cargo dependencies
|
||||
|
||||
27
.github/workflows/qodana_code_quality.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
name: Qodana
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
qodana:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: setup node
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 16
|
||||
- name: setup pnpm
|
||||
uses: pnpm/action-setup@v2
|
||||
with:
|
||||
version: 8.6.7
|
||||
- name: Install frontend dependencies
|
||||
run: pnpm install --frozen-lockfile
|
||||
- name: "Qodana Scan"
|
||||
uses: JetBrains/qodana-action@v2022.3.4
|
||||
env:
|
||||
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
|
||||
3
.gitmodules
vendored
@@ -1,3 +0,0 @@
|
||||
[submodule "TGAssistant"]
|
||||
path = TGAssistant
|
||||
url = https://github.com/BTMuli/TGAssistant
|
||||
@@ -7,3 +7,5 @@ dist
|
||||
src-tauri/target
|
||||
# submodules
|
||||
TGAssistant
|
||||
# Pnpm
|
||||
pnpm-lock.yaml
|
||||
|
||||
@@ -4,5 +4,5 @@ printWidth: 100
|
||||
useTabs: false
|
||||
tabWidth: 2
|
||||
bracketSpacing: true
|
||||
endOfLine: "crlf"
|
||||
endOfLine: auto
|
||||
trailingComma: "all"
|
||||
|
||||
22
CHANGELOG.md
@@ -2,15 +2,33 @@
|
||||
Author: 目棃
|
||||
Date: 2023-06-18
|
||||
Description: CHANGELOG
|
||||
Update: 2023-07-14
|
||||
Update: 2023-08-15
|
||||
---
|
||||
|
||||
> 本文档 [`Front-matter`](https://github.com/BTMuli/Mucli#FrontMatter) 由 [MuCli](https://github.com/BTMuli/Mucli) 自动生成于 `2023-06-18 15:03:42 `
|
||||
>
|
||||
> 更新于 `2023-07-14 20:46:11`
|
||||
> 更新于 `2023-08-15 17:55:56`
|
||||
|
||||
# CHANGELOG
|
||||
|
||||
## [0.2.2](https://github.com/BTMuli/Tauri.Genshin/releases/0.2.2) (2023-08-15)
|
||||
|
||||
### Feat
|
||||
|
||||
- 资源:更新游戏 4.0 版本相关资源 [#33](https://github.com/BTMuli/Tauri.Genshin/issues/33)
|
||||
|
||||
### Fix
|
||||
|
||||
- 深渊:修复渲染错误 [#32](https://github.com/BTMuli/Tauri.Genshin/issues/32)
|
||||
- 深渊:修复图片缺失 [#31](https://github.com/BTMuli/Tauri.Genshin/issues/31)
|
||||
|
||||
### Change
|
||||
|
||||
- 深渊:适应 HutaoAPI 更新 [`00277f52`](https://github.com/BTMuli/Tauri.Genshin/commit/00277f52)
|
||||
- 素材日历:变更数据来源
|
||||
|
||||
FullCommits: [`0.2.1...0.2.2`](https://github.com/BTMuli/Tauri.Genshin/compare/0.2.1...0.2.2)
|
||||
|
||||
## [0.2.1](https://github.com/BTMuli/Tauri.Genshin/releases/0.2.1) (2023-07-14)
|
||||
|
||||
### Feat
|
||||
|
||||
@@ -2,18 +2,18 @@
|
||||
Author: 目棃
|
||||
Date: 2023-03-05
|
||||
Description: 说明文档
|
||||
Update: 2023-07-14
|
||||
Update: 2023-08-15
|
||||
---
|
||||
|
||||
> 本文档 [`Front-matter`](https://github.com/BTMuli/Mucli#FrontMatter) 由 [MuCli](https://github.com/BTMuli/Mucli) 自动生成于 `2023-03-05 14:41:55`
|
||||
>
|
||||
> 更新于 `2023-07-14 20:28:32`
|
||||
> 更新于 `2023-08-15 17:49:09`
|
||||
|
||||
  
|
||||
|
||||
# Tauri.Genshin
|
||||
|
||||
Tauri 练手项目,子模块:[TGAssistant](https://github.com/BTMuli/TGAssistant)
|
||||
A Genshin Impact assistant app based on Tauri.
|
||||
|
||||
## Release
|
||||
|
||||
@@ -55,7 +55,7 @@ Tauri 练手项目,子模块:[TGAssistant](https://github.com/BTMuli/TGAssis
|
||||
### 长期计划
|
||||
|
||||
- [ ] Wiki 详情页
|
||||
- [ ] 游戏资源更新:更新至 3.8 版本(0.2.1)
|
||||
- [ ] 游戏资源更新:更新至 4.0 版本(0.2.2)
|
||||
|
||||
## 仓库概况
|
||||
|
||||
|
||||
@@ -2,18 +2,22 @@
|
||||
Author: 目棃
|
||||
Date: 2023-03-10
|
||||
Description: 项目资源说明
|
||||
Update: 2023-05-19
|
||||
Update: 2023-08-15
|
||||
---
|
||||
|
||||
> 本文档 [`Front-matter`](https://github.com/BTMuli/Mucli#FrontMatter) 由 [MuCli](https://github.com/BTMuli/Mucli) 自动生成于`2023-03-10 22:05:44`
|
||||
> 本文档 [`Front-matter`](https://github.com/BTMuli/Mucli#FrontMatter) 由 [MuCli](https://github.com/BTMuli/Mucli) 自动生成于 `2023-03-10 22:05:44`
|
||||
>
|
||||
> 更新于 `2023-05-19 23:02:49`
|
||||
> 更新于 `2023-08-15 17:48:16`
|
||||
|
||||
## 说明
|
||||
|
||||
本文档用于说明项目原始资源来源。
|
||||
|
||||
相关仓库:[TGAssistant](https://github.com/BTMuli/TGAssistant)。
|
||||
相关仓库:
|
||||
|
||||
- [TGAssistant](https://github.com/BTMuli/TGAssistant):项目下游仓库,用于处理项目数据。
|
||||
- [Snap.Metadata](https://github.com/DGP-Studio/Snap.Metadata):胡桃元数据仓库,项目大部分数据来源于此。
|
||||
- [Snap.Static](https://github.com/DGP-Studio/Snap.Static):胡桃静态资源仓库,项目部分图像资源来源于此。
|
||||
|
||||
> 如下 JSON 均经过处理,并未直接作为项目 JSON 数据使用。
|
||||
>
|
||||
@@ -41,15 +45,13 @@ Update: 2023-05-19
|
||||
|
||||
### JSON 数据
|
||||
|
||||
- [Achievement|Snap.Metadata](https://github.com/DGP-Studio/Snap.Metadata/blob/main/Output/CHS/Achievement.json)
|
||||
- [AchievementGoal|Snap.Metadata](https://github.com/DGP-Studio/Snap.Metadata/blob/main/Output/CHS/AchievementGoal.json)
|
||||
- [Achievement|Snap.Metadata](https://github.com/DGP-Studio/Snap.Metadata/blob/main/Genshin/CHS/Achievement.json)
|
||||
- [AchievementGoal|Snap.Metadata](https://github.com/DGP-Studio/Snap.Metadata/blob/main/Genshin/CHS/AchievementGoal.json)
|
||||
- [achievement|Paimon.Moe](https://github.com/MadeBaruna/paimon-moe/blob/main/src/data/achievement/zh.json)
|
||||
|
||||
### 图像资源
|
||||
|
||||
- [36691244|米游社](https://www.miyoushe.com/ys/article/36691244)
|
||||
- [成就系统|原神 WIKI](https://wiki.biligame.com/ys/%E6%88%90%E5%B0%B1%E7%B3%BB%E7%BB%9F)
|
||||
- [HoneyHunterWorld](https://genshin.honeyhunterworld.com/?lang=EN)
|
||||
- [Snap.Static](https://github.com/DGP-Studio/Snap.Static)
|
||||
|
||||
### 格式说明
|
||||
|
||||
@@ -57,8 +59,8 @@ Update: 2023-05-19
|
||||
|
||||
关于图像资源格式,涉及到的图像类型及格式如下:
|
||||
|
||||
- 原石图标:`source/material/原石.webp`,256x256,32 位深度
|
||||
- 成就系列图标:`source/achievementSeries/${series_id}.webp`,256x256,32 位深度
|
||||
- 原石图标:`icon/material/102.webp`,256x256,32 位深度
|
||||
- 成就系列图标:`icon/achievement/${series.icon}.webp`,256x256,32 位深度
|
||||
- 成就系列对应名片图标:见 [名片相关](#名片相关)
|
||||
|
||||
## 名片相关
|
||||
@@ -111,8 +113,8 @@ Update: 2023-05-19
|
||||
|
||||
> 转换格式略。
|
||||
|
||||
- 角色图鉴:[Avatar|Snap.Metadata](https://github.com/DGP-Studio/Snap.Metadata/blob/main/Output/CHS/Avatar.json)
|
||||
- 武器图鉴:[Weapon|Snap.Metadata](https://github.com/DGP-Studio/Snap.Metadata/blob/main/Output/CHS/Weapon.json)
|
||||
- 角色图鉴:[Avatar|Snap.Metadata](https://github.com/DGP-Studio/Snap.Metadata/blob/main/Genshin/CHS/Avatar.json)
|
||||
- 武器图鉴:[Weapon|Snap.Metadata](https://github.com/DGP-Studio/Snap.Metadata/blob/main/Genshin/CHS/Weapon.json)
|
||||
- 卡牌图鉴:
|
||||
- [卡牌图鉴|米游社观测枢](https://bbs.mihoyo.com/ys/obc/channel/map/231)
|
||||
- [GCG|Ambr.top](https://ambr.top/chs/gcg)
|
||||
|
||||
10
latest.json
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"notes": "https://github.com/BTMuli/Tauri.Genshin/releases/tag/v0.2.0",
|
||||
"pub_date": "2023-06-19T07:08:41.112Z",
|
||||
"version": "0.2.1",
|
||||
"notes": "https://github.com/BTMuli/Tauri.Genshin/releases/tag/v0.2.1",
|
||||
"pub_date": "2023-07-14T13:23:09.799Z",
|
||||
"platforms": {
|
||||
"windows-x86_64": {
|
||||
"signature": "dW50cnVzdGVkIGNvbW1lbnQ6IHNpZ25hdHVyZSBmcm9tIHRhdXJpIHNlY3JldCBrZXkKUlVSWkdzekNNZjh1aGpkUzdSRHAvMnQ0M1hIRVAwOFZxOTNqOTIyQ0dyWlY4YVFVRjNMTyttNWp6SndvK0RnVGgvOFBBNFhCSjZHeVpGUEE2elZzWmlVeFZUSVRqUllPdXdvPQp0cnVzdGVkIGNvbW1lbnQ6IHRpbWVzdGFtcDoxNjg3MTU4NTAzCWZpbGU6dGF1cmktZ2Vuc2hpbl8wLjIuMF94NjRfemgtQ04ubXNpLnppcApmK3hKeWh4WE91SFFmWnFOeTd0aTlJMnlXakFNSVBPRnREY1pUbmcybngwdFNTa1FtZGF4czU5Qm04YjN6RllvRXUxM3c1ZTQxUlZVZE5nYzNKY0JEUT09Cg==",
|
||||
"url": "https://github.com/BTMuli/Tauri.Genshin/releases/download/v0.2.0/tauri-genshin_0.2.0_x64_zh-CN.msi.zip"
|
||||
"signature": "dW50cnVzdGVkIGNvbW1lbnQ6IHNpZ25hdHVyZSBmcm9tIHRhdXJpIHNlY3JldCBrZXkKUlVSWkdzekNNZjh1aHFiQ3dxSzZqcmUvUlRmQ1RseUV1a0I1bFUwS2NWVlFBT3JaZ0pvamp1c21SOGR5K2MrMGZCR0lYY2xPeWFxVjc3K0lEaVpqdnBFNlp4SnA0TjdtOVFnPQp0cnVzdGVkIGNvbW1lbnQ6IHRpbWVzdGFtcDoxNjg5MzQwOTc1CWZpbGU6dGF1cmktZ2Vuc2hpbl8wLjIuMV94NjRfemgtQ04ubXNpLnppcApWOENhdXJUeWdJUmgrQnBRa3BUVW9NK2JsWko0dFFFeHd1UFZndjZmTzFHM3ZMaU9tbWgrb1RLQVY1a1gwTjEzYlBidkljVXZRNnRFL2wrY1h3SFpBdz09Cg==",
|
||||
"url": "https://github.com/BTMuli/Tauri.Genshin/releases/download/v0.2.1/tauri-genshin_0.2.1_x64_zh-CN.msi.zip"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
"name": "tauri-genshin",
|
||||
"description": "A Genshin Tool build with Tauri",
|
||||
"private": true,
|
||||
"version": "0.2.1",
|
||||
"version": "0.2.2",
|
||||
"author": "BTMuli <bt-muli@outlook.com>",
|
||||
"packageManager": "pnpm@8.6.5",
|
||||
"packageManager": "pnpm@8.6.7",
|
||||
"scripts": {
|
||||
"build": "tauri build",
|
||||
"debug": "tauri build --debug",
|
||||
@@ -17,7 +17,6 @@
|
||||
"lint:style:fix": "pnpm lint:style --fix",
|
||||
"prettier": "prettier . --write",
|
||||
"tauri": "tauri",
|
||||
"update:submodule": "git submodule update --remote --recursive",
|
||||
"vite:dev": "vite dev",
|
||||
"vite:build": "vite build",
|
||||
"prepare": "husky install"
|
||||
|
||||
BIN
public/WIKI/GCG/normal/七七.webp
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
public/WIKI/GCG/normal/丽莎.webp
Normal file
|
After Width: | Height: | Size: 64 KiB |
BIN
public/WIKI/GCG/normal/塞塔蕾.webp
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
public/WIKI/GCG/normal/愉舞欢游.webp
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
public/WIKI/GCG/normal/王下近侍.webp
Normal file
|
After Width: | Height: | Size: 41 KiB |
BIN
public/WIKI/GCG/normal/神性之陨.webp
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
public/WIKI/GCG/normal/脉冲的魔女.webp
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
public/WIKI/GCG/normal/藏锋何处.webp
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
public/WIKI/GCG/normal/起死回骸.webp
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
public/WIKI/GCG/normal/阿贝多.webp
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
public/WIKI/GCG/normal/黄金屋.webp
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
public/WIKI/character/icon/10000083.webp
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
public/WIKI/character/icon/10000084.webp
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
public/WIKI/character/icon/10000085.webp
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
public/WIKI/weapon/icon/11424.webp
Normal file
|
After Width: | Height: | Size: 8.3 KiB |
BIN
public/WIKI/weapon/icon/11425.webp
Normal file
|
After Width: | Height: | Size: 9.6 KiB |
BIN
public/WIKI/weapon/icon/11426.webp
Normal file
|
After Width: | Height: | Size: 8.2 KiB |
BIN
public/WIKI/weapon/icon/12424.webp
Normal file
|
After Width: | Height: | Size: 9.8 KiB |
BIN
public/WIKI/weapon/icon/12425.webp
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
public/WIKI/weapon/icon/13424.webp
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
BIN
public/WIKI/weapon/icon/13425.webp
Normal file
|
After Width: | Height: | Size: 7.9 KiB |
BIN
public/WIKI/weapon/icon/14424.webp
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
public/WIKI/weapon/icon/14425.webp
Normal file
|
After Width: | Height: | Size: 8.8 KiB |
BIN
public/WIKI/weapon/icon/15424.webp
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
public/WIKI/weapon/icon/15425.webp
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
public/WIKI/weapon/icon/15512.webp
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_1_0.webp
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_1_1.webp
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_2_0.webp
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_2_1.webp
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_2_2.webp
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_3_0.webp
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_3_1.webp
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_3_2.webp
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_3_3.webp
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A001.webp
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A001_Part2.webp
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A001_Part3.webp
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A001_Part4.webp
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A002.webp
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A003.webp
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A004.webp
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A005.webp
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A006.webp
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A007.webp
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A007_Part2.webp
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A007_Part3.webp
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A008.webp
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A008_Part2.webp
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A008_Part3.webp
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A009.webp
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A010.webp
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A011.webp
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A012.webp
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A013.webp
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A013_Part2.webp
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A014.webp
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A015.webp
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_A016.webp
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_B001.webp
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_B001_Part2.webp
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_B002.webp
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_B003.webp
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_B004.webp
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_B004_Part2.webp
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_B004_Part3.webp
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_B004_Part4.webp
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_B004_Part5.webp
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_B004_Part6.webp
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_B004_Part7.webp
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_B005.webp
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_C001.webp
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_C002.webp
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_C003.webp
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_D001.webp
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_D001_Part2.webp
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_D001_Part3.webp
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_D001_Part4.webp
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_E001.webp
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
public/icon/achievement/UI_AchievementIcon_O001.webp
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
public/icon/bg/0-Star.webp
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
public/icon/material/100099.webp
Normal file
|
After Width: | Height: | Size: 9.3 KiB |
BIN
public/icon/material/101009.webp
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
public/icon/material/101229.webp
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
public/icon/material/101231.webp
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
public/icon/material/101232.webp
Normal file
|
After Width: | Height: | Size: 9.6 KiB |
BIN
public/icon/material/101233.webp
Normal file
|
After Width: | Height: | Size: 8.0 KiB |
BIN
public/icon/material/101234.webp
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
public/icon/material/101235.webp
Normal file
|
After Width: | Height: | Size: 8.9 KiB |