Skip to content

Commit

Permalink
Parse FieldIndividuality dataval as list
Browse files Browse the repository at this point in the history
  • Loading branch information
squaresmile committed Apr 25, 2024
1 parent f5c911d commit 7b2c260
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/core/nice/func.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def remove_brackets(val_string: str) -> str:
"NotSkillCopyTargetIndividualities",
"TargetEnemyRange",
"TriggeredFieldCountRange",
"FieldIndividuality",
}
STRING_DATAVALS = {
"PopValueText",
Expand Down
2 changes: 1 addition & 1 deletion app/schemas/nice.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ class BaseVals(BaseModel):
NotAccompanyWhenLinkedTargetMoveState: int | None = None
NotTargetSkillIdArray: list[int] | None = None
ShortTurn: int | None = None
FieldIndividuality: int | None = None
FieldIndividuality: list[int] | None = None
BGId: int | None = None
BGType: int | None = None
BgmId: int | None = None
Expand Down

0 comments on commit 7b2c260

Please sign in to comment.