@@ -2058,23 +2058,25 @@ let Options = {
2058
2058
} ,
2059
2059
tristicia : {
2060
2060
label : {
2061
- en : 'Tristicia ' ,
2062
- de : 'Tristicia ' ,
2063
- fr : 'Tristicia ' ,
2064
- ja : 'Tristicia ' ,
2061
+ en : 'Tristitia ' ,
2062
+ de : 'Tristitia ' ,
2063
+ fr : 'Tristitia ' ,
2064
+ ja : 'Tristitia ' ,
2065
2065
} ,
2066
2066
mobName : {
2067
- // <_<
2068
- en : '(Tristicia|Tristitia|Trisitia)' ,
2069
- de : '(Tristicia|Tristitia|Trisitia)' ,
2070
- fr : '(Tristicia|Tristitia|Trisitia)' ,
2071
- ja : '(Tristicia|Tristitia|Trisitia)' ,
2067
+ en : 'Tristitia' ,
2068
+ de : 'Tristitia' ,
2069
+ fr : 'Tristitia' ,
2070
+ ja : 'Tristitia' ,
2071
+ } ,
2072
+ spawnTrigger : {
2073
+ en : '00:0839:An avatar of Absolute Virtue has manifested somewhere in Hydatos'
2072
2074
} ,
2073
2075
trackerName : {
2074
- en : 'Tristicia ' ,
2075
- de : 'Tristicia ' ,
2076
- fr : 'Tristicia ' ,
2077
- ja : 'Tristicia ' ,
2076
+ en : 'Tristitia ' ,
2077
+ de : 'Tristitia ' ,
2078
+ fr : 'Tristitia ' ,
2079
+ ja : 'Tristitia ' ,
2078
2080
} ,
2079
2081
x : 18.7 ,
2080
2082
y : 29.7 ,
@@ -2166,7 +2168,10 @@ class EurekaTracker {
2166
2168
nm . element = label ;
2167
2169
nm . timeElement = time ;
2168
2170
let mobName = nm . mobName [ this . options . Language ] ;
2169
- nm . addRegex = Regexes . Parse ( '03:Added new combatant ' + mobName + '\\.' ) ;
2171
+ if ( nm . spawnTrigger )
2172
+ nm . addRegex = Regexes . Parse ( nm . spawnTrigger [ this . options . Language ] ) ;
2173
+ if ( ! nm . addRegex )
2174
+ nm . addRegex = Regexes . Parse ( '03:Added new combatant ' + mobName + '\\.' ) ;
2170
2175
nm . removeRegex = Regexes . Parse ( '04:Removing combatant ' + mobName + '\\.' ) ;
2171
2176
nm . respawnTimeMsLocal = undefined ;
2172
2177
nm . respawnTimeMsTracker = undefined ;
@@ -2446,7 +2451,7 @@ class EurekaTracker {
2446
2451
this . ImportFromTracker ( match [ 2 ] ) ;
2447
2452
continue ;
2448
2453
}
2449
- if ( log . indexOf ( '03:Added new combatant ' ) >= 0 ) {
2454
+ if ( log . indexOf ( '03:Added new combatant ' ) >= 0 || log . indexOf ( '00:0839:' ) >= 0 ) {
2450
2455
for ( let i = 0 ; i < this . nmKeys . length ; ++ i ) {
2451
2456
let nm = this . nms [ this . nmKeys [ i ] ] ;
2452
2457
if ( log . match ( nm . addRegex ) ) {
0 commit comments