Skip to content

Commit

Permalink
Added new traits
Browse files Browse the repository at this point in the history
  • Loading branch information
squaresmile committed Apr 30, 2024
1 parent 8a80942 commit 3a878b1
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions app/schemas/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -1015,6 +1015,13 @@ class Trait(StrEnum):
magicBulletAtkBuff = "magicBulletAtkBuff"
demeritFunction = "demeritFunction"
extraBuff = "extraBuff"
robinCounter = "robinCounter"
kuonjiAliceFormA = "kuonjiAliceFormA"
kuonjiAliceFormB = "kuonjiAliceFormB"
instantDeathFunction = "instantDeathFunction"
forceInstantDeathFunction = "forceInstantDeathFunction"
buffGutsOnInstantDeath = "buffGutsOnInstantDeath"
robinAllGone = "robinAllGone"


TRAIT_NAME: dict[int, Trait] = {
Expand Down Expand Up @@ -1210,9 +1217,14 @@ class Trait(StrEnum):
2883: Trait.FSNServant,
2884: Trait.fieldDarkness,
2885: Trait.magicBullet,
2886: Trait.robinCounter,
2887: Trait.robinAllGone,
2888: Trait.protagonistCorrection,
2903: Trait.kuonjiAliceFormB,
2911: Trait.normalAokoBuff,
2912: Trait.magicBulletAtkBuff,
2913: Trait.kuonjiAliceFormA,
2914: Trait.buffGutsOnInstantDeath,
# 2xxx: CQ or Story quests buff
3000: Trait.attackPhysical, # Normal attack, including NP
3001: Trait.attackProjectile,
Expand Down Expand Up @@ -1292,6 +1304,8 @@ class Trait(StrEnum):
3092: Trait.artsBuff,
3093: Trait.busterBuff,
3094: Trait.quickBuff,
3096: Trait.instantDeathFunction,
3097: Trait.forceInstantDeathFunction,
3098: Trait.demeritFunction,
3100: Trait.extraBuff,
# 6016: No detail
Expand Down

0 comments on commit 3a878b1

Please sign in to comment.