Skip to content

Commit

Permalink
Image update
Browse files Browse the repository at this point in the history
  • Loading branch information
HU-Lee committed Nov 7, 2024
1 parent d17a0fe commit 4d46f02
Show file tree
Hide file tree
Showing 9 changed files with 39 additions and 12 deletions.
27 changes: 21 additions & 6 deletions aecheck/compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,27 @@ def compare_character(character: Character):
)

if __name__ == "__main__":
# compare_character(Character(
# english_name="Sesta",
# korean_class_name="바나르간드",
# style=Style.AS.value,
# altema_url="https://altema.jp/anaden/chara/1110",
# ))
compare_character(Character(
english_name="Rufus",
korean_class_name=None,
style=Style.FOUR.value,
altema_url="https://altema.jp/anaden/chara/67",
is_original_4star=True
))
compare_character(Character(
english_name="Rufus",
korean_class_name="블레이즈 히어로",
style=Style.AS.value,
altema_url="https://altema.jp/anaden/chara/1114",
))
compare_character(Character(
english_name="Shanie",
korean_class_name="아크 나이트",
style=Style.NS.value,
max_manifest=2,
alter_character_korean_name="가시나무 저주의 여인 셰이네",
altema_url="https://altema.jp/anaden/chara/180",
))
compare_character(Character(
english_name="Tsubame",
korean_class_name="펠리스 로드",
Expand Down
Binary file added aecheck/img/101010081_rank5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added aecheck/img/101010081_rank5_opened.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added aecheck/img/101060051.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added aecheck/img/101060051_s2_rank5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added aecheck/img/101060051_s2_rank5_opened.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed aecheck/img/101060181_rank5.png
Binary file not shown.
Binary file removed aecheck/img/101060181_rank5_opened.png
Binary file not shown.
24 changes: 18 additions & 6 deletions aecheck/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,23 @@ def update_character(character: Character):

if __name__ == "__main__":
update_character(Character(
english_name="Tsubame",
korean_class_name="펠리스 로드",
english_name="Rufus",
korean_class_name=None,
style=Style.FOUR.value,
altema_url="https://altema.jp/anaden/chara/67",
is_original_4star=True
))
update_character(Character(
english_name="Rufus",
korean_class_name="블레이즈 히어로",
style=Style.AS.value,
altema_url="https://altema.jp/anaden/chara/1114",
))
update_character(Character(
english_name="Shanie",
korean_class_name="아크 나이트",
style=Style.NS.value,
altema_url="https://altema.jp/anaden/chara/1112",
is_alter=True,
alter_character_korean_name="츠바메",
max_manifest=0
max_manifest=2,
alter_character_korean_name="가시나무 저주의 여인 셰이네",
altema_url="https://altema.jp/anaden/chara/180",
))

0 comments on commit 4d46f02

Please sign in to comment.