feat(external): AndrealImageGenerator

This commit is contained in:
2023-09-01 02:37:39 +08:00
parent 844568db1a
commit 00255e5b74
3 changed files with 108 additions and 0 deletions

View File

@ -0,0 +1,14 @@
class AndrealImageGeneratorAccount:
def __init__(
self,
name: str = "Player",
code: int = 123456789,
rating: int = 750,
character: int = 5,
character_uncapped: bool = False,
):
self.name = name
self.code = code
self.rating = rating
self.character = character
self.character_uncapped = character_uncapped