-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add facility event crest multipliers (#318)
- Loading branch information
1 parent
e882aca
commit d8fe18a
Showing
21 changed files
with
644 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
namespace DragaliaAPI.Shared.Definitions.Enums; | ||
|
||
public enum AbilityTypes | ||
{ | ||
None, | ||
StatusUp, | ||
ResistAbs, | ||
ActAddAbs, | ||
ResistTribe, | ||
ActKillerTribe, | ||
ActDamageUp, | ||
ActCriticalUp, | ||
ActRecoveryUp, | ||
ActBreakUp, | ||
ResistTrap, | ||
AddRecoverySp, | ||
AddRecoveryDp, | ||
RecoveryHpOnHitCount, | ||
ChangeState, | ||
ResistInstantDeath, | ||
DebuffGrantUp, | ||
SpCharge, | ||
BuffExtension, | ||
DebuffExtension, | ||
AbnormalKiller, | ||
UserExpUp, | ||
CharaExpUp, | ||
CoinUp, | ||
ManaUp, | ||
ActionGrant, | ||
CriticalDamageUp, | ||
DpCharge, | ||
ResistElement, | ||
ResistUnique, | ||
UniqueKiller, | ||
Dummy01, | ||
Dummy02, | ||
BuildEventBoost, // Originally Dummy03 | ||
Dummy04, | ||
ModeGaugeSuppression, | ||
DragonDamageUp, | ||
EnemyAbilityKiller, | ||
HitAttribute, | ||
PassiveGrant, | ||
ActiveGaugeStatusUp, | ||
Dummy05, | ||
HitAttributeShift, | ||
ReferenceOther, | ||
EnhancedSkill, | ||
EnhancedBurstAttack, | ||
DragonTimeForParty, | ||
AbnoramlExtension, | ||
DragonTimeSpeedRate, | ||
DpChargeMyParty, | ||
DontAct, | ||
RandomBuff, | ||
CriticalUpDependsOnBuffTypeCount, | ||
InvalidDragonAbility, | ||
ActDamageUpDependsOnHitCount, | ||
ChainTimeExtension, | ||
UniqueTransform, | ||
EnhancedElementDamage, | ||
UtpCharge, | ||
DebuffTimeExtensionForSpecificDebuffs, | ||
RemoveAllStockBullets, | ||
ChangeMode, | ||
RandomBuffNoTDuplicate_Param1Times, | ||
ModifyBuffDebuffDurationTime, | ||
CpCoef, | ||
UniqueAvoid, | ||
RebornHpRateUp, | ||
AttackBaseOnHPUpRate, | ||
ChangeStateHostile, | ||
CpContinuationDown, | ||
AddCpRate, | ||
RunOptionAction, | ||
SecondElements, | ||
KickAuraEffectTritter, | ||
ConsumeSpToRecoverHp, | ||
CrestGroupScoreUp, | ||
ModifyBuffDebuffDurationTimeByRecoveryHp, | ||
CrisisRate, | ||
ActDamageDown, | ||
AutoAvoidProbability, | ||
LimitCriticalAddRate, | ||
AddReborn, | ||
RunOptionActionRemoteToo, | ||
ConsumeUtpToRecoverHp, | ||
DpGaugeCap, | ||
AbnormalTypeNumKiller, | ||
RegisterKeepComboAction, | ||
NotUpdateDragonTime, | ||
SetCharacterState, | ||
ChangeModeRemoteToo, | ||
RecoverySpCutRate, | ||
ActRecoveryMulForDyingTarget, | ||
CallCpCommand, | ||
AdditionalHitCollision, | ||
RecoveryOnDamage, | ||
Guts, | ||
SendSignal, | ||
RemoveSignal, | ||
StatusUpBaseOnCharaType, | ||
ChangeStateOtherPartyMembers, | ||
DpGaugeCap2, | ||
DpChargeMyParty2, | ||
Reserved_102, | ||
Reserved_103, | ||
Reserved_104, | ||
Reserved_105, | ||
Reserved_106, | ||
Reserved_107, | ||
Reserved_108, | ||
Reserved_109, | ||
Reserved_110 | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using DragaliaAPI.Shared.Definitions.Enums; | ||
|
||
namespace DragaliaAPI.Shared.MasterAsset.Models; | ||
|
||
public record AbilityData( | ||
int Id, | ||
AbilityTypes AbilityType1, | ||
double AbilityType1UpValue, | ||
int AbilityLimitedGroupId1, | ||
int EventId | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
namespace DragaliaAPI.Shared.MasterAsset.Models; | ||
|
||
public record AbilityLimitedGroup(int Id, double MaxLimitedValue); |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.