File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -129,6 +129,8 @@ def get_nice_buff_script(
129129 "HP_LOWER" ,
130130 "INDIVIDUALITIE_COUNT_ABOVE" ,
131131 "INDIVIDUALITIE_COUNT_BELOW" ,
132+ "ckIndvCountAbove" ,
133+ "ckIndvCountBelow" ,
132134 "HP_HIGHER" ,
133135 "CounterMessage" ,
134136 "avoidanceText" ,
@@ -152,6 +154,8 @@ def get_nice_buff_script(
152154 for script_item in (
153155 "INDIVIDUALITIE_AND" ,
154156 "INDIVIDUALITIE_OR" ,
157+ "ckSelfCountIndividuality" ,
158+ "ckOpCountIndividuality" ,
155159 "UpBuffRateBuffIndiv" ,
156160 ):
157161 if script_item in mstBuff .script :
Original file line number Diff line number Diff line change @@ -121,6 +121,10 @@ class BuffScript(BaseModel):
121121 INDIVIDUALITIE_COUNT_BELOW : int | None = None
122122 INDIVIDUALITIE_AND : list [NiceTrait ] | None = None
123123 INDIVIDUALITIE_OR : list [NiceTrait ] | None = None
124+ ckSelfCountIndividuality : list [NiceTrait ] | None = None
125+ ckOpCountIndividuality : list [NiceTrait ] | None = None
126+ ckIndvCountAbove : int | None = None
127+ ckIndvCountBelow : int | None = None
124128 UpBuffRateBuffIndiv : Optional [list [NiceTrait ]] = None
125129 HP_LOWER : Optional [int ] = None
126130 HP_HIGHER : int | None = None
Original file line number Diff line number Diff line change @@ -209,6 +209,7 @@ export enum NiceFuncTargetType {
209209 HAND_COMMANDCARD_RANDOM_ONE = "handCommandcardRandomOne" ,
210210 FIELD_ALL = "fieldAll" ,
211211 NO_TARGET = "noTarget" ,
212+ FIELD_RANDOM = "fieldRandom" ,
212213}
213214
214215export enum NiceFuncApplyTargetType {
@@ -851,6 +852,9 @@ export enum NiceDataValsType {
851852 IgnoreShiftWhiteFade = "ignoreshiftwhitefade" ,
852853 BackStepTargets = "backsteptargets" ,
853854 ReplacePositionTargets = "replacepositiontargets" ,
855+ ApplySupportSvt = "applysupportsvt" ,
856+ ApplyHighestValueInFieldGroup = "applyhighestvalueinfieldgroup" ,
857+ IsClassIconChangeSaveGrand = "isclassiconchangesavegrand" ,
854858}
855859
856860export enum NiceClassRelationOverwriteType {
You can’t perform that action at this time.
0 commit comments