gchar.games.bluearchive¶
Character¶
-
class
gchar.games.bluearchive.
Character
(raw_data: dict)[source]¶ Represents a character in Blue Archive. Inherits from the base class _BaseCharacter.
-
property
attack_type
¶ Returns the attack type of the character.
- Returns:
The attack type.
- Return type:
-
property
weapon_type
¶ Returns the weapon type of the character.
- Returns:
The weapon type.
- Return type:
-
property
EnglishName¶
JapaneseName¶
ChineseName¶
ChineseAliasName¶
Rarity¶
Role¶
-
enum
gchar.games.bluearchive.
Role
(value)[source]¶ Enum representing the role of a character in Blue Archive.
Valid values are as follows:
-
ATTACKER
= <Role.ATTACKER: 'ATTACKER'>¶
-
TACTICAL_SUPPORT
= <Role.TACTICAL_SUPPORT: 'TACTICAL SUPPORT'>¶
-
HEALER
= <Role.HEALER: 'HEALER'>¶
-
SUPPORT
= <Role.SUPPORT: 'SUPPORT'>¶
-
TANK
= <Role.TANK: 'TANK'>¶
The
Enum
and its members also have the following methods:-
AttackType¶
-
enum
gchar.games.bluearchive.
AttackType
(value)[source]¶ Enum representing the attack type of a character in Blue Archive.
Valid values are as follows:
-
PENETRATION
= <AttackType.PENETRATION: 'PENETRATION'>¶
-
EXPLOSIVE
= <AttackType.EXPLOSIVE: 'EXPLOSIVE'>¶
-
MYSTIC
= <AttackType.MYSTIC: 'MYSTIC'>¶
-
SONIC
= <AttackType.SONIC: 'SONIC'>¶
The
Enum
and its members also have the following methods:-
classmethod
loads
(val) → gchar.games.bluearchive.property.AttackType[source]¶ Load an attack type value.
- Parameters:
val (Union[str, AttackType]) – The attack type value to load.
- Returns:
The loaded attack type.
- Return type:
- Raises:
ValueError – If the value is invalid.
TypeError – If the type is invalid.
-
WeaponType¶
-
enum
gchar.games.bluearchive.
WeaponType
(value)[source]¶ Enum representing the weapon type of a character in Blue Archive.
Valid values are as follows:
-
SMG
= <WeaponType.SMG: 'SMG'>¶
-
RL
= <WeaponType.RL: 'RL'>¶
-
HG
= <WeaponType.HG: 'HG'>¶
-
FT
= <WeaponType.FT: 'FT'>¶
-
SG
= <WeaponType.SG: 'SG'>¶
-
MT
= <WeaponType.MT: 'MT'>¶
-
AR
= <WeaponType.AR: 'AR'>¶
-
MG
= <WeaponType.MG: 'MG'>¶
-
GL
= <WeaponType.GL: 'GL'>¶
-
SR
= <WeaponType.SR: 'SR'>¶
-
RG
= <WeaponType.RG: 'RG'>¶
The
Enum
and its members also have the following methods:-
classmethod
loads
(val) → gchar.games.bluearchive.property.WeaponType[source]¶ Load a weapon type value.
- Parameters:
val (Union[str, WeaponType]) – The weapon type value to load.
- Returns:
The loaded weapon type.
- Return type:
- Raises:
ValueError – If the value is invalid.
TypeError – If the type is invalid.
-