status.yml 195 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753
  1. # This file is a part of rAthena.
  2. # Copyright(C) 2022 rAthena Development Team
  3. # https://rathena.org - https://github.com/rathena
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. #
  18. ###########################################################################
  19. # Status Change Database
  20. ###########################################################################
  21. #
  22. # Status Change Settings
  23. #
  24. ###########################################################################
  25. # - Status Status change name.
  26. # Icon Status change icon. (Default: EFST_BLANK)
  27. # DurationLookup Default status change duration. (Default: 0)
  28. # States: Status change state to determine player states. (Default: None)
  29. # CalcFlags: Status change calculation to indicate which stat is adjusted. (Default: None)
  30. # Opt1 Special effect when a status change is active. Non-stackable. (Default: None)
  31. # Opt2: Special options/client effects when a status change is active. (Default: None)
  32. # Opt3: Special options/client effects when a status change is active. (Default: Normal)
  33. # Options: Special options/client effects when a status change is active. (Default: Nothing)
  34. # Flags: Special flags which trigger during certain events. (Default: None)
  35. # MinRate Minimum rate after status change reduction (10000 = 100%). (Default: 0)
  36. # MinDuration Minimum duration in milliseconds after status change reduction. (Default: 1)
  37. # Fail: List of Status Changes that causes the status to fail to activate. (Optional)
  38. # EndOnStart: List of Status Changes that will end when the status activates. (Optional)
  39. # EndReturn: List of Status Changes that will end when the status activates and won't give its effect. (Optional)
  40. # EndOnEnd: List of Status Changes that will end when the status becomes inactive. (Optional)
  41. ###########################################################################
  42. Header:
  43. Type: STATUS_DB
  44. Version: 3
  45. Body:
  46. - Status: Stone
  47. DurationLookup: NPC_PETRIFYATTACK
  48. States:
  49. NoMove: true
  50. NoCast: true
  51. NoAttack: true
  52. CalcFlags:
  53. Def_Ele: true
  54. Def: true
  55. Mdef: true
  56. Opt1: Stone
  57. Flags:
  58. SendOption: true
  59. BossResist: true
  60. StopAttacking: true
  61. StopCasting: true
  62. RemoveOnDamaged: true
  63. Fail:
  64. Refresh: true
  65. Inspiration: true
  66. Power_Of_Gaia: true
  67. Gvg_Stone: true
  68. Whiteimprison: true
  69. Freeze: true
  70. Stun: true
  71. Sleep: true
  72. Burning: true
  73. EndOnStart:
  74. Aeterna: true
  75. EndReturn:
  76. StoneWait: true
  77. Stone: true
  78. - Status: StoneWait
  79. DurationLookup: NPC_PETRIFYATTACK
  80. States:
  81. NoCast: true
  82. NoAttack: true
  83. Opt1: StoneWait
  84. Flags:
  85. SendOption: true
  86. BossResist: true
  87. StopAttacking: true
  88. Fail:
  89. Whiteimprison: true
  90. Freeze: true
  91. Stun: true
  92. Sleep: true
  93. Burning: true
  94. EndReturn:
  95. StoneWait: true
  96. Stone: true
  97. - Status: Freeze
  98. DurationLookup: NPC_WIDEFREEZE
  99. States:
  100. NoMove: true
  101. NoCast: true
  102. NoAttack: true
  103. CalcFlags:
  104. Def_Ele: true
  105. Def: true
  106. Mdef: true
  107. Opt1: Freeze
  108. Flags:
  109. SendOption: true
  110. BossResist: true
  111. StopAttacking: true
  112. StopCasting: true
  113. RemoveOnDamaged: true
  114. Fail:
  115. Refresh: true
  116. Inspiration: true
  117. Warmer: true
  118. Gvg_Freez: true
  119. Whiteimprison: true
  120. Stone: true
  121. StoneWait: true
  122. Freeze: true
  123. Stun: true
  124. Sleep: true
  125. Burning: true
  126. EndOnStart:
  127. Aeterna: true
  128. - Status: Stun
  129. DurationLookup: NPC_STUNATTACK
  130. States:
  131. NoMove: true
  132. NoCast: true
  133. NoAttack: true
  134. Opt1: Stun
  135. Flags:
  136. SendOption: true
  137. BossResist: true
  138. StopAttacking: true
  139. StopCasting: true
  140. Fail:
  141. Refresh: true
  142. Inspiration: true
  143. Gvg_Stun: true
  144. Stun: true
  145. - Status: Sleep
  146. DurationLookup: NPC_SLEEPATTACK
  147. States:
  148. NoMove: true
  149. NoCast: true
  150. NoAttack: true
  151. Opt1: Sleep
  152. Flags:
  153. SendOption: true
  154. BossResist: true
  155. StopAttacking: true
  156. StopCasting: true
  157. RemoveOnDamaged: true
  158. Fail:
  159. Refresh: true
  160. Inspiration: true
  161. Gvg_Sleep: true
  162. Sleep: true
  163. - Status: Poison
  164. DurationLookup: NPC_POISON
  165. CalcFlags:
  166. Def2: true
  167. Regen: true
  168. Opt2:
  169. Poison: true
  170. Flags:
  171. SendOption: true
  172. BossResist: true
  173. StopAttacking: true
  174. SpreadEffect: true
  175. Fail:
  176. Refresh: true
  177. Inspiration: true
  178. Poison: true
  179. Dpoison: true
  180. - Status: Curse
  181. DurationLookup: NPC_WIDECURSE
  182. CalcFlags:
  183. Luk: true
  184. Batk: true
  185. Watk: true
  186. Speed: true
  187. Opt2:
  188. Curse: true
  189. Flags:
  190. SendOption: true
  191. BossResist: true
  192. SpreadEffect: true
  193. Fail:
  194. Refresh: true
  195. Inspiration: true
  196. Gvg_Curse: true
  197. Curse: true
  198. - Status: Silence
  199. DurationLookup: NPC_SILENCEATTACK
  200. States:
  201. NoCast: true
  202. Opt2:
  203. Silence: true
  204. Flags:
  205. SendOption: true
  206. BossResist: true
  207. StopCasting: true
  208. SpreadEffect: true
  209. Fail:
  210. Refresh: true
  211. Inspiration: true
  212. Gvg_Silence: true
  213. Silence: true
  214. - Status: Confusion
  215. DurationLookup: NPC_WIDECONFUSE
  216. Flags:
  217. BossResist: true
  218. StopWalking: true
  219. SpreadEffect: true
  220. Fail:
  221. Refresh: true
  222. Inspiration: true
  223. EndReturn:
  224. Confusion: true
  225. - Status: Blind
  226. DurationLookup: NPC_BLINDATTACK
  227. CalcFlags:
  228. Hit: true
  229. Flee: true
  230. Opt2:
  231. Blind: true
  232. Flags:
  233. SendOption: true
  234. BossResist: true
  235. SpreadEffect: true
  236. Fail:
  237. Refresh: true
  238. Inspiration: true
  239. Fear: true
  240. Gvg_Blind: true
  241. Blind: true
  242. - Status: Bleeding
  243. Icon: EFST_BLOODING
  244. DurationLookup: NPC_BLEEDING
  245. CalcFlags:
  246. Regen: true
  247. Opt2:
  248. Bleeding: true
  249. Flags:
  250. SendOption: true
  251. BossResist: true
  252. NoSave: true
  253. NoClearance: true
  254. SpreadEffect: true
  255. RemoveOnHermode: true
  256. Fail:
  257. Refresh: true
  258. Inspiration: true
  259. - Status: Dpoison
  260. DurationLookup: NPC_POISON
  261. CalcFlags:
  262. Def2: true
  263. Regen: true
  264. Opt2:
  265. Dpoison: true
  266. Flags:
  267. SendOption: true
  268. BossResist: true
  269. Fail:
  270. Refresh: true
  271. Inspiration: true
  272. - Status: Provoke
  273. Icon: EFST_PROVOKE
  274. DurationLookup: SM_PROVOKE
  275. CalcFlags:
  276. Def: true
  277. Def2: true
  278. Batk: true
  279. Watk: true
  280. Flags:
  281. BossResist: true
  282. Debuff: true
  283. NoSaveInfinite: true
  284. RemoveOnHermode: true
  285. EndOnStart:
  286. Freeze: true
  287. Stone: true
  288. Sleep: true
  289. TrickDead: true
  290. - Status: Endure
  291. Icon: EFST_ENDURE
  292. DurationLookup: SM_ENDURE
  293. CalcFlags:
  294. Mdef: true
  295. Dspd: true
  296. Flags:
  297. NoRemoveOnDead: true
  298. NoSaveInfinite: true
  299. - Status: Twohandquicken
  300. Icon: EFST_TWOHANDQUICKEN
  301. DurationLookup: KN_TWOHANDQUICKEN
  302. CalcFlags:
  303. Aspd: true
  304. Hit: true
  305. Cri: true
  306. Opt3:
  307. Quicken: true
  308. Flags:
  309. RequireWeapon: true
  310. RemoveOnHermode: true
  311. Fail:
  312. Decreaseagi: true
  313. - Status: Concentrate
  314. Icon: EFST_CONCENTRATION
  315. DurationLookup: AC_CONCENTRATION
  316. CalcFlags:
  317. Agi: true
  318. Dex: true
  319. Flags:
  320. FailedMado: true
  321. RemoveOnHermode: true
  322. Fail:
  323. Quagmire: true
  324. - Status: Hiding
  325. Icon: EFST_HIDING
  326. DurationLookup: TF_HIDING
  327. States:
  328. NoMove: true
  329. NoMoveCond: true
  330. NoPickItem: true
  331. NoConsumeItem: true
  332. CalcFlags:
  333. Speed: true
  334. Options:
  335. Hide: true
  336. Flags:
  337. OnTouch: true
  338. StopAttacking: true
  339. RemoveOnDamaged: true
  340. RemoveOnChangeMap: true
  341. NoBanishingBuster: true
  342. NoDispell: true
  343. NoClearance: true
  344. EndOnStart:
  345. Closeconfine: true
  346. Closeconfine2: true
  347. - Status: Cloaking
  348. Icon: EFST_CLOAKING
  349. DurationLookup: AS_CLOAKING
  350. States:
  351. NoPickItem: true
  352. CalcFlags:
  353. Cri: true
  354. Speed: true
  355. Options:
  356. Cloak: true
  357. Flags:
  358. OnTouch: true
  359. StopAttacking: true
  360. RemoveOnDamaged: true
  361. RemoveOnMapWarp: true
  362. NoBanishingBuster: true
  363. NoDispell: true
  364. NoClearance: true
  365. - Status: Encpoison
  366. Icon: EFST_ENCHANTPOISON
  367. DurationLookup: AS_ENCHANTPOISON
  368. CalcFlags:
  369. Atk_Ele: true
  370. Flags:
  371. RemoveOnUnequipWeapon: true
  372. RemoveOnHermode: true
  373. EndOnStart:
  374. Aspersio: true
  375. Fireweapon: true
  376. Waterweapon: true
  377. Windweapon: true
  378. Earthweapon: true
  379. Shadowweapon: true
  380. Ghostweapon: true
  381. - Status: Poisonreact
  382. Icon: EFST_POISONREACT
  383. DurationLookup: AS_POISONREACT
  384. Flags:
  385. RemoveOnHermode: true
  386. - Status: Quagmire
  387. Icon: EFST_QUAGMIRE
  388. DurationLookup: WZ_QUAGMIRE
  389. CalcFlags:
  390. Agi: true
  391. Dex: true
  392. Aspd: true
  393. Speed: true
  394. Flags:
  395. NoSave: true
  396. NoClearance: true
  397. Debuff: true
  398. RemoveOnHermode: true
  399. Fail:
  400. Speedup1: true
  401. EndOnStart:
  402. Loud: true
  403. Concentrate: true
  404. Truesight: true
  405. Windwalk: true
  406. Magneticfield: true
  407. Cartboost: true
  408. Gn_Cartboost: true
  409. Increaseagi: true
  410. Adrenaline: true
  411. Adrenaline2: true
  412. Spearquicken: true
  413. Twohandquicken: true
  414. Onehand: true
  415. Merc_Quicken: true
  416. Acceleration: true
  417. - Status: Angelus
  418. Icon: EFST_ANGELUS
  419. DurationLookup: AL_ANGELUS
  420. CalcFlags:
  421. Def2: true
  422. MaxHp: true
  423. Opt2:
  424. Angelus: true
  425. Flags:
  426. SendOption: true
  427. RemoveOnHermode: true
  428. - Status: Blessing
  429. Icon: EFST_BLESSING
  430. DurationLookup: AL_BLESSING
  431. CalcFlags:
  432. Str: true
  433. Int: true
  434. Dex: true
  435. Hit: true
  436. Flags:
  437. BossResist: true
  438. TaekwonAngel: true
  439. RemoveOnHermode: true
  440. - Status: Signumcrucis
  441. Icon: EFST_CRUCIS
  442. DurationLookup: AL_CRUCIS
  443. CalcFlags:
  444. Def: true
  445. Opt2:
  446. SignumCrucis: true
  447. Flags:
  448. SendOption: true
  449. Debuff: true
  450. - Status: Increaseagi
  451. Icon: EFST_INC_AGI
  452. DurationLookup: AL_INCAGI
  453. CalcFlags:
  454. Agi: true
  455. Speed: true
  456. Aspd: true
  457. Flags:
  458. FailedMado: true
  459. TaekwonAngel: true
  460. RemoveOnHermode: true
  461. Fail:
  462. Quagmire: true
  463. EndOnStart:
  464. Decreaseagi: true
  465. Adoramus: true
  466. - Status: Decreaseagi
  467. Icon: EFST_DEC_AGI
  468. DurationLookup: AL_DECAGI
  469. CalcFlags:
  470. Agi: true
  471. Speed: true
  472. Flags:
  473. BossResist: true
  474. NoSave: true
  475. Debuff: true
  476. RemoveOnHermode: true
  477. Fail:
  478. Speedup1: true
  479. EndOnStart:
  480. Cartboost: true
  481. Gn_Cartboost: true
  482. Increaseagi: true
  483. Adrenaline: true
  484. Adrenaline2: true
  485. Spearquicken: true
  486. Twohandquicken: true
  487. Onehand: true
  488. Merc_Quicken: true
  489. Acceleration: true
  490. - Status: Slowpoison
  491. Icon: EFST_SLOWPOISON
  492. DurationLookup: PR_SLOWPOISON
  493. Flags:
  494. NoClearance: true
  495. RemoveOnHermode: true
  496. - Status: Impositio
  497. Icon: EFST_IMPOSITIO
  498. DurationLookup: PR_IMPOSITIO
  499. CalcFlags:
  500. Watk: true
  501. Matk: true
  502. Flags:
  503. SuperNoviceAngel: true
  504. RemoveOnHermode: true
  505. EndOnStart:
  506. Impositio: true
  507. - Status: Suffragium
  508. Icon: EFST_SUFFRAGIUM
  509. DurationLookup: PR_SUFFRAGIUM
  510. Flags:
  511. SuperNoviceAngel: true
  512. RemoveOnHermode: true
  513. - Status: Aspersio
  514. Icon: EFST_ASPERSIO
  515. DurationLookup: PR_ASPERSIO
  516. CalcFlags:
  517. Atk_Ele: true
  518. Flags:
  519. RemoveOnUnequipWeapon: true
  520. RemoveOnHermode: true
  521. EndOnStart:
  522. Encpoison: true
  523. Fireweapon: true
  524. Waterweapon: true
  525. Windweapon: true
  526. Earthweapon: true
  527. Shadowweapon: true
  528. Ghostweapon: true
  529. Enchantarms: true
  530. - Status: Benedictio
  531. Icon: EFST_BENEDICTIO
  532. DurationLookup: PR_BENEDICTIO
  533. CalcFlags:
  534. Def_Ele: true
  535. Flags:
  536. NoSave: true
  537. NoClearance: true
  538. #RemoveOnUnequipArmor: true
  539. RemoveOnHermode: true
  540. - Status: Kyrie
  541. Icon: EFST_KYRIE
  542. DurationLookup: PR_KYRIE
  543. Flags:
  544. SuperNoviceAngel: true
  545. RemoveOnHermode: true
  546. - Status: Magnificat
  547. Icon: EFST_MAGNIFICAT
  548. DurationLookup: PR_MAGNIFICAT
  549. CalcFlags:
  550. Regen: true
  551. Flags:
  552. FailedMado: true
  553. NoSave: true
  554. SuperNoviceAngel: true
  555. RemoveOnHermode: true
  556. EndOnStart:
  557. Offertorium: true
  558. - Status: Gloria
  559. Icon: EFST_GLORIA
  560. DurationLookup: PR_GLORIA
  561. CalcFlags:
  562. Luk: true
  563. Flags:
  564. SuperNoviceAngel: true
  565. RemoveOnHermode: true
  566. - Status: Aeterna
  567. Icon: EFST_LEXAETERNA
  568. DurationLookup: PR_LEXAETERNA
  569. Flags:
  570. NoSave: true
  571. RemoveOnHermode: true
  572. Fail:
  573. Stone: true
  574. Freeze: true
  575. - Status: Adrenaline
  576. Icon: EFST_ADRENALINE
  577. DurationLookup: BS_ADRENALINE
  578. CalcFlags:
  579. Aspd: true
  580. Hit: true
  581. Flags:
  582. MadoCancel: true
  583. RequireWeapon: true
  584. RemoveOnHermode: true
  585. Fail:
  586. Quagmire: true
  587. Decreaseagi: true
  588. - Status: Weaponperfection
  589. Icon: EFST_WEAPONPERFECT
  590. DurationLookup: BS_WEAPONPERFECT
  591. Flags:
  592. MadoCancel: true
  593. RemoveOnHermode: true
  594. - Status: Overthrust
  595. Icon: EFST_OVERTHRUST
  596. DurationLookup: BS_OVERTHRUST
  597. Opt3:
  598. OverThrust: true
  599. Flags:
  600. MadoCancel: true
  601. RemoveOnHermode: true
  602. Fail:
  603. Maxoverthrust: true
  604. - Status: Maximizepower
  605. Icon: EFST_MAXIMIZE
  606. DurationLookup: BS_MAXIMIZE
  607. CalcFlags:
  608. Regen: true
  609. Flags:
  610. MadoCancel: true
  611. RemoveOnHermode: true
  612. - Status: Trickdead
  613. Icon: EFST_TRICKDEAD
  614. DurationLookup: NV_TRICKDEAD
  615. States:
  616. NoMove: true
  617. NoPickItem: true
  618. NoConsumeItem: true
  619. NoAttack: true
  620. NoInteract: true
  621. CalcFlags:
  622. Regen: true
  623. Flags:
  624. StopWalking: true
  625. StopAttacking: true
  626. StopCasting: true
  627. RemoveOnDamaged: true
  628. NoSave: true
  629. NoClearance: true
  630. RemoveOnChangeMap: true
  631. RemoveOnHermode: true
  632. EndOnStart:
  633. Dancing: true
  634. - Status: Loud
  635. Icon: EFST_SHOUT
  636. DurationLookup: MC_LOUD
  637. Flags:
  638. MadoCancel: true
  639. RemoveOnHermode: true
  640. CalcFlags:
  641. Str: true
  642. Batk: true
  643. - Status: Energycoat
  644. Icon: EFST_ENERGYCOAT
  645. DurationLookup: MG_ENERGYCOAT
  646. Opt3:
  647. EnergyCoat: true
  648. Flags:
  649. RemoveOnHermode: true
  650. - Status: Brokenarmor
  651. Icon: EFST_BROKENARMOR
  652. DurationLookup: NPC_ARMORBRAKE
  653. - Status: Brokenweapon
  654. Icon: EFST_BROKENWEAPON
  655. DurationLookup: NPC_WEAPONBRAKER
  656. - Status: Hallucination
  657. Icon: EFST_ILLUSION
  658. DurationLookup: NPC_HALLUCINATION
  659. Flags:
  660. NoDispell: true
  661. NoBanishingBuster: true
  662. NoClearance: true
  663. Debuff: true
  664. SpreadEffect: true
  665. Fail:
  666. Inspiration: true
  667. - Status: Weight50
  668. Icon: EFST_WEIGHTOVER50
  669. Flags:
  670. NoRemoveOnDead: true
  671. NoClearbuff: true
  672. NoSave: true
  673. NoDispell: true
  674. NoBanishingBuster: true
  675. NoClearance: true
  676. NoForcedEnd: true
  677. - Status: Weight90
  678. Icon: EFST_WEIGHTOVER90
  679. Flags:
  680. NoRemoveOnDead: true
  681. NoClearbuff: true
  682. StopAttacking: true
  683. NoSave: true
  684. NoDispell: true
  685. NoBanishingBuster: true
  686. NoClearance: true
  687. NoForcedEnd: true
  688. - Status: Aspdpotion0
  689. Icon: EFST_ATTHASTE_POTION1
  690. CalcFlags:
  691. Aspd: true
  692. Flags:
  693. NoClearance: true
  694. OverlapIgnoreLevel: true
  695. - Status: Aspdpotion1
  696. Icon: EFST_ATTHASTE_POTION2
  697. CalcFlags:
  698. Aspd: true
  699. Flags:
  700. NoClearance: true
  701. OverlapIgnoreLevel: true
  702. RemoveOnHermode: true
  703. - Status: Aspdpotion2
  704. Icon: EFST_ATTHASTE_POTION3
  705. CalcFlags:
  706. Aspd: true
  707. Flags:
  708. OverlapIgnoreLevel: true
  709. RemoveOnHermode: true
  710. - Status: Aspdpotion3
  711. Icon: EFST_ATTHASTE_INFINITY
  712. CalcFlags:
  713. Aspd: true
  714. Flags:
  715. NoClearance: true
  716. OverlapIgnoreLevel: true
  717. RemoveOnHermode: true
  718. - Status: Speedup0
  719. Icon: EFST_MOVHASTE_HORSE
  720. CalcFlags:
  721. Speed: true
  722. Flags:
  723. NoSave: true
  724. NoDispell: true
  725. NoBanishingBuster: true
  726. NoClearance: true
  727. NoRemoveOnDead: true
  728. - Status: Speedup1
  729. Icon: EFST_MOVHASTE_POTION
  730. CalcFlags:
  731. Speed: true
  732. Flags:
  733. NoSave: true
  734. NoClearance: true
  735. RemoveOnHermode: true
  736. - Status: Atkpotion
  737. Icon: EFST_PLUSATTACKPOWER
  738. CalcFlags:
  739. Batk: true
  740. Flags:
  741. NoRemoveOnDead: true
  742. NoClearance: true
  743. OverlapIgnoreLevel: true
  744. RemoveOnHermode: true
  745. - Status: Matkpotion
  746. Icon: EFST_PLUSMAGICPOWER
  747. CalcFlags:
  748. Matk: true
  749. Flags:
  750. NoRemoveOnDead: true
  751. NoClearance: true
  752. OverlapIgnoreLevel: true
  753. RemoveOnHermode: true
  754. - Status: Wedding
  755. States:
  756. NoAttack: true
  757. CalcFlags:
  758. Speed: true
  759. Options:
  760. Wedding: true
  761. Flags:
  762. SendLook: true
  763. StopAttacking: true
  764. NoRemoveOnDead: true
  765. NoBanishingBuster: true
  766. NoDispell: true
  767. NoClearance: true
  768. - Status: Slowdown
  769. CalcFlags:
  770. Speed: true
  771. Flags:
  772. Debuff: true
  773. - Status: Ankle
  774. Icon: EFST_ANKLESNARE
  775. DurationLookup: HT_ANKLESNARE
  776. States:
  777. NoMove: true
  778. Flags:
  779. NoClearbuff: true
  780. StopWalking: true
  781. NoDispell: true
  782. NoBanishingBuster: true
  783. NoClearance: true
  784. RemoveOnChangeMap: true
  785. MinDuration: 5000
  786. - Status: Keeping
  787. DurationLookup: NPC_KEEPING
  788. CalcFlags:
  789. Def: true
  790. - Status: Barrier
  791. Icon: EFST_BARRIER
  792. DurationLookup: NPC_BARRIER
  793. CalcFlags:
  794. Mdef: true
  795. Def: true
  796. Flags:
  797. RemoveOnHermode: true
  798. - Status: Stripweapon
  799. Icon: EFST_NOEQUIPWEAPON
  800. DurationLookup: RG_STRIPWEAPON
  801. CalcFlags:
  802. Watk: true
  803. Flags:
  804. Debuff: true
  805. BossResist: true
  806. NoDispell: true
  807. NoBanishingBuster: true
  808. NoClearance: true
  809. NoSave: true
  810. RemoveOnHermode: true
  811. - Status: Stripshield
  812. Icon: EFST_NOEQUIPSHIELD
  813. DurationLookup: RG_STRIPSHIELD
  814. CalcFlags:
  815. Def: true
  816. Flags:
  817. Debuff: true
  818. BossResist: true
  819. NoDispell: true
  820. NoBanishingBuster: true
  821. NoClearance: true
  822. NoSave: true
  823. RemoveOnHermode: true
  824. - Status: Striparmor
  825. Icon: EFST_NOEQUIPARMOR
  826. DurationLookup: RG_STRIPARMOR
  827. CalcFlags:
  828. Vit: true
  829. Flags:
  830. Debuff: true
  831. BossResist: true
  832. NoDispell: true
  833. NoBanishingBuster: true
  834. NoClearance: true
  835. NoSave: true
  836. RemoveOnHermode: true
  837. - Status: Striphelm
  838. Icon: EFST_NOEQUIPHELM
  839. DurationLookup: RG_STRIPHELM
  840. CalcFlags:
  841. Int: true
  842. Flags:
  843. Debuff: true
  844. BossResist: true
  845. NoDispell: true
  846. NoBanishingBuster: true
  847. NoClearance: true
  848. NoSave: true
  849. RemoveOnHermode: true
  850. - Status: Cp_Weapon
  851. Icon: EFST_PROTECTWEAPON
  852. DurationLookup: AM_CP_WEAPON
  853. Flags:
  854. NoClearbuff: true
  855. NoDispell: true
  856. NoBanishingBuster: true
  857. NoClearance: true
  858. RemoveChemicalProtect: true
  859. RemoveOnHermode: true
  860. - Status: Cp_Shield
  861. Icon: EFST_PROTECTSHIELD
  862. DurationLookup: AM_CP_SHIELD
  863. Flags:
  864. NoClearbuff: true
  865. NoDispell: true
  866. NoBanishingBuster: true
  867. NoClearance: true
  868. RemoveChemicalProtect: true
  869. RemoveOnHermode: true
  870. - Status: Cp_Armor
  871. Icon: EFST_PROTECTARMOR
  872. DurationLookup: AM_CP_ARMOR
  873. Flags:
  874. NoClearbuff: true
  875. NoDispell: true
  876. NoBanishingBuster: true
  877. NoClearance: true
  878. RemoveChemicalProtect: true
  879. RemoveOnHermode: true
  880. - Status: Cp_Helm
  881. Icon: EFST_PROTECTHELM
  882. DurationLookup: AM_CP_HELM
  883. Flags:
  884. NoClearbuff: true
  885. NoDispell: true
  886. NoBanishingBuster: true
  887. NoClearance: true
  888. RemoveChemicalProtect: true
  889. RemoveOnHermode: true
  890. - Status: Autoguard
  891. Icon: EFST_AUTOGUARD
  892. DurationLookup: CR_AUTOGUARD
  893. Flags:
  894. NoClearance: true
  895. RequireShield: true
  896. RemoveOnHermode: true
  897. - Status: Reflectshield
  898. Icon: EFST_REFLECTSHIELD
  899. DurationLookup: CR_REFLECTSHIELD
  900. Flags:
  901. NoClearance: true
  902. RequireShield: true
  903. RemoveOnHermode: true
  904. EndOnStart:
  905. Reflectdamage: true
  906. - Status: Splasher
  907. Icon: EFST_SPLASHER
  908. DurationLookup: AS_SPLASHER
  909. - Status: Providence
  910. Icon: EFST_PROVIDENCE
  911. DurationLookup: CR_PROVIDENCE
  912. CalcFlags:
  913. All: true
  914. Flags:
  915. NoSave: true
  916. RemoveOnHermode: true
  917. - Status: Defender
  918. Icon: EFST_DEFENDER
  919. DurationLookup: CR_DEFENDER
  920. CalcFlags:
  921. Speed: true
  922. Aspd: true
  923. Flags:
  924. RequireShield: true
  925. RemoveOnHermode: true
  926. - Status: Magicrod
  927. Icon: EFST_MAGICROD
  928. DurationLookup: SA_MAGICROD
  929. Flags:
  930. NoSave: true
  931. RemoveOnHermode: true
  932. - Status: Spellbreaker
  933. Flags:
  934. NoWarning: true
  935. - Status: Autospell
  936. Icon: EFST_AUTOSPELL
  937. DurationLookup: SA_AUTOSPELL
  938. Flags:
  939. NoDispell: true
  940. NoBanishingBuster: true
  941. NoRemoveOnDead: true
  942. NoClearance: true
  943. - Status: Sighttrasher
  944. Flags:
  945. NoWarning: true
  946. - Status: Autoberserk
  947. Icon: EFST_AUTOBERSERK
  948. DurationLookup: SM_AUTOBERSERK
  949. Flags:
  950. NoDispell: true
  951. NoBanishingBuster: true
  952. NoClearance: true
  953. - Status: Spearquicken
  954. Icon: EFST_SPEARQUICKEN
  955. DurationLookup: CR_SPEARQUICKEN
  956. CalcFlags:
  957. Aspd: true
  958. Cri: true
  959. Flee: true
  960. Opt3:
  961. Quicken: true
  962. Flags:
  963. FailedMado: true
  964. RequireWeapon: true
  965. RemoveOnHermode: true
  966. Fail:
  967. Quagmire: true
  968. - Status: Autocounter
  969. Icon: EFST_AUTOCOUNTER
  970. DurationLookup: KN_AUTOCOUNTER
  971. States:
  972. NoAttack: true
  973. NoMove: true
  974. NoDropItem: true
  975. NoInteract: true
  976. - Status: Sight
  977. DurationLookup: MG_SIGHT
  978. Options:
  979. Sight: true
  980. Flags:
  981. SendOption: true
  982. NoDispell: true
  983. NoBanishingBuster: true
  984. NoSave: true
  985. - Status: Safetywall
  986. DurationLookup: MG_SAFETYWALL
  987. Flags:
  988. NoClearbuff: true
  989. NoDispell: true
  990. NoBanishingBuster: true
  991. NoClearance: true
  992. - Status: Ruwach
  993. DurationLookup: AL_RUWACH
  994. Options:
  995. Ruwach: true
  996. Flags:
  997. SendOption: true
  998. - Status: Extremityfist
  999. DurationLookup: MO_EXTREMITYFIST
  1000. CalcFlags:
  1001. Regen: true
  1002. Flags:
  1003. Debuff: true
  1004. NoDispell: true
  1005. NoBanishingBuster: true
  1006. NoClearance: true
  1007. NoSave: true
  1008. - Status: Explosionspirits
  1009. Icon: EFST_EXPLOSIONSPIRITS
  1010. DurationLookup: MO_EXPLOSIONSPIRITS
  1011. CalcFlags:
  1012. Cri: true
  1013. Regen: true
  1014. Opt3:
  1015. ExplosionSpirits: true
  1016. Flags:
  1017. Debuff: true
  1018. NoClearance: true
  1019. NoSave: true
  1020. RemoveOnHermode: true
  1021. - Status: Combo
  1022. Flags:
  1023. NoClearbuff: true
  1024. NoDispell: true
  1025. NoBanishingBuster: true
  1026. NoClearance: true
  1027. OverlapIgnoreLevel: true
  1028. - Status: Bladestop_Wait
  1029. DurationLookup: MO_BLADESTOP
  1030. States:
  1031. NoMove: true
  1032. Flags:
  1033. RemoveOnChangeMap: true
  1034. - Status: Bladestop
  1035. Icon: EFST_BLADESTOP
  1036. DurationLookup: MO_BLADESTOP
  1037. States:
  1038. NoMove: true
  1039. NoPickItem: true
  1040. NoDropItem: true
  1041. NoAttack: true
  1042. NoInteract: true
  1043. Opt3:
  1044. BladeStop: true
  1045. Flags:
  1046. MobLoseTarget: true
  1047. NoClearbuff: true
  1048. NoSave: true
  1049. NoClearance: true
  1050. RemoveOnChangeMap: true
  1051. RemoveOnHermode: true
  1052. - Status: Fireweapon
  1053. Icon: EFST_PROPERTYFIRE
  1054. DurationLookup: SA_FLAMELAUNCHER
  1055. CalcFlags:
  1056. All: true
  1057. Flags:
  1058. RemoveOnUnequipWeapon: true
  1059. EndOnStart:
  1060. Encpoison: true
  1061. Aspersio: true
  1062. Waterweapon: true
  1063. Windweapon: true
  1064. Earthweapon: true
  1065. Shadowweapon: true
  1066. Ghostweapon: true
  1067. - Status: Waterweapon
  1068. Icon: EFST_PROPERTYWATER
  1069. DurationLookup: SA_FROSTWEAPON
  1070. CalcFlags:
  1071. All: true
  1072. Flags:
  1073. RemoveOnUnequipWeapon: true
  1074. EndOnStart:
  1075. Encpoison: true
  1076. Aspersio: true
  1077. Fireweapon: true
  1078. Windweapon: true
  1079. Earthweapon: true
  1080. Shadowweapon: true
  1081. Ghostweapon: true
  1082. - Status: Windweapon
  1083. Icon: EFST_PROPERTYWIND
  1084. DurationLookup: SA_LIGHTNINGLOADER
  1085. CalcFlags:
  1086. All: true
  1087. Flags:
  1088. RemoveOnUnequipWeapon: true
  1089. EndOnStart:
  1090. Encpoison: true
  1091. Aspersio: true
  1092. Fireweapon: true
  1093. Waterweapon: true
  1094. Earthweapon: true
  1095. Shadowweapon: true
  1096. Ghostweapon: true
  1097. - Status: Earthweapon
  1098. Icon: EFST_PROPERTYGROUND
  1099. DurationLookup: SA_SEISMICWEAPON
  1100. CalcFlags:
  1101. All: true
  1102. Flags:
  1103. RemoveOnUnequipWeapon: true
  1104. EndOnStart:
  1105. Encpoison: true
  1106. Aspersio: true
  1107. Fireweapon: true
  1108. Waterweapon: true
  1109. Windweapon: true
  1110. Shadowweapon: true
  1111. Ghostweapon: true
  1112. - Status: Volcano
  1113. Icon: EFST_GROUNDMAGIC
  1114. DurationLookup: SA_VOLCANO
  1115. CalcFlags:
  1116. Watk: true
  1117. Matk: true
  1118. Flags:
  1119. NoSave: true
  1120. NoClearance: true
  1121. RemoveOnHermode: true
  1122. - Status: Deluge
  1123. Icon: EFST_GROUNDMAGIC
  1124. DurationLookup: SA_DELUGE
  1125. CalcFlags:
  1126. MaxHp: true
  1127. Flags:
  1128. NoSave: true
  1129. NoClearance: true
  1130. - Status: Violentgale
  1131. Icon: EFST_GROUNDMAGIC
  1132. DurationLookup: SA_VIOLENTGALE
  1133. CalcFlags:
  1134. Flee: true
  1135. Flags:
  1136. NoSave: true
  1137. NoClearance: true
  1138. - Status: Watk_Element
  1139. DurationLookup: MS_MAGNUM
  1140. - Status: Armor
  1141. DurationLookup: NPC_DEFENDER
  1142. - Status: Armor_Element_Water
  1143. Icon: EFST_RESIST_PROPERTY_WATER
  1144. CalcFlags:
  1145. All: true
  1146. Flags:
  1147. NoDispell: true
  1148. OverlapIgnoreLevel: true
  1149. - Status: Nochat
  1150. States:
  1151. NoPickItem: true
  1152. NoPickItemCond: true
  1153. NoDropItem: true
  1154. NoDropItemCond: true
  1155. NoChat: true
  1156. NoChatCond: true
  1157. NoConsumeItem: true
  1158. NoConsumeItemCond: true
  1159. Flags:
  1160. NoRemoveOnDead: true
  1161. NoClearbuff: true
  1162. NoDispell: true
  1163. NoBanishingBuster: true
  1164. NoClearance: true
  1165. NoForcedEnd: true
  1166. Fail:
  1167. Nochat: true
  1168. - Status: Protectexp
  1169. Icon: EFST_PROTECTEXP
  1170. DurationLookup: WE_BABY
  1171. States:
  1172. NoDeathPenalty: true
  1173. - Status: Aurablade
  1174. Icon: EFST_AURABLADE
  1175. DurationLookup: LK_AURABLADE
  1176. Opt3:
  1177. AuraBlade: true
  1178. Flags:
  1179. NoSave: true
  1180. RequireWeapon: true
  1181. RemoveOnHermode: true
  1182. - Status: Parrying
  1183. Icon: EFST_PARRYING
  1184. DurationLookup: LK_PARRYING
  1185. Flags:
  1186. NoSave: true
  1187. NoClearance: true
  1188. RequireWeapon: true
  1189. RemoveOnHermode: true
  1190. - Status: Concentration
  1191. Icon: EFST_LKCONCENTRATION
  1192. DurationLookup: LK_CONCENTRATION
  1193. CalcFlags:
  1194. Hit: true
  1195. Def: true
  1196. Opt3:
  1197. Quicken: true
  1198. Flags:
  1199. NoSave: true
  1200. RemoveOnHermode: true
  1201. - Status: Tensionrelax
  1202. Icon: EFST_TENSIONRELAX
  1203. DurationLookup: LK_TENSIONRELAX
  1204. CalcFlags:
  1205. Regen: true
  1206. Flags:
  1207. NoSave: true
  1208. NoClearance: true
  1209. RemoveOnHermode: true
  1210. - Status: Berserk
  1211. Icon: EFST_BERSERK
  1212. DurationLookup: LK_BERSERK
  1213. States:
  1214. NoCast: true
  1215. NoChat: true
  1216. NoEquipItem: true
  1217. NoUnEquipItem: true
  1218. NoConsumeItem: true
  1219. CalcFlags:
  1220. Def: true
  1221. Def2: true
  1222. Mdef: true
  1223. MDef2: true
  1224. Flee: true
  1225. Speed: true
  1226. Aspd: true
  1227. MaxHp: true
  1228. Regen: true
  1229. Opt3:
  1230. Berserk: true
  1231. Flags:
  1232. NoSave: true
  1233. Fail:
  1234. Saturdaynightfever: true
  1235. _Bloodylust: true
  1236. - Status: Fury
  1237. Flags:
  1238. NoWarning: true
  1239. - Status: Gospel
  1240. Icon: EFST_GOSPEL
  1241. DurationLookup: PA_GOSPEL
  1242. States:
  1243. NoMove: true
  1244. NoMoveCond: true
  1245. CalcFlags:
  1246. Speed: true
  1247. Aspd: true
  1248. Flags:
  1249. NoSave: true
  1250. RemoveOnHermode: true
  1251. - Status: Assumptio
  1252. Icon: EFST_ASSUMPTIO2
  1253. DurationLookup: HP_ASSUMPTIO
  1254. CalcFlags:
  1255. Def: true
  1256. Opt3:
  1257. Assumptio: true
  1258. EndOnStart:
  1259. Kaite: true
  1260. Flags:
  1261. RemoveOnHermode: true
  1262. - Status: Basilica
  1263. Icon: EFST_BASILICA_BUFF
  1264. DurationLookup: HP_BASILICA
  1265. CalcFlags:
  1266. All: true
  1267. States:
  1268. NoAttack: true
  1269. Flags:
  1270. NoSave: true
  1271. NoClearance: true
  1272. RemoveOnHermode: true
  1273. - Status: Guildaura
  1274. Flags:
  1275. NoDispell: true
  1276. NoBanishingBuster: true
  1277. NoClearance: true
  1278. - Status: Magicpower
  1279. Icon: EFST_MAGICPOWER
  1280. DurationLookup: HW_MAGICPOWER
  1281. CalcFlags:
  1282. Matk: true
  1283. Flags:
  1284. NoSave: true
  1285. RemoveOnHermode: true
  1286. EndOnStart:
  1287. Magicpower: true
  1288. - Status: Edp
  1289. Icon: EFST_EDP
  1290. DurationLookup: ASC_EDP
  1291. CalcFlags:
  1292. Watk: true
  1293. Flags:
  1294. NoRemoveOnDead: true
  1295. NoDispell: true
  1296. NoBanishingBuster: true
  1297. - Status: Truesight
  1298. Icon: EFST_TRUESIGHT
  1299. DurationLookup: SN_SIGHT
  1300. CalcFlags:
  1301. Str: true
  1302. Agi: true
  1303. Vit: true
  1304. Int: true
  1305. Dex: true
  1306. Luk: true
  1307. Cri: true
  1308. Hit: true
  1309. Flags:
  1310. FailedMado: true
  1311. NoSave: true
  1312. RemoveOnHermode: true
  1313. Fail:
  1314. Quagmire: true
  1315. - Status: Windwalk
  1316. Icon: EFST_WINDWALK
  1317. DurationLookup: SN_WINDWALK
  1318. CalcFlags:
  1319. Flee: true
  1320. Speed: true
  1321. Flags:
  1322. FailedMado: true
  1323. NoSave: true
  1324. RemoveOnHermode: true
  1325. Fail:
  1326. Quagmire: true
  1327. - Status: Meltdown
  1328. Icon: EFST_MELTDOWN
  1329. DurationLookup: WS_MELTDOWN
  1330. Flags:
  1331. MadoCancel: true
  1332. NoRemoveOnDead: true
  1333. NoDispell: true
  1334. NoBanishingBuster: true
  1335. NoClearance: true
  1336. NoSave: true
  1337. - Status: Cartboost
  1338. Icon: EFST_CARTBOOST
  1339. DurationLookup: WS_CARTBOOST
  1340. CalcFlags:
  1341. Speed: true
  1342. Flags:
  1343. MadoCancel: true
  1344. NoRemoveOnDead: true
  1345. NoClearance: true
  1346. NoSave: true
  1347. NoBanishingBuster: true
  1348. NoDispell: true
  1349. Fail:
  1350. Quagmire: true
  1351. EndReturn:
  1352. Decreaseagi: true
  1353. - Status: Chasewalk
  1354. Icon: EFST_CHASEWALK
  1355. DurationLookup: ST_CHASEWALK
  1356. States:
  1357. NoPickItem: true
  1358. CalcFlags:
  1359. Speed: true
  1360. Options:
  1361. ChaseWalk: true
  1362. Cloak: true
  1363. Flags:
  1364. OnTouch: true
  1365. StopAttacking: true
  1366. RemoveOnDamaged: true
  1367. RemoveOnChangeMap: true
  1368. NoBanishingBuster: true
  1369. NoDispell: true
  1370. NoClearance: true
  1371. - Status: Rejectsword
  1372. Icon: EFST_SWORDREJECT
  1373. DurationLookup: ST_REJECTSWORD
  1374. - Status: Marionette
  1375. Icon: EFST_MARIONETTE_MASTER
  1376. DurationLookup: CG_MARIONETTE
  1377. CalcFlags:
  1378. Str: true
  1379. Agi: true
  1380. Vit: true
  1381. Int: true
  1382. Dex: true
  1383. Luk: true
  1384. Opt3:
  1385. Marionette: true
  1386. Flags:
  1387. RemoveOnChangeMap: true
  1388. Fail:
  1389. Marionette: true
  1390. - Status: Marionette2
  1391. Icon: EFST_MARIONETTE
  1392. DurationLookup: CG_MARIONETTE
  1393. CalcFlags:
  1394. Str: true
  1395. Agi: true
  1396. Vit: true
  1397. Int: true
  1398. Dex: true
  1399. Luk: true
  1400. Opt3:
  1401. Marionette: true
  1402. Flags:
  1403. RemoveOnChangeMap: true
  1404. Fail:
  1405. Marionette2: true
  1406. - Status: Changeundead
  1407. Icon: EFST_PROPERTYUNDEAD
  1408. DurationLookup: NPC_CHANGEUNDEAD
  1409. CalcFlags:
  1410. Def_Ele: true
  1411. Opt3:
  1412. Undead: true
  1413. Flags:
  1414. Debuff: true
  1415. NoClearance: true
  1416. NoSave: true
  1417. RemoveOnHermode: true
  1418. EndOnStart:
  1419. Blessing: true
  1420. Increaseagi: true
  1421. - Status: Jointbeat
  1422. Icon: EFST_JOINTBEAT
  1423. DurationLookup: LK_JOINTBEAT
  1424. CalcFlags:
  1425. Batk: true
  1426. Def2: true
  1427. Speed: true
  1428. Aspd: true
  1429. Flags:
  1430. NoSave: true
  1431. NoClearance: true
  1432. Debuff: true
  1433. RemoveOnHermode: true
  1434. - Status: Mindbreaker
  1435. Icon: EFST_MINDBREAKER
  1436. DurationLookup: PF_MINDBREAKER
  1437. CalcFlags:
  1438. Matk: true
  1439. MDef2: true
  1440. Flags:
  1441. NoSave: true
  1442. Debuff: true
  1443. RemoveOnHermode: true
  1444. EndOnStart:
  1445. Freeze: true
  1446. Stone: true
  1447. Sleep: true
  1448. - Status: Memorize
  1449. Icon: EFST_MEMORIZE
  1450. DurationLookup: PF_MEMORIZE
  1451. Flags:
  1452. NoSave: true
  1453. RemoveOnHermode: true
  1454. - Status: Fogwall
  1455. Icon: EFST_FOGWALL
  1456. DurationLookup: PF_FOGWALL
  1457. Flags:
  1458. BossResist: true
  1459. NoSave: true
  1460. NoClearance: true
  1461. RemoveOnHermode: true
  1462. - Status: Spiderweb
  1463. Icon: EFST_SPIDERWEB
  1464. DurationLookup: PF_SPIDERWEB
  1465. States:
  1466. NoMove: true
  1467. CalcFlags:
  1468. Flee: true
  1469. Flags:
  1470. StopWalking: true
  1471. NoDispell: true
  1472. NoBanishingBuster: true
  1473. NoClearance: true
  1474. NoRemoveOnDead: true
  1475. NoSave: true
  1476. Debuff: true
  1477. - Status: Devotion
  1478. Icon: EFST_DEVOTION
  1479. DurationLookup: CR_DEVOTION
  1480. Flags:
  1481. NoSave: true
  1482. RemoveOnChangeMap: true
  1483. OverlapIgnoreLevel: true
  1484. RemoveOnHermode: true
  1485. EndOnEnd:
  1486. Autoguard: true
  1487. Defender: true
  1488. ReflectShield: true
  1489. Endure: true
  1490. - Status: Sacrifice
  1491. DurationLookup: PA_SACRIFICE
  1492. Flags:
  1493. RemoveOnHermode: true
  1494. - Status: Steelbody
  1495. Icon: EFST_STEELBODY
  1496. DurationLookup: MO_STEELBODY
  1497. States:
  1498. NoCast: true
  1499. CalcFlags:
  1500. Def: true
  1501. Mdef: true
  1502. Aspd: true
  1503. Speed: true
  1504. Flags:
  1505. NoSave: true
  1506. RemoveOnHermode: true
  1507. Opt3:
  1508. SteelBody: true
  1509. - Status: Orcish
  1510. DurationLookup: SA_REVERSEORCISH
  1511. Flags:
  1512. Debuff: true
  1513. SendOption: true
  1514. Options:
  1515. Orcish: true
  1516. - Status: Readystorm
  1517. Icon: EFST_STORMKICK_ON
  1518. DurationLookup: TK_READYSTORM
  1519. Flags:
  1520. NoRemoveOnDead: true
  1521. NoSave: true
  1522. NoDispell: true
  1523. NoBanishingBuster: true
  1524. NoClearance: true
  1525. - Status: Readydown
  1526. Icon: EFST_DOWNKICK_ON
  1527. DurationLookup: TK_READYDOWN
  1528. Flags:
  1529. NoRemoveOnDead: true
  1530. NoSave: true
  1531. NoDispell: true
  1532. NoBanishingBuster: true
  1533. NoClearance: true
  1534. - Status: Readyturn
  1535. Icon: EFST_TURNKICK_ON
  1536. DurationLookup: TK_READYTURN
  1537. Flags:
  1538. NoRemoveOnDead: true
  1539. NoSave: true
  1540. NoDispell: true
  1541. NoBanishingBuster: true
  1542. NoClearance: true
  1543. - Status: Readycounter
  1544. Icon: EFST_COUNTER_ON
  1545. DurationLookup: TK_READYCOUNTER
  1546. Flags:
  1547. NoRemoveOnDead: true
  1548. NoSave: true
  1549. NoDispell: true
  1550. NoBanishingBuster: true
  1551. NoClearance: true
  1552. - Status: Dodge
  1553. Icon: EFST_DODGE_ON
  1554. DurationLookup: TK_DODGE
  1555. Flags:
  1556. NoRemoveOnDead: true
  1557. NoDispell: true
  1558. NoBanishingBuster: true
  1559. NoClearance: true
  1560. NoSave: true
  1561. - Status: Run
  1562. Icon: EFST_RUN
  1563. DurationLookup: TK_RUN
  1564. CalcFlags:
  1565. Speed: true
  1566. Dspd: true
  1567. Flags:
  1568. NoSave: true
  1569. NoClearance: true
  1570. RemoveOnChangeMap: true
  1571. RemoveOnHermode: true
  1572. - Status: Shadowweapon
  1573. Icon: EFST_PROPERTYDARK
  1574. DurationLookup: TK_SEVENWIND
  1575. CalcFlags:
  1576. Atk_Ele: true
  1577. Flags:
  1578. NoSave: true
  1579. NoClearance: true
  1580. RemoveOnHermode: true
  1581. EndOnStart:
  1582. Encpoison: true
  1583. Aspersio: true
  1584. Fireweapon: true
  1585. Waterweapon: true
  1586. Windweapon: true
  1587. Earthweapon: true
  1588. Ghostweapon: true
  1589. - Status: Adrenaline2
  1590. Icon: EFST_ADRENALINE2
  1591. DurationLookup: BS_ADRENALINE2
  1592. CalcFlags:
  1593. Aspd: true
  1594. Flags:
  1595. MadoCancel: true
  1596. NoSave: true
  1597. RequireWeapon: true
  1598. RemoveOnHermode: true
  1599. Fail:
  1600. Quagmire: true
  1601. Decreaseagi: true
  1602. - Status: Ghostweapon
  1603. Icon: EFST_PROPERTYTELEKINESIS
  1604. DurationLookup: TK_SEVENWIND
  1605. CalcFlags:
  1606. Atk_Ele: true
  1607. Flags:
  1608. NoSave: true
  1609. NoClearance: true
  1610. RemoveOnHermode: true
  1611. EndOnStart:
  1612. Encpoison: true
  1613. Aspersio: true
  1614. Fireweapon: true
  1615. Waterweapon: true
  1616. Windweapon: true
  1617. Earthweapon: true
  1618. Shadowweapon: true
  1619. - Status: Kaizel
  1620. Icon: EFST_KAIZEL
  1621. DurationLookup: SL_KAIZEL
  1622. - Status: Kaahi
  1623. Icon: EFST_KAAHI
  1624. DurationLookup: SL_KAAHI
  1625. Flags:
  1626. NoSave: true
  1627. NoClearance: true
  1628. RemoveOnHermode: true
  1629. EndOnStart:
  1630. Kaahi: true
  1631. - Status: Kaupe
  1632. Icon: EFST_KAUPE
  1633. DurationLookup: SL_KAUPE
  1634. Flags:
  1635. NoSave: true
  1636. NoClearance: true
  1637. RemoveOnHermode: true
  1638. - Status: Onehand
  1639. Icon: EFST_ONEHANDQUICKEN
  1640. DurationLookup: KN_ONEHAND
  1641. CalcFlags:
  1642. Aspd: true
  1643. Opt3:
  1644. Quicken: true
  1645. Flags:
  1646. NoSave: true
  1647. NoClearance: true
  1648. RequireWeapon: true
  1649. RemoveOnHermode: true
  1650. Fail:
  1651. Decreaseagi: true
  1652. EndOnStart:
  1653. Aspdpotion0: true
  1654. Aspdpotion1: true
  1655. Aspdpotion2: true
  1656. Aspdpotion3: true
  1657. - Status: Preserve
  1658. Icon: EFST_PRESERVE
  1659. DurationLookup: ST_PRESERVE
  1660. Flags:
  1661. NoSave: true
  1662. RemoveOnHermode: true
  1663. - Status: Battleorders
  1664. Icon: EFST_GDSKILL_BATTLEORDER
  1665. DurationLookup: GD_BATTLEORDER
  1666. CalcFlags:
  1667. Str: true
  1668. Int: true
  1669. Dex: true
  1670. - Status: Regeneration
  1671. Icon: EFST_GDSKILL_REGENERATION
  1672. DurationLookup: GD_REGENERATION
  1673. CalcFlags:
  1674. Regen: true
  1675. Flags:
  1676. NoBanishingBuster: true
  1677. NoDispell: true
  1678. NoClearance: true
  1679. NoSaveInfinite: true
  1680. - Status: Doublecast
  1681. Icon: EFST_DOUBLECASTING
  1682. DurationLookup: PF_DOUBLECASTING
  1683. Flags:
  1684. NoSave: true
  1685. NoClearance: true
  1686. RemoveOnHermode: true
  1687. - Status: Maxoverthrust
  1688. Icon: EFST_OVERTHRUSTMAX
  1689. DurationLookup: WS_OVERTHRUSTMAX
  1690. Opt3:
  1691. OverThrust: true
  1692. Flags:
  1693. MadoCancel: true
  1694. NoSave: true
  1695. RemoveOnUnequipWeapon: true
  1696. RemoveOnHermode: true
  1697. EndOnStart:
  1698. Overthrust: true
  1699. - Status: Hermode
  1700. Icon: EFST_HERMODE
  1701. DurationLookup: CG_HERMODE
  1702. - Status: Shrink
  1703. Icon: EFST_CR_SHRINK
  1704. DurationLookup: CR_SHRINK
  1705. Flags:
  1706. NoRemoveOnDead: true
  1707. NoDispell: true
  1708. NoBanishingBuster: true
  1709. NoSave: true
  1710. - Status: Sightblaster
  1711. Icon: EFST_WZ_SIGHTBLASTER
  1712. DurationLookup: WZ_SIGHTBLASTER
  1713. Options:
  1714. Sight: true
  1715. Flags:
  1716. NoSave: true
  1717. NoDispell: true
  1718. NoBanishingBuster: true
  1719. - Status: Winkcharm
  1720. Icon: EFST_DC_WINKCHARM
  1721. DurationLookup: DC_WINKCHARM
  1722. Flags:
  1723. RemoveOnDamaged: true
  1724. Debuff: true
  1725. - Status: Closeconfine
  1726. Icon: EFST_RG_CCONFINE_M
  1727. DurationLookup: RG_CLOSECONFINE
  1728. States:
  1729. NoMove: true
  1730. CalcFlags:
  1731. Flee: true
  1732. Flags:
  1733. StopWalking: true
  1734. NoDispell: true
  1735. NoBanishingBuster: true
  1736. NoClearance: true
  1737. NoSave: true
  1738. NoRemoveOnDead: true
  1739. RemoveOnChangeMap: true
  1740. - Status: Closeconfine2
  1741. Icon: EFST_RG_CCONFINE_S
  1742. DurationLookup: RG_CLOSECONFINE
  1743. States:
  1744. NoMove: true
  1745. Flags:
  1746. StopWalking: true
  1747. NoDispell: true
  1748. NoBanishingBuster: true
  1749. NoClearance: true
  1750. NoSave: true
  1751. NoRemoveOnDead: true
  1752. RemoveOnChangeMap: true
  1753. Fail:
  1754. Closeconfine2: true
  1755. - Status: Dancing
  1756. Icon: EFST_BDPLAYING
  1757. DurationLookup: BD_ENCORE
  1758. States:
  1759. NoMove: true
  1760. NoMoveCond: true
  1761. CalcFlags:
  1762. Speed: true
  1763. Regen: true
  1764. Flags:
  1765. NoClearbuff: true
  1766. NoDispell: true
  1767. NoBanishingBuster: true
  1768. NoClearance: true
  1769. RemoveOnChangeMap: true
  1770. RequireWeapon: true
  1771. OverlapIgnoreLevel: true
  1772. EndOnEnd:
  1773. EnsembleFatigue: true
  1774. - Status: Elementalchange
  1775. Icon: EFST_ARMOR_PROPERTY
  1776. DurationLookup: NPC_ATTRICHANGE
  1777. CalcFlags:
  1778. Def_Ele: true
  1779. Flags:
  1780. NoRemoveOnDead: true
  1781. NoDispell: true
  1782. NoBanishingBuster: true
  1783. NoClearance: true
  1784. - Status: Richmankim
  1785. Icon: EFST_RICHMANKIM
  1786. DurationLookup: BD_RICHMANKIM
  1787. Flags:
  1788. BossResist: true
  1789. NoDispell: true
  1790. NoBanishingBuster: true
  1791. NoClearance: true
  1792. EndOnStart:
  1793. Richmankim: true
  1794. Eternalchaos: true
  1795. Drumbattle: true
  1796. Nibelungen: true
  1797. Rokisweil: true
  1798. Intoabyss: true
  1799. Siegfried: true
  1800. - Status: Eternalchaos
  1801. Icon: EFST_ETERNALCHAOS
  1802. DurationLookup: BD_ETERNALCHAOS
  1803. CalcFlags:
  1804. Def2: true
  1805. Flags:
  1806. NoDispell: true
  1807. NoBanishingBuster: true
  1808. NoClearance: true
  1809. EndOnStart:
  1810. Richmankim: true
  1811. Eternalchaos: true
  1812. Drumbattle: true
  1813. Nibelungen: true
  1814. Rokisweil: true
  1815. Intoabyss: true
  1816. Siegfried: true
  1817. - Status: Drumbattle
  1818. Icon: EFST_DRUMBATTLEFIELD
  1819. DurationLookup: BD_DRUMBATTLEFIELD
  1820. CalcFlags:
  1821. Def: true
  1822. Flags:
  1823. NoDispell: true
  1824. NoBanishingBuster: true
  1825. NoClearance: true
  1826. EndOnStart:
  1827. Richmankim: true
  1828. Eternalchaos: true
  1829. Drumbattle: true
  1830. Nibelungen: true
  1831. Rokisweil: true
  1832. Intoabyss: true
  1833. Siegfried: true
  1834. - Status: Nibelungen
  1835. Icon: EFST_RINGNIBELUNGEN
  1836. DurationLookup: BD_RINGNIBELUNGEN
  1837. CalcFlags:
  1838. All: true
  1839. Flags:
  1840. NoDispell: true
  1841. NoBanishingBuster: true
  1842. NoClearance: true
  1843. EndOnStart:
  1844. Richmankim: true
  1845. Eternalchaos: true
  1846. Drumbattle: true
  1847. Nibelungen: true
  1848. Rokisweil: true
  1849. Intoabyss: true
  1850. Siegfried: true
  1851. - Status: Rokisweil
  1852. Icon: EFST_ROKISWEIL
  1853. DurationLookup: BD_ROKISWEIL
  1854. States:
  1855. NoCast: true
  1856. Flags:
  1857. BossResist: true
  1858. NoDispell: true
  1859. NoBanishingBuster: true
  1860. NoClearance: true
  1861. EndOnStart:
  1862. Richmankim: true
  1863. Eternalchaos: true
  1864. Drumbattle: true
  1865. Nibelungen: true
  1866. Rokisweil: true
  1867. Intoabyss: true
  1868. Siegfried: true
  1869. - Status: Intoabyss
  1870. Icon: EFST_INTOABYSS
  1871. DurationLookup: BD_INTOABYSS
  1872. Flags:
  1873. NoDispell: true
  1874. NoBanishingBuster: true
  1875. NoClearance: true
  1876. EndOnStart:
  1877. Richmankim: true
  1878. Eternalchaos: true
  1879. Drumbattle: true
  1880. Nibelungen: true
  1881. Rokisweil: true
  1882. Intoabyss: true
  1883. Siegfried: true
  1884. - Status: Siegfried
  1885. Icon: EFST_SIEGFRIED
  1886. DurationLookup: BD_SIEGFRIED
  1887. CalcFlags:
  1888. All: true
  1889. Flags:
  1890. NoDispell: true
  1891. NoBanishingBuster: true
  1892. NoClearance: true
  1893. EndOnStart:
  1894. Richmankim: true
  1895. Eternalchaos: true
  1896. Drumbattle: true
  1897. Nibelungen: true
  1898. Rokisweil: true
  1899. Intoabyss: true
  1900. Siegfried: true
  1901. - Status: Whistle
  1902. Icon: EFST_WHISTLE
  1903. DurationLookup: BA_WHISTLE
  1904. CalcFlags:
  1905. Flee: true
  1906. Flee2: true
  1907. Flags:
  1908. NoRemoveOnDead: true
  1909. NoDispell: true
  1910. NoBanishingBuster: true
  1911. NoClearance: true
  1912. EndOnStart:
  1913. Whistle: true
  1914. Assncros: true
  1915. Poembragi: true
  1916. Appleidun: true
  1917. - Status: Assncros
  1918. Icon: EFST_ASSASSINCROSS
  1919. DurationLookup: BA_ASSASSINCROSS
  1920. CalcFlags:
  1921. Aspd: true
  1922. Flags:
  1923. NoRemoveOnDead: true
  1924. FailedMado: true
  1925. NoDispell: true
  1926. NoBanishingBuster: true
  1927. NoClearance: true
  1928. Fail:
  1929. Quagmire: true
  1930. EndOnStart:
  1931. Whistle: true
  1932. Assncros: true
  1933. Poembragi: true
  1934. Appleidun: true
  1935. - Status: Poembragi
  1936. Icon: EFST_POEMBRAGI
  1937. DurationLookup: BA_POEMBRAGI
  1938. Flags:
  1939. NoRemoveOnDead: true
  1940. NoDispell: true
  1941. NoBanishingBuster: true
  1942. NoClearance: true
  1943. EndOnStart:
  1944. Whistle: true
  1945. Assncros: true
  1946. Poembragi: true
  1947. Appleidun: true
  1948. - Status: Appleidun
  1949. Icon: EFST_APPLEIDUN
  1950. DurationLookup: BA_APPLEIDUN
  1951. CalcFlags:
  1952. MaxHp: true
  1953. Flags:
  1954. NoRemoveOnDead: true
  1955. NoDispell: true
  1956. NoBanishingBuster: true
  1957. NoClearance: true
  1958. EndOnStart:
  1959. Whistle: true
  1960. Assncros: true
  1961. Poembragi: true
  1962. Appleidun: true
  1963. - Status: Modechange
  1964. DurationLookup: NPC_EMOTION
  1965. CalcFlags:
  1966. Mode: true
  1967. - Status: Humming
  1968. Icon: EFST_HUMMING
  1969. DurationLookup: DC_HUMMING
  1970. CalcFlags:
  1971. Hit: true
  1972. Flags:
  1973. NoRemoveOnDead: true
  1974. NoDispell: true
  1975. NoBanishingBuster: true
  1976. NoClearance: true
  1977. EndOnStart:
  1978. Dontforgetme: true
  1979. Humming: true
  1980. Fortune: true
  1981. Service4u: true
  1982. - Status: Dontforgetme
  1983. Icon: EFST_DONTFORGETME
  1984. DurationLookup: DC_DONTFORGETME
  1985. CalcFlags:
  1986. Speed: true
  1987. Aspd: true
  1988. Flags:
  1989. NoRemoveOnDead: true
  1990. NoDispell: true
  1991. NoBanishingBuster: true
  1992. NoClearance: true
  1993. Fail:
  1994. Speedup1: true
  1995. EndOnStart:
  1996. Increaseagi: true
  1997. Adrenaline: true
  1998. Adrenaline2: true
  1999. Spearquicken: true
  2000. Twohandquicken: true
  2001. Onehand: true
  2002. Merc_Quicken: true
  2003. Acceleration: true
  2004. Dontforgetme: true
  2005. Humming: true
  2006. Fortune: true
  2007. Service4u: true
  2008. - Status: Fortune
  2009. Icon: EFST_FORTUNEKISS
  2010. DurationLookup: DC_FORTUNEKISS
  2011. CalcFlags:
  2012. All: true
  2013. Flags:
  2014. NoRemoveOnDead: true
  2015. NoDispell: true
  2016. NoBanishingBuster: true
  2017. NoClearance: true
  2018. EndOnStart:
  2019. Dontforgetme: true
  2020. Humming: true
  2021. Fortune: true
  2022. Service4u: true
  2023. - Status: Service4u
  2024. Icon: EFST_SERVICEFORYOU
  2025. DurationLookup: DC_SERVICEFORYOU
  2026. CalcFlags:
  2027. All: true
  2028. Flags:
  2029. NoRemoveOnDead: true
  2030. NoDispell: true
  2031. NoBanishingBuster: true
  2032. NoClearance: true
  2033. EndOnStart:
  2034. Dontforgetme: true
  2035. Humming: true
  2036. Fortune: true
  2037. Service4u: true
  2038. - Status: Stop
  2039. Icon: EFST_STOP
  2040. DurationLookup: NPC_STOP
  2041. States:
  2042. NoMove: true
  2043. Flags:
  2044. StopWalking: true
  2045. NoSave: true
  2046. NoClearance: true
  2047. RemoveOnChangeMap: true
  2048. Debuff: true
  2049. RemoveOnHermode: true
  2050. - Status: Spurt
  2051. Icon: EFST_STRUP
  2052. DurationLookup: TK_RUN
  2053. CalcFlags:
  2054. Str: true
  2055. Flags:
  2056. NoSave: true
  2057. NoClearance: true
  2058. RemoveOnHermode: true
  2059. RequireNoWeapon: true
  2060. - Status: Spirit
  2061. Icon: EFST_SOULLINK
  2062. DurationLookup: SL_HIGH
  2063. CalcFlags:
  2064. All: true
  2065. Opt3:
  2066. SoulLink: true
  2067. Flags:
  2068. NoClearance: true
  2069. NoSave: true
  2070. NoBanishingBuster: true
  2071. RemoveOnHermode: true
  2072. Fail:
  2073. Soulgolem: true
  2074. Soulshadow: true
  2075. Soulfalcon: true
  2076. Soulfairy: true
  2077. - Status: Coma
  2078. DurationLookup: NPC_DARKBLESSING
  2079. Flags:
  2080. BossResist: true
  2081. MvpResist: true
  2082. - Status: Intravision
  2083. Icon: EFST_CLAIRVOYANCE
  2084. Flags:
  2085. NoDispell: true
  2086. NoBanishingBuster: true
  2087. NoClearance: true
  2088. - Status: Incallstatus
  2089. CalcFlags:
  2090. Str: true
  2091. Agi: true
  2092. Vit: true
  2093. Int: true
  2094. Dex: true
  2095. Luk: true
  2096. Flags:
  2097. NoRemoveOnDead: true
  2098. NoClearbuff: true
  2099. NoDispell: true
  2100. NoBanishingBuster: true
  2101. - Status: Incstr
  2102. CalcFlags:
  2103. Str: true
  2104. Flags:
  2105. NoRemoveOnDead: true
  2106. NoClearbuff: true
  2107. NoDispell: true
  2108. NoBanishingBuster: true
  2109. - Status: Incagi
  2110. CalcFlags:
  2111. Agi: true
  2112. Flags:
  2113. NoRemoveOnDead: true
  2114. NoClearbuff: true
  2115. NoDispell: true
  2116. NoBanishingBuster: true
  2117. NoClearance: true
  2118. - Status: Incvit
  2119. CalcFlags:
  2120. Vit: true
  2121. Flags:
  2122. NoRemoveOnDead: true
  2123. NoClearbuff: true
  2124. NoDispell: true
  2125. NoBanishingBuster: true
  2126. NoClearance: true
  2127. - Status: Incint
  2128. CalcFlags:
  2129. Int: true
  2130. Flags:
  2131. NoRemoveOnDead: true
  2132. NoClearbuff: true
  2133. NoDispell: true
  2134. NoBanishingBuster: true
  2135. NoClearance: true
  2136. - Status: Incdex
  2137. CalcFlags:
  2138. Dex: true
  2139. Flags:
  2140. NoRemoveOnDead: true
  2141. NoClearbuff: true
  2142. NoDispell: true
  2143. NoBanishingBuster: true
  2144. NoClearance: true
  2145. - Status: Incluk
  2146. CalcFlags:
  2147. Luk: true
  2148. Flags:
  2149. NoRemoveOnDead: true
  2150. NoClearbuff: true
  2151. NoDispell: true
  2152. NoBanishingBuster: true
  2153. NoClearance: true
  2154. - Status: Inchit
  2155. CalcFlags:
  2156. Hit: true
  2157. Flags:
  2158. NoRemoveOnDead: true
  2159. NoClearbuff: true
  2160. NoDispell: true
  2161. NoBanishingBuster: true
  2162. NoClearance: true
  2163. - Status: Inchitrate
  2164. DurationLookup: NPC_POWERUP
  2165. CalcFlags:
  2166. Hit: true
  2167. Flags:
  2168. NoRemoveOnDead: true
  2169. NoClearbuff: true
  2170. NoDispell: true
  2171. NoBanishingBuster: true
  2172. NoClearance: true
  2173. - Status: Incflee
  2174. CalcFlags:
  2175. Flee: true
  2176. Flags:
  2177. NoRemoveOnDead: true
  2178. NoClearbuff: true
  2179. NoDispell: true
  2180. NoBanishingBuster: true
  2181. NoClearance: true
  2182. - Status: Incfleerate
  2183. DurationLookup: NPC_AGIUP
  2184. CalcFlags:
  2185. Flee: true
  2186. Flags:
  2187. NoRemoveOnDead: true
  2188. NoClearbuff: true
  2189. NoBanishingBuster: true
  2190. NoClearance: true
  2191. - Status: Incmhprate
  2192. CalcFlags:
  2193. MaxHp: true
  2194. Flags:
  2195. NoRemoveOnDead: true
  2196. NoClearbuff: true
  2197. NoDispell: true
  2198. NoBanishingBuster: true
  2199. NoClearance: true
  2200. - Status: Incmsprate
  2201. CalcFlags:
  2202. MaxSp: true
  2203. Flags:
  2204. NoRemoveOnDead: true
  2205. NoClearbuff: true
  2206. NoDispell: true
  2207. NoBanishingBuster: true
  2208. NoClearance: true
  2209. - Status: Incatkrate
  2210. CalcFlags:
  2211. Batk: true
  2212. Watk: true
  2213. Opt3:
  2214. ExplosionSpirits: true
  2215. Flags:
  2216. SendOption: true
  2217. NoRemoveOnDead: true
  2218. NoClearbuff: true
  2219. NoDispell: true
  2220. NoBanishingBuster: true
  2221. NoClearance: true
  2222. - Status: Incmatkrate
  2223. CalcFlags:
  2224. Matk: true
  2225. Flags:
  2226. NoRemoveOnDead: true
  2227. NoClearbuff: true
  2228. NoDispell: true
  2229. NoBanishingBuster: true
  2230. NoClearance: true
  2231. - Status: Incdefrate
  2232. CalcFlags:
  2233. Def: true
  2234. Flags:
  2235. NoRemoveOnDead: true
  2236. NoClearbuff: true
  2237. NoDispell: true
  2238. NoBanishingBuster: true
  2239. NoClearance: true
  2240. - Status: Strfood
  2241. Icon: EFST_FOOD_STR
  2242. CalcFlags:
  2243. Str: true
  2244. Flags:
  2245. NoClearbuff: true
  2246. NoDispell: true
  2247. NoBanishingBuster: true
  2248. NoClearance: true
  2249. EndOnStart:
  2250. Food_Str_Cash: true
  2251. - Status: Agifood
  2252. Icon: EFST_FOOD_AGI
  2253. CalcFlags:
  2254. Agi: true
  2255. Flags:
  2256. NoClearbuff: true
  2257. NoDispell: true
  2258. NoBanishingBuster: true
  2259. NoClearance: true
  2260. EndOnStart:
  2261. Food_Agi_Cash: true
  2262. - Status: Vitfood
  2263. Icon: EFST_FOOD_VIT
  2264. CalcFlags:
  2265. Vit: true
  2266. Flags:
  2267. NoClearbuff: true
  2268. NoDispell: true
  2269. NoBanishingBuster: true
  2270. NoClearance: true
  2271. EndOnStart:
  2272. Food_Vit_Cash: true
  2273. - Status: Intfood
  2274. Icon: EFST_FOOD_INT
  2275. CalcFlags:
  2276. Int: true
  2277. Flags:
  2278. NoClearbuff: true
  2279. NoDispell: true
  2280. NoBanishingBuster: true
  2281. NoClearance: true
  2282. EndOnStart:
  2283. Food_Int_Cash: true
  2284. - Status: Dexfood
  2285. Icon: EFST_FOOD_DEX
  2286. CalcFlags:
  2287. Dex: true
  2288. Flags:
  2289. NoClearbuff: true
  2290. NoDispell: true
  2291. NoBanishingBuster: true
  2292. NoClearance: true
  2293. EndOnStart:
  2294. Food_Dex_Cash: true
  2295. - Status: Lukfood
  2296. Icon: EFST_FOOD_LUK
  2297. CalcFlags:
  2298. Luk: true
  2299. Flags:
  2300. NoClearbuff: true
  2301. NoDispell: true
  2302. NoBanishingBuster: true
  2303. NoClearance: true
  2304. EndOnStart:
  2305. Food_Luk_Cash: true
  2306. - Status: Hitfood
  2307. Icon: EFST_FOOD_BASICHIT
  2308. CalcFlags:
  2309. Hit: true
  2310. Flags:
  2311. NoClearbuff: true
  2312. NoDispell: true
  2313. NoBanishingBuster: true
  2314. NoClearance: true
  2315. - Status: Fleefood
  2316. Icon: EFST_FOOD_BASICAVOIDANCE
  2317. CalcFlags:
  2318. Flee: true
  2319. Flags:
  2320. NoClearbuff: true
  2321. NoDispell: true
  2322. NoBanishingBuster: true
  2323. NoClearance: true
  2324. - Status: Batkfood
  2325. CalcFlags:
  2326. Batk: true
  2327. Flags:
  2328. NoClearbuff: true
  2329. NoDispell: true
  2330. NoBanishingBuster: true
  2331. NoClearance: true
  2332. - Status: Watkfood
  2333. CalcFlags:
  2334. Watk: true
  2335. Flags:
  2336. NoClearbuff: true
  2337. NoDispell: true
  2338. NoBanishingBuster: true
  2339. NoClearance: true
  2340. - Status: Matkfood
  2341. CalcFlags:
  2342. Matk: true
  2343. Flags:
  2344. NoClearbuff: true
  2345. NoDispell: true
  2346. NoBanishingBuster: true
  2347. NoClearance: true
  2348. - Status: Scresist
  2349. DurationLookup: PA_GOSPEL
  2350. - Status: Xmas
  2351. States:
  2352. NoAttack: true
  2353. Options:
  2354. Xmas: true
  2355. Flags:
  2356. SendLook: true
  2357. StopAttacking: true
  2358. NoRemoveOnDead: true
  2359. NoBanishingBuster: true
  2360. NoDispell: true
  2361. NoClearance: true
  2362. - Status: Warm
  2363. Icon: EFST_SG_SUN_WARM
  2364. DurationLookup: SG_SUN_WARM
  2365. Opt3:
  2366. Warm: true
  2367. Flags:
  2368. NoDispell: true
  2369. NoBanishingBuster: true
  2370. NoClearance: true
  2371. RemoveOnChangeMap: true
  2372. RemoveOnMapWarp: true
  2373. - Status: Sun_Comfort
  2374. Icon: EFST_SUN_COMFORT
  2375. DurationLookup: SG_SUN_COMFORT
  2376. CalcFlags:
  2377. Def2: true
  2378. Flags:
  2379. RemoveOnMapWarp: true
  2380. - Status: Moon_Comfort
  2381. Icon: EFST_MOON_COMFORT
  2382. DurationLookup: SG_MOON_COMFORT
  2383. CalcFlags:
  2384. Flee: true
  2385. Flags:
  2386. RemoveOnMapWarp: true
  2387. - Status: Star_Comfort
  2388. Icon: EFST_STAR_COMFORT
  2389. DurationLookup: SG_STAR_COMFORT
  2390. CalcFlags:
  2391. Aspd: true
  2392. Flags:
  2393. RemoveOnMapWarp: true
  2394. - Status: Fusion
  2395. DurationLookup: SG_FUSION
  2396. CalcFlags:
  2397. Speed: true
  2398. Options:
  2399. Flying: true
  2400. Flags:
  2401. SendOption: true
  2402. NoRemoveOnDead: true
  2403. EndOnStart:
  2404. Spirit: true
  2405. - Status: Skillrate_Up
  2406. DurationLookup: SG_FRIEND
  2407. - Status: Ske
  2408. DurationLookup: SL_SKE
  2409. CalcFlags:
  2410. Batk: true
  2411. Watk: true
  2412. Def: true
  2413. Def2: true
  2414. Opt3:
  2415. EnergyCoat: true
  2416. - Status: Kaite
  2417. Icon: EFST_KAITE
  2418. DurationLookup: SL_KAITE
  2419. Opt3:
  2420. Kaite: true
  2421. Flags:
  2422. NoSave: true
  2423. NoClearance: true
  2424. RemoveOnHermode: true
  2425. EndOnStart:
  2426. Assumptio: true
  2427. - Status: Swoo
  2428. Icon: EFST_SWOO
  2429. DurationLookup: SL_SWOO
  2430. CalcFlags:
  2431. Speed: true
  2432. Opt3:
  2433. OverThrust: true
  2434. Flags:
  2435. NonPlayer: true
  2436. - Status: Ska
  2437. DurationLookup: SL_SKA
  2438. CalcFlags:
  2439. Def2: true
  2440. MDef2: true
  2441. Speed: true
  2442. Aspd: true
  2443. Opt3:
  2444. SteelBody: true
  2445. Flags:
  2446. NonPlayer: true
  2447. - Status: Earthscroll
  2448. Icon: EFST_EARTHSCROLL
  2449. DurationLookup: TK_SPTIME
  2450. CalcFlags:
  2451. Def: true
  2452. Mdef: true
  2453. Aspd: true
  2454. Flags:
  2455. NoRemoveOnDead: true
  2456. - Status: Miracle
  2457. Icon: EFST_SOULLINK
  2458. Flags:
  2459. NoDispell: true
  2460. NoBanishingBuster: true
  2461. RemoveOnMapWarp: true
  2462. NoRemoveOnDead: true
  2463. NoClearance: true
  2464. - Status: Madnesscancel
  2465. Icon: EFST_GS_MADNESSCANCEL
  2466. DurationLookup: GS_MADNESSCANCEL
  2467. States:
  2468. NoMove: true
  2469. CalcFlags:
  2470. Aspd: true
  2471. Flags:
  2472. NoDispell: true
  2473. NoBanishingBuster: true
  2474. Fail:
  2475. P_Alter: true
  2476. Heat_Barrel: true
  2477. EndOnStart:
  2478. Adjustment: true
  2479. - Status: Adjustment
  2480. Icon: EFST_GS_ADJUSTMENT
  2481. DurationLookup: GS_ADJUSTMENT
  2482. CalcFlags:
  2483. Hit: true
  2484. Flee: true
  2485. Flags:
  2486. NoDispell: true
  2487. NoBanishingBuster: true
  2488. EndOnStart:
  2489. MadnessCancel: true
  2490. - Status: Increasing
  2491. Icon: EFST_GS_ACCURACY
  2492. DurationLookup: GS_INCREASING
  2493. CalcFlags:
  2494. Agi: true
  2495. Dex: true
  2496. Hit: true
  2497. Flags:
  2498. NoDispell: true
  2499. NoBanishingBuster: true
  2500. NoClearance: true
  2501. - Status: Gatlingfever
  2502. Icon: EFST_GS_GATLINGFEVER
  2503. DurationLookup: GS_GATLINGFEVER
  2504. CalcFlags:
  2505. Flee: true
  2506. Speed: true
  2507. Aspd: true
  2508. Flags:
  2509. NoDispell: true
  2510. NoBanishingBuster: true
  2511. RequireWeapon: true
  2512. - Status: Tatamigaeshi
  2513. DurationLookup: NJ_TATAMIGAESHI
  2514. - Status: Utsusemi
  2515. Icon: EFST_NJ_UTSUSEMI
  2516. DurationLookup: NJ_UTSUSEMI
  2517. Flags:
  2518. NoSave: true
  2519. NoClearance: true
  2520. NoBanishingBuster: true
  2521. NoDispell: true
  2522. RemoveOnHermode: true
  2523. - Status: Bunsinjyutsu
  2524. Icon: EFST_NJ_BUNSINJYUTSU
  2525. DurationLookup: NJ_BUNSINJYUTSU
  2526. CalcFlags:
  2527. Dye: true
  2528. Opt3:
  2529. Bunsin: true
  2530. Flags:
  2531. NoSave: true
  2532. NoClearance: true
  2533. RemoveOnHermode: true
  2534. - Status: Kaensin
  2535. Flags:
  2536. NoWarning: true
  2537. - Status: Suiton
  2538. Icon: EFST_NJ_SUITON
  2539. DurationLookup: NJ_SUITON
  2540. CalcFlags:
  2541. Agi: true
  2542. Speed: true
  2543. Flags:
  2544. BossResist: true
  2545. NoDispell: true
  2546. NoBanishingBuster: true
  2547. NoClearance: true
  2548. NoSave: true
  2549. NoRemoveOnDead: true
  2550. Debuff: true
  2551. - Status: Nen
  2552. Icon: EFST_NJ_NEN
  2553. DurationLookup: NJ_NEN
  2554. CalcFlags:
  2555. Str: true
  2556. Int: true
  2557. Flags:
  2558. NoDispell: true
  2559. NoBanishingBuster: true
  2560. NoClearance: true
  2561. - Status: Knowledge
  2562. DurationLookup: SG_KNOWLEDGE
  2563. CalcFlags:
  2564. All: true
  2565. Flags:
  2566. RestartOnMapWarp: true
  2567. - Status: Sma
  2568. Icon: EFST_SMA_READY
  2569. DurationLookup: SL_SMA
  2570. Flags:
  2571. NoClearbuff: true
  2572. NoDispell: true
  2573. NoBanishingBuster: true
  2574. NoClearance: true
  2575. - Status: Fling
  2576. DurationLookup: GS_FLING
  2577. CalcFlags:
  2578. Def: true
  2579. Def2: true
  2580. - Status: Avoid
  2581. DurationLookup: HLIF_AVOID
  2582. CalcFlags:
  2583. Speed: true
  2584. - Status: Change
  2585. DurationLookup: HLIF_CHANGE
  2586. CalcFlags:
  2587. Vit: true
  2588. Int: true
  2589. Flags:
  2590. RemoveOnChangeMap: true
  2591. Fail:
  2592. Change: true
  2593. - Status: Bloodlust
  2594. DurationLookup: HAMI_BLOODLUST
  2595. CalcFlags:
  2596. Batk: true
  2597. Watk: true
  2598. - Status: Fleet
  2599. DurationLookup: HFLI_FLEET
  2600. CalcFlags:
  2601. Aspd: true
  2602. Batk: true
  2603. Watk: true
  2604. - Status: Speed
  2605. DurationLookup: HFLI_SPEED
  2606. CalcFlags:
  2607. Flee: true
  2608. - Status: Defence
  2609. DurationLookup: HAMI_DEFENCE
  2610. CalcFlags:
  2611. Vit: true
  2612. - Status: Incaspdrate
  2613. CalcFlags:
  2614. Aspd: true
  2615. Flags:
  2616. NoClearbuff: true
  2617. NoDispell: true
  2618. NoBanishingBuster: true
  2619. NoClearance: true
  2620. - Status: Incflee2
  2621. Icon: EFST_PLUSAVOIDVALUE
  2622. CalcFlags:
  2623. Flee2: true
  2624. Flags:
  2625. NoClearbuff: true
  2626. NoDispell: true
  2627. NoBanishingBuster: true
  2628. NoClearance: true
  2629. NoRemoveOnDead: true
  2630. - Status: Jailed
  2631. States:
  2632. NoWarp: true
  2633. Flags:
  2634. NoRemoveOnDead: true
  2635. NoClearbuff: true
  2636. NoDispell: true
  2637. NoBanishingBuster: true
  2638. NoClearance: true
  2639. - Status: Enchantarms
  2640. Icon: EFST_WEAPONPROPERTY
  2641. DurationLookup: ITEM_ENCHANTARMS
  2642. CalcFlags:
  2643. Atk_Ele: true
  2644. Flags:
  2645. SendVal1: true
  2646. OverlapIgnoreLevel: true
  2647. RemoveOnUnequipWeapon: true
  2648. RemoveOnHermode: true
  2649. EndOnStart:
  2650. Enchantarms: true
  2651. Aspersio: true
  2652. - Status: Magicalattack
  2653. DurationLookup: NPC_MAGICALATTACK
  2654. CalcFlags:
  2655. Matk: true
  2656. - Status: Armorchange
  2657. DurationLookup: NPC_STONESKIN
  2658. CalcFlags:
  2659. Def: true
  2660. Mdef: true
  2661. - Status: Criticalwound
  2662. Icon: EFST_CRITICALWOUND
  2663. DurationLookup: NPC_CRITICALWOUND
  2664. Flags:
  2665. Debuff: true
  2666. NoDispell: true
  2667. NoBanishingBuster: true
  2668. NoClearance: true
  2669. - Status: Magicmirror
  2670. DurationLookup: NPC_MAGICMIRROR
  2671. - Status: Slowcast
  2672. Icon: EFST_SLOWCAST
  2673. DurationLookup: NPC_SLOWCAST
  2674. Flags:
  2675. Debuff: true
  2676. NoRemoveOnDead: true
  2677. NoClearbuff: true
  2678. NoDispell: true
  2679. NoBanishingBuster: true
  2680. NoClearance: true
  2681. - Status: Summer
  2682. States:
  2683. NoAttack: true
  2684. Options:
  2685. Summer: true
  2686. Flags:
  2687. SendLook: true
  2688. StopAttacking: true
  2689. NoRemoveOnDead: true
  2690. NoClearbuff: true
  2691. NoDispell: true
  2692. NoBanishingBuster: true
  2693. NoClearance: true
  2694. - Status: Expboost
  2695. Icon: EFST_CASH_PLUSEXP
  2696. Flags:
  2697. NoRemoveOnDead: true
  2698. NoClearbuff: true
  2699. NoDispell: true
  2700. NoBanishingBuster: true
  2701. NoClearance: true
  2702. SendVal1: true
  2703. - Status: Itemboost
  2704. Icon: EFST_CASH_RECEIVEITEM
  2705. Flags:
  2706. NoRemoveOnDead: true
  2707. NoClearbuff: true
  2708. NoDispell: true
  2709. NoBanishingBuster: true
  2710. NoClearance: true
  2711. SendVal1: true
  2712. - Status: Bossmapinfo
  2713. Icon: EFST_CASH_BOSS_ALARM
  2714. Flags:
  2715. NoSave: true
  2716. NoDispell: true
  2717. NoBanishingBuster: true
  2718. NoClearance: true
  2719. RemoveOnMapWarp: true
  2720. Fail:
  2721. Bossmapinfo: true
  2722. - Status: Lifeinsurance
  2723. Icon: EFST_CASH_DEATHPENALTY
  2724. States:
  2725. NoDeathPenalty: true
  2726. Flags:
  2727. NoDispell: true
  2728. NoBanishingBuster: true
  2729. NoClearance: true
  2730. NoRemoveOnDead: true
  2731. - Status: Inccri
  2732. Icon: EFST_CRITICALPERCENT
  2733. CalcFlags:
  2734. Cri: true
  2735. Flags:
  2736. NoRemoveOnDead: true
  2737. NoClearbuff: true
  2738. NoDispell: true
  2739. NoBanishingBuster: true
  2740. NoClearance: true
  2741. #- Status: Incdef
  2742. #- Status: Incbaseatk
  2743. #- Status: Fastcast
  2744. - Status: Mdef_Rate
  2745. Icon: EFST_PROTECT_MDEF
  2746. CalcFlags:
  2747. Mdef: true
  2748. Flags:
  2749. NoClearbuff: true
  2750. NoDispell: true
  2751. NoBanishingBuster: true
  2752. NoClearance: true
  2753. NoRemoveOnDead: true
  2754. #- Status: Hpregen
  2755. - Status: Inchealrate
  2756. Icon: EFST_HEALPLUS
  2757. Flags:
  2758. NoClearbuff: true
  2759. NoDispell: true
  2760. NoBanishingBuster: true
  2761. NoClearance: true
  2762. - Status: Pneuma
  2763. DurationLookup: AL_PNEUMA
  2764. Flags:
  2765. NoClearbuff: true
  2766. NoDispell: true
  2767. NoBanishingBuster: true
  2768. NoClearance: true
  2769. - Status: Autotrade
  2770. Flags:
  2771. NoRemoveOnDead: true
  2772. NoSave: true
  2773. NoDispell: true
  2774. NoBanishingBuster: true
  2775. NoClearance: true
  2776. - Status: Ksprotected
  2777. Flags:
  2778. NoWarning: true
  2779. - Status: Armor_Resist
  2780. CalcFlags:
  2781. All: true
  2782. Flags:
  2783. OverlapIgnoreLevel: true
  2784. RemoveOnUnequipArmor: true
  2785. - Status: Spcost_Rate
  2786. Icon: EFST_ATKER_BLOOD
  2787. CalcFlags:
  2788. All: true
  2789. Flags:
  2790. NoDispell: true
  2791. NoBanishingBuster: true
  2792. NoClearance: true
  2793. - Status: Commonsc_Resist
  2794. Icon: EFST_TARGET_BLOOD
  2795. Flags:
  2796. NoDispell: true
  2797. NoBanishingBuster: true
  2798. NoClearance: true
  2799. - Status: Sevenwind
  2800. DurationLookup: TK_SEVENWIND
  2801. Flags:
  2802. NoDispell: true
  2803. NoBanishingBuster: true
  2804. NoClearance: true
  2805. NoRemoveOnDead: true
  2806. - Status: Def_Rate
  2807. Icon: EFST_PROTECT_DEF
  2808. Flags:
  2809. NoClearbuff: true
  2810. NoDispell: true
  2811. NoBanishingBuster: true
  2812. NoClearance: true
  2813. NoRemoveOnDead: true
  2814. #- Status: Spregen
  2815. - Status: Walkspeed
  2816. CalcFlags:
  2817. Speed: true
  2818. - Status: Merc_Fleeup
  2819. Icon: EFST_MER_FLEE
  2820. CalcFlags:
  2821. Flee: true
  2822. Flags:
  2823. NoDispell: true
  2824. NoBanishingBuster: true
  2825. NoClearance: true
  2826. - Status: Merc_Atkup
  2827. Icon: EFST_MER_ATK
  2828. CalcFlags:
  2829. Watk: true
  2830. Flags:
  2831. NoDispell: true
  2832. NoBanishingBuster: true
  2833. NoClearance: true
  2834. - Status: Merc_Hpup
  2835. Icon: EFST_MER_HP
  2836. CalcFlags:
  2837. MaxHp: true
  2838. Flags:
  2839. NoDispell: true
  2840. NoBanishingBuster: true
  2841. NoClearance: true
  2842. - Status: Merc_Spup
  2843. Icon: EFST_MER_SP
  2844. CalcFlags:
  2845. MaxSp: true
  2846. Flags:
  2847. NoDispell: true
  2848. NoBanishingBuster: true
  2849. NoClearance: true
  2850. - Status: Merc_Hitup
  2851. Icon: EFST_MER_HIT
  2852. CalcFlags:
  2853. Hit: true
  2854. Flags:
  2855. NoDispell: true
  2856. NoBanishingBuster: true
  2857. NoClearance: true
  2858. - Status: Merc_Quicken
  2859. DurationLookup: MER_QUICKEN
  2860. CalcFlags:
  2861. Aspd: true
  2862. Opt3:
  2863. Quicken: true
  2864. Flags:
  2865. NoDispell: true
  2866. NoBanishingBuster: true
  2867. NoClearance: true
  2868. Fail:
  2869. Decreaseagi: true
  2870. - Status: Rebirth
  2871. DurationLookup: NPC_REBIRTH
  2872. #- Status: Skillcastrate
  2873. #- Status: Defratioatk
  2874. #- Status: Hpdrain
  2875. #- Status: Skillatkbonus
  2876. - Status: Itemscript
  2877. CalcFlags:
  2878. All: true
  2879. Flags:
  2880. NoDispell: true
  2881. NoBanishingBuster: true
  2882. NoClearance: true
  2883. - Status: S_Lifepotion
  2884. Icon: EFST_S_LIFEPOTION
  2885. Flags:
  2886. NoDispell: true
  2887. NoBanishingBuster: true
  2888. NoClearance: true
  2889. - Status: L_Lifepotion
  2890. Icon: EFST_L_LIFEPOTION
  2891. Flags:
  2892. NoDispell: true
  2893. NoBanishingBuster: true
  2894. NoClearance: true
  2895. - Status: Jexpboost
  2896. Icon: EFST_CASH_PLUSONLYJOBEXP
  2897. Flags:
  2898. NoRemoveOnDead: true
  2899. NoClearbuff: true
  2900. NoDispell: true
  2901. NoBanishingBuster: true
  2902. NoClearance: true
  2903. SendVal1: true
  2904. #- Status: Ignoredef
  2905. - Status: Hellpower
  2906. Icon: EFST_HELLPOWER
  2907. DurationLookup: NPC_HELLPOWER
  2908. Flags:
  2909. NoRemoveOnDead: true
  2910. NoDispell: true
  2911. NoBanishingBuster: true
  2912. NoClearance: true
  2913. - Status: Invincible
  2914. Icon: EFST_INVINCIBLE
  2915. DurationLookup: NPC_INVINCIBLE
  2916. CalcFlags:
  2917. Speed: true
  2918. Flags:
  2919. NoDispell: true
  2920. NoBanishingBuster: true
  2921. NoClearance: true
  2922. EndOnStart:
  2923. Invincibleoff: true
  2924. - Status: Invincibleoff
  2925. DurationLookup: NPC_INVINCIBLEOFF
  2926. CalcFlags:
  2927. Speed: true
  2928. Flags:
  2929. NoDispell: true
  2930. NoBanishingBuster: true
  2931. NoClearance: true
  2932. EndOnStart:
  2933. Invincible: true
  2934. - Status: Manu_Atk
  2935. Icon: EFST_MANU_ATK
  2936. Flags:
  2937. NoClearbuff: true
  2938. NoDispell: true
  2939. NoBanishingBuster: true
  2940. NoClearance: true
  2941. - Status: Manu_Def
  2942. Icon: EFST_MANU_DEF
  2943. Flags:
  2944. NoClearbuff: true
  2945. NoDispell: true
  2946. NoBanishingBuster: true
  2947. NoClearance: true
  2948. - Status: Spl_Atk
  2949. Icon: EFST_SPL_ATK
  2950. Flags:
  2951. NoClearbuff: true
  2952. NoDispell: true
  2953. NoBanishingBuster: true
  2954. NoClearance: true
  2955. - Status: Spl_Def
  2956. Icon: EFST_SPL_DEF
  2957. Flags:
  2958. NoClearbuff: true
  2959. NoDispell: true
  2960. NoBanishingBuster: true
  2961. NoClearance: true
  2962. - Status: Manu_Matk
  2963. Icon: EFST_MANU_MATK
  2964. Flags:
  2965. NoClearbuff: true
  2966. NoDispell: true
  2967. NoBanishingBuster: true
  2968. NoClearance: true
  2969. - Status: Spl_Matk
  2970. Icon: EFST_SPL_MATK
  2971. Flags:
  2972. NoClearbuff: true
  2973. NoDispell: true
  2974. NoBanishingBuster: true
  2975. NoClearance: true
  2976. - Status: Food_Str_Cash
  2977. Icon: EFST_FOOD_STR_CASH
  2978. CalcFlags:
  2979. Str: true
  2980. Flags:
  2981. NoRemoveOnDead: true
  2982. NoClearbuff: true
  2983. NoDispell: true
  2984. NoBanishingBuster: true
  2985. NoClearance: true
  2986. EndOnStart:
  2987. Strfood: true
  2988. - Status: Food_Agi_Cash
  2989. Icon: EFST_FOOD_AGI_CASH
  2990. CalcFlags:
  2991. Agi: true
  2992. Flags:
  2993. NoRemoveOnDead: true
  2994. NoClearbuff: true
  2995. NoDispell: true
  2996. NoBanishingBuster: true
  2997. NoClearance: true
  2998. EndOnStart:
  2999. Agifood: true
  3000. - Status: Food_Vit_Cash
  3001. Icon: EFST_FOOD_VIT_CASH
  3002. CalcFlags:
  3003. Vit: true
  3004. Flags:
  3005. NoRemoveOnDead: true
  3006. NoClearbuff: true
  3007. NoDispell: true
  3008. NoBanishingBuster: true
  3009. NoClearance: true
  3010. EndOnStart:
  3011. Vitfood: true
  3012. - Status: Food_Dex_Cash
  3013. Icon: EFST_FOOD_DEX_CASH
  3014. CalcFlags:
  3015. Dex: true
  3016. Flags:
  3017. NoRemoveOnDead: true
  3018. NoClearbuff: true
  3019. NoDispell: true
  3020. NoBanishingBuster: true
  3021. NoClearance: true
  3022. EndOnStart:
  3023. Intfood: true
  3024. - Status: Food_Int_Cash
  3025. Icon: EFST_FOOD_INT_CASH
  3026. CalcFlags:
  3027. Int: true
  3028. Flags:
  3029. NoRemoveOnDead: true
  3030. NoClearbuff: true
  3031. NoDispell: true
  3032. NoBanishingBuster: true
  3033. NoClearance: true
  3034. EndOnStart:
  3035. Dexfood: true
  3036. - Status: Food_Luk_Cash
  3037. Icon: EFST_FOOD_LUK_CASH
  3038. CalcFlags:
  3039. Luk: true
  3040. Flags:
  3041. NoRemoveOnDead: true
  3042. NoClearbuff: true
  3043. NoDispell: true
  3044. NoBanishingBuster: true
  3045. NoClearance: true
  3046. EndOnStart:
  3047. Lukfood: true
  3048. - Status: Fear
  3049. DurationLookup: RK_WINDCUTTER
  3050. States:
  3051. NoMove: true
  3052. NoMoveCond: true
  3053. CalcFlags:
  3054. Flee: true
  3055. Hit: true
  3056. Flags:
  3057. BossResist: true
  3058. StopWalking: true
  3059. Debuff: true
  3060. Fail:
  3061. Inspiration: true
  3062. EndOnStart:
  3063. Blind: true
  3064. - Status: Burning
  3065. Icon: EFST_BURNT
  3066. DurationLookup: RK_DRAGONBREATH
  3067. CalcFlags:
  3068. Mdef: true
  3069. Opt1: Burning
  3070. Flags:
  3071. SendOption: true
  3072. RemoveOnRefresh: true
  3073. RemoveOnLuxAnima: true
  3074. BossResist: true
  3075. Debuff: true
  3076. SpreadEffect: true
  3077. MinDuration: 10000
  3078. Fail:
  3079. Refresh: true
  3080. Inspiration: true
  3081. Whiteimprison: true
  3082. - Status: Freezing
  3083. Icon: EFST_FROSTMISTY
  3084. DurationLookup: WL_FROSTMISTY
  3085. CalcFlags:
  3086. Aspd: true
  3087. Speed: true
  3088. Def: true
  3089. Flags:
  3090. BlEffect: true
  3091. DisplayPc: true
  3092. RemoveOnRefresh: true
  3093. RemoveOnLuxAnima: true
  3094. BossResist: true
  3095. NoDispell: true
  3096. NoBanishingBuster: true
  3097. Debuff: true
  3098. SpreadEffect: true
  3099. MinDuration: 10000
  3100. Fail:
  3101. Refresh: true
  3102. Inspiration: true
  3103. Warmer: true
  3104. Freezing: true
  3105. - Status: Enchantblade
  3106. Icon: EFST_ENCHANTBLADE
  3107. DurationLookup: RK_ENCHANTBLADE
  3108. - Status: Deathbound
  3109. Icon: EFST_DEATHBOUND
  3110. DurationLookup: RK_DEATHBOUND
  3111. States:
  3112. NoCast: true
  3113. Flags:
  3114. NoSave: true
  3115. NoDispell: true
  3116. NoBanishingBuster: true
  3117. NoClearance: true
  3118. - Status: Millenniumshield
  3119. Icon: EFST_REUSE_MILLENNIUMSHIELD
  3120. DurationLookup: RK_MILLENNIUMSHIELD
  3121. Flags:
  3122. NoClearbuff: true
  3123. NoDispell: true
  3124. NoBanishingBuster: true
  3125. NoClearance: true
  3126. - Status: Crushstrike
  3127. Icon: EFST_CRUSHSTRIKE
  3128. DurationLookup: RK_CRUSHSTRIKE
  3129. Flags:
  3130. NoClearbuff: true
  3131. NoDispell: true
  3132. - Status: Refresh
  3133. Icon: EFST_REFRESH
  3134. DurationLookup: RK_REFRESH
  3135. Flags:
  3136. NoClearbuff: true
  3137. NoDispell: true
  3138. NoBanishingBuster: true
  3139. NoSave: true
  3140. - Status: Reuse_Refresh
  3141. Icon: EFST_REUSE_REFRESH
  3142. Flags:
  3143. NoRemoveOnDead: true
  3144. NoClearbuff: true
  3145. NoDispell: true
  3146. NoBanishingBuster: true
  3147. NoClearance: true
  3148. NoForcedEnd: true
  3149. Fail:
  3150. Reuse_Refresh: true
  3151. - Status: Giantgrowth
  3152. Icon: EFST_GIANTGROWTH
  3153. DurationLookup: RK_GIANTGROWTH
  3154. CalcFlags:
  3155. Str: true
  3156. Flags:
  3157. NoClearbuff: true
  3158. NoDispell: true
  3159. NoBanishingBuster: true
  3160. - Status: Stonehardskin
  3161. Icon: EFST_STONEHARDSKIN
  3162. DurationLookup: RK_STONEHARDSKIN
  3163. CalcFlags:
  3164. Def: true
  3165. Mdef: true
  3166. Flags:
  3167. NoClearbuff: true
  3168. NoDispell: true
  3169. NoBanishingBuster: true
  3170. NoRemoveOnDead: true
  3171. NoSave: true
  3172. - Status: Vitalityactivation
  3173. Icon: EFST_VITALITYACTIVATION
  3174. DurationLookup: RK_VITALITYACTIVATION
  3175. CalcFlags:
  3176. Regen: true
  3177. Flags:
  3178. NoClearbuff: true
  3179. NoDispell: true
  3180. NoBanishingBuster: true
  3181. - Status: Stormblast
  3182. DurationLookup: RK_VITALITYACTIVATION
  3183. Flags:
  3184. NoDispell: true
  3185. NoBanishingBuster: true
  3186. NoRemoveOnDead: true
  3187. - Status: Fightingspirit
  3188. Icon: EFST_FIGHTINGSPIRIT
  3189. DurationLookup: RK_FIGHTINGSPIRIT
  3190. CalcFlags:
  3191. Watk: true
  3192. Aspd: true
  3193. Flags:
  3194. NoClearbuff: true
  3195. NoDispell: true
  3196. NoBanishingBuster: true
  3197. NoClearance: true
  3198. SendVal2: true
  3199. EndOnStart:
  3200. Fightingspirit: true
  3201. - Status: Abundance
  3202. Icon: EFST_ABUNDANCE
  3203. DurationLookup: RK_ABUNDANCE
  3204. Flags:
  3205. NoClearbuff: true
  3206. NoDispell: true
  3207. NoBanishingBuster: true
  3208. NoClearance: true
  3209. Fail:
  3210. Abundance: true
  3211. - Status: Adoramus
  3212. Icon: EFST_ADORAMUS
  3213. DurationLookup: AB_ADORAMUS
  3214. CalcFlags:
  3215. Agi: true
  3216. Speed: true
  3217. Flags:
  3218. BossResist: true
  3219. Debuff: true
  3220. EndOnStart:
  3221. Decreaseagi: true
  3222. - Status: Epiclesis
  3223. Icon: EFST_EPICLESIS
  3224. DurationLookup: AB_EPICLESIS
  3225. CalcFlags:
  3226. MaxHp: true
  3227. Flags:
  3228. NoRemoveOnDead: true
  3229. NoDispell: true
  3230. NoBanishingBuster: true
  3231. NoClearance: true
  3232. - Status: Oratio
  3233. Icon: EFST_ORATIO
  3234. DurationLookup: AB_ORATIO
  3235. Flags:
  3236. BlEffect: true
  3237. DisplayPc: true
  3238. NoDispell: true
  3239. NoBanishingBuster: true
  3240. - Status: Laudaagnus
  3241. Icon: EFST_LAUDAAGNUS
  3242. DurationLookup: AB_LAUDAAGNUS
  3243. CalcFlags:
  3244. MaxHp: true
  3245. Flags:
  3246. NoDispell: true
  3247. NoBanishingBuster: true
  3248. - Status: Laudaramus
  3249. Icon: EFST_LAUDARAMUS
  3250. DurationLookup: AB_LAUDARAMUS
  3251. CalcFlags:
  3252. All: true
  3253. Flags:
  3254. NoDispell: true
  3255. NoBanishingBuster: true
  3256. - Status: Renovatio
  3257. Icon: EFST_RENOVATIO
  3258. DurationLookup: AB_RENOVATIO
  3259. CalcFlags:
  3260. Regen: true
  3261. Flags:
  3262. NoDispell: true
  3263. NoBanishingBuster: true
  3264. - Status: Expiatio
  3265. Icon: EFST_EXPIATIO
  3266. DurationLookup: AB_EXPIATIO
  3267. Flags:
  3268. NoDispell: true
  3269. NoBanishingBuster: true
  3270. - Status: Duplelight
  3271. Icon: EFST_DUPLELIGHT
  3272. DurationLookup: AB_DUPLELIGHT
  3273. Flags:
  3274. DisplayPc: true
  3275. NoDispell: true
  3276. NoBanishingBuster: true
  3277. - Status: Secrament
  3278. Icon: EFST_AB_SECRAMENT
  3279. DurationLookup: AB_SECRAMENT
  3280. Flags:
  3281. NoDispell: true
  3282. NoBanishingBuster: true
  3283. - Status: Whiteimprison
  3284. DurationLookup: WL_WHITEIMPRISON
  3285. States:
  3286. NoMove: true
  3287. NoCast: true
  3288. Opt1: Imprison
  3289. Flags:
  3290. SendOption: true
  3291. BossResist: true
  3292. SetStand: true
  3293. StopWalking: true
  3294. StopAttacking: true
  3295. StopCasting: true
  3296. EndOnStart:
  3297. Freezing: true
  3298. - Status: Marshofabyss
  3299. Icon: EFST_MARSHOFABYSS
  3300. DurationLookup: WL_MARSHOFABYSS
  3301. CalcFlags:
  3302. Agi: true
  3303. Dex: true
  3304. Speed: true
  3305. Flags:
  3306. RemoveOnRefresh: true
  3307. RemoveOnLuxAnima: true
  3308. BossResist: true
  3309. NoDispell: true
  3310. NoBanishingBuster: true
  3311. Debuff: true
  3312. MinDuration: 5000
  3313. Fail:
  3314. Refresh: true
  3315. EndOnStart:
  3316. Increaseagi: true
  3317. Windwalk: true
  3318. Aspdpotion0: true
  3319. Aspdpotion1: true
  3320. Aspdpotion2: true
  3321. Aspdpotion3: true
  3322. - Status: Recognizedspell
  3323. Icon: EFST_RECOGNIZEDSPELL
  3324. DurationLookup: WL_RECOGNIZEDSPELL
  3325. CalcFlags:
  3326. Matk: true
  3327. Flags:
  3328. NoDispell: true
  3329. NoBanishingBuster: true
  3330. NoClearance: true
  3331. - Status: Stasis
  3332. Icon: EFST_STASIS
  3333. DurationLookup: WL_STASIS
  3334. MinDuration: 10000
  3335. - Status: Sphere_1
  3336. Icon: EFST_SUMMON1
  3337. Flags:
  3338. DisplayPc: true
  3339. NoClearance: true
  3340. SendVal1: true
  3341. - Status: Sphere_2
  3342. Icon: EFST_SUMMON2
  3343. Flags:
  3344. DisplayPc: true
  3345. NoClearance: true
  3346. SendVal1: true
  3347. - Status: Sphere_3
  3348. Icon: EFST_SUMMON3
  3349. Flags:
  3350. DisplayPc: true
  3351. NoClearance: true
  3352. SendVal1: true
  3353. - Status: Sphere_4
  3354. Icon: EFST_SUMMON4
  3355. Flags:
  3356. DisplayPc: true
  3357. NoClearance: true
  3358. SendVal1: true
  3359. - Status: Sphere_5
  3360. Icon: EFST_SUMMON5
  3361. Flags:
  3362. DisplayPc: true
  3363. NoClearance: true
  3364. SendVal1: true
  3365. - Status: Reading_Sb
  3366. Flags:
  3367. NoWarning: true
  3368. - Status: Freeze_Sp
  3369. Icon: EFST_FREEZE_SP
  3370. Flags:
  3371. NoClearance: true
  3372. - Status: Fearbreeze
  3373. Icon: EFST_FEARBREEZE
  3374. DurationLookup: RA_FEARBREEZE
  3375. Flags:
  3376. NoDispell: true
  3377. NoBanishingBuster: true
  3378. NoClearance: true
  3379. RemoveOnUnequipWeapon: true
  3380. - Status: Electricshocker
  3381. Icon: EFST_ELECTRICSHOCKER
  3382. DurationLookup: RA_ELECTRICSHOCKER
  3383. States:
  3384. NoMove: true
  3385. Flags:
  3386. StopWalking: true
  3387. NoDispell: true
  3388. NoBanishingBuster: true
  3389. NoSave: true
  3390. NoClearance: true
  3391. Fail:
  3392. Electricshocker: true
  3393. - Status: Wugdash
  3394. Icon: EFST_WUGDASH
  3395. DurationLookup: RA_WUGDASH
  3396. CalcFlags:
  3397. Speed: true
  3398. Dspd: true
  3399. Flags:
  3400. NoDispell: true
  3401. NoBanishingBuster: true
  3402. NoClearance: true
  3403. NoSave: true
  3404. RemoveOnChangeMap: true
  3405. - Status: Bite
  3406. Icon: EFST_WUGBITE
  3407. DurationLookup: RA_WUGBITE
  3408. States:
  3409. NoMove: true
  3410. Flags:
  3411. BossResist: true
  3412. StopWalking: true
  3413. NoDispell: true
  3414. NoBanishingBuster: true
  3415. NoClearance: true
  3416. NoSave: true
  3417. Debuff: true
  3418. MinRate: 5000
  3419. - Status: Camouflage
  3420. Icon: EFST_CAMOUFLAGE
  3421. DurationLookup: RA_CAMOUFLAGE
  3422. States:
  3423. NoMove: true
  3424. NoMoveCond: true
  3425. CalcFlags:
  3426. Speed: true
  3427. Flags:
  3428. DisplayPc: true
  3429. OnTouch: true
  3430. StopAttacking: true
  3431. RemoveOnDamaged: true
  3432. NoDispell: true
  3433. NoBanishingBuster: true
  3434. NoClearance: true
  3435. NoSave: true
  3436. RemoveOnChangeMap: true
  3437. - Status: Acceleration
  3438. Icon: EFST_ACCELERATION
  3439. DurationLookup: NC_ACCELERATION
  3440. CalcFlags:
  3441. Speed: true
  3442. Flags:
  3443. MadoEndCancel: true
  3444. NoDispell: true
  3445. NoBanishingBuster: true
  3446. NoClearance: true
  3447. - Status: Hovering
  3448. Icon: EFST_HOVERING
  3449. DurationLookup: NC_HOVERING
  3450. CalcFlags:
  3451. Speed: true
  3452. Flags:
  3453. MadoEndCancel: true
  3454. NoDispell: true
  3455. NoBanishingBuster: true
  3456. NoClearance: true
  3457. - Status: Shapeshift
  3458. Icon: EFST_SHAPESHIFT
  3459. DurationLookup: NC_SHAPESHIFT
  3460. CalcFlags:
  3461. Def_Ele: true
  3462. Flags:
  3463. MadoEndCancel: true
  3464. NoDispell: true
  3465. NoBanishingBuster: true
  3466. NoClearance: true
  3467. - Status: Infraredscan
  3468. Icon: EFST_INFRAREDSCAN
  3469. DurationLookup: NC_INFRAREDSCAN
  3470. CalcFlags:
  3471. Flee: true
  3472. Flags:
  3473. NoDispell: true
  3474. NoBanishingBuster: true
  3475. NoClearance: true
  3476. - Status: Analyze
  3477. Icon: EFST_ANALYZE
  3478. DurationLookup: NC_ANALYZE
  3479. CalcFlags:
  3480. Def: true
  3481. Def2: true
  3482. Mdef: true
  3483. MDef2: true
  3484. Flags:
  3485. NoDispell: true
  3486. NoBanishingBuster: true
  3487. NoClearance: true
  3488. - Status: Magneticfield
  3489. Icon: EFST_MAGNETICFIELD
  3490. DurationLookup: NC_MAGNETICFIELD
  3491. States:
  3492. NoMove: true
  3493. Flags:
  3494. MadoEndCancel: true
  3495. BossResist: true
  3496. StopWalking: true
  3497. NoDispell: true
  3498. NoBanishingBuster: true
  3499. NoClearance: true
  3500. NoSave: true
  3501. Debuff: true
  3502. Fail:
  3503. Hovering: true
  3504. - Status: Neutralbarrier
  3505. Icon: EFST_NEUTRALBARRIER
  3506. DurationLookup: NC_NEUTRALBARRIER
  3507. CalcFlags:
  3508. Def: true
  3509. Mdef: true
  3510. Flags:
  3511. NoDispell: true
  3512. NoBanishingBuster: true
  3513. NoClearance: true
  3514. NoSave: true
  3515. - Status: Neutralbarrier_Master
  3516. Icon: EFST_NEUTRALBARRIER_MASTER
  3517. Flags:
  3518. MadoEndCancel: true
  3519. NoDispell: true
  3520. NoBanishingBuster: true
  3521. NoClearance: true
  3522. NoSave: true
  3523. RemoveOnChangeMap: true
  3524. - Status: Stealthfield
  3525. Icon: EFST_STEALTHFIELD
  3526. DurationLookup: NC_STEALTHFIELD
  3527. CalcFlags:
  3528. Speed: true
  3529. Flags:
  3530. DisplayPc: true
  3531. OnTouch: true
  3532. NoDispell: true
  3533. NoBanishingBuster: true
  3534. NoClearance: true
  3535. NoSave: true
  3536. StopAttacking: true
  3537. - Status: Stealthfield_Master
  3538. Icon: EFST_STEALTHFIELD_MASTER
  3539. CalcFlags:
  3540. Speed: true
  3541. Flags:
  3542. MadoEndCancel: true
  3543. NoDispell: true
  3544. NoBanishingBuster: true
  3545. NoClearance: true
  3546. NoSave: true
  3547. RemoveOnChangeMap: true
  3548. - Status: Overheat
  3549. Icon: EFST_OVERHEAT
  3550. Flags:
  3551. MadoEndCancel: true
  3552. NoDispell: true
  3553. NoBanishingBuster: true
  3554. NoClearance: true
  3555. SendVal1: true
  3556. - Status: Overheat_Limitpoint
  3557. Icon: EFST_OVERHEAT_LIMITPOINT
  3558. Flags:
  3559. MadoEndCancel: true
  3560. NoDispell: true
  3561. NoBanishingBuster: true
  3562. NoClearance: true
  3563. - Status: Venomimpress
  3564. Icon: EFST_VENOMIMPRESS
  3565. DurationLookup: GC_VENOMIMPRESS
  3566. Flags:
  3567. BlEffect: true
  3568. DisplayPc: true
  3569. NoDispell: true
  3570. NoBanishingBuster: true
  3571. NoClearance: true
  3572. SendVal2: true
  3573. - Status: Poisoningweapon
  3574. Icon: EFST_POISONINGWEAPON
  3575. DurationLookup: GC_POISONINGWEAPON
  3576. Flags:
  3577. NoDispell: true
  3578. NoBanishingBuster: true
  3579. NoClearance: true
  3580. SendVal3: true
  3581. - Status: Weaponblocking
  3582. Icon: EFST_WEAPONBLOCKING
  3583. DurationLookup: GC_WEAPONBLOCKING
  3584. Flags:
  3585. NoDispell: true
  3586. NoBanishingBuster: true
  3587. NoClearance: true
  3588. SendVal2: true
  3589. #- Status: Weaponblocking_Postdelay
  3590. # Icon: EFST_WEAPONBLOCKING_POSTDELAY
  3591. # Flags:
  3592. # NoDispell: true
  3593. # NoBanishingBuster: true
  3594. # NoClearance: true
  3595. # NoRemoveOnDead: true
  3596. # NoSave: true
  3597. - Status: Cloakingexceed
  3598. Icon: EFST_CLOAKINGEXCEED
  3599. DurationLookup: GC_CLOAKINGEXCEED
  3600. States:
  3601. NoPickItem: true
  3602. CalcFlags:
  3603. Speed: true
  3604. Options:
  3605. Cloak: true
  3606. Flags:
  3607. OnTouch: true
  3608. StopAttacking: true
  3609. NoSave: true
  3610. NoDispell: true
  3611. NoBanishingBuster: true
  3612. NoClearance: true
  3613. RemoveOnMapWarp: true
  3614. SendVal3: true
  3615. - Status: Hallucinationwalk
  3616. Icon: EFST_HALLUCINATIONWALK
  3617. DurationLookup: GC_HALLUCINATIONWALK
  3618. CalcFlags:
  3619. Flee: true
  3620. Flags:
  3621. DisplayPc: true
  3622. NoDispell: true
  3623. NoBanishingBuster: true
  3624. NoClearance: true
  3625. SendVal3: true
  3626. - Status: Hallucinationwalk_Postdelay
  3627. Icon: EFST_HALLUCINATIONWALK_POSTDELAY
  3628. DurationLookup: GC_HALLUCINATIONWALK
  3629. CalcFlags:
  3630. Speed: true
  3631. Aspd: true
  3632. Flags:
  3633. NoRemoveOnDead: true
  3634. NoDispell: true
  3635. NoBanishingBuster: true
  3636. NoClearance: true
  3637. NoSave: true
  3638. - Status: Rollingcutter
  3639. Icon: EFST_ROLLINGCUTTER
  3640. DurationLookup: GC_ROLLINGCUTTER
  3641. Flags:
  3642. DisplayPc: true
  3643. NoSave: true
  3644. NoDispell: true
  3645. NoBanishingBuster: true
  3646. NoClearance: true
  3647. SendVal1: true
  3648. - Status: Toxin
  3649. Icon: EFST_TOXIN
  3650. Flags:
  3651. RemoveOnRefresh: true
  3652. RemoveOnLuxAnima: true
  3653. BossResist: true
  3654. NoDispell: true
  3655. NoBanishingBuster: true
  3656. Debuff: true
  3657. SpreadEffect: true
  3658. Fail:
  3659. Toxin: true
  3660. - Status: Paralyse
  3661. Icon: EFST_PARALYSE
  3662. CalcFlags:
  3663. Flee: true
  3664. Speed: true
  3665. Aspd: true
  3666. Flags:
  3667. RemoveOnRefresh: true
  3668. RemoveOnLuxAnima: true
  3669. BossResist: true
  3670. NoDispell: true
  3671. NoBanishingBuster: true
  3672. Debuff: true
  3673. SpreadEffect: true
  3674. Fail:
  3675. Refresh: true
  3676. Inspiration: true
  3677. Toxin: true
  3678. Paralyse: true
  3679. Venombleed: true
  3680. Magicmushroom: true
  3681. Deathhurt: true
  3682. Pyrexia: true
  3683. Oblivioncurse: true
  3684. LeechesEnd: true
  3685. - Status: Venombleed
  3686. Icon: EFST_VENOMBLEED
  3687. CalcFlags:
  3688. MaxHp: true
  3689. Flags:
  3690. RemoveOnRefresh: true
  3691. RemoveOnLuxAnima: true
  3692. BossResist: true
  3693. NoDispell: true
  3694. NoBanishingBuster: true
  3695. Debuff: true
  3696. SpreadEffect: true
  3697. Fail:
  3698. Refresh: true
  3699. Inspiration: true
  3700. Toxin: true
  3701. Paralyse: true
  3702. Venombleed: true
  3703. Magicmushroom: true
  3704. Deathhurt: true
  3705. Pyrexia: true
  3706. Oblivioncurse: true
  3707. LeechesEnd: true
  3708. - Status: Magicmushroom
  3709. Icon: EFST_MAGICMUSHROOM
  3710. CalcFlags:
  3711. Regen: true
  3712. Flags:
  3713. RemoveOnRefresh: true
  3714. RemoveOnLuxAnima: true
  3715. BossResist: true
  3716. NoDispell: true
  3717. NoBanishingBuster: true
  3718. Debuff: true
  3719. SpreadEffect: true
  3720. Fail:
  3721. Refresh: true
  3722. Inspiration: true
  3723. Toxin: true
  3724. Paralyse: true
  3725. Venombleed: true
  3726. Magicmushroom: true
  3727. Deathhurt: true
  3728. Pyrexia: true
  3729. Oblivioncurse: true
  3730. LeechesEnd: true
  3731. - Status: Deathhurt
  3732. Icon: EFST_DEATHHURT
  3733. CalcFlags:
  3734. Regen: true
  3735. Flags:
  3736. RemoveOnRefresh: true
  3737. RemoveOnLuxAnima: true
  3738. BossResist: true
  3739. NoDispell: true
  3740. NoBanishingBuster: true
  3741. Debuff: true
  3742. SpreadEffect: true
  3743. Fail:
  3744. Refresh: true
  3745. Inspiration: true
  3746. Toxin: true
  3747. Paralyse: true
  3748. Venombleed: true
  3749. Magicmushroom: true
  3750. Deathhurt: true
  3751. Pyrexia: true
  3752. Oblivioncurse: true
  3753. LeechesEnd: true
  3754. - Status: Pyrexia
  3755. Icon: EFST_PYREXIA
  3756. CalcFlags:
  3757. All: true
  3758. Flags:
  3759. RemoveOnRefresh: true
  3760. RemoveOnLuxAnima: true
  3761. BossResist: true
  3762. NoDispell: true
  3763. NoBanishingBuster: true
  3764. Debuff: true
  3765. SpreadEffect: true
  3766. Fail:
  3767. Refresh: true
  3768. Inspiration: true
  3769. Toxin: true
  3770. Paralyse: true
  3771. Venombleed: true
  3772. Magicmushroom: true
  3773. Deathhurt: true
  3774. Pyrexia: true
  3775. Oblivioncurse: true
  3776. LeechesEnd: true
  3777. - Status: Oblivioncurse
  3778. Icon: EFST_OBLIVIONCURSE
  3779. States:
  3780. NoCast: true
  3781. Nocastcond: true
  3782. CalcFlags:
  3783. Regen: true
  3784. Flags:
  3785. RemoveOnRefresh: true
  3786. RemoveOnLuxAnima: true
  3787. BossResist: true
  3788. NoDispell: true
  3789. NoBanishingBuster: true
  3790. Debuff: true
  3791. SpreadEffect: true
  3792. Fail:
  3793. Refresh: true
  3794. Inspiration: true
  3795. Toxin: true
  3796. Paralyse: true
  3797. Venombleed: true
  3798. Magicmushroom: true
  3799. Deathhurt: true
  3800. Pyrexia: true
  3801. Oblivioncurse: true
  3802. LeechesEnd: true
  3803. - Status: Leechesend
  3804. Icon: EFST_LEECHESEND
  3805. Flags:
  3806. RemoveOnRefresh: true
  3807. RemoveOnLuxAnima: true
  3808. BossResist: true
  3809. NoDispell: true
  3810. NoBanishingBuster: true
  3811. Debuff: true
  3812. SpreadEffect: true
  3813. Fail:
  3814. Refresh: true
  3815. Inspiration: true
  3816. Toxin: true
  3817. Paralyse: true
  3818. Venombleed: true
  3819. Magicmushroom: true
  3820. Deathhurt: true
  3821. Pyrexia: true
  3822. Oblivioncurse: true
  3823. LeechesEnd: true
  3824. - Status: Reflectdamage
  3825. Icon: EFST_LG_REFLECTDAMAGE
  3826. DurationLookup: LG_REFLECTDAMAGE
  3827. Flags:
  3828. NoDispell: true
  3829. NoBanishingBuster: true
  3830. RequireShield: true
  3831. NoSave: true
  3832. EndOnStart:
  3833. Reflectshield: true
  3834. - Status: Forceofvanguard
  3835. Icon: EFST_FORCEOFVANGUARD
  3836. DurationLookup: LG_FORCEOFVANGUARD
  3837. CalcFlags:
  3838. MaxHp: true
  3839. Flags:
  3840. NoDispell: true
  3841. NoBanishingBuster: true
  3842. NoClearance: true
  3843. SendVal3: true
  3844. - Status: Shieldspell_Hp
  3845. Icon: EFST_SHIELDSPELL
  3846. DurationLookup: LG_SHIELDSPELL
  3847. EndOnStart:
  3848. Shieldspell_Sp: true
  3849. Shieldspell_Atk: true
  3850. - Status: Shieldspell_Sp
  3851. Icon: EFST_SHIELDSPELL
  3852. DurationLookup: LG_SHIELDSPELL
  3853. EndOnStart:
  3854. Shieldspell_Hp: true
  3855. Shieldspell_Atk: true
  3856. - Status: Shieldspell_Atk
  3857. Icon: EFST_SHIELDSPELL
  3858. DurationLookup: LG_SHIELDSPELL
  3859. CalcFlags:
  3860. Watk: true
  3861. Matk: true
  3862. EndOnStart:
  3863. Shieldspell_Hp: true
  3864. Shieldspell_Sp: true
  3865. - Status: Exeedbreak
  3866. Icon: EFST_EXEEDBREAK
  3867. DurationLookup: LG_EXEEDBREAK
  3868. Flags:
  3869. NoDispell: true
  3870. NoBanishingBuster: true
  3871. NoClearance: true
  3872. RemoveOnUnequipWeapon: true
  3873. - Status: Prestige
  3874. Icon: EFST_PRESTIGE
  3875. DurationLookup: LG_PRESTIGE
  3876. CalcFlags:
  3877. Def: true
  3878. Flags:
  3879. SendVal2: true
  3880. - Status: Banding
  3881. Icon: EFST_BANDING
  3882. DurationLookup: LG_BANDING
  3883. CalcFlags:
  3884. Def: true
  3885. Flags:
  3886. DisplayPc: true
  3887. NoDispell: true
  3888. NoBanishingBuster: true
  3889. NoClearance: true
  3890. SendVal1: true
  3891. Fail:
  3892. Banding: true
  3893. EndOnStart:
  3894. Prestige: true
  3895. - Status: Banding_Defence
  3896. Icon: EFST_BANDING_DEFENCE
  3897. Flags:
  3898. BossResist: true
  3899. Fail:
  3900. Banding_Defence: true
  3901. - Status: Earthdrive
  3902. Icon: EFST_EARTHDRIVE
  3903. DurationLookup: LG_EARTHDRIVE
  3904. Flags:
  3905. NoDispell: true
  3906. NoBanishingBuster: true
  3907. - Status: Inspiration
  3908. Icon: EFST_INSPIRATION
  3909. DurationLookup: LG_INSPIRATION
  3910. CalcFlags:
  3911. Watk: true
  3912. Matk: true
  3913. Str: true
  3914. Agi: true
  3915. Vit: true
  3916. Int: true
  3917. Dex: true
  3918. Luk: true
  3919. Hit: true
  3920. MaxHp: true
  3921. Flags:
  3922. NoDispell: true
  3923. NoBanishingBuster: true
  3924. NoClearance: true
  3925. - Status: Spellfist
  3926. Icon: EFST_SPELLFIST
  3927. DurationLookup: SO_SPELLFIST
  3928. Flags:
  3929. SendVal3: true
  3930. - Status: Crystalize
  3931. Icon: EFST_COLD
  3932. DurationLookup: SO_DIAMONDDUST
  3933. States:
  3934. NoMove: true
  3935. NoMoveCond: true
  3936. NoCast: true
  3937. NoCastCond: true
  3938. NoConsumeItem: true
  3939. NoAttack: true
  3940. Flags:
  3941. BlEffect: true
  3942. DisplayPc: true
  3943. SendOption: true
  3944. RemoveOnRefresh: true
  3945. RemoveOnLuxAnima: true
  3946. BossResist: true
  3947. StopAttacking: true
  3948. StopWalking: true
  3949. StopCasting: true
  3950. SetStand: true
  3951. Debuff: true
  3952. Fail:
  3953. Refresh: true
  3954. Inspiration: true
  3955. Warmer: true
  3956. Crystalize: true
  3957. - Status: Striking
  3958. Icon: EFST_STRIKING
  3959. DurationLookup: SO_STRIKING
  3960. CalcFlags:
  3961. All: true
  3962. Flags:
  3963. NoSave: true
  3964. - Status: Warmer
  3965. Icon: EFST_WARMER
  3966. DurationLookup: SO_WARMER
  3967. Flags:
  3968. NoDispell: true
  3969. NoBanishingBuster: true
  3970. NoClearance: true
  3971. EndOnStart:
  3972. Crystalize: true
  3973. Freezing: true
  3974. Freeze: true
  3975. - Status: Vacuum_Extreme
  3976. Icon: EFST_VACUUM_EXTREME
  3977. DurationLookup: SO_VACUUM_EXTREME
  3978. Flags:
  3979. BossResist: true
  3980. StopWalking: true
  3981. StopAttacking: true
  3982. NoDispell: true
  3983. NoBanishingBuster: true
  3984. NoClearance: true
  3985. NoSave: true
  3986. RemoveOnChangeMap: true
  3987. Debuff: true
  3988. Fail:
  3989. Hallucinationwalk: true
  3990. Hovering: true
  3991. Npc_HallucinationWalk: true
  3992. Vacuum_Extreme: true
  3993. States:
  3994. Nomove: true
  3995. - Status: Propertywalk
  3996. Icon: EFST_PROPERTYWALK
  3997. DurationLookup: SO_FIREWALK
  3998. Flags:
  3999. NoSave: true
  4000. RemoveOnMapWarp: true
  4001. SendVal2: true
  4002. - Status: Swingdance
  4003. Icon: EFST_SWING
  4004. DurationLookup: WA_SWING_DANCE
  4005. CalcFlags:
  4006. Speed: true
  4007. Aspd: true
  4008. Flags:
  4009. NoDispell: true
  4010. NoBanishingBuster: true
  4011. NoClearance: true
  4012. EndOnStart:
  4013. Symphonyoflover: true
  4014. Moonlitserenade: true
  4015. Rushwindmill: true
  4016. Echosong: true
  4017. Harmonize: true
  4018. - Status: Symphonyoflover
  4019. Icon: EFST_SYMPHONY_LOVE
  4020. DurationLookup: WA_SYMPHONY_OF_LOVER
  4021. CalcFlags:
  4022. Mdef: true
  4023. Flags:
  4024. NoDispell: true
  4025. NoBanishingBuster: true
  4026. NoClearance: true
  4027. EndOnStart:
  4028. Swingdance: true
  4029. Moonlitserenade: true
  4030. Rushwindmill: true
  4031. Echosong: true
  4032. Harmonize: true
  4033. - Status: Moonlitserenade
  4034. Icon: EFST_MOONLIT_SERENADE
  4035. DurationLookup: WA_MOONLIT_SERENADE
  4036. CalcFlags:
  4037. Matk: true
  4038. Flags:
  4039. NoDispell: true
  4040. NoBanishingBuster: true
  4041. NoClearance: true
  4042. EndOnStart:
  4043. Swingdance: true
  4044. Symphonyoflover: true
  4045. Rushwindmill: true
  4046. Echosong: true
  4047. Harmonize: true
  4048. - Status: Rushwindmill
  4049. Icon: EFST_RUSH_WINDMILL
  4050. DurationLookup: MI_RUSH_WINDMILL
  4051. CalcFlags:
  4052. Watk: true
  4053. Speed: true
  4054. Flags:
  4055. NoDispell: true
  4056. NoBanishingBuster: true
  4057. NoClearance: true
  4058. EndOnStart:
  4059. Swingdance: true
  4060. Symphonyoflover: true
  4061. Moonlitserenade: true
  4062. Echosong: true
  4063. Harmonize: true
  4064. - Status: Echosong
  4065. Icon: EFST_ECHOSONG
  4066. DurationLookup: MI_ECHOSONG
  4067. CalcFlags:
  4068. Def: true
  4069. Flags:
  4070. NoDispell: true
  4071. NoBanishingBuster: true
  4072. NoClearance: true
  4073. EndOnStart:
  4074. Swingdance: true
  4075. Symphonyoflover: true
  4076. Moonlitserenade: true
  4077. Rushwindmill: true
  4078. Harmonize: true
  4079. - Status: Harmonize
  4080. Icon: EFST_HARMONIZE
  4081. DurationLookup: MI_HARMONIZE
  4082. CalcFlags:
  4083. Str: true
  4084. Agi: true
  4085. Vit: true
  4086. Int: true
  4087. Dex: true
  4088. Luk: true
  4089. EndOnStart:
  4090. Swingdance: true
  4091. Symphonyoflover: true
  4092. Moonlitserenade: true
  4093. Rushwindmill: true
  4094. Echosong: true
  4095. - Status: Voiceofsiren
  4096. Icon: EFST_SIREN
  4097. DurationLookup: WM_VOICEOFSIREN
  4098. Flags:
  4099. BlEffect: true
  4100. DisplayPc: true
  4101. StopAttacking: true
  4102. MinDuration: 10000
  4103. EndOnStart:
  4104. Deepsleep: true
  4105. Gloomyday: true
  4106. Gloomyday_Sk: true
  4107. Songofmana: true
  4108. Dancewithwug: true
  4109. Saturdaynightfever: true
  4110. Leradsdew: true
  4111. Melodyofsink: true
  4112. Beyondofwarcry: true
  4113. Unlimitedhummingvoice: true
  4114. Sircleofnature: true
  4115. - Status: Deepsleep
  4116. Icon: EFST_HANDICAPSTATE_DEEP_SLEEP
  4117. DurationLookup: WM_LULLABY_DEEPSLEEP
  4118. States:
  4119. NoCast: true
  4120. NoChat: true
  4121. NoConsumeItem: true
  4122. NoMove: true
  4123. NoAttack: true
  4124. Opt1: Sleep
  4125. Flags:
  4126. BlEffect: true
  4127. DisplayPc: true
  4128. RemoveOnRefresh: true
  4129. RemoveOnLuxAnima: true
  4130. BossResist: true
  4131. StopWalking: true
  4132. StopAttacking: true
  4133. StopCasting: true
  4134. SetStand: true
  4135. RemoveOnDamaged: true
  4136. NoSave: true
  4137. Debuff: true
  4138. MinDuration: 5000
  4139. Fail:
  4140. Refresh: true
  4141. Inspiration: true
  4142. Deepsleep: true
  4143. EndOnStart:
  4144. Dancing: true
  4145. Voiceofsiren: true
  4146. Gloomyday: true
  4147. Gloomyday_Sk: true
  4148. Songofmana: true
  4149. Dancewithwug: true
  4150. Saturdaynightfever: true
  4151. Leradsdew: true
  4152. Melodyofsink: true
  4153. Beyondofwarcry: true
  4154. Unlimitedhummingvoice: true
  4155. Sircleofnature: true
  4156. - Status: Sircleofnature
  4157. Icon: EFST_SIRCLEOFNATURE
  4158. DurationLookup: WM_SIRCLEOFNATURE
  4159. EndOnStart:
  4160. Deepsleep: true
  4161. Gloomyday: true
  4162. Gloomyday_Sk: true
  4163. Songofmana: true
  4164. Dancewithwug: true
  4165. Saturdaynightfever: true
  4166. Leradsdew: true
  4167. Melodyofsink: true
  4168. Beyondofwarcry: true
  4169. Unlimitedhummingvoice: true
  4170. Sircleofnature: true
  4171. CalcFlags:
  4172. Regen: true
  4173. - Status: Gloomyday
  4174. Icon: EFST_GLOOMYDAY
  4175. DurationLookup: WM_GLOOMYDAY
  4176. CalcFlags:
  4177. Flee: true
  4178. Speed: true
  4179. Aspd: true
  4180. EndOnStart:
  4181. Voiceofsiren: true
  4182. Deepsleep: true
  4183. Songofmana: true
  4184. Dancewithwug: true
  4185. Saturdaynightfever: true
  4186. Leradsdew: true
  4187. Melodyofsink: true
  4188. Beyondofwarcry: true
  4189. Unlimitedhummingvoice: true
  4190. - Status: Gloomyday_Sk
  4191. Icon: EFST_GLOOMYDAY
  4192. - Status: Songofmana
  4193. Icon: EFST_SONG_OF_MANA
  4194. DurationLookup: WM_SONG_OF_MANA
  4195. EndOnStart:
  4196. Voiceofsiren: true
  4197. Deepsleep: true
  4198. Gloomyday: true
  4199. Gloomyday_Sk: true
  4200. Dancewithwug: true
  4201. Saturdaynightfever: true
  4202. Leradsdew: true
  4203. Melodyofsink: true
  4204. Beyondofwarcry: true
  4205. Unlimitedhummingvoice: true
  4206. Sircleofnature: true
  4207. CalcFlags:
  4208. Regen: true
  4209. - Status: Dancewithwug
  4210. Icon: EFST_DANCE_WITH_WUG
  4211. DurationLookup: WM_DANCE_WITH_WUG
  4212. CalcFlags:
  4213. Aspd: true
  4214. EndOnStart:
  4215. Voiceofsiren: true
  4216. Deepsleep: true
  4217. Gloomyday: true
  4218. Gloomyday_Sk: true
  4219. Songofmana: true
  4220. Saturdaynightfever: true
  4221. Leradsdew: true
  4222. Melodyofsink: true
  4223. Beyondofwarcry: true
  4224. Unlimitedhummingvoice: true
  4225. Sircleofnature: true
  4226. - Status: Saturdaynightfever
  4227. Icon: EFST_SATURDAY_NIGHT_FEVER
  4228. DurationLookup: WM_SATURDAY_NIGHT_FEVER
  4229. States:
  4230. NoCast: true
  4231. NoChat: true
  4232. NoEquipItem: true
  4233. NoUnEquipItem: true
  4234. NoConsumeItem: true
  4235. CalcFlags:
  4236. Hit: true
  4237. Flee: true
  4238. Regen: true
  4239. Flags:
  4240. NoSave: true
  4241. Fail:
  4242. Berserk: true
  4243. Inspiration: true
  4244. EndOnStart:
  4245. Voiceofsiren: true
  4246. Deepsleep: true
  4247. Gloomyday: true
  4248. Gloomyday_Sk: true
  4249. Songofmana: true
  4250. Dancewithwug: true
  4251. Leradsdew: true
  4252. Melodyofsink: true
  4253. Beyondofwarcry: true
  4254. Unlimitedhummingvoice: true
  4255. Sircleofnature: true
  4256. - Status: Leradsdew
  4257. Icon: EFST_LERADS_DEW
  4258. DurationLookup: WM_LERADS_DEW
  4259. CalcFlags:
  4260. MaxHp: true
  4261. Flags:
  4262. NoDispell: true
  4263. NoBanishingBuster: true
  4264. NoClearance: true
  4265. Fail:
  4266. Berserk: true
  4267. EndOnStart:
  4268. Voiceofsiren: true
  4269. Deepsleep: true
  4270. Gloomyday: true
  4271. Gloomyday_Sk: true
  4272. Songofmana: true
  4273. Dancewithwug: true
  4274. Saturdaynightfever: true
  4275. Melodyofsink: true
  4276. Beyondofwarcry: true
  4277. Unlimitedhummingvoice: true
  4278. Sircleofnature: true
  4279. - Status: Melodyofsink
  4280. Icon: EFST_MELODYOFSINK
  4281. DurationLookup: WM_MELODYOFSINK
  4282. CalcFlags:
  4283. Int: true
  4284. MaxSp: true
  4285. Flags:
  4286. NoDispell: true
  4287. NoBanishingBuster: true
  4288. NoClearance: true
  4289. EndOnStart:
  4290. Voiceofsiren: true
  4291. Deepsleep: true
  4292. Gloomyday: true
  4293. Gloomyday_Sk: true
  4294. Songofmana: true
  4295. Dancewithwug: true
  4296. Saturdaynightfever: true
  4297. Leradsdew: true
  4298. Beyondofwarcry: true
  4299. Unlimitedhummingvoice: true
  4300. Sircleofnature: true
  4301. - Status: Beyondofwarcry
  4302. Icon: EFST_BEYOND_OF_WARCRY
  4303. DurationLookup: WM_BEYOND_OF_WARCRY
  4304. CalcFlags:
  4305. Str: true
  4306. MaxHp: true
  4307. Flags:
  4308. NoDispell: true
  4309. NoBanishingBuster: true
  4310. NoClearance: true
  4311. EndOnStart:
  4312. Voiceofsiren: true
  4313. Deepsleep: true
  4314. Gloomyday: true
  4315. Gloomyday_Sk: true
  4316. Songofmana: true
  4317. Dancewithwug: true
  4318. Saturdaynightfever: true
  4319. Leradsdew: true
  4320. Melodyofsink: true
  4321. Unlimitedhummingvoice: true
  4322. Sircleofnature: true
  4323. - Status: Unlimitedhummingvoice
  4324. Icon: EFST_UNLIMITED_HUMMING_VOICE
  4325. DurationLookup: WM_UNLIMITED_HUMMING_VOICE
  4326. Flags:
  4327. NoDispell: true
  4328. NoBanishingBuster: true
  4329. NoClearance: true
  4330. EndOnStart:
  4331. Voiceofsiren: true
  4332. Deepsleep: true
  4333. Gloomyday: true
  4334. Gloomyday_Sk: true
  4335. Songofmana: true
  4336. Dancewithwug: true
  4337. Saturdaynightfever: true
  4338. Leradsdew: true
  4339. Melodyofsink: true
  4340. Beyondofwarcry: true
  4341. Sircleofnature: true
  4342. - Status: Sitdown_Force
  4343. Flags:
  4344. NoDispell: true
  4345. NoBanishingBuster: true
  4346. NoClearance: true
  4347. - Status: Netherworld
  4348. Icon: EFST_NETHERWORLD
  4349. DurationLookup: WM_POEMOFNETHERWORLD
  4350. States:
  4351. NoMove: true
  4352. Flags:
  4353. BlEffect: true
  4354. DisplayPc: true
  4355. BossResist: true
  4356. StopWalking: true
  4357. Debuff: true
  4358. Fail:
  4359. Netherworld: true
  4360. - Status: Crescentelbow
  4361. Icon: EFST_CRESCENTELBOW
  4362. DurationLookup: SR_CRESCENTELBOW
  4363. Flags:
  4364. BossResist: true
  4365. NoDispell: true
  4366. NoBanishingBuster: true
  4367. NoClearance: true
  4368. SendVal2: true
  4369. - Status: Cursedcircle_Atker
  4370. Icon: EFST_CURSEDCIRCLE_ATKER
  4371. DurationLookup: SR_CURSEDCIRCLE
  4372. States:
  4373. NoMove: true
  4374. NoAttack: true
  4375. Flags:
  4376. DisplayPc: true
  4377. NoClearbuff: true
  4378. StopWalking: true
  4379. NoDispell: true
  4380. NoBanishingBuster: true
  4381. NoClearance: true
  4382. StopAttacking: true
  4383. RemoveOnChangeMap: true
  4384. SendVal3: true
  4385. - Status: Cursedcircle_Target
  4386. Icon: EFST_CURSEDCIRCLE_TARGET
  4387. DurationLookup: SR_CURSEDCIRCLE
  4388. States:
  4389. NoMove: true
  4390. NoCast: true
  4391. NoAttack: true
  4392. Flags:
  4393. BlEffect: true
  4394. DisplayPc: true
  4395. MobLoseTarget: true
  4396. NoClearbuff: true
  4397. StopWalking: true
  4398. StopAttacking: true
  4399. NoDispell: true
  4400. NoBanishingBuster: true
  4401. NoClearance: true
  4402. Fail:
  4403. Cursedcircle_Target: true
  4404. - Status: Lightningwalk
  4405. Icon: EFST_LIGHTNINGWALK
  4406. DurationLookup: SR_LIGHTNINGWALK
  4407. Flags:
  4408. NoDispell: true
  4409. NoBanishingBuster: true
  4410. NoClearance: true
  4411. SendVal1: true
  4412. - Status: Raisingdragon
  4413. Icon: EFST_RAISINGDRAGON
  4414. DurationLookup: SR_RAISINGDRAGON
  4415. CalcFlags:
  4416. MaxHp: true
  4417. MaxSp: true
  4418. Flags:
  4419. NoDispell: true
  4420. NoBanishingBuster: true
  4421. NoClearance: true
  4422. NoSave: true
  4423. - Status: Gt_Energygain
  4424. Icon: EFST_GENTLETOUCH_ENERGYGAIN
  4425. DurationLookup: SR_GENTLETOUCH_ENERGYGAIN
  4426. Flags:
  4427. NoDispell: true
  4428. NoBanishingBuster: true
  4429. NoClearance: true
  4430. - Status: Gt_Change
  4431. Icon: EFST_GENTLETOUCH_CHANGE
  4432. DurationLookup: SR_GENTLETOUCH_CHANGE
  4433. CalcFlags:
  4434. Watk: true
  4435. Aspd: true
  4436. Flags:
  4437. NoDispell: true
  4438. NoBanishingBuster: true
  4439. NoClearance: true
  4440. EndOnStart:
  4441. Gt_Revitalize: true
  4442. - Status: Gt_Revitalize
  4443. Icon: EFST_GENTLETOUCH_REVITALIZE
  4444. DurationLookup: SR_GENTLETOUCH_REVITALIZE
  4445. CalcFlags:
  4446. MaxHp: true
  4447. Regen: true
  4448. Flags:
  4449. NoDispell: true
  4450. NoBanishingBuster: true
  4451. NoClearance: true
  4452. EndOnStart:
  4453. Gt_Change: true
  4454. - Status: Gn_Cartboost
  4455. Icon: EFST_GN_CARTBOOST
  4456. DurationLookup: GN_CARTBOOST
  4457. CalcFlags:
  4458. Speed: true
  4459. Flags:
  4460. NoDispell: true
  4461. NoBanishingBuster: true
  4462. NoClearance: true
  4463. Fail:
  4464. Quagmire: true
  4465. Dontforgetme: true
  4466. EndReturn:
  4467. Decreaseagi: true
  4468. - Status: Thornstrap
  4469. Icon: EFST_THORNS_TRAP
  4470. DurationLookup: GN_THORNS_TRAP
  4471. States:
  4472. NoMove: true
  4473. Flags:
  4474. StopWalking: true
  4475. NoDispell: true
  4476. NoBanishingBuster: true
  4477. NoClearance: true
  4478. NoSave: true
  4479. - Status: Bloodsucker
  4480. Icon: EFST_BLOOD_SUCKER
  4481. DurationLookup: GN_BLOOD_SUCKER
  4482. Flags:
  4483. NoDispell: true
  4484. NoBanishingBuster: true
  4485. NoClearance: true
  4486. NoSave: true
  4487. - Status: Smokepowder
  4488. Icon: EFST_FIRE_EXPANSION_SMOKE_POWDER
  4489. DurationLookup: GN_FIRE_EXPANSION_SMOKE_POWDER
  4490. CalcFlags:
  4491. Flee: true
  4492. Flags:
  4493. NoDispell: true
  4494. NoBanishingBuster: true
  4495. NoClearance: true
  4496. NoSave: true
  4497. - Status: Teargas
  4498. Icon: EFST_FIRE_EXPANSION_TEAR_GAS
  4499. DurationLookup: GN_FIRE_EXPANSION_TEAR_GAS
  4500. CalcFlags:
  4501. Hit: true
  4502. Flee: true
  4503. Flags:
  4504. BossResist: true
  4505. NoDispell: true
  4506. NoBanishingBuster: true
  4507. NoClearance: true
  4508. NoSave: true
  4509. EndOnEnd:
  4510. TearGas_Sob: true
  4511. - Status: Mandragora
  4512. Icon: EFST_MANDRAGORA
  4513. DurationLookup: GN_MANDRAGORA
  4514. CalcFlags:
  4515. Int: true
  4516. Flags:
  4517. RemoveOnRefresh: true
  4518. RemoveOnLuxAnima: true
  4519. NoDispell: true
  4520. NoBanishingBuster: true
  4521. Debuff: true
  4522. Fail:
  4523. Refresh: true
  4524. Inspiration: true
  4525. Mandragora: true
  4526. - Status: Stomachache
  4527. Icon: EFST_STOMACHACHE
  4528. CalcFlags:
  4529. Str: true
  4530. Agi: true
  4531. Vit: true
  4532. Dex: true
  4533. Int: true
  4534. Luk: true
  4535. Flags:
  4536. NoDispell: true
  4537. NoBanishingBuster: true
  4538. Debuff: true
  4539. - Status: Mysterious_Powder
  4540. Icon: EFST_MYSTERIOUS_POWDER
  4541. CalcFlags:
  4542. MaxHp: true
  4543. Flags:
  4544. NoDispell: true
  4545. NoBanishingBuster: true
  4546. Debuff: true
  4547. - Status: Melon_Bomb
  4548. Icon: EFST_MELON_BOMB
  4549. CalcFlags:
  4550. Speed: true
  4551. Aspd: true
  4552. Flags:
  4553. NoDispell: true
  4554. NoBanishingBuster: true
  4555. NoClearance: true
  4556. NoSave: true
  4557. - Status: Banana_Bomb
  4558. Icon: EFST_BANANA_BOMB
  4559. CalcFlags:
  4560. Luk: true
  4561. Flags:
  4562. NoDispell: true
  4563. NoBanishingBuster: true
  4564. NoClearance: true
  4565. - Status: Banana_Bomb_Sitdown
  4566. Icon: EFST_BANANA_BOMB_SITDOWN_POSTDELAY
  4567. Flags:
  4568. NoDispell: true
  4569. NoBanishingBuster: true
  4570. NoClearance: true
  4571. NoSave: true
  4572. - Status: Savage_Steak
  4573. Icon: EFST_SAVAGE_STEAK
  4574. CalcFlags:
  4575. Str: true
  4576. Flags:
  4577. NoClearbuff: true
  4578. NoDispell: true
  4579. NoBanishingBuster: true
  4580. NoClearance: true
  4581. NoRemoveOnDead: true
  4582. - Status: Cocktail_Warg_Blood
  4583. Icon: EFST_COCKTAIL_WARG_BLOOD
  4584. CalcFlags:
  4585. Int: true
  4586. Flags:
  4587. NoClearbuff: true
  4588. NoDispell: true
  4589. NoBanishingBuster: true
  4590. NoClearance: true
  4591. NoRemoveOnDead: true
  4592. - Status: Minor_Bbq
  4593. Icon: EFST_MINOR_BBQ
  4594. CalcFlags:
  4595. Vit: true
  4596. Flags:
  4597. NoClearbuff: true
  4598. NoDispell: true
  4599. NoBanishingBuster: true
  4600. NoClearance: true
  4601. NoRemoveOnDead: true
  4602. - Status: Siroma_Ice_Tea
  4603. Icon: EFST_SIROMA_ICE_TEA
  4604. CalcFlags:
  4605. Dex: true
  4606. Flags:
  4607. NoClearbuff: true
  4608. NoDispell: true
  4609. NoBanishingBuster: true
  4610. NoClearance: true
  4611. NoRemoveOnDead: true
  4612. - Status: Drocera_Herb_Steamed
  4613. Icon: EFST_DROCERA_HERB_STEAMED
  4614. CalcFlags:
  4615. Agi: true
  4616. Flags:
  4617. NoClearbuff: true
  4618. NoDispell: true
  4619. NoBanishingBuster: true
  4620. NoClearance: true
  4621. NoRemoveOnDead: true
  4622. - Status: Putti_Tails_Noodles
  4623. Icon: EFST_PUTTI_TAILS_NOODLES
  4624. CalcFlags:
  4625. Luk: true
  4626. Flags:
  4627. NoClearbuff: true
  4628. NoDispell: true
  4629. NoBanishingBuster: true
  4630. NoClearance: true
  4631. NoRemoveOnDead: true
  4632. - Status: Boost500
  4633. Icon: EFST_BOOST500
  4634. CalcFlags:
  4635. Aspd: true
  4636. Flags:
  4637. NoClearbuff: true
  4638. NoDispell: true
  4639. NoBanishingBuster: true
  4640. NoClearance: true
  4641. - Status: Full_Swing_K
  4642. Icon: EFST_FULL_SWING_K
  4643. CalcFlags:
  4644. Batk: true
  4645. Flags:
  4646. NoClearbuff: true
  4647. NoDispell: true
  4648. NoBanishingBuster: true
  4649. NoClearance: true
  4650. - Status: Mana_Plus
  4651. Icon: EFST_MANA_PLUS
  4652. CalcFlags:
  4653. Matk: true
  4654. Flags:
  4655. NoClearbuff: true
  4656. NoDispell: true
  4657. NoBanishingBuster: true
  4658. NoClearance: true
  4659. - Status: Mustle_M
  4660. Icon: EFST_MUSTLE_M
  4661. CalcFlags:
  4662. MaxHp: true
  4663. Flags:
  4664. NoClearbuff: true
  4665. NoDispell: true
  4666. NoBanishingBuster: true
  4667. NoClearance: true
  4668. - Status: Life_Force_F
  4669. Icon: EFST_LIFE_FORCE_F
  4670. CalcFlags:
  4671. MaxSp: true
  4672. Flags:
  4673. NoClearbuff: true
  4674. NoDispell: true
  4675. NoBanishingBuster: true
  4676. NoClearance: true
  4677. - Status: Extract_White_Potion_Z
  4678. Icon: EFST_EXTRACT_WHITE_POTION_Z
  4679. CalcFlags:
  4680. Regen: true
  4681. Flags:
  4682. NoClearbuff: true
  4683. NoDispell: true
  4684. NoBanishingBuster: true
  4685. NoClearance: true
  4686. - Status: Vitata_500
  4687. Icon: EFST_VITATA_500
  4688. CalcFlags:
  4689. Regen: true
  4690. MaxSp: true
  4691. Flags:
  4692. NoClearbuff: true
  4693. NoDispell: true
  4694. NoBanishingBuster: true
  4695. NoClearance: true
  4696. - Status: Extract_Salamine_Juice
  4697. Icon: EFST_EXTRACT_SALAMINE_JUICE
  4698. CalcFlags:
  4699. Aspd: true
  4700. Flags:
  4701. NoClearbuff: true
  4702. NoDispell: true
  4703. NoBanishingBuster: true
  4704. NoClearance: true
  4705. - Status: _Reproduce
  4706. Icon: EFST_REPRODUCE
  4707. DurationLookup: SC_REPRODUCE
  4708. Flags:
  4709. NoDispell: true
  4710. NoBanishingBuster: true
  4711. NoClearance: true
  4712. - Status: _Autoshadowspell
  4713. Icon: EFST_AUTOSHADOWSPELL
  4714. DurationLookup: SC_AUTOSHADOWSPELL
  4715. CalcFlags:
  4716. Matk: true
  4717. - Status: _Shadowform
  4718. Icon: EFST_SHADOWFORM
  4719. DurationLookup: SC_SHADOWFORM
  4720. States:
  4721. NoCast: true
  4722. NoConsumeItem: true
  4723. NoAttack: true
  4724. Flags:
  4725. DisplayPc: true
  4726. OnTouch: true
  4727. NoDispell: true
  4728. NoBanishingBuster: true
  4729. NoClearance: true
  4730. NoSave: true
  4731. RemoveOnChangeMap: true
  4732. SendVal3: true
  4733. - Status: _Bodypaint
  4734. Icon: EFST_BODYPAINT
  4735. DurationLookup: SC_BODYPAINT
  4736. CalcFlags:
  4737. Aspd: true
  4738. Flags:
  4739. NoDispell: true
  4740. NoBanishingBuster: true
  4741. SpreadEffect: true
  4742. Fail:
  4743. Inspiration: true
  4744. - Status: _Invisibility
  4745. Icon: EFST_INVISIBILITY
  4746. DurationLookup: SC_INVISIBILITY
  4747. States:
  4748. NoCast: true
  4749. NoConsumeItem: true
  4750. CalcFlags:
  4751. Aspd: true
  4752. Cri: true
  4753. Atk_Ele: true
  4754. Options:
  4755. Cloak: true
  4756. Flags:
  4757. OnTouch: true
  4758. NoDispell: true
  4759. NoBanishingBuster: true
  4760. NoClearance: true
  4761. SendVal2: true
  4762. Fail:
  4763. _Invisibility: true
  4764. - Status: _Deadlyinfect
  4765. Icon: EFST_DEADLYINFECT
  4766. DurationLookup: SC_DEADLYINFECT
  4767. Flags:
  4768. NoDispell: true
  4769. NoBanishingBuster: true
  4770. - Status: _Enervation
  4771. Icon: EFST_ENERVATION
  4772. DurationLookup: SC_ENERVATION
  4773. CalcFlags:
  4774. Batk: true
  4775. Watk: true
  4776. Flags:
  4777. BossResist: true
  4778. NoBanishingBuster: true
  4779. NoClearance: true
  4780. SendVal2: true
  4781. Fail:
  4782. Inspiration: true
  4783. _Enervation: true
  4784. - Status: _Groomy
  4785. Icon: EFST_GROOMY
  4786. DurationLookup: SC_GROOMY
  4787. CalcFlags:
  4788. Aspd: true
  4789. Hit: true
  4790. Flags:
  4791. BossResist: true
  4792. NoBanishingBuster: true
  4793. NoClearance: true
  4794. SendVal3: true
  4795. Fail:
  4796. Inspiration: true
  4797. _Groomy: true
  4798. - Status: _Ignorance
  4799. Icon: EFST_IGNORANCE
  4800. DurationLookup: SC_IGNORANCE
  4801. States:
  4802. NoCast: true
  4803. Flags:
  4804. BossResist: true
  4805. NoBanishingBuster: true
  4806. NoClearance: true
  4807. Fail:
  4808. Inspiration: true
  4809. _Ignorance: true
  4810. - Status: _Laziness
  4811. Icon: EFST_LAZINESS
  4812. DurationLookup: SC_LAZINESS
  4813. CalcFlags:
  4814. Flee: true
  4815. Speed: true
  4816. Flags:
  4817. BossResist: true
  4818. NoBanishingBuster: true
  4819. NoClearance: true
  4820. SendVal3: true
  4821. Fail:
  4822. Inspiration: true
  4823. _Laziness: true
  4824. - Status: _Unlucky
  4825. Icon: EFST_UNLUCKY
  4826. DurationLookup: SC_UNLUCKY
  4827. CalcFlags:
  4828. Cri: true
  4829. Flee2: true
  4830. Flags:
  4831. BossResist: true
  4832. NoBanishingBuster: true
  4833. NoClearance: true
  4834. SendVal3: true
  4835. Fail:
  4836. Inspiration: true
  4837. _Unlucky: true
  4838. - Status: _Weakness
  4839. Icon: EFST_WEAKNESS
  4840. DurationLookup: SC_WEAKNESS
  4841. CalcFlags:
  4842. MaxHp: true
  4843. Flags:
  4844. BossResist: true
  4845. NoBanishingBuster: true
  4846. NoClearance: true
  4847. SendVal2: true
  4848. Fail:
  4849. Inspiration: true
  4850. _Weakness: true
  4851. - Status: _Stripaccessory
  4852. Icon: EFST_STRIPACCESSARY
  4853. DurationLookup: SC_STRIPACCESSARY
  4854. CalcFlags:
  4855. Dex: true
  4856. Int: true
  4857. Luk: true
  4858. Flags:
  4859. Debuff: true
  4860. NoDispell: true
  4861. NoBanishingBuster: true
  4862. NoClearance: true
  4863. - Status: _Manhole
  4864. Icon: EFST_MANHOLE
  4865. DurationLookup: SC_MANHOLE
  4866. States:
  4867. NoAttack: true
  4868. NoMove: true
  4869. NoCast: true
  4870. NoConsumeItem: true
  4871. NoInteract: true
  4872. Flags:
  4873. BlEffect: true
  4874. DisplayPc: true
  4875. MobLoseTarget: true
  4876. NoClearbuff: true
  4877. StopWalking: true
  4878. StopAttacking: true
  4879. NoDispell: true
  4880. NoBanishingBuster: true
  4881. NoClearance: true
  4882. RemoveOnChangeMap: true
  4883. - Status: _Bloodylust
  4884. Icon: EFST_BLOODYLUST
  4885. DurationLookup: SC_BLOODYLUST
  4886. States:
  4887. NoCast: true
  4888. NoUnEquipItem: true
  4889. CalcFlags:
  4890. Def: true
  4891. Def2: true
  4892. Batk: true
  4893. Watk: true
  4894. Flags:
  4895. Debuff: true
  4896. NoSave: true
  4897. - Status: Circle_Of_Fire
  4898. Icon: EFST_CIRCLE_OF_FIRE
  4899. Flags:
  4900. RemoveElementalOption: true
  4901. - Status: Circle_Of_Fire_Option
  4902. Icon: EFST_CIRCLE_OF_FIRE_OPTION
  4903. DurationLookup: EL_CIRCLE_OF_FIRE
  4904. CalcFlags:
  4905. All: true
  4906. Flags:
  4907. RemoveElementalOption: true
  4908. SendVal2: true
  4909. - Status: Fire_Cloak
  4910. Icon: EFST_FIRE_CLOAK
  4911. Flags:
  4912. RemoveElementalOption: true
  4913. - Status: Fire_Cloak_Option
  4914. Icon: EFST_FIRE_CLOAK_OPTION
  4915. DurationLookup: EL_FIRE_CLOAK
  4916. CalcFlags:
  4917. All: true
  4918. Flags:
  4919. RemoveElementalOption: true
  4920. - Status: Water_Screen
  4921. Icon: EFST_WATER_SCREEN
  4922. Flags:
  4923. RemoveElementalOption: true
  4924. - Status: Water_Screen_Option
  4925. Icon: EFST_WATER_SCREEN_OPTION
  4926. DurationLookup: EL_WATER_SCREEN
  4927. CalcFlags:
  4928. All: true
  4929. Flags:
  4930. RemoveElementalOption: true
  4931. - Status: Water_Drop
  4932. Icon: EFST_WATER_DROP
  4933. Flags:
  4934. RemoveElementalOption: true
  4935. - Status: Water_Drop_Option
  4936. Icon: EFST_WATER_DROP_OPTION
  4937. DurationLookup: EL_WATER_DROP
  4938. CalcFlags:
  4939. All: true
  4940. Flags:
  4941. RemoveElementalOption: true
  4942. - Status: Water_Barrier
  4943. Icon: EFST_WATER_BARRIER
  4944. DurationLookup: EL_WATER_BARRIER
  4945. CalcFlags:
  4946. Watk: true
  4947. Flee: true
  4948. Flags:
  4949. RemoveElementalOption: true
  4950. SendVal3: true
  4951. - Status: Wind_Step
  4952. Icon: EFST_WIND_STEP
  4953. Flags:
  4954. RemoveElementalOption: true
  4955. - Status: Wind_Step_Option
  4956. Icon: EFST_WIND_STEP_OPTION
  4957. DurationLookup: EL_WIND_STEP
  4958. CalcFlags:
  4959. Speed: true
  4960. Flee: true
  4961. Flags:
  4962. RemoveElementalOption: true
  4963. - Status: Wind_Curtain
  4964. Icon: EFST_WIND_CURTAIN
  4965. Flags:
  4966. RemoveElementalOption: true
  4967. - Status: Wind_Curtain_Option
  4968. Icon: EFST_WIND_CURTAIN_OPTION
  4969. DurationLookup: EL_WIND_CURTAIN
  4970. CalcFlags:
  4971. All: true
  4972. Flags:
  4973. RemoveElementalOption: true
  4974. - Status: Zephyr
  4975. Icon: EFST_ZEPHYR
  4976. DurationLookup: EL_ZEPHYR
  4977. CalcFlags:
  4978. Flee: true
  4979. Flags:
  4980. RemoveElementalOption: true
  4981. - Status: Solid_Skin
  4982. Icon: EFST_SOLID_SKIN
  4983. Flags:
  4984. RemoveElementalOption: true
  4985. - Status: Solid_Skin_Option
  4986. Icon: EFST_SOLID_SKIN_OPTION
  4987. DurationLookup: EL_SOLID_SKIN
  4988. CalcFlags:
  4989. Def: true
  4990. MaxHp: true
  4991. Flags:
  4992. RemoveElementalOption: true
  4993. - Status: Stone_Shield
  4994. Icon: EFST_STONE_SHIELD
  4995. Flags:
  4996. RemoveElementalOption: true
  4997. - Status: Stone_Shield_Option
  4998. Icon: EFST_STONE_SHIELD_OPTION
  4999. DurationLookup: EL_STONE_SHIELD
  5000. CalcFlags:
  5001. All: true
  5002. Flags:
  5003. RemoveElementalOption: true
  5004. - Status: Power_Of_Gaia
  5005. Icon: EFST_POWER_OF_GAIA
  5006. DurationLookup: EL_POWER_OF_GAIA
  5007. CalcFlags:
  5008. MaxHp: true
  5009. Def: true
  5010. Speed: true
  5011. Flags:
  5012. NoDispell: true
  5013. NoBanishingBuster: true
  5014. NoClearance: true
  5015. NoSave: true
  5016. NoRemoveOnDead: true
  5017. - Status: Pyrotechnic
  5018. Icon: EFST_PYROTECHNIC
  5019. Flags:
  5020. NoDispell: true
  5021. NoBanishingBuster: true
  5022. NoClearance: true
  5023. RemoveElementalOption: true
  5024. - Status: Pyrotechnic_Option
  5025. Icon: EFST_PYROTECHNIC_OPTION
  5026. DurationLookup: EL_PYROTECHNIC
  5027. CalcFlags:
  5028. Watk: true
  5029. Flags:
  5030. NoDispell: true
  5031. NoBanishingBuster: true
  5032. NoClearance: true
  5033. NoRemoveOnDead: true
  5034. NoSave: true
  5035. RemoveElementalOption: true
  5036. SendVal3: true
  5037. - Status: Heater
  5038. Icon: EFST_HEATER
  5039. Flags:
  5040. NoDispell: true
  5041. NoBanishingBuster: true
  5042. NoClearance: true
  5043. RemoveElementalOption: true
  5044. - Status: Heater_Option
  5045. Icon: EFST_HEATER_OPTION
  5046. DurationLookup: EL_HEATER
  5047. CalcFlags:
  5048. Watk: true
  5049. Flags:
  5050. NoDispell: true
  5051. NoBanishingBuster: true
  5052. NoClearance: true
  5053. NoRemoveOnDead: true
  5054. NoSave: true
  5055. RemoveElementalOption: true
  5056. SendVal3: true
  5057. - Status: Tropic
  5058. Icon: EFST_TROPIC
  5059. Flags:
  5060. NoDispell: true
  5061. NoBanishingBuster: true
  5062. NoClearance: true
  5063. RemoveElementalOption: true
  5064. - Status: Tropic_Option
  5065. Icon: EFST_TROPIC_OPTION
  5066. DurationLookup: EL_TROPIC
  5067. CalcFlags:
  5068. Watk: true
  5069. Flags:
  5070. NoDispell: true
  5071. NoBanishingBuster: true
  5072. NoClearance: true
  5073. NoRemoveOnDead: true
  5074. NoSave: true
  5075. RemoveElementalOption: true
  5076. - Status: Aquaplay
  5077. Icon: EFST_AQUAPLAY
  5078. Flags:
  5079. NoDispell: true
  5080. NoBanishingBuster: true
  5081. NoClearance: true
  5082. RemoveElementalOption: true
  5083. - Status: Aquaplay_Option
  5084. Icon: EFST_AQUAPLAY_OPTION
  5085. DurationLookup: EL_AQUAPLAY
  5086. CalcFlags:
  5087. Matk: true
  5088. Flags:
  5089. NoDispell: true
  5090. NoBanishingBuster: true
  5091. NoClearance: true
  5092. NoRemoveOnDead: true
  5093. NoSave: true
  5094. RemoveElementalOption: true
  5095. SendVal3: true
  5096. - Status: Cooler
  5097. Icon: EFST_COOLER
  5098. Flags:
  5099. NoDispell: true
  5100. NoBanishingBuster: true
  5101. NoClearance: true
  5102. RemoveElementalOption: true
  5103. - Status: Cooler_Option
  5104. Icon: EFST_COOLER_OPTION
  5105. DurationLookup: EL_COOLER
  5106. CalcFlags:
  5107. Matk: true
  5108. Flags:
  5109. NoDispell: true
  5110. NoBanishingBuster: true
  5111. NoClearance: true
  5112. NoRemoveOnDead: true
  5113. NoSave: true
  5114. RemoveElementalOption: true
  5115. SendVal3: true
  5116. - Status: Chilly_Air
  5117. Icon: EFST_CHILLY_AIR
  5118. Flags:
  5119. NoDispell: true
  5120. NoBanishingBuster: true
  5121. NoClearance: true
  5122. RemoveElementalOption: true
  5123. - Status: Chilly_Air_Option
  5124. Icon: EFST_CHILLY_AIR_OPTION
  5125. DurationLookup: EL_CHILLY_AIR
  5126. CalcFlags:
  5127. Matk: true
  5128. Flags:
  5129. NoDispell: true
  5130. NoBanishingBuster: true
  5131. NoClearance: true
  5132. NoRemoveOnDead: true
  5133. NoSave: true
  5134. RemoveElementalOption: true
  5135. SendVal2: true
  5136. - Status: Gust
  5137. Icon: EFST_GUST
  5138. Flags:
  5139. NoDispell: true
  5140. NoBanishingBuster: true
  5141. NoClearance: true
  5142. RemoveElementalOption: true
  5143. - Status: Gust_Option
  5144. Icon: EFST_GUST_OPTION
  5145. DurationLookup: EL_GUST
  5146. CalcFlags:
  5147. Aspd: true
  5148. Flags:
  5149. NoDispell: true
  5150. NoBanishingBuster: true
  5151. NoClearance: true
  5152. NoRemoveOnDead: true
  5153. NoSave: true
  5154. RemoveElementalOption: true
  5155. SendVal2: true
  5156. - Status: Blast
  5157. Icon: EFST_BLAST
  5158. Flags:
  5159. NoDispell: true
  5160. NoBanishingBuster: true
  5161. NoClearance: true
  5162. RemoveElementalOption: true
  5163. - Status: Blast_Option
  5164. Icon: EFST_BLAST_OPTION
  5165. DurationLookup: EL_BLAST
  5166. CalcFlags:
  5167. Aspd: true
  5168. Flags:
  5169. NoDispell: true
  5170. NoBanishingBuster: true
  5171. NoClearance: true
  5172. NoRemoveOnDead: true
  5173. NoSave: true
  5174. RemoveElementalOption: true
  5175. SendVal3: true
  5176. - Status: Wild_Storm
  5177. Icon: EFST_WILD_STORM
  5178. Flags:
  5179. NoDispell: true
  5180. NoBanishingBuster: true
  5181. NoClearance: true
  5182. RemoveElementalOption: true
  5183. - Status: Wild_Storm_Option
  5184. Icon: EFST_WILD_STORM_OPTION
  5185. DurationLookup: EL_WILD_STORM
  5186. CalcFlags:
  5187. Aspd: true
  5188. Flags:
  5189. NoDispell: true
  5190. NoBanishingBuster: true
  5191. NoClearance: true
  5192. NoRemoveOnDead: true
  5193. NoSave: true
  5194. RemoveElementalOption: true
  5195. SendVal2: true
  5196. - Status: Petrology
  5197. Icon: EFST_PETROLOGY
  5198. Flags:
  5199. NoDispell: true
  5200. NoBanishingBuster: true
  5201. NoClearance: true
  5202. RemoveElementalOption: true
  5203. - Status: Petrology_Option
  5204. Icon: EFST_PETROLOGY_OPTION
  5205. DurationLookup: EL_PETROLOGY
  5206. CalcFlags:
  5207. MaxHp: true
  5208. Flags:
  5209. NoDispell: true
  5210. NoBanishingBuster: true
  5211. NoClearance: true
  5212. NoRemoveOnDead: true
  5213. NoSave: true
  5214. RemoveElementalOption: true
  5215. SendVal3: true
  5216. - Status: Cursed_Soil
  5217. Icon: EFST_CURSED_SOIL
  5218. Flags:
  5219. NoDispell: true
  5220. NoBanishingBuster: true
  5221. NoClearance: true
  5222. RemoveElementalOption: true
  5223. - Status: Cursed_Soil_Option
  5224. Icon: EFST_CURSED_SOIL_OPTION
  5225. DurationLookup: EL_CURSED_SOIL
  5226. CalcFlags:
  5227. MaxHp: true
  5228. Flags:
  5229. NoDispell: true
  5230. NoBanishingBuster: true
  5231. NoClearance: true
  5232. NoRemoveOnDead: true
  5233. NoSave: true
  5234. RemoveElementalOption: true
  5235. SendVal3: true
  5236. - Status: Upheaval
  5237. Icon: EFST_UPHEAVAL
  5238. Flags:
  5239. NoDispell: true
  5240. NoBanishingBuster: true
  5241. NoClearance: true
  5242. RemoveElementalOption: true
  5243. - Status: Upheaval_Option
  5244. Icon: EFST_UPHEAVAL_OPTION
  5245. DurationLookup: EL_UPHEAVAL
  5246. CalcFlags:
  5247. MaxHp: true
  5248. Flags:
  5249. NoDispell: true
  5250. NoBanishingBuster: true
  5251. NoClearance: true
  5252. NoRemoveOnDead: true
  5253. NoSave: true
  5254. RemoveElementalOption: true
  5255. SendVal2: true
  5256. - Status: Tidal_Weapon
  5257. Icon: EFST_TIDAL_WEAPON
  5258. Flags:
  5259. NoDispell: true
  5260. NoBanishingBuster: true
  5261. NoClearance: true
  5262. RemoveElementalOption: true
  5263. - Status: Tidal_Weapon_Option
  5264. Icon: EFST_TIDAL_WEAPON_OPTION
  5265. DurationLookup: EL_TIDAL_WEAPON
  5266. CalcFlags:
  5267. All: true
  5268. Flags:
  5269. NoDispell: true
  5270. NoBanishingBuster: true
  5271. NoClearance: true
  5272. NoRemoveOnDead: true
  5273. NoSave: true
  5274. RemoveElementalOption: true
  5275. - Status: Rock_Crusher
  5276. Icon: EFST_ROCK_CRUSHER
  5277. DurationLookup: EL_ROCK_CRUSHER
  5278. CalcFlags:
  5279. Def: true
  5280. Flags:
  5281. NoDispell: true
  5282. NoBanishingBuster: true
  5283. NoClearance: true
  5284. - Status: Rock_Crusher_Atk
  5285. Icon: EFST_ROCK_CRUSHER_ATK
  5286. DurationLookup: EL_ROCK_CRUSHER_ATK
  5287. CalcFlags:
  5288. Speed: true
  5289. Flags:
  5290. NoDispell: true
  5291. NoBanishingBuster: true
  5292. NoClearance: true
  5293. - Status: Leadership
  5294. DurationLookup: GD_LEADERSHIP
  5295. CalcFlags:
  5296. Str: true
  5297. Flags:
  5298. NoClearbuff: true
  5299. NoSave: true
  5300. NoDispell: true
  5301. NoBanishingBuster: true
  5302. NoClearance: true
  5303. - Status: Glorywounds
  5304. DurationLookup: GD_GLORYWOUNDS
  5305. CalcFlags:
  5306. Vit: true
  5307. Flags:
  5308. NoClearbuff: true
  5309. NoSave: true
  5310. NoDispell: true
  5311. NoBanishingBuster: true
  5312. NoClearance: true
  5313. - Status: Soulcold
  5314. DurationLookup: GD_SOULCOLD
  5315. CalcFlags:
  5316. Agi: true
  5317. Flags:
  5318. NoClearbuff: true
  5319. NoSave: true
  5320. NoDispell: true
  5321. NoBanishingBuster: true
  5322. NoClearance: true
  5323. - Status: Hawkeyes
  5324. DurationLookup: GD_HAWKEYES
  5325. CalcFlags:
  5326. Dex: true
  5327. Flags:
  5328. NoClearbuff: true
  5329. NoSave: true
  5330. NoDispell: true
  5331. NoBanishingBuster: true
  5332. NoClearance: true
  5333. - Status: Odins_Power
  5334. Icon: EFST_ODINS_POWER
  5335. DurationLookup: ALL_ODINS_POWER
  5336. CalcFlags:
  5337. Watk: true
  5338. Matk: true
  5339. Mdef: true
  5340. Def: true
  5341. - Status: Raid
  5342. Icon: EFST_RAID
  5343. DurationLookup: RG_RAID
  5344. Flags:
  5345. NoDispell: true
  5346. NoBanishingBuster: true
  5347. NoClearance: true
  5348. - Status: Fire_Insignia
  5349. Icon: EFST_FIRE_INSIGNIA
  5350. DurationLookup: SO_FIRE_INSIGNIA
  5351. CalcFlags:
  5352. Matk: true
  5353. Watk: true
  5354. Atk_Ele: true
  5355. Regen: true
  5356. Flags:
  5357. NoDispell: true
  5358. NoBanishingBuster: true
  5359. NoClearance: true
  5360. NoSave: true
  5361. - Status: Water_Insignia
  5362. Icon: EFST_WATER_INSIGNIA
  5363. DurationLookup: SO_FIRE_INSIGNIA
  5364. CalcFlags:
  5365. Matk: true
  5366. Watk: true
  5367. Atk_Ele: true
  5368. Regen: true
  5369. Flags:
  5370. NoDispell: true
  5371. NoBanishingBuster: true
  5372. NoClearance: true
  5373. NoSave: true
  5374. - Status: Wind_Insignia
  5375. Icon: EFST_WIND_INSIGNIA
  5376. DurationLookup: SO_WATER_INSIGNIA
  5377. CalcFlags:
  5378. Matk: true
  5379. Watk: true
  5380. Aspd: true
  5381. Atk_Ele: true
  5382. Regen: true
  5383. Flags:
  5384. NoDispell: true
  5385. NoBanishingBuster: true
  5386. NoClearance: true
  5387. NoSave: true
  5388. - Status: Earth_Insignia
  5389. Icon: EFST_EARTH_INSIGNIA
  5390. DurationLookup: SO_WIND_INSIGNIA
  5391. CalcFlags:
  5392. Mdef: true
  5393. Def: true
  5394. MaxHp: true
  5395. MaxSp: true
  5396. Matk: true
  5397. Watk: true
  5398. Atk_Ele: true
  5399. Regen: true
  5400. Flags:
  5401. NoDispell: true
  5402. NoBanishingBuster: true
  5403. NoClearance: true
  5404. NoSave: true
  5405. - Status: Push_Cart
  5406. Icon: EFST_ON_PUSH_CART
  5407. CalcFlags:
  5408. Speed: true
  5409. Flags:
  5410. DisplayPc: true
  5411. NoRemoveOnDead: true
  5412. NoClearbuff: true
  5413. NoDispell: true
  5414. NoBanishingBuster: true
  5415. NoClearance: true
  5416. SendVal1: true
  5417. OverlapIgnoreLevel: true
  5418. NoForcedEnd: true
  5419. - Status: Spellbook1
  5420. Icon: EFST_SPELLBOOK1
  5421. Flags:
  5422. NoClearance: true
  5423. - Status: Spellbook2
  5424. Icon: EFST_SPELLBOOK2
  5425. Flags:
  5426. NoClearance: true
  5427. - Status: Spellbook3
  5428. Icon: EFST_SPELLBOOK3
  5429. Flags:
  5430. NoClearance: true
  5431. - Status: Spellbook4
  5432. Icon: EFST_SPELLBOOK4
  5433. Flags:
  5434. NoClearance: true
  5435. - Status: Spellbook5
  5436. Icon: EFST_SPELLBOOK5
  5437. Flags:
  5438. NoClearance: true
  5439. - Status: Spellbook6
  5440. Icon: EFST_SPELLBOOK6
  5441. Flags:
  5442. NoClearance: true
  5443. - Status: Maxspellbook
  5444. Icon: EFST_SPELLBOOK7
  5445. Flags:
  5446. NoClearance: true
  5447. - Status: Incmhp
  5448. Flags:
  5449. NoRemoveOnDead: true
  5450. NoClearbuff: true
  5451. NoDispell: true
  5452. NoBanishingBuster: true
  5453. CalcFlags:
  5454. MaxHp: true
  5455. - Status: Incmsp
  5456. Flags:
  5457. NoRemoveOnDead: true
  5458. NoClearbuff: true
  5459. NoDispell: true
  5460. NoBanishingBuster: true
  5461. CalcFlags:
  5462. MaxSp: true
  5463. - Status: Partyflee
  5464. Icon: EFST_PARTYFLEE
  5465. DurationLookup: ALL_PARTYFLEE
  5466. Flags:
  5467. NoClearance: true
  5468. NoBanishingBuster: true
  5469. - Status: Meikyousisui
  5470. Icon: EFST_MEIKYOUSISUI
  5471. DurationLookup: KO_MEIKYOUSISUI
  5472. States:
  5473. NoMove: true
  5474. Flags:
  5475. StopWalking: true
  5476. NoDispell: true
  5477. NoBanishingBuster: true
  5478. NoClearance: true
  5479. - Status: Jyumonjikiri
  5480. Icon: EFST_KO_JYUMONJIKIRI
  5481. DurationLookup: KO_JYUMONJIKIRI
  5482. Flags:
  5483. BlEffect: true
  5484. DisplayPc: true
  5485. - Status: Kyougaku
  5486. Icon: EFST_KYOUGAKU
  5487. DurationLookup: KO_KYOUGAKU
  5488. States:
  5489. NoMove: true
  5490. NoEquipItem: true
  5491. NoUnEquipItem: true
  5492. CalcFlags:
  5493. Str: true
  5494. Agi: true
  5495. Vit: true
  5496. Int: true
  5497. Dex: true
  5498. Luk: true
  5499. Flags:
  5500. StopWalking: true
  5501. NoSave: true
  5502. Debuff: true
  5503. - Status: Izayoi
  5504. Icon: EFST_IZAYOI
  5505. DurationLookup: KO_IZAYOI
  5506. CalcFlags:
  5507. Matk: true
  5508. - Status: Zenkai
  5509. Icon: EFST_ZENKAI
  5510. DurationLookup: KO_ZENKAI
  5511. - Status: Kagehumi
  5512. Icon: EFST_KG_KAGEHUMI
  5513. DurationLookup: KG_KAGEHUMI
  5514. States:
  5515. NoMove: true
  5516. NoConsumeItem: true
  5517. - Status: Kyomu
  5518. Icon: EFST_KYOMU
  5519. DurationLookup: KG_KYOMU
  5520. - Status: Kagemusya
  5521. Icon: EFST_KAGEMUSYA
  5522. DurationLookup: KG_KAGEMUSYA
  5523. - Status: Zangetsu
  5524. Icon: EFST_ZANGETSU
  5525. DurationLookup: OB_ZANGETSU
  5526. CalcFlags:
  5527. Matk: true
  5528. Batk: true
  5529. - Status: Gensou
  5530. Icon: EFST_GENSOU
  5531. DurationLookup: OB_OBOROGENSOU
  5532. - Status: Akaitsuki
  5533. Icon: EFST_AKAITSUKI
  5534. DurationLookup: OB_AKAITSUKI
  5535. Flags:
  5536. BlEffect: true
  5537. DisplayPc: true
  5538. Debuff: true
  5539. - Status: Style_Change
  5540. DurationLookup: MH_STYLE_CHANGE
  5541. Flags:
  5542. NoRemoveOnDead: true
  5543. NoClearbuff: true
  5544. NoDispell: true
  5545. NoBanishingBuster: true
  5546. NoClearance: true
  5547. NoForcedEnd: true
  5548. - Status: Tinder_Breaker
  5549. Icon: EFST_TINDER_BREAKER_POSTDELAY
  5550. DurationLookup: MH_TINDER_BREAKER
  5551. CalcFlags:
  5552. Flee: true
  5553. Flags:
  5554. NoSave: true
  5555. RemoveOnChangeMap: true
  5556. - Status: Tinder_Breaker2
  5557. Icon: EFST_TINDER_BREAKER
  5558. DurationLookup: MH_TINDER_BREAKER
  5559. CalcFlags:
  5560. Flee: true
  5561. Flags:
  5562. NoSave: true
  5563. RemoveOnChangeMap: true
  5564. Fail:
  5565. Tinder_Breaker2: true
  5566. - Status: Cbc
  5567. Icon: EFST_CBC
  5568. DurationLookup: MH_CBC
  5569. CalcFlags:
  5570. Flee: true
  5571. Flags:
  5572. NoSave: true
  5573. - Status: Eqc
  5574. Icon: EFST_EQC
  5575. DurationLookup: MH_EQC
  5576. CalcFlags:
  5577. Def2: true
  5578. MaxHp: true
  5579. Flags:
  5580. NoSave: true
  5581. EndOnStart:
  5582. Tinder_Breaker2: true
  5583. - Status: Goldene_Ferse
  5584. Icon: EFST_GOLDENE_FERSE
  5585. DurationLookup: MH_GOLDENE_FERSE
  5586. CalcFlags:
  5587. Aspd: true
  5588. Flee: true
  5589. Flags:
  5590. NoDispell: true
  5591. NoBanishingBuster: true
  5592. NoClearance: true
  5593. Fail:
  5594. Angriffs_Modus: true
  5595. - Status: Angriffs_Modus
  5596. Icon: EFST_ANGRIFFS_MODUS
  5597. DurationLookup: MH_ANGRIFFS_MODUS
  5598. CalcFlags:
  5599. Batk: true
  5600. Def: true
  5601. Flee: true
  5602. MaxHp: true
  5603. Flags:
  5604. NoDispell: true
  5605. NoBanishingBuster: true
  5606. NoClearance: true
  5607. Fail:
  5608. Goldene_Ferse: true
  5609. - Status: Overed_Boost
  5610. Icon: EFST_OVERED_BOOST
  5611. DurationLookup: MH_OVERED_BOOST
  5612. CalcFlags:
  5613. Flee: true
  5614. Aspd: true
  5615. Def: true
  5616. Flags:
  5617. NoDispell: true
  5618. NoBanishingBuster: true
  5619. NoClearance: true
  5620. EndOnStart:
  5621. Overed_Boost: true
  5622. - Status: Light_Of_Regene
  5623. Icon: EFST_LIGHT_OF_REGENE
  5624. DurationLookup: MH_LIGHT_OF_REGENE
  5625. Flags:
  5626. NoRemoveOnDead: true
  5627. NoDispell: true
  5628. NoBanishingBuster: true
  5629. NoClearance: true
  5630. - Status: Ash
  5631. Icon: EFST_VOLCANIC_ASH
  5632. DurationLookup: MH_VOLCANIC_ASH
  5633. CalcFlags:
  5634. Def: true
  5635. Def2: true
  5636. Hit: true
  5637. Batk: true
  5638. Flee: true
  5639. - Status: Granitic_Armor
  5640. Icon: EFST_GRANITIC_ARMOR
  5641. DurationLookup: MH_GRANITIC_ARMOR
  5642. - Status: Magma_Flow
  5643. Icon: EFST_MAGMA_FLOW
  5644. DurationLookup: MH_MAGMA_FLOW
  5645. - Status: Pyroclastic
  5646. Icon: EFST_PYROCLASTIC
  5647. DurationLookup: MH_PYROCLASTIC
  5648. CalcFlags:
  5649. Batk: true
  5650. Watk: true
  5651. - Status: Paralysis
  5652. Icon: EFST_NEEDLE_OF_PARALYZE
  5653. DurationLookup: MH_NEEDLE_OF_PARALYZE
  5654. States:
  5655. NoMove: true
  5656. CalcFlags:
  5657. Def2: true
  5658. Flags:
  5659. BossResist: true
  5660. StopWalking: true
  5661. NoRemoveOnDead: true
  5662. NoDispell: true
  5663. NoBanishingBuster: true
  5664. NoClearance: true
  5665. - Status: Pain_Killer
  5666. Icon: EFST_PAIN_KILLER
  5667. DurationLookup: MH_PAIN_KILLER
  5668. Flags:
  5669. NoRemoveOnDead: true
  5670. NoDispell: true
  5671. NoBanishingBuster: true
  5672. NoClearance: true
  5673. - Status: Hanbok
  5674. States:
  5675. NoAttack: true
  5676. Options:
  5677. Hanbok: true
  5678. Flags:
  5679. SendLook: true
  5680. StopAttacking: true
  5681. NoRemoveOnDead: true
  5682. NoClearbuff: true
  5683. NoDispell: true
  5684. NoBanishingBuster: true
  5685. NoClearance: true
  5686. - Status: Defset
  5687. Icon: EFST_SET_NUM_DEF
  5688. CalcFlags:
  5689. Def: true
  5690. Fail:
  5691. Defset: true
  5692. - Status: Mdefset
  5693. Icon: EFST_SET_NUM_MDEF
  5694. CalcFlags:
  5695. Mdef: true
  5696. Fail:
  5697. Mdefset: true
  5698. - Status: Darkcrow
  5699. Icon: EFST_DARKCROW
  5700. DurationLookup: GC_DARKCROW
  5701. Flags:
  5702. BlEffect: true
  5703. DisplayPc: true
  5704. - Status: Full_Throttle
  5705. Icon: EFST_FULL_THROTTLE
  5706. DurationLookup: ALL_FULL_THROTTLE
  5707. CalcFlags:
  5708. Speed: true
  5709. Str: true
  5710. Agi: true
  5711. Vit: true
  5712. Int: true
  5713. Dex: true
  5714. Luk: true
  5715. Flags:
  5716. NoDispell: true
  5717. NoBanishingBuster: true
  5718. NoClearance: true
  5719. - Status: Rebound
  5720. Icon: EFST_REBOUND
  5721. CalcFlags:
  5722. Speed: true
  5723. Regen: true
  5724. Flags:
  5725. NoDispell: true
  5726. NoBanishingBuster: true
  5727. NoClearance: true
  5728. - Status: Unlimit
  5729. Icon: EFST_UNLIMIT
  5730. DurationLookup: RA_UNLIMIT
  5731. Flags:
  5732. DisplayPc: true
  5733. - Status: Kings_Grace
  5734. Icon: EFST_KINGS_GRACE
  5735. DurationLookup: LG_KINGS_GRACE
  5736. States:
  5737. NoCast: true
  5738. NoAttack: true
  5739. NoMove: true
  5740. NoConsumeItem: true
  5741. Flags:
  5742. StopAttacking: true
  5743. StopWalking: true
  5744. StopCasting: true
  5745. Fail:
  5746. Devotion: true
  5747. Whiteimprison: true
  5748. EndOnStart:
  5749. Poison: true
  5750. Blind: true
  5751. Freeze: true
  5752. Stone: true
  5753. Stun: true
  5754. Sleep: true
  5755. Bleeding: true
  5756. Curse: true
  5757. Confusion: true
  5758. Hallucination: true
  5759. Silence: true
  5760. Burning: true
  5761. Crystalize: true
  5762. Freezing: true
  5763. Deepsleep: true
  5764. Fear: true
  5765. Mandragora: true
  5766. - Status: Telekinesis_Intense
  5767. Icon: EFST_TELEKINESIS_INTENSE
  5768. DurationLookup: WL_TELEKINESIS_INTENSE
  5769. Flags:
  5770. DisplayPc: true
  5771. NoDispell: true
  5772. NoBanishingBuster: true
  5773. NoClearance: true
  5774. CalcFlags:
  5775. Matk: true
  5776. - Status: Offertorium
  5777. Icon: EFST_OFFERTORIUM
  5778. DurationLookup: AB_OFFERTORIUM
  5779. Flags:
  5780. DisplayPc: true
  5781. Fail:
  5782. Magnificat: true
  5783. EndOnStart:
  5784. Magnificat: true
  5785. Blind: true
  5786. Curse: true
  5787. Poison: true
  5788. Hallucination: true
  5789. Confusion: true
  5790. Bleeding: true
  5791. Burning: true
  5792. Freezing: true
  5793. Mandragora: true
  5794. Paralyse: true
  5795. Pyrexia: true
  5796. Deathhurt: true
  5797. LeechesEnd: true
  5798. Venombleed: true
  5799. Toxin: true
  5800. Magicmushroom: true
  5801. - Status: Frigg_Song
  5802. Icon: EFST_FRIGG_SONG
  5803. DurationLookup: WM_FRIGG_SONG
  5804. CalcFlags:
  5805. MaxHp: true
  5806. - Status: Monster_Transform
  5807. Icon: EFST_MONSTER_TRANSFORM
  5808. Flags:
  5809. DisplayPc: true
  5810. NoClearbuff: true
  5811. NoDispell: true
  5812. NoBanishingBuster: true
  5813. NoClearance: true
  5814. SendVal1: true
  5815. - Status: Angel_Protect
  5816. Icon: EFST_ANGEL_PROTECT
  5817. Flags:
  5818. NoClearance: true
  5819. NoBanishingBuster: true
  5820. NoDispell: true
  5821. - Status: Illusiondoping
  5822. Icon: EFST_ILLUSIONDOPING
  5823. DurationLookup: GN_ILLUSIONDOPING
  5824. CalcFlags:
  5825. Hit: true
  5826. Flags:
  5827. BlEffect: true
  5828. DisplayPc: true
  5829. - Status: Flashcombo
  5830. Icon: EFST_FLASHCOMBO
  5831. DurationLookup: SR_FLASHCOMBO
  5832. CalcFlags:
  5833. Watk: true
  5834. - Status: Moonstar
  5835. Icon: EFST_MOONSTAR
  5836. Flags:
  5837. NoSave: true
  5838. BlEffect: true
  5839. DisplayPc: true
  5840. NoRemoveOnDead: true
  5841. NoClearbuff: true
  5842. NoDispell: true
  5843. NoBanishingBuster: true
  5844. NoClearance: true
  5845. - Status: Super_Star
  5846. Icon: EFST_SUPER_STAR
  5847. Flags:
  5848. NoSave: true
  5849. BlEffect: true
  5850. DisplayPc: true
  5851. NoRemoveOnDead: true
  5852. NoClearbuff: true
  5853. NoDispell: true
  5854. NoBanishingBuster: true
  5855. NoClearance: true
  5856. - Status: Heat_Barrel
  5857. Icon: EFST_HEAT_BARREL
  5858. DurationLookup: RL_HEAT_BARREL
  5859. CalcFlags:
  5860. Hit: true
  5861. Aspd: true
  5862. Flags:
  5863. NoSave: true
  5864. NoDispell: true
  5865. NoBanishingBuster: true
  5866. NoClearance: true
  5867. RemoveOnUnequip: true
  5868. Fail:
  5869. P_Alter: true
  5870. MadnessCancel: true
  5871. - Status: Magicalbullet
  5872. Icon: EFST_GS_MAGICAL_BULLET
  5873. DurationLookup: GS_MAGICALBULLET
  5874. - Status: P_Alter
  5875. Icon: EFST_P_ALTER
  5876. DurationLookup: RL_P_ALTER
  5877. Flags:
  5878. NoSave: true
  5879. NoDispell: true
  5880. NoBanishingBuster: true
  5881. NoClearance: true
  5882. Fail:
  5883. Heat_Barrel: true
  5884. MadnessCancel: true
  5885. - Status: E_Chain
  5886. Icon: EFST_E_CHAIN
  5887. DurationLookup: RL_E_CHAIN
  5888. Flags:
  5889. NoSave: true
  5890. NoDispell: true
  5891. NoBanishingBuster: true
  5892. NoClearance: true
  5893. - Status: C_Marker
  5894. Icon: EFST_C_MARKER
  5895. DurationLookup: RL_C_MARKER
  5896. CalcFlags:
  5897. Flee: true
  5898. Flags:
  5899. BlEffect: true
  5900. DisplayPc: true
  5901. NoSave: true
  5902. NoDispell: true
  5903. NoBanishingBuster: true
  5904. NoClearance: true
  5905. - Status: Anti_M_Blast
  5906. Icon: EFST_ANTI_M_BLAST
  5907. DurationLookup: RL_AM_BLAST
  5908. Flags:
  5909. BlEffect: true
  5910. DisplayPc: true
  5911. Debuff: true
  5912. NoDispell: true
  5913. NoBanishingBuster: true
  5914. NoClearance: true
  5915. - Status: B_Trap
  5916. Icon: EFST_B_TRAP
  5917. DurationLookup: RL_B_TRAP
  5918. CalcFlags:
  5919. Speed: true
  5920. Flags:
  5921. Debuff: true
  5922. NoDispell: true
  5923. NoBanishingBuster: true
  5924. NoClearance: true
  5925. - Status: H_Mine
  5926. Icon: EFST_H_MINE
  5927. DurationLookup: RL_H_MINE
  5928. Flags:
  5929. Debuff: true
  5930. NoDispell: true
  5931. NoBanishingBuster: true
  5932. NoClearance: true
  5933. - Status: Qd_Shot_Ready
  5934. Icon: EFST_E_QD_SHOT_READY
  5935. Flags:
  5936. NoSave: true
  5937. - Status: Mtf_Aspd
  5938. Icon: EFST_MTF_ASPD
  5939. CalcFlags:
  5940. Aspd: true
  5941. Hit: true
  5942. Flags:
  5943. NoRemoveOnDead: true
  5944. NoClearbuff: true
  5945. NoDispell: true
  5946. NoBanishingBuster: true
  5947. NoClearance: true
  5948. NoForcedEnd: true
  5949. - Status: Mtf_Rangeatk
  5950. Icon: EFST_MTF_RANGEATK
  5951. CalcFlags:
  5952. Batk: true
  5953. Watk: true
  5954. Flags:
  5955. NoRemoveOnDead: true
  5956. NoClearbuff: true
  5957. NoDispell: true
  5958. NoBanishingBuster: true
  5959. NoClearance: true
  5960. NoForcedEnd: true
  5961. - Status: Mtf_Matk
  5962. Icon: EFST_MTF_MATK
  5963. CalcFlags:
  5964. Matk: true
  5965. Flags:
  5966. NoRemoveOnDead: true
  5967. NoClearbuff: true
  5968. NoDispell: true
  5969. NoBanishingBuster: true
  5970. NoClearance: true
  5971. NoForcedEnd: true
  5972. - Status: Mtf_Mleatked
  5973. Icon: EFST_MTF_MLEATKED
  5974. CalcFlags:
  5975. All: true
  5976. Flags:
  5977. NoRemoveOnDead: true
  5978. NoClearbuff: true
  5979. NoDispell: true
  5980. NoBanishingBuster: true
  5981. NoClearance: true
  5982. NoForcedEnd: true
  5983. - Status: Mtf_Cridamage
  5984. Icon: EFST_MTF_CRIDAMAGE
  5985. CalcFlags:
  5986. All: true
  5987. Flags:
  5988. NoRemoveOnDead: true
  5989. NoClearbuff: true
  5990. NoDispell: true
  5991. NoBanishingBuster: true
  5992. NoClearance: true
  5993. NoForcedEnd: true
  5994. - Status: Oktoberfest
  5995. States:
  5996. NoAttack: true
  5997. Options:
  5998. Oktoberfest: true
  5999. Flags:
  6000. SendLook: true
  6001. StopAttacking: true
  6002. NoRemoveOnDead: true
  6003. NoDispell: true
  6004. NoBanishingBuster: true
  6005. NoClearance: true
  6006. - Status: Strangelights
  6007. Icon: EFST_STRANGELIGHTS
  6008. Flags:
  6009. NoSave: true
  6010. DisplayPc: true
  6011. NoRemoveOnDead: true
  6012. NoClearbuff: true
  6013. NoDispell: true
  6014. NoBanishingBuster: true
  6015. NoClearance: true
  6016. BlEffect: true
  6017. - Status: Decoration_Of_Music
  6018. Icon: EFST_DECORATION_OF_MUSIC
  6019. Flags:
  6020. NoSave: true
  6021. DisplayPc: true
  6022. NoRemoveOnDead: true
  6023. NoClearbuff: true
  6024. NoDispell: true
  6025. NoBanishingBuster: true
  6026. NoClearance: true
  6027. BlEffect: true
  6028. - Status: Quest_Buff1
  6029. Icon: EFST_QUEST_BUFF1
  6030. CalcFlags:
  6031. Batk: true
  6032. Matk: true
  6033. Flags:
  6034. NoRemoveOnDead: true
  6035. NoClearbuff: true
  6036. NoDispell: true
  6037. NoBanishingBuster: true
  6038. NoClearance: true
  6039. - Status: Quest_Buff2
  6040. Icon: EFST_QUEST_BUFF2
  6041. CalcFlags:
  6042. Batk: true
  6043. Matk: true
  6044. Flags:
  6045. NoRemoveOnDead: true
  6046. NoClearbuff: true
  6047. NoDispell: true
  6048. NoBanishingBuster: true
  6049. NoClearance: true
  6050. - Status: Quest_Buff3
  6051. Icon: EFST_QUEST_BUFF3
  6052. CalcFlags:
  6053. Batk: true
  6054. Matk: true
  6055. Flags:
  6056. NoRemoveOnDead: true
  6057. NoClearbuff: true
  6058. NoDispell: true
  6059. NoBanishingBuster: true
  6060. NoClearance: true
  6061. - Status: All_Riding
  6062. Icon: EFST_ALL_RIDING
  6063. States:
  6064. NoAttack: true
  6065. CalcFlags:
  6066. Speed: true
  6067. Flags:
  6068. BlEffect: true
  6069. DisplayPc: true
  6070. NoClearbuff: true
  6071. NoDispell: true
  6072. NoBanishingBuster: true
  6073. NoClearance: true
  6074. NoForcedEnd: true
  6075. EndReturn:
  6076. All_Riding: true
  6077. - Status: Teargas_Sob
  6078. Flags:
  6079. BossResist: true
  6080. - Status: _Feintbomb
  6081. DurationLookup: SC_FEINTBOMB
  6082. States:
  6083. NoPickItem: true
  6084. Options:
  6085. Invisible: true
  6086. Flags:
  6087. UnitMove: true
  6088. OnTouch: true
  6089. StopAttacking: true
  6090. - Status: _Chaos
  6091. Flags:
  6092. StopWalking: true
  6093. Fail:
  6094. _Chaos: true
  6095. - Status: Chasewalk2
  6096. Icon: EFST_CHASEWALK2
  6097. CalcFlags:
  6098. Str: true
  6099. Flags:
  6100. NoSave: true
  6101. NoClearance: true
  6102. RemoveOnChangeMap: true
  6103. NoBanishingBuster: true
  6104. NoDispell: true
  6105. RemoveOnHermode: true
  6106. - Status: Extremityfist2
  6107. Icon: EFST_EXTREMITYFIST
  6108. DurationLookup: MO_EXTREMITYFIST
  6109. Flags:
  6110. NoRemoveOnDead: true
  6111. NoDispell: true
  6112. NoBanishingBuster: true
  6113. NoClearance: true
  6114. - Status: Mtf_Aspd2
  6115. Icon: EFST_MTF_ASPD2
  6116. CalcFlags:
  6117. Aspd: true
  6118. Hit: true
  6119. Flags:
  6120. NoRemoveOnDead: true
  6121. NoClearbuff: true
  6122. NoDispell: true
  6123. NoBanishingBuster: true
  6124. NoClearance: true
  6125. NoForcedEnd: true
  6126. - Status: Mtf_Rangeatk2
  6127. Icon: EFST_MTF_RANGEATK2
  6128. CalcFlags:
  6129. Aspd: true
  6130. Flags:
  6131. NoRemoveOnDead: true
  6132. NoClearbuff: true
  6133. NoDispell: true
  6134. NoBanishingBuster: true
  6135. NoClearance: true
  6136. NoForcedEnd: true
  6137. - Status: Mtf_Matk2
  6138. Icon: EFST_MTF_MATK2
  6139. CalcFlags:
  6140. Matk: true
  6141. Flags:
  6142. NoRemoveOnDead: true
  6143. NoClearbuff: true
  6144. NoDispell: true
  6145. NoBanishingBuster: true
  6146. NoClearance: true
  6147. NoForcedEnd: true
  6148. - Status: 2011rwc_Scroll
  6149. Icon: EFST_2011RWC_SCROLL
  6150. CalcFlags:
  6151. Batk: true
  6152. Matk: true
  6153. Aspd: true
  6154. MaxHp: true
  6155. MaxSp: true
  6156. Flags:
  6157. NoClearbuff: true
  6158. NoDispell: true
  6159. NoBanishingBuster: true
  6160. NoClearance: true
  6161. - Status: Jp_Event04
  6162. Icon: EFST_JP_EVENT04
  6163. Flags:
  6164. NoRemoveOnDead: true
  6165. NoClearbuff: true
  6166. NoDispell: true
  6167. NoBanishingBuster: true
  6168. NoClearance: true
  6169. SendVal1: true
  6170. - Status: Mtf_Mhp
  6171. Icon: EFST_MTF_MHP
  6172. CalcFlags:
  6173. MaxHp: true
  6174. Flags:
  6175. NoRemoveOnDead: true
  6176. NoClearbuff: true
  6177. NoDispell: true
  6178. NoBanishingBuster: true
  6179. NoClearance: true
  6180. NoForcedEnd: true
  6181. - Status: Mtf_Msp
  6182. Icon: EFST_MTF_MSP
  6183. CalcFlags:
  6184. MaxSp: true
  6185. Flags:
  6186. NoRemoveOnDead: true
  6187. NoClearbuff: true
  6188. NoDispell: true
  6189. NoBanishingBuster: true
  6190. NoClearance: true
  6191. NoForcedEnd: true
  6192. - Status: Mtf_Pumpkin
  6193. Icon: EFST_MTF_PUMPKIN
  6194. Flags:
  6195. NoRemoveOnDead: true
  6196. NoClearbuff: true
  6197. NoDispell: true
  6198. NoBanishingBuster: true
  6199. NoClearance: true
  6200. NoForcedEnd: true
  6201. - Status: Mtf_Hitflee
  6202. Icon: EFST_MTF_HITFLEE
  6203. CalcFlags:
  6204. Hit: true
  6205. Flee: true
  6206. Cri: true
  6207. Flags:
  6208. NoRemoveOnDead: true
  6209. NoClearbuff: true
  6210. NoDispell: true
  6211. NoBanishingBuster: true
  6212. NoClearance: true
  6213. NoForcedEnd: true
  6214. - Status: Vacuum_Extreme_Postdelay
  6215. DurationLookup: SO_VACUUM_EXTREME
  6216. Flags:
  6217. NoClearbuff: true
  6218. NoDispell: true
  6219. NoBanishingBuster: true
  6220. NoClearance: true
  6221. - Status: Crifood
  6222. Icon: EFST_FOOD_CRITICALSUCCESSVALUE
  6223. CalcFlags:
  6224. Cri: true
  6225. Flags:
  6226. NoClearbuff: true
  6227. NoDispell: true
  6228. NoBanishingBuster: true
  6229. NoClearance: true
  6230. - Status: Atthaste_Cash
  6231. Icon: EFST_ATTHASTE_CASH
  6232. CalcFlags:
  6233. Aspd: true
  6234. Flags:
  6235. NoRemoveOnDead: true
  6236. NoClearbuff: true
  6237. NoDispell: true
  6238. NoBanishingBuster: true
  6239. NoClearance: true
  6240. OverlapIgnoreLevel: true
  6241. NoForcedEnd: true
  6242. - Status: Reuse_Limit_A
  6243. Icon: EFST_REUSE_LIMIT_A
  6244. Flags:
  6245. NoRemoveOnDead: true
  6246. NoClearbuff: true
  6247. NoDispell: true
  6248. NoBanishingBuster: true
  6249. NoClearance: true
  6250. NoForcedEnd: true
  6251. Fail:
  6252. Reuse_Limit_A: true
  6253. - Status: Reuse_Limit_B
  6254. Icon: EFST_REUSE_LIMIT_B
  6255. Flags:
  6256. NoRemoveOnDead: true
  6257. NoClearbuff: true
  6258. NoDispell: true
  6259. NoBanishingBuster: true
  6260. NoClearance: true
  6261. NoForcedEnd: true
  6262. Fail:
  6263. Reuse_Limit_B: true
  6264. - Status: Reuse_Limit_C
  6265. Icon: EFST_REUSE_LIMIT_C
  6266. Flags:
  6267. NoRemoveOnDead: true
  6268. NoClearbuff: true
  6269. NoDispell: true
  6270. NoBanishingBuster: true
  6271. NoClearance: true
  6272. NoForcedEnd: true
  6273. Fail:
  6274. Reuse_Limit_C: true
  6275. - Status: Reuse_Limit_D
  6276. Icon: EFST_REUSE_LIMIT_D
  6277. Flags:
  6278. NoRemoveOnDead: true
  6279. NoClearbuff: true
  6280. NoDispell: true
  6281. NoBanishingBuster: true
  6282. NoClearance: true
  6283. NoForcedEnd: true
  6284. Fail:
  6285. Reuse_Limit_D: true
  6286. - Status: Reuse_Limit_E
  6287. Icon: EFST_REUSE_LIMIT_E
  6288. Flags:
  6289. NoRemoveOnDead: true
  6290. NoClearbuff: true
  6291. NoDispell: true
  6292. NoBanishingBuster: true
  6293. NoClearance: true
  6294. NoForcedEnd: true
  6295. Fail:
  6296. Reuse_Limit_E: true
  6297. - Status: Reuse_Limit_F
  6298. Icon: EFST_REUSE_LIMIT_F
  6299. Flags:
  6300. NoRemoveOnDead: true
  6301. NoClearbuff: true
  6302. NoDispell: true
  6303. NoBanishingBuster: true
  6304. NoClearance: true
  6305. NoForcedEnd: true
  6306. Fail:
  6307. Reuse_Limit_F: true
  6308. - Status: Reuse_Limit_G
  6309. Icon: EFST_REUSE_LIMIT_G
  6310. Flags:
  6311. NoRemoveOnDead: true
  6312. NoClearbuff: true
  6313. NoDispell: true
  6314. NoBanishingBuster: true
  6315. NoClearance: true
  6316. NoForcedEnd: true
  6317. Fail:
  6318. Reuse_Limit_G: true
  6319. - Status: Reuse_Limit_H
  6320. Icon: EFST_REUSE_LIMIT_H
  6321. Flags:
  6322. NoRemoveOnDead: true
  6323. NoClearbuff: true
  6324. NoDispell: true
  6325. NoBanishingBuster: true
  6326. NoClearance: true
  6327. NoForcedEnd: true
  6328. Fail:
  6329. Reuse_Limit_H: true
  6330. - Status: Reuse_Limit_Mtf
  6331. Icon: EFST_REUSE_LIMIT_MTF
  6332. Flags:
  6333. NoRemoveOnDead: true
  6334. NoClearbuff: true
  6335. NoDispell: true
  6336. NoBanishingBuster: true
  6337. NoClearance: true
  6338. NoForcedEnd: true
  6339. Fail:
  6340. Reuse_Limit_Mtf: true
  6341. - Status: Reuse_Limit_Aspd_Potion
  6342. Icon: EFST_REUSE_LIMIT_ASPD_POTION
  6343. Flags:
  6344. NoRemoveOnDead: true
  6345. NoClearbuff: true
  6346. NoDispell: true
  6347. NoBanishingBuster: true
  6348. NoClearance: true
  6349. NoForcedEnd: true
  6350. Fail:
  6351. Reuse_Limit_Aspd_Potion: true
  6352. - Status: Reuse_Millenniumshield
  6353. Icon: EFST_REUSE_MILLENNIUMSHIELD
  6354. Flags:
  6355. NoRemoveOnDead: true
  6356. NoClearbuff: true
  6357. NoDispell: true
  6358. NoBanishingBuster: true
  6359. NoClearance: true
  6360. NoForcedEnd: true
  6361. Fail:
  6362. Reuse_Millenniumshield: true
  6363. - Status: Reuse_Crushstrike
  6364. Icon: EFST_REUSE_CRUSHSTRIKE
  6365. Flags:
  6366. NoRemoveOnDead: true
  6367. NoClearbuff: true
  6368. NoDispell: true
  6369. NoBanishingBuster: true
  6370. NoClearance: true
  6371. NoForcedEnd: true
  6372. Fail:
  6373. Reuse_Crushstrike: true
  6374. - Status: Reuse_Stormblast
  6375. Icon: EFST_REUSE_STORMBLAST
  6376. Flags:
  6377. NoRemoveOnDead: true
  6378. NoClearbuff: true
  6379. NoDispell: true
  6380. NoBanishingBuster: true
  6381. NoClearance: true
  6382. NoForcedEnd: true
  6383. Fail:
  6384. Reuse_Stormblast: true
  6385. - Status: All_Riding_Reuse_Limit
  6386. Icon: EFST_ALL_RIDING_REUSE_LIMIT
  6387. Flags:
  6388. NoRemoveOnDead: true
  6389. NoClearbuff: true
  6390. NoDispell: true
  6391. NoBanishingBuster: true
  6392. NoClearance: true
  6393. NoForcedEnd: true
  6394. Fail:
  6395. All_Riding_Reuse_Limit: true
  6396. - Status: Reuse_Limit_Ecl
  6397. Icon: EFST_REUSE_LIMIT_ECL
  6398. Flags:
  6399. NoRemoveOnDead: true
  6400. NoClearbuff: true
  6401. NoDispell: true
  6402. NoBanishingBuster: true
  6403. NoClearance: true
  6404. NoForcedEnd: true
  6405. Fail:
  6406. Reuse_Limit_Ecl: true
  6407. - Status: Reuse_Limit_Recall
  6408. Icon: EFST_REUSE_LIMIT_RECALL
  6409. Flags:
  6410. NoRemoveOnDead: true
  6411. NoClearbuff: true
  6412. NoDispell: true
  6413. NoBanishingBuster: true
  6414. NoClearance: true
  6415. NoForcedEnd: true
  6416. Fail:
  6417. Reuse_Limit_Recall: true
  6418. - Status: Promote_Health_Reserch
  6419. Icon: EFST_PROMOTE_HEALTH_RESERCH
  6420. CalcFlags:
  6421. MaxHp: true
  6422. - Status: Energy_Drink_Reserch
  6423. Icon: EFST_ENERGY_DRINK_RESERCH
  6424. CalcFlags:
  6425. MaxSp: true
  6426. - Status: Norecover_State
  6427. Icon: EFST_HANDICAPSTATE_NORECOVER
  6428. Fail:
  6429. Norecover_State: true
  6430. - Status: Suhide
  6431. Icon: EFST_SUHIDE
  6432. DurationLookup: SU_HIDE
  6433. States:
  6434. NoMove: true
  6435. NoPickItem: true
  6436. NoConsumeItem: true
  6437. NoAttack: true
  6438. NoInteract: true
  6439. Flags:
  6440. StopAttacking: true
  6441. RemoveOnDamaged: true
  6442. RemoveOnChangeMap: true
  6443. RemoveOnMapWarp: true
  6444. - Status: Su_Stoop
  6445. Icon: EFST_SU_STOOP
  6446. DurationLookup: SU_STOOP
  6447. - Status: Spritemable
  6448. Icon: EFST_SPRITEMABLE
  6449. Flags:
  6450. DisplayPc: true
  6451. NoRemoveOnDead: true
  6452. NoDispell: true
  6453. NoBanishingBuster: true
  6454. NoClearance: true
  6455. NoSave: true
  6456. NoClearbuff: true
  6457. - Status: Catnippowder
  6458. Icon: EFST_CATNIPPOWDER
  6459. DurationLookup: SU_CN_POWDERING
  6460. CalcFlags:
  6461. Watk: true
  6462. Matk: true
  6463. Speed: true
  6464. Regen: true
  6465. Flags:
  6466. BossResist: true
  6467. - Status: Sv_Roottwist
  6468. Icon: EFST_SV_ROOTTWIST
  6469. DurationLookup: SU_SV_ROOTTWIST
  6470. States:
  6471. NoMove: true
  6472. Flags:
  6473. BlEffect: true
  6474. DisplayPc: true
  6475. BossResist: true
  6476. StopWalking: true
  6477. NoSave: true
  6478. - Status: Bitescar
  6479. Icon: EFST_BITESCAR
  6480. DurationLookup: SU_SCAROFTAROU
  6481. Flags:
  6482. BossResist: true
  6483. NoClearbuff: true
  6484. NoDispell: true
  6485. NoBanishingBuster: true
  6486. - Status: Arclousedash
  6487. Icon: EFST_ARCLOUSEDASH
  6488. DurationLookup: SU_ARCLOUSEDASH
  6489. CalcFlags:
  6490. Agi: true
  6491. Speed: true
  6492. - Status: Tunaparty
  6493. Icon: EFST_TUNAPARTY
  6494. DurationLookup: SU_TUNAPARTY
  6495. - Status: Shrimp
  6496. Icon: EFST_SHRIMP
  6497. DurationLookup: SU_BUNCHOFSHRIMP
  6498. CalcFlags:
  6499. Batk: true
  6500. Matk: true
  6501. - Status: Freshshrimp
  6502. Icon: EFST_FRESHSHRIMP
  6503. DurationLookup: SU_FRESHSHRIMP
  6504. Flags:
  6505. BossResist: true
  6506. - Status: Active_Monster_Transform
  6507. Icon: EFST_ACTIVE_MONSTER_TRANSFORM
  6508. Flags:
  6509. DisplayPc: true
  6510. NoClearbuff: true
  6511. NoDispell: true
  6512. NoBanishingBuster: true
  6513. NoClearance: true
  6514. SendVal1: true
  6515. NoForcedEnd: true
  6516. # deprecated
  6517. #- Status: Cloud_Kill
  6518. - Status: Ljosalfar
  6519. Icon: EFST_LJOSALFAR
  6520. Flags:
  6521. BlEffect: true
  6522. DisplayPc: true
  6523. NoRemoveOnDead: true
  6524. NoSave: true
  6525. NoClearbuff: true
  6526. NoDispell: true
  6527. NoBanishingBuster: true
  6528. NoClearance: true
  6529. - Status: Mermaid_Longing
  6530. Icon: EFST_MERMAID_LONGING
  6531. Flags:
  6532. BlEffect: true
  6533. DisplayPc: true
  6534. NoRemoveOnDead: true
  6535. NoSave: true
  6536. NoClearbuff: true
  6537. NoDispell: true
  6538. NoBanishingBuster: true
  6539. NoClearance: true
  6540. - Status: Hat_Effect
  6541. Icon: EFST_HAT_EFFECT
  6542. Flags:
  6543. BlEffect: true
  6544. DisplayPc: true
  6545. NoRemoveOnDead: true
  6546. NoSave: true
  6547. NoClearbuff: true
  6548. NoDispell: true
  6549. NoBanishingBuster: true
  6550. NoClearance: true
  6551. - Status: Flowersmoke
  6552. Icon: EFST_FLOWERSMOKE
  6553. Flags:
  6554. BlEffect: true
  6555. DisplayPc: true
  6556. NoRemoveOnDead: true
  6557. NoSave: true
  6558. NoClearbuff: true
  6559. NoDispell: true
  6560. NoBanishingBuster: true
  6561. NoClearance: true
  6562. - Status: Fstone
  6563. Icon: EFST_FSTONE
  6564. Flags:
  6565. BlEffect: true
  6566. DisplayPc: true
  6567. NoRemoveOnDead: true
  6568. NoSave: true
  6569. NoClearbuff: true
  6570. NoDispell: true
  6571. NoBanishingBuster: true
  6572. NoClearance: true
  6573. - Status: Happiness_Star
  6574. Icon: EFST_HAPPINESS_STAR
  6575. Flags:
  6576. BlEffect: true
  6577. DisplayPc: true
  6578. NoRemoveOnDead: true
  6579. NoSave: true
  6580. NoClearbuff: true
  6581. NoDispell: true
  6582. NoBanishingBuster: true
  6583. NoClearance: true
  6584. - Status: Maple_Falls
  6585. Icon: EFST_MAPLE_FALLS
  6586. Flags:
  6587. BlEffect: true
  6588. DisplayPc: true
  6589. NoRemoveOnDead: true
  6590. NoSave: true
  6591. NoClearbuff: true
  6592. NoDispell: true
  6593. NoBanishingBuster: true
  6594. NoClearance: true
  6595. - Status: Time_Accessory
  6596. Icon: EFST_TIME_ACCESSORY
  6597. Flags:
  6598. BlEffect: true
  6599. DisplayPc: true
  6600. NoRemoveOnDead: true
  6601. NoSave: true
  6602. NoClearbuff: true
  6603. NoDispell: true
  6604. NoBanishingBuster: true
  6605. NoClearance: true
  6606. - Status: Magical_Feather
  6607. Icon: EFST_MAGICAL_FEATHER
  6608. Flags:
  6609. BlEffect: true
  6610. DisplayPc: true
  6611. NoRemoveOnDead: true
  6612. NoSave: true
  6613. NoClearbuff: true
  6614. NoDispell: true
  6615. NoBanishingBuster: true
  6616. NoClearance: true
  6617. - Status: Gvg_Giant
  6618. Icon: EFST_GVG_GIANT
  6619. - Status: Gvg_Golem
  6620. Icon: EFST_GVG_GOLEM
  6621. - Status: Gvg_Stun
  6622. Icon: EFST_GVG_STUN
  6623. EndOnStart:
  6624. Gvg_Stun: true
  6625. - Status: Gvg_Stone
  6626. Icon: EFST_GVG_STONE
  6627. EndOnStart:
  6628. Stone: true
  6629. - Status: Gvg_Freez
  6630. Icon: EFST_GVG_FREEZ
  6631. EndOnStart:
  6632. Freeze: true
  6633. - Status: Gvg_Sleep
  6634. Icon: EFST_GVG_SLEEP
  6635. EndOnStart:
  6636. Sleep: true
  6637. - Status: Gvg_Curse
  6638. Icon: EFST_GVG_CURSE
  6639. EndOnStart:
  6640. Curse: true
  6641. - Status: Gvg_Silence
  6642. Icon: EFST_GVG_SILENCE
  6643. EndOnStart:
  6644. Silence: true
  6645. - Status: Gvg_Blind
  6646. Icon: EFST_GVG_BLIND
  6647. EndOnStart:
  6648. Blind: true
  6649. - Status: Clan_Info
  6650. Icon: EFST_CLAN_INFO
  6651. Flags:
  6652. DisplayPc: true
  6653. DisplayNpc: true
  6654. NoRemoveOnDead: true
  6655. NoClearbuff: true
  6656. NoDispell: true
  6657. NoBanishingBuster: true
  6658. NoClearance: true
  6659. SendVal2: true
  6660. - Status: Swordclan
  6661. Icon: EFST_SWORDCLAN
  6662. CalcFlags:
  6663. Str: true
  6664. Vit: true
  6665. MaxHp: true
  6666. MaxSp: true
  6667. Flags:
  6668. NoRemoveOnDead: true
  6669. NoClearbuff: true
  6670. NoDispell: true
  6671. NoBanishingBuster: true
  6672. NoClearance: true
  6673. SendVal1: true
  6674. EndOnEnd:
  6675. Clan_Info: true
  6676. - Status: Arcwandclan
  6677. Icon: EFST_ARCWANDCLAN
  6678. CalcFlags:
  6679. Int: true
  6680. Dex: true
  6681. MaxHp: true
  6682. MaxSp: true
  6683. Flags:
  6684. NoRemoveOnDead: true
  6685. NoClearbuff: true
  6686. NoDispell: true
  6687. NoBanishingBuster: true
  6688. NoClearance: true
  6689. SendVal1: true
  6690. EndOnEnd:
  6691. Clan_Info: true
  6692. - Status: Goldenmaceclan
  6693. Icon: EFST_GOLDENMACECLAN
  6694. CalcFlags:
  6695. Luk: true
  6696. Int: true
  6697. MaxHp: true
  6698. MaxSp: true
  6699. Flags:
  6700. NoRemoveOnDead: true
  6701. NoClearbuff: true
  6702. NoDispell: true
  6703. NoBanishingBuster: true
  6704. NoClearance: true
  6705. SendVal1: true
  6706. EndOnEnd:
  6707. Clan_Info: true
  6708. - Status: Crossbowclan
  6709. Icon: EFST_CROSSBOWCLAN
  6710. CalcFlags:
  6711. Agi: true
  6712. Vit: true
  6713. MaxHp: true
  6714. MaxSp: true
  6715. Flags:
  6716. NoRemoveOnDead: true
  6717. NoClearbuff: true
  6718. NoDispell: true
  6719. NoBanishingBuster: true
  6720. NoClearance: true
  6721. SendVal1: true
  6722. EndOnEnd:
  6723. Clan_Info: true
  6724. - Status: Jumpingclan
  6725. Icon: EFST_JUMPINGCLAN
  6726. CalcFlags:
  6727. Str: true
  6728. Agi: true
  6729. Vit: true
  6730. Int: true
  6731. Dex: true
  6732. Luk: true
  6733. Flags:
  6734. NoRemoveOnDead: true
  6735. NoClearbuff: true
  6736. NoDispell: true
  6737. NoBanishingBuster: true
  6738. NoClearance: true
  6739. SendVal1: true
  6740. EndOnEnd:
  6741. Clan_Info: true
  6742. - Status: Tarotcard
  6743. Icon: EFST_TAROTCARD
  6744. DurationLookup: CG_TAROTCARD
  6745. - Status: Geffen_Magic1
  6746. Icon: EFST_GEFFEN_MAGIC1
  6747. CalcFlags:
  6748. All: true
  6749. Flags:
  6750. NoRemoveOnDead: true
  6751. NoClearbuff: true
  6752. RemoveOnHermode: true
  6753. - Status: Geffen_Magic2
  6754. Icon: EFST_GEFFEN_MAGIC2
  6755. CalcFlags:
  6756. All: true
  6757. Flags:
  6758. NoRemoveOnDead: true
  6759. NoClearbuff: true
  6760. - Status: Geffen_Magic3
  6761. Icon: EFST_GEFFEN_MAGIC3
  6762. CalcFlags:
  6763. All: true
  6764. Flags:
  6765. NoRemoveOnDead: true
  6766. NoClearbuff: true
  6767. - Status: Maxpain
  6768. Icon: EFST_MAXPAIN
  6769. DurationLookup: NPC_MAXPAIN
  6770. Flags:
  6771. BlEffect: true
  6772. - Status: Armor_Element_Earth
  6773. Icon: EFST_RESIST_PROPERTY_GROUND
  6774. CalcFlags:
  6775. All: true
  6776. Flags:
  6777. NoDispell: true
  6778. OverlapIgnoreLevel: true
  6779. - Status: Armor_Element_Fire
  6780. Icon: EFST_RESIST_PROPERTY_FIRE
  6781. CalcFlags:
  6782. All: true
  6783. Flags:
  6784. NoDispell: true
  6785. OverlapIgnoreLevel: true
  6786. - Status: Armor_Element_Wind
  6787. Icon: EFST_RESIST_PROPERTY_WIND
  6788. CalcFlags:
  6789. All: true
  6790. Flags:
  6791. NoDispell: true
  6792. OverlapIgnoreLevel: true
  6793. - Status: Dailysendmailcnt
  6794. Icon: EFST_DAILYSENDMAILCNT
  6795. Flags:
  6796. NoRemoveOnDead: true
  6797. NoClearbuff: true
  6798. NoDispell: true
  6799. NoClearance: true
  6800. NoBanishingBuster: true
  6801. SendVal2: true
  6802. - Status: Doram_Buf_01
  6803. Icon: EFST_DORAM_BUF_01
  6804. CalcFlags:
  6805. Regen: true
  6806. Flags:
  6807. NoRemoveOnDead: true
  6808. NoClearbuff: true
  6809. NoBanishingBuster: true
  6810. NoDispell: true
  6811. NoClearance: true
  6812. Fail:
  6813. Doram_Buf_01: true
  6814. - Status: Doram_Buf_02
  6815. Icon: EFST_DORAM_BUF_02
  6816. CalcFlags:
  6817. Regen: true
  6818. Flags:
  6819. NoRemoveOnDead: true
  6820. NoClearbuff: true
  6821. NoBanishingBuster: true
  6822. NoDispell: true
  6823. NoClearance: true
  6824. Fail:
  6825. Doram_Buf_02: true
  6826. - Status: Hiss
  6827. Icon: EFST_HISS
  6828. DurationLookup: SU_HISS
  6829. Flags:
  6830. NoRemoveOnDead: true
  6831. CalcFlags:
  6832. Flee2: true
  6833. - Status: Nyanggrass
  6834. Icon: EFST_NYANGGRASS
  6835. DurationLookup: SU_NYANGGRASS
  6836. Flags:
  6837. NoRemoveOnDead: true
  6838. CalcFlags:
  6839. Def: true
  6840. Mdef: true
  6841. - Status: Grooming
  6842. Icon: EFST_GROOMING
  6843. DurationLookup: SU_GROOMING
  6844. CalcFlags:
  6845. Flee: true
  6846. Flags:
  6847. NoRemoveOnDead: true
  6848. Fail:
  6849. Grooming: true
  6850. EndOnStart:
  6851. Stun: true
  6852. Freeze: true
  6853. Stone: true
  6854. Sleep: true
  6855. Silence: true
  6856. Bleeding: true
  6857. Poison: true
  6858. Fear: true
  6859. Mandragora: true
  6860. Crystalize: true
  6861. Freezing: true
  6862. - Status: Shrimpblessing
  6863. Icon: EFST_PROTECTIONOFSHRIMP
  6864. DurationLookup: SU_SHRIMPARTY
  6865. CalcFlags:
  6866. Regen: true
  6867. Flags:
  6868. NoRemoveOnDead: true
  6869. - Status: Chattering
  6870. Icon: EFST_CHATTERING
  6871. DurationLookup: SU_CHATTERING
  6872. CalcFlags:
  6873. Watk: true
  6874. Matk: true
  6875. Flags:
  6876. NoRemoveOnDead: true
  6877. Fail:
  6878. Chattering: true
  6879. - Status: Doram_Walkspeed
  6880. CalcFlags:
  6881. Speed: true
  6882. - Status: Doram_Matk
  6883. CalcFlags:
  6884. Matk: true
  6885. - Status: Doram_Flee2
  6886. CalcFlags:
  6887. Flee2: true
  6888. - Status: Doram_Svsp
  6889. Flags:
  6890. NoWarning: true
  6891. - Status: Fallen_Angel
  6892. DurationLookup: RL_FALLEN_ANGEL
  6893. - Status: Cheerup
  6894. Icon: EFST_CHEERUP
  6895. DurationLookup: WE_CHEERUP
  6896. CalcFlags:
  6897. Str: true
  6898. Agi: true
  6899. Vit: true
  6900. Int: true
  6901. Dex: true
  6902. Luk: true
  6903. Flags:
  6904. NoRemoveOnDead: true
  6905. - Status: Dressup
  6906. Icon: EFST_DRESS_UP
  6907. States:
  6908. NoAttack: true
  6909. Options:
  6910. Summer2: true
  6911. Flags:
  6912. DisplayPc: true
  6913. SendLook: true
  6914. StopAttacking: true
  6915. NoRemoveOnDead: true
  6916. NoDispell: true
  6917. NoBanishingBuster: true
  6918. NoClearance: true
  6919. SendVal1: true
  6920. - Status: Glastheim_Atk
  6921. Icon: EFST_GLASTHEIM_ATK
  6922. CalcFlags:
  6923. All: true
  6924. Flags:
  6925. NoSave: true
  6926. - Status: Glastheim_Def
  6927. Icon: EFST_GLASTHEIM_DEF
  6928. Flags:
  6929. NoSave: true
  6930. - Status: Glastheim_Heal
  6931. Icon: EFST_GLASTHEIM_HEAL
  6932. Flags:
  6933. NoSave: true
  6934. - Status: Glastheim_Hidden
  6935. Icon: EFST_GLASTHEIM_HIDDEN
  6936. Flags:
  6937. NoSave: true
  6938. - Status: Glastheim_State
  6939. Icon: EFST_GLASTHEIM_STATE
  6940. CalcFlags:
  6941. Str: true
  6942. Agi: true
  6943. Vit: true
  6944. Dex: true
  6945. Int: true
  6946. Luk: true
  6947. Flags:
  6948. NoSave: true
  6949. - Status: Glastheim_Itemdef
  6950. Icon: EFST_GLASTHEIM_ITEMDEF
  6951. CalcFlags:
  6952. Def: true
  6953. Mdef: true
  6954. Flags:
  6955. NoSave: true
  6956. - Status: Glastheim_Hpsp
  6957. Icon: EFST_GLASTHEIM_HPSP
  6958. CalcFlags:
  6959. MaxHp: true
  6960. MaxSp: true
  6961. Flags:
  6962. NoSave: true
  6963. - Status: Lhz_Dun_N1
  6964. Icon: EFST_LHZ_DUN_N1
  6965. Flags:
  6966. NoClearbuff: true
  6967. NoClearance: true
  6968. NoRemoveOnDead: true
  6969. NoBanishingBuster: true
  6970. NoDispell: true
  6971. OverlapIgnoreLevel: true
  6972. - Status: Lhz_Dun_N2
  6973. Icon: EFST_LHZ_DUN_N2
  6974. Flags:
  6975. NoClearbuff: true
  6976. NoClearance: true
  6977. NoRemoveOnDead: true
  6978. NoBanishingBuster: true
  6979. NoDispell: true
  6980. OverlapIgnoreLevel: true
  6981. - Status: Lhz_Dun_N3
  6982. Icon: EFST_LHZ_DUN_N3
  6983. Flags:
  6984. NoClearbuff: true
  6985. NoClearance: true
  6986. NoRemoveOnDead: true
  6987. NoBanishingBuster: true
  6988. NoDispell: true
  6989. OverlapIgnoreLevel: true
  6990. - Status: Lhz_Dun_N4
  6991. Icon: EFST_LHZ_DUN_N4
  6992. Flags:
  6993. NoClearbuff: true
  6994. NoClearance: true
  6995. NoRemoveOnDead: true
  6996. NoBanishingBuster: true
  6997. NoDispell: true
  6998. OverlapIgnoreLevel: true
  6999. - Status: Ancilla
  7000. Icon: EFST_ANCILLA
  7001. Flags:
  7002. NoRemoveOnDead: true
  7003. CalcFlags:
  7004. Regen: true
  7005. - Status: Earthshaker
  7006. Flags:
  7007. NoWarning: true
  7008. - Status: Weaponblock_On
  7009. Icon: EFST_WEAPONBLOCK_ON
  7010. DurationLookup: SHC_IMPACT_CRATER
  7011. Flags:
  7012. NoDispell: true
  7013. NoBanishingBuster: true
  7014. NoClearance: true
  7015. NoRemoveOnDead: true
  7016. NoClearbuff: true
  7017. - Status: Spore_Explosion
  7018. Icon: EFST_SPORE_EXPLOSION_DEBUFF
  7019. DurationLookup: GN_SPORE_EXPLOSION
  7020. Flags:
  7021. NoDispell: true
  7022. NoBanishingBuster: true
  7023. NoClearance: true
  7024. - Status: Adaptation
  7025. Icon: EFST_ADAPTATION
  7026. DurationLookup: BD_ADAPTATION
  7027. - Status: Basilica_Cell
  7028. States:
  7029. NoCast: true
  7030. Flags:
  7031. NoDispell: true
  7032. NoBanishingBuster: true
  7033. NoClearance: true
  7034. NoClearbuff: true
  7035. RemoveOnChangeMap: true
  7036. - Status: Entry_Queue_Apply_Delay
  7037. Icon: EFST_ENTRY_QUEUE_APPLY_DELAY
  7038. Flags:
  7039. NoDispell: true
  7040. NoBanishingBuster: true
  7041. NoClearance: true
  7042. NoRemoveOnDead: true
  7043. NoClearbuff: true
  7044. - Status: Entry_Queue_Notify_Admission_Time_Out
  7045. Icon: EFST_ENTRY_QUEUE_NOTIFY_ADMISSION_TIME_OUT
  7046. Flags:
  7047. NoDispell: true
  7048. NoBanishingBuster: true
  7049. NoClearance: true
  7050. NoRemoveOnDead: true
  7051. NoClearbuff: true
  7052. - Status: Lightofmoon
  7053. Icon: EFST_LIGHTOFMOON
  7054. DurationLookup: SJ_LIGHTOFMOON
  7055. EndOnStart:
  7056. Lunarstance: true
  7057. Universestance: true
  7058. - Status: Lightofsun
  7059. Icon: EFST_LIGHTOFSUN
  7060. DurationLookup: SJ_LIGHTOFSUN
  7061. EndOnStart:
  7062. Lightofsun: true
  7063. Universestance: true
  7064. - Status: Lightofstar
  7065. Icon: EFST_LIGHTOFSTAR
  7066. DurationLookup: SJ_LIGHTOFSTAR
  7067. EndOnStart:
  7068. Starstance: true
  7069. Universestance: true
  7070. - Status: Lunarstance
  7071. Icon: EFST_LUNARSTANCE
  7072. DurationLookup: SJ_LUNARSTANCE
  7073. CalcFlags:
  7074. MaxHp: true
  7075. EndOnStart:
  7076. Sunstance: true
  7077. Starstance: true
  7078. Universestance: true
  7079. EndOnEnd:
  7080. NewMoon: true
  7081. LightOfMoon: true
  7082. - Status: Universestance
  7083. Icon: EFST_UNIVERSESTANCE
  7084. DurationLookup: SJ_UNIVERSESTANCE
  7085. CalcFlags:
  7086. Str: true
  7087. Agi: true
  7088. Vit: true
  7089. Int: true
  7090. Dex: true
  7091. Luk: true
  7092. EndOnStart:
  7093. Sunstance: true
  7094. Lunarstance: true
  7095. Starstance: true
  7096. EndOnEnd:
  7097. LightOfSun: true
  7098. NewMoon: true
  7099. LightOfMoon: true
  7100. FallingStar: true
  7101. LightOfStar: true
  7102. Dimension: true
  7103. - Status: Sunstance
  7104. Icon: EFST_SUNSTANCE
  7105. DurationLookup: SJ_SUNSTANCE
  7106. CalcFlags:
  7107. Batk: true
  7108. Watk: true
  7109. EndOnStart:
  7110. Lunarstance: true
  7111. Starstance: true
  7112. Universestance: true
  7113. EndOnEnd:
  7114. LightOfSun: true
  7115. - Status: Flashkick
  7116. Icon: EFST_FLASHKICK
  7117. DurationLookup: SJ_FLASHKICK
  7118. Flags:
  7119. RemoveOnChangeMap: true
  7120. NoBanishingBuster: true
  7121. NoDispell: true
  7122. NoClearance: true
  7123. OverlapIgnoreLevel: true
  7124. - Status: Newmoon
  7125. Icon: EFST_NEWMOON
  7126. DurationLookup: SJ_NEWMOONKICK
  7127. States:
  7128. NoPickItem: true
  7129. Options:
  7130. Cloak: true
  7131. Flags:
  7132. OnTouch: true
  7133. NoDispell: true
  7134. NoBanishingBuster: true
  7135. NoClearance: true
  7136. StopAttacking: true
  7137. RemoveOnDamaged: true
  7138. RemoveOnChangeMap: true
  7139. Fail:
  7140. Bite: true
  7141. - Status: Starstance
  7142. Icon: EFST_STARSTANCE
  7143. DurationLookup: SJ_STARSTANCE
  7144. CalcFlags:
  7145. Aspd: true
  7146. EndOnStart:
  7147. Sunstance: true
  7148. Lunarstance: true
  7149. Universestance: true
  7150. EndOnEnd:
  7151. FallingStar: true
  7152. LightOfStar: true
  7153. - Status: Dimension
  7154. Icon: EFST_DIMENSION
  7155. DurationLookup: SJ_BOOKOFDIMENSION
  7156. Flags:
  7157. NoClearance: true
  7158. - Status: Dimension1
  7159. Flags:
  7160. NoWarning: true
  7161. - Status: Dimension2
  7162. Flags:
  7163. NoWarning: true
  7164. - Status: Creatingstar
  7165. Icon: EFST_CREATINGSTAR
  7166. DurationLookup: SJ_BOOKOFCREATINGSTAR
  7167. CalcFlags:
  7168. Speed: true
  7169. Flags:
  7170. Debuff: true
  7171. Fail:
  7172. Speedup1: true
  7173. - Status: Fallingstar
  7174. Icon: EFST_FALLINGSTAR
  7175. DurationLookup: SJ_FALLINGSTAR
  7176. - Status: Novaexplosing
  7177. Icon: EFST_NOVAEXPLOSING
  7178. DurationLookup: SJ_NOVAEXPLOSING
  7179. Flags:
  7180. NoDispell: true
  7181. NoBanishingBuster: true
  7182. NoClearance: true
  7183. - Status: Gravitycontrol
  7184. Icon: EFST_GRAVITYCONTROL
  7185. DurationLookup: SJ_GRAVITYCONTROL
  7186. States:
  7187. NoMove: true
  7188. NoCast: true
  7189. NoAttack: true
  7190. NoInteract: true
  7191. Flags:
  7192. StopCasting: true
  7193. StopAttacking: true
  7194. StopWalking: true
  7195. - Status: Soulcollect
  7196. Icon: EFST_SOULCOLLECT
  7197. DurationLookup: SP_SOULCOLLECT
  7198. MinDuration: 1000
  7199. - Status: Soulreaper
  7200. Icon: EFST_SOULREAPER
  7201. DurationLookup: SP_SOULREAPER
  7202. - Status: Soulunity
  7203. Icon: EFST_SOULUNITY
  7204. DurationLookup: SP_SOULUNITY
  7205. Flags:
  7206. NoDispell: true
  7207. NoBanishingBuster: true
  7208. NoClearance: true
  7209. OverlapIgnoreLevel: true
  7210. - Status: Soulshadow
  7211. Icon: EFST_SOULSHADOW
  7212. DurationLookup: SP_SOULSHADOW
  7213. CalcFlags:
  7214. Aspd: true
  7215. Cri: true
  7216. Flags:
  7217. NoSave: true
  7218. NoDispell: true
  7219. NoBanishingBuster: true
  7220. NoClearance: true
  7221. Fail:
  7222. Spirit: true
  7223. Soulgolem: true
  7224. Soulfalcon: true
  7225. Soulfairy: true
  7226. - Status: Soulfairy
  7227. Icon: EFST_SOULFAIRY
  7228. DurationLookup: SP_SOULFAIRY
  7229. CalcFlags:
  7230. Matk: true
  7231. Flags:
  7232. NoSave: true
  7233. NoDispell: true
  7234. NoBanishingBuster: true
  7235. NoClearance: true
  7236. Fail:
  7237. Spirit: true
  7238. Soulgolem: true
  7239. Soulshadow: true
  7240. Soulfalcon: true
  7241. - Status: Soulfalcon
  7242. Icon: EFST_SOULFALCON
  7243. DurationLookup: SP_SOULFALCON
  7244. CalcFlags:
  7245. Watk: true
  7246. Hit: true
  7247. Flags:
  7248. NoSave: true
  7249. NoDispell: true
  7250. NoBanishingBuster: true
  7251. NoClearance: true
  7252. Fail:
  7253. Spirit: true
  7254. Soulgolem: true
  7255. Soulshadow: true
  7256. Soulfairy: true
  7257. - Status: Soulgolem
  7258. Icon: EFST_SOULGOLEM
  7259. DurationLookup: SP_SOULGOLEM
  7260. CalcFlags:
  7261. Def: true
  7262. Mdef: true
  7263. Flags:
  7264. NoSave: true
  7265. NoDispell: true
  7266. NoBanishingBuster: true
  7267. NoClearance: true
  7268. Fail:
  7269. Spirit: true
  7270. Soulshadow: true
  7271. Soulfalcon: true
  7272. Soulfairy: true
  7273. - Status: Souldivision
  7274. Icon: EFST_SOULDIVISION
  7275. DurationLookup: SP_SOULDIVISION
  7276. - Status: Soulenergy
  7277. Icon: EFST_SOULENERGY
  7278. Flags:
  7279. NoRemoveOnDead: true
  7280. NoClearbuff: true
  7281. NoBanishingBuster: true
  7282. NoDispell: true
  7283. NoClearance: true
  7284. - Status: Use_Skill_Sp_Spa
  7285. Icon: EFST_USE_SKILL_SP_SPA
  7286. Flags:
  7287. NoDispell: true
  7288. NoBanishingBuster: true
  7289. NoClearance: true
  7290. - Status: Use_Skill_Sp_Sha
  7291. Icon: EFST_USE_SKILL_SP_SHA
  7292. Flags:
  7293. NoDispell: true
  7294. NoBanishingBuster: true
  7295. NoClearance: true
  7296. - Status: Sp_Sha
  7297. Icon: EFST_SP_SHA
  7298. DurationLookup: SP_SHA
  7299. CalcFlags:
  7300. Speed: true
  7301. Flags:
  7302. BossResist: true
  7303. NoDispell: true
  7304. NoBanishingBuster: true
  7305. NoClearance: true
  7306. - Status: Soulcurse
  7307. Icon: EFST_SOULCURSE
  7308. DurationLookup: SP_SOULCURSE
  7309. - Status: Hells_Plant
  7310. Icon: EFST_HELLS_PLANT_ARMOR
  7311. DurationLookup: GN_HELLS_PLANT
  7312. Flags:
  7313. NoSave: true
  7314. DisplayPc: true
  7315. BlEffect: true
  7316. - Status: Increase_Maxhp
  7317. Icon: EFST_ATKER_ASPD
  7318. CalcFlags:
  7319. MaxHp: true
  7320. Regen: true
  7321. - Status: Increase_Maxsp
  7322. Icon: EFST_ATKER_MOVESPEED
  7323. CalcFlags:
  7324. MaxHp: true
  7325. Regen: true
  7326. - Status: Ref_T_Potion
  7327. Icon: EFST_REF_T_POTION
  7328. - Status: Add_Atk_Damage
  7329. Icon: EFST_ADD_ATK_DAMAGE
  7330. - Status: Add_Matk_Damage
  7331. Icon: EFST_ADD_MATK_DAMAGE
  7332. - Status: Helpangel
  7333. Icon: EFST_HELPANGEL
  7334. DurationLookup: NV_HELPANGEL
  7335. - Status: Soundofdestruction
  7336. Icon: EFST_SOUND_OF_DESTRUCTION
  7337. DurationLookup: WM_SOUND_OF_DESTRUCTION
  7338. - Status: Luxanima
  7339. Icon: EFST_LUXANIMA
  7340. DurationLookup: RK_LUXANIMA
  7341. CalcFlags:
  7342. All: true
  7343. Flags:
  7344. NoBanishingBuster: true
  7345. NoDispell: true
  7346. NoClearance: true
  7347. NoClearbuff: true
  7348. - Status: Reuse_Limit_Luxanima
  7349. Icon: EFST_REUSE_LIMIT_LUXANIMA
  7350. Flags:
  7351. NoBanishingBuster: true
  7352. NoDispell: true
  7353. NoClearance: true
  7354. NoRemoveOnDead: true
  7355. NoClearbuff: true
  7356. Fail:
  7357. Reuse_Limit_Luxanima: true
  7358. - Status: Ensemblefatigue
  7359. Icon: EFST_ENSEMBLEFATIGUE
  7360. States:
  7361. NoCast: true
  7362. CalcFlags:
  7363. Speed: true
  7364. Aspd: true
  7365. - Status: Misty_Frost
  7366. Icon: EFST_MISTY_FROST
  7367. Flags:
  7368. DisplayPc: true
  7369. SendVal1: true
  7370. - Status: Magic_Poison
  7371. Icon: EFST_MAGIC_POISON
  7372. DurationLookup: WL_COMET
  7373. Flags:
  7374. DisplayPc: true
  7375. BlEffect: true
  7376. - Status: Ep16_2_Buff_Ss
  7377. Icon: EFST_EP16_2_BUFF_SS
  7378. CalcFlags:
  7379. Aspd: true
  7380. Flags:
  7381. NoBanishingBuster: true
  7382. NoDispell: true
  7383. NoClearance: true
  7384. NoClearbuff: true
  7385. - Status: Ep16_2_Buff_Sc
  7386. Icon: EFST_EP16_2_BUFF_SC
  7387. CalcFlags:
  7388. Cri: true
  7389. Flags:
  7390. NoBanishingBuster: true
  7391. NoDispell: true
  7392. NoClearance: true
  7393. NoClearbuff: true
  7394. - Status: Ep16_2_Buff_Ac
  7395. Icon: EFST_EP16_2_BUFF_AC
  7396. Flags:
  7397. NoBanishingBuster: true
  7398. NoDispell: true
  7399. NoClearance: true
  7400. NoClearbuff: true
  7401. - Status: OverBrandReady
  7402. Icon: EFST_OVERBRANDREADY
  7403. Flags:
  7404. - Status: Poison_Mist
  7405. Icon: EFST_POISON_MIST
  7406. DurationLookup: MH_POISON_MIST
  7407. CalcFlags:
  7408. Flee: true
  7409. Flags:
  7410. - Status: Stone_Wall
  7411. Icon: EFST_STONE_WALL
  7412. DurationLookup: MH_STEINWAND
  7413. CalcFlags:
  7414. Def: true
  7415. Mdef: true
  7416. Flags:
  7417. - Status: Cloud_Poison
  7418. Icon: EFST_CLOUD_POISON
  7419. DurationLookup: SO_CLOUD_KILL
  7420. Flags:
  7421. - Status: Homun_Time
  7422. Icon: EFST_HOMUN_TIME
  7423. Flags:
  7424. DisplayPc: true
  7425. NoRemoveOnDead: true
  7426. NoBanishingBuster: true
  7427. NoDispell: true
  7428. NoClearance: true
  7429. NoClearbuff: true
  7430. - Status: Emergency_Move
  7431. Icon: EFST_INC_AGI
  7432. DurationLookup: GD_EMERGENCY_MOVE
  7433. CalcFlags:
  7434. Speed: true
  7435. Flags:
  7436. NoSave: true
  7437. NoBanishingBuster: true
  7438. NoDispell: true
  7439. NoClearance: true
  7440. NoClearbuff: true
  7441. - Status: Madogear
  7442. Icon: EFST_MADOGEAR
  7443. CalcFlags:
  7444. Speed: true
  7445. Flags:
  7446. DisplayPc: true
  7447. NoRemoveOnDead: true
  7448. NoBanishingBuster: true
  7449. NoDispell: true
  7450. NoClearance: true
  7451. NoClearbuff: true
  7452. SendVal1: true
  7453. EndOnStart:
  7454. Shapeshift: true
  7455. Hovering: true
  7456. Acceleration: true
  7457. Overheat_Limitpoint: true
  7458. Overheat: true
  7459. Magneticfield: true
  7460. Neutralbarrier_Master: true
  7461. Stealthfield_Master: true
  7462. - Status: Npc_HallucinationWalk
  7463. Icon: EFST_NPC_HALLUCINATIONWALK
  7464. DurationLookup: NPC_HALLUCINATIONWALK
  7465. CalcFlags:
  7466. Flee: true
  7467. Flags:
  7468. SendVal3: true
  7469. - Status: Packing_Envelope1
  7470. Icon: EFST_PACKING_ENVELOPE1
  7471. CalcFlags:
  7472. Watk: true
  7473. Flags:
  7474. NoRemoveOnDead: true
  7475. NoBanishingBuster: true
  7476. NoDispell: true
  7477. NoClearance: true
  7478. - Status: Packing_Envelope2
  7479. Icon: EFST_PACKING_ENVELOPE2
  7480. CalcFlags:
  7481. Matk: true
  7482. Flags:
  7483. NoRemoveOnDead: true
  7484. NoBanishingBuster: true
  7485. NoDispell: true
  7486. NoClearance: true
  7487. - Status: Packing_Envelope3
  7488. Icon: EFST_PACKING_ENVELOPE3
  7489. CalcFlags:
  7490. MaxHp: true
  7491. Flags:
  7492. NoRemoveOnDead: true
  7493. NoBanishingBuster: true
  7494. NoDispell: true
  7495. NoClearance: true
  7496. - Status: Packing_Envelope4
  7497. Icon: EFST_PACKING_ENVELOPE4
  7498. CalcFlags:
  7499. MaxSp: true
  7500. Flags:
  7501. NoRemoveOnDead: true
  7502. NoBanishingBuster: true
  7503. NoDispell: true
  7504. NoClearance: true
  7505. - Status: Packing_Envelope5
  7506. Icon: EFST_PACKING_ENVELOPE5
  7507. CalcFlags:
  7508. Flee: true
  7509. Flags:
  7510. NoRemoveOnDead: true
  7511. NoBanishingBuster: true
  7512. NoDispell: true
  7513. NoClearance: true
  7514. - Status: Packing_Envelope6
  7515. Icon: EFST_PACKING_ENVELOPE6
  7516. CalcFlags:
  7517. Aspd: true
  7518. Flags:
  7519. NoRemoveOnDead: true
  7520. NoBanishingBuster: true
  7521. NoDispell: true
  7522. NoClearance: true
  7523. - Status: Packing_Envelope7
  7524. Icon: EFST_PACKING_ENVELOPE7
  7525. CalcFlags:
  7526. Def: true
  7527. Flags:
  7528. NoRemoveOnDead: true
  7529. NoBanishingBuster: true
  7530. NoDispell: true
  7531. NoClearance: true
  7532. - Status: Packing_Envelope8
  7533. Icon: EFST_PACKING_ENVELOPE8
  7534. CalcFlags:
  7535. Mdef: true
  7536. Flags:
  7537. NoRemoveOnDead: true
  7538. NoBanishingBuster: true
  7539. NoDispell: true
  7540. NoClearance: true
  7541. - Status: Packing_Envelope9
  7542. Icon: EFST_PACKING_ENVELOPE9
  7543. CalcFlags:
  7544. Cri: true
  7545. Flags:
  7546. NoRemoveOnDead: true
  7547. NoBanishingBuster: true
  7548. NoDispell: true
  7549. NoClearance: true
  7550. - Status: Packing_Envelope10
  7551. Icon: EFST_PACKING_ENVELOPE10
  7552. CalcFlags:
  7553. Hit: true
  7554. Flags:
  7555. NoRemoveOnDead: true
  7556. NoBanishingBuster: true
  7557. NoDispell: true
  7558. NoClearance: true
  7559. - Status: Soulattack
  7560. Icon: EFST_SOULATTACK
  7561. Flags:
  7562. DisplayPc: true
  7563. NoRemoveOnDead: true
  7564. NoClearbuff: true
  7565. - Status: Wideweb
  7566. Icon: EFST_WIDEWEB
  7567. DurationLookup: NPC_WIDEWEB
  7568. CalcFlags:
  7569. Flee: true
  7570. Flags:
  7571. StopWalking: true
  7572. - Status: Burnt
  7573. Icon: EFST_BURNT
  7574. DurationLookup: NPC_FIRESTORM
  7575. Flags:
  7576. BlEffect: true
  7577. Fail:
  7578. Chill: true
  7579. - Status: Chill
  7580. Icon: EFST_CHILL
  7581. EndOnStart:
  7582. Burnt: true
  7583. - Status: Handicapstate_Deepblind
  7584. Icon: EFST_HANDICAPSTATE_DEEPBLIND
  7585. DurationLookup: DK_SERVANT_W_PHANTOM
  7586. CalcFlags:
  7587. Flee: true
  7588. Flee2: true
  7589. Flags:
  7590. BlEffect: true
  7591. DisplayPc: true
  7592. - Status: Handicapstate_Deepsilence
  7593. Icon: EFST_HANDICAPSTATE_DEEPSILENCE
  7594. DurationLookup: CD_ARBITRIUM
  7595. #States:
  7596. #NoCast: true
  7597. CalcFlags:
  7598. Aspd: true
  7599. Flags:
  7600. BlEffect: true
  7601. DisplayPc: true
  7602. - Status: Handicapstate_Lassitude
  7603. CalcFlags:
  7604. Speed: true
  7605. Cri: true
  7606. Flags:
  7607. DisplayPc: true
  7608. - Status: Handicapstate_Frostbite
  7609. Icon: EFST_HANDICAPSTATE_FROSTBITE
  7610. DurationLookup: EM_DIAMOND_STORM
  7611. States:
  7612. #NoMove: true
  7613. #NoCast: true
  7614. NoConsumeItem: true
  7615. CalcFlags:
  7616. Def: true
  7617. Mdef: true
  7618. Def_Ele: true
  7619. Flags:
  7620. BlEffect: true
  7621. DisplayPc: true
  7622. RemoveOnDamaged: true
  7623. - Status: Handicapstate_Swooning
  7624. Icon: EFST_HANDICAPSTATE_SWOONING
  7625. States:
  7626. #NoMove: true
  7627. #NoCast: true
  7628. NoConsumeItem: true
  7629. Flags:
  7630. DisplayPc: true
  7631. RemoveOnDamaged: true
  7632. - Status: Handicapstate_Lightningstrike
  7633. Icon: EFST_HANDICAPSTATE_LIGHTNINGSTRIKE
  7634. DurationLookup: WH_SWIFTTRAP
  7635. States:
  7636. #NoMove: true
  7637. #NoCast: true
  7638. NoConsumeItem: true
  7639. CalcFlags:
  7640. Def_Ele: true
  7641. Flags:
  7642. BlEffect: true
  7643. DisplayPc: true
  7644. RemoveOnDamaged: true
  7645. - Status: Handicapstate_Crystallization
  7646. Icon: EFST_HANDICAPSTATE_CRYSTALLIZATION
  7647. DurationLookup: WH_SOLIDTRAP
  7648. States:
  7649. #NoMove: true
  7650. #NoCast: true
  7651. NoConsumeItem: true
  7652. CalcFlags:
  7653. Mdef: true
  7654. Def_Ele: true
  7655. Flags:
  7656. BlEffect: true
  7657. DisplayPc: true
  7658. RemoveOnDamaged: true
  7659. - Status: Handicapstate_Conflagration
  7660. Icon: EFST_HANDICAPSTATE_CONFLAGRATION
  7661. DurationLookup: WH_FLAMETRAP
  7662. Flags:
  7663. BlEffect: true
  7664. DisplayPc: true
  7665. - Status: Handicapstate_Misfortune
  7666. Icon: EFST_HANDICAPSTATE_MISFORTUNE
  7667. DurationLookup: ABC_UNLUCKY_RUSH
  7668. CalcFlags:
  7669. Hit: true
  7670. Flags:
  7671. BlEffect: true
  7672. DisplayPc: true
  7673. - Status: Handicapstate_Deadlypoison
  7674. Icon: EFST_HANDICAPSTATE_DEADLYPOISON
  7675. DurationLookup: EM_VENOM_SWAMP
  7676. CalcFlags:
  7677. Def: true
  7678. Flags:
  7679. BlEffect: true
  7680. DisplayPc: true
  7681. - Status: Handicapstate_Depression
  7682. Icon: EFST_HANDICAPSTATE_DEPRESSION
  7683. Flags:
  7684. DisplayPc: true
  7685. - Status: Handicapstate_Holyflame
  7686. Icon: EFST_HANDICAPSTATE_HOLYFLAME
  7687. Flags:
  7688. DisplayPc: true
  7689. - Status: Servantweapon
  7690. Icon: EFST_SERVANTWEAPON
  7691. DurationLookup: DK_SERVANTWEAPON
  7692. Flags:
  7693. NoBanishingBuster: true
  7694. NoDispell: true
  7695. NoClearance: true
  7696. - Status: Servant_Sign
  7697. Icon: EFST_SERVANT_SIGN
  7698. DurationLookup: DK_SERVANT_W_SIGN
  7699. Flags:
  7700. BlEffect: true
  7701. DisplayPc: true
  7702. OverlapIgnoreLevel: true
  7703. RemoveOnChangeMap: true
  7704. NoBanishingBuster: true
  7705. NoDispell: true
  7706. NoClearance: true
  7707. - Status: Chargingpierce
  7708. Icon: EFST_CHARGINGPIERCE
  7709. DurationLookup: DK_CHARGINGPIERCE
  7710. Flags:
  7711. SendVal1: true
  7712. EndOnEnd:
  7713. ChargingPierce_Count: true
  7714. - Status: Chargingpierce_Count
  7715. Icon: EFST_CHARGINGPIERCE_COUNT
  7716. Flags:
  7717. SendVal1: true
  7718. DisplayPc: true
  7719. - Status: Dragonic_Aura
  7720. Icon: EFST_DRAGONIC_AURA
  7721. DurationLookup: DK_DRAGONIC_AURA
  7722. Flags:
  7723. BlEffect: true
  7724. DisplayPc: true
  7725. - Status: Vigor
  7726. Icon: EFST_VIGOR
  7727. DurationLookup: DK_VIGOR
  7728. CalcFlags:
  7729. All: true
  7730. Flags:
  7731. BlEffect: true
  7732. DisplayPc: true
  7733. - Status: Deadly_Defeasance
  7734. Icon: EFST_DEADLY_DEFEASANCE
  7735. DurationLookup: AG_DEADLY_PROJECTION
  7736. CalcFlags:
  7737. All: true
  7738. Flags:
  7739. BlEffect: true
  7740. DisplayPc: true
  7741. - Status: Climax_Des_Hu
  7742. Icon: EFST_CLIMAX_DES_HU
  7743. DurationLookup: AG_DESTRUCTIVE_HURRICANE
  7744. CalcFlags:
  7745. Matk: true
  7746. - Status: Climax
  7747. Icon: EFST_CLIMAX
  7748. DurationLookup: AG_CLIMAX
  7749. CalcFlags:
  7750. All: true
  7751. Flags:
  7752. BlEffect: true
  7753. DisplayPc: true
  7754. SendVal1: true
  7755. - Status: Climax_Earth
  7756. Icon: EFST_CLIMAX_EARTH
  7757. DurationLookup: AG_VIOLENT_QUAKE
  7758. CalcFlags:
  7759. All: true
  7760. - Status: Climax_Bloom
  7761. Icon: EFST_CLIMAX_BLOOM
  7762. DurationLookup: AG_ALL_BLOOM
  7763. CalcFlags:
  7764. All: true
  7765. - Status: Climax_Cryimp
  7766. Icon: EFST_CLIMAX_CRYIMP
  7767. DurationLookup: AG_CRYSTAL_IMPACT
  7768. CalcFlags:
  7769. All: true
  7770. - Status: Windsign
  7771. Icon: EFST_WINDSIGN
  7772. DurationLookup: WH_WIND_SIGN
  7773. Flags:
  7774. BlEffect: true
  7775. DisplayPc: true
  7776. - Status: Crescivebolt
  7777. Icon: EFST_CRESCIVEBOLT
  7778. DurationLookup: WH_CRESCIVE_BOLT
  7779. - Status: Calamitygale
  7780. Icon: EFST_CALAMITYGALE
  7781. DurationLookup: WH_CALAMITYGALE
  7782. Flags:
  7783. BlEffect: true
  7784. DisplayPc: true
  7785. - Status: Mediale
  7786. Icon: EFST_MEDIALE
  7787. DurationLookup: CD_MEDIALE_VOTUM
  7788. Flags:
  7789. BlEffect: true
  7790. DisplayPc: true
  7791. - Status: A_Vita
  7792. Icon: EFST_A_VITA
  7793. DurationLookup: CD_ARGUTUS_VITA
  7794. - Status: A_Telum
  7795. Icon: EFST_A_TELUM
  7796. DurationLookup: CD_ARGUTUS_TELUM
  7797. - Status: Pre_Acies
  7798. Icon: EFST_PRE_ACIES
  7799. DurationLookup: CD_PRESENS_ACIES
  7800. CalcFlags:
  7801. Crate: true
  7802. Flags:
  7803. BlEffect: true
  7804. DisplayPc: true
  7805. - Status: Competentia
  7806. Icon: EFST_COMPETENTIA
  7807. DurationLookup: CD_COMPETENTIA
  7808. CalcFlags:
  7809. Patk: true
  7810. Smatk: true
  7811. Flags:
  7812. BlEffect: true
  7813. DisplayPc: true
  7814. - Status: Religio
  7815. Icon: EFST_RELIGIO
  7816. DurationLookup: CD_RELIGIO
  7817. CalcFlags:
  7818. Sta: true
  7819. Wis: true
  7820. Spl: true
  7821. Flags:
  7822. BlEffect: true
  7823. DisplayPc: true
  7824. - Status: Benedictum
  7825. Icon: EFST_BENEDICTUM
  7826. DurationLookup: CD_BENEDICTUM
  7827. CalcFlags:
  7828. Pow: true
  7829. Con: true
  7830. Crt: true
  7831. Flags:
  7832. BlEffect: true
  7833. DisplayPc: true
  7834. - Status: Axe_Stomp
  7835. Icon: EFST_AXE_STOMP
  7836. DurationLookup: MT_AXE_STOMP
  7837. - Status: A_Machine
  7838. Icon: EFST_A_MACHINE
  7839. DurationLookup: MT_A_MACHINE
  7840. Flags:
  7841. BlEffect: true
  7842. DisplayPc: true
  7843. - Status: D_Machine
  7844. Icon: EFST_D_MACHINE
  7845. DurationLookup: MT_D_MACHINE
  7846. CalcFlags:
  7847. Def: true
  7848. Res: true
  7849. Flags:
  7850. BlEffect: true
  7851. DisplayPc: true
  7852. - Status: Abr_Battle_Warior
  7853. Icon: EFST_ABR_BATTLE_WARIOR
  7854. DurationLookup: MT_SUMMON_ABR_BATTLE_WARIOR
  7855. - Status: Abr_Dual_Cannon
  7856. Icon: EFST_ABR_DUAL_CANNON
  7857. DurationLookup: MT_SUMMON_ABR_DUAL_CANNON
  7858. - Status: Abr_Mother_Net
  7859. Icon: EFST_ABR_MOTHER_NET
  7860. DurationLookup: MT_SUMMON_ABR_MOTHER_NET
  7861. - Status: Abr_Infinity
  7862. Icon: EFST_ABR_INFINITY
  7863. DurationLookup: MT_SUMMON_ABR_INFINITY
  7864. - Status: Shadow_Exceed
  7865. Icon: EFST_SHADOW_EXCEED
  7866. DurationLookup: SHC_SHADOW_EXCEED
  7867. Flags:
  7868. BlEffect: true
  7869. DisplayPc: true
  7870. - Status: Dancing_Knife
  7871. Icon: EFST_DANCING_KNIFE
  7872. DurationLookup: SHC_DANCING_KNIFE
  7873. Flags:
  7874. BlEffect: true
  7875. DisplayPc: true
  7876. RequireWeapon: true
  7877. - Status: Potent_Venom
  7878. Icon: EFST_POTENT_VENOM
  7879. DurationLookup: SHC_POTENT_VENOM
  7880. - Status: Shadow_Scar
  7881. Icon: EFST_SHADOW_SCAR
  7882. - Status: E_Slash_Count
  7883. Icon: EFST_E_SLASH_COUNT
  7884. DurationLookup: SHC_ETERNAL_SLASH
  7885. Flags:
  7886. BlEffect: true
  7887. DisplayPc: true
  7888. SendVal1: true
  7889. - Status: Shadow_Weapon
  7890. Icon: EFST_SHADOW_WEAPON
  7891. DurationLookup: SHC_ENCHANTING_SHADOW
  7892. - Status: Guard_Stance
  7893. Icon: EFST_GUARD_STANCE
  7894. DurationLookup: IG_GUARD_STANCE
  7895. CalcFlags:
  7896. Watk: true
  7897. Def: true
  7898. Flags:
  7899. NoRemoveOnDead: true
  7900. NoSave: true
  7901. NoBanishingBuster: true
  7902. NoDispell: true
  7903. NoClearance: true
  7904. EndOnStart:
  7905. Attack_Stance: true
  7906. - Status: Attack_Stance
  7907. Icon: EFST_ATTACK_STANCE
  7908. DurationLookup: IG_ATTACK_STANCE
  7909. CalcFlags:
  7910. Watk: true
  7911. Def: true
  7912. Flags:
  7913. NoRemoveOnDead: true
  7914. NoSave: true
  7915. NoBanishingBuster: true
  7916. NoDispell: true
  7917. NoClearance: true
  7918. EndOnStart:
  7919. Guard_Stance: true
  7920. - Status: Guardian_S
  7921. Icon: EFST_GUARDIAN_S
  7922. DurationLookup: IG_GUARDIAN_SHIELD
  7923. - Status: Rebound_S
  7924. Icon: EFST_REBOUND_S
  7925. DurationLookup: IG_REBOUND_SHIELD
  7926. - Status: Holy_S
  7927. Icon: EFST_HOLY_S
  7928. DurationLookup: IG_HOLY_SHIELD
  7929. CalcFlags:
  7930. All: true
  7931. Flags:
  7932. BlEffect: true
  7933. DisplayPc: true
  7934. - Status: Ultimate_S
  7935. Icon: EFST_ULTIMATE_S
  7936. DurationLookup: IG_ULTIMATE_SACRIFICE
  7937. - Status: Spear_Scar
  7938. Icon: EFST_SPEAR_SCAR
  7939. DurationLookup: IG_GRAND_JUDGEMENT
  7940. Flags:
  7941. BlEffect: true
  7942. DisplayPc: true
  7943. - Status: Shield_Power
  7944. Icon: EFST_SHIELD_POWER
  7945. DurationLookup: IG_SHIELD_SHOOTING
  7946. - Status: Spell_Enchanting
  7947. Icon: EFST_SPELL_ENCHANTING
  7948. DurationLookup: EM_SPELL_ENCHANTING
  7949. CalcFlags:
  7950. Smatk: true
  7951. - Status: Summon_Elemental_Ardor
  7952. Icon: EFST_SUMMON_ELEMENTAL_ARDOR
  7953. DurationLookup: EM_SUMMON_ELEMENTAL_ARDOR
  7954. - Status: Summon_Elemental_Diluvio
  7955. Icon: EFST_SUMMON_ELEMENTAL_DILUVIO
  7956. DurationLookup: EM_SUMMON_ELEMENTAL_DILUVIO
  7957. - Status: Summon_Elemental_Procella
  7958. Icon: EFST_SUMMON_ELEMENTAL_PROCELLA
  7959. DurationLookup: EM_SUMMON_ELEMENTAL_PROCELLA
  7960. - Status: Summon_Elemental_Terremotus
  7961. Icon: EFST_SUMMON_ELEMENTAL_TERREMOTUS
  7962. DurationLookup: EM_SUMMON_ELEMENTAL_TERREMOTUS
  7963. - Status: Summon_Elemental_Serpens
  7964. Icon: EFST_SUMMON_ELEMENTAL_SERPENS
  7965. DurationLookup: EM_SUMMON_ELEMENTAL_SERPENS
  7966. - Status: Elemental_Veil
  7967. Icon: EFST_ELEMENTAL_VEIL
  7968. DurationLookup: EM_ELEMENTAL_VEIL
  7969. Flags:
  7970. BlEffect: true
  7971. DisplayPc: true
  7972. - Status: Mystic_Symphony
  7973. Icon: EFST_MYSTIC_SYMPHONY
  7974. DurationLookup: TR_MYSTIC_SYMPHONY
  7975. Flags:
  7976. BlEffect: true
  7977. DisplayPc: true
  7978. - Status: Kvasir_Sonata
  7979. Icon: EFST_KVASIR_SONATA
  7980. DurationLookup: TR_KVASIR_SONATA
  7981. - Status: Soundblend
  7982. Icon: EFST_SOUNDBLEND
  7983. DurationLookup: TR_SOUNDBLEND
  7984. Flags:
  7985. BlEffect: true
  7986. DisplayPc: true
  7987. - Status: Gef_Nocturn
  7988. Icon: EFST_GEF_NOCTURN
  7989. DurationLookup: TR_GEF_NOCTURN
  7990. CalcFlags:
  7991. Mres: true
  7992. - Status: Ain_Rhapsody
  7993. Icon: EFST_AIN_RHAPSODY
  7994. DurationLookup: TR_AIN_RHAPSODY
  7995. CalcFlags:
  7996. Res: true
  7997. - Status: Musical_Interlude
  7998. Icon: EFST_MUSICAL_INTERLUDE
  7999. DurationLookup: TR_MUSICAL_INTERLUDE
  8000. CalcFlags:
  8001. Res: true
  8002. - Status: Jawaii_Serenade
  8003. Icon: EFST_JAWAII_SERENADE
  8004. DurationLookup: TR_JAWAII_SERENADE
  8005. CalcFlags:
  8006. Smatk: true
  8007. Speed: true
  8008. - Status: Pron_March
  8009. Icon: EFST_PRON_MARCH
  8010. DurationLookup: TR_PRON_MARCH
  8011. CalcFlags:
  8012. Patk: true
  8013. - Status: Roseblossom
  8014. Icon: EFST_ROSEBLOSSOM
  8015. DurationLookup: TR_ROSEBLOSSOM
  8016. - Status: Powerful_Faith
  8017. Icon: EFST_POWERFUL_FAITH
  8018. DurationLookup: IQ_POWERFUL_FAITH
  8019. CalcFlags:
  8020. Watk: true
  8021. Patk: true
  8022. EndOnStart:
  8023. Powerful_Faith: true
  8024. Firm_Faith: true
  8025. Sincere_Faith: true
  8026. - Status: Sincere_Faith
  8027. Icon: EFST_SINCERE_FAITH
  8028. DurationLookup: IQ_SINCERE_FAITH
  8029. CalcFlags:
  8030. All: true
  8031. EndOnStart:
  8032. Powerful_Faith: true
  8033. Firm_Faith: true
  8034. Sincere_Faith: true
  8035. - Status: Firm_Faith
  8036. Icon: EFST_FIRM_FAITH
  8037. DurationLookup: IQ_FIRM_FAITH
  8038. CalcFlags:
  8039. MaxHp: true
  8040. Res: true
  8041. EndOnStart:
  8042. Powerful_Faith: true
  8043. Firm_Faith: true
  8044. Sincere_Faith: true
  8045. - Status: Holy_Oil
  8046. Icon: EFST_HOLY_OIL
  8047. DurationLookup: IQ_OLEUM_SANCTUM
  8048. Flags:
  8049. BlEffect: true
  8050. DisplayPc: true
  8051. - Status: First_Brand
  8052. Icon: EFST_FIRST_BRAND
  8053. DurationLookup: IQ_FIRST_BRAND
  8054. Flags:
  8055. BlEffect: true
  8056. DisplayPc: true
  8057. EndOnStart:
  8058. First_Brand: true
  8059. Second_Brand: true
  8060. - Status: Second_Brand
  8061. Icon: EFST_SECOND_BRAND
  8062. DurationLookup: IQ_SECOND_FLAME
  8063. Flags:
  8064. BlEffect: true
  8065. DisplayPc: true
  8066. EndOnStart:
  8067. First_Brand: true
  8068. Second_Brand: true
  8069. - Status: Second_Judge
  8070. Icon: EFST_SECOND_JUDGE
  8071. DurationLookup: IQ_JUDGE
  8072. Flags:
  8073. BlEffect: true
  8074. DisplayPc: true
  8075. EndOnStart:
  8076. First_Faith_Power: true
  8077. Second_Judge: true
  8078. Third_Exor_Flame: true
  8079. - Status: Third_Exor_Flame
  8080. Icon: EFST_THIRD_EXOR_FLAME
  8081. DurationLookup: IQ_THIRD_EXOR_FLAME
  8082. Flags:
  8083. BlEffect: true
  8084. DisplayPc: true
  8085. EndOnStart:
  8086. First_Faith_Power: true
  8087. Second_Judge: true
  8088. Third_Exor_Flame: true
  8089. - Status: First_Faith_Power
  8090. Icon: EFST_FIRST_FAITH_POWER
  8091. DurationLookup: IQ_FIRST_FAITH_POWER
  8092. Flags:
  8093. BlEffect: true
  8094. DisplayPc: true
  8095. EndOnStart:
  8096. First_Faith_Power: true
  8097. Second_Judge: true
  8098. Third_Exor_Flame: true
  8099. - Status: Massive_F_Blaster
  8100. Icon: EFST_MASSIVE_F_BLASTER
  8101. DurationLookup: IQ_MASSIVE_F_BLASTER
  8102. - Status: Protectshadowequip
  8103. Icon: EFST_PROTECTSHADOWEQUIP
  8104. DurationLookup: BO_ADVANCE_PROTECTION
  8105. Flags:
  8106. RemoveChemicalProtect: true
  8107. NoBanishingBuster: true
  8108. NoDispell: true
  8109. NoClearance: true
  8110. - Status: Researchreport
  8111. Icon: EFST_RESEARCHREPORT
  8112. DurationLookup: BO_RESEARCHREPORT
  8113. - Status: Bo_Hell_Dusty
  8114. Icon: EFST_BO_HELL_DUSTY
  8115. - Status: Bionic_Woodenwarrior
  8116. DurationLookup: BO_WOODENWARRIOR
  8117. - Status: Bionic_Wooden_Fairy
  8118. DurationLookup: BO_WOODEN_FAIRY
  8119. - Status: Bionic_Creeper
  8120. DurationLookup: BO_CREEPER
  8121. - Status: Bionic_Helltree
  8122. DurationLookup: BO_HELLTREE
  8123. - Status: Shadow_Strip
  8124. Icon: EFST_SHADOW_STRIP
  8125. DurationLookup: ABC_STRIP_SHADOW
  8126. CalcFlags:
  8127. Res: true
  8128. Mres: true
  8129. Flags:
  8130. BossResist: true
  8131. NoClearbuff: true
  8132. Debuff: true
  8133. NoBanishingBuster: true
  8134. NoDispell: true
  8135. NoClearance: true
  8136. - Status: Abyss_Dagger
  8137. Icon: EFST_ABYSS_DAGGER
  8138. DurationLookup: ABC_ABYSS_DAGGER
  8139. - Status: Abyssforceweapon
  8140. Icon: EFST_ABYSSFORCEWEAPON
  8141. DurationLookup: ABC_FROM_THE_ABYSS
  8142. Flags:
  8143. NoBanishingBuster: true
  8144. NoDispell: true
  8145. NoClearance: true
  8146. - Status: Abyss_Slayer
  8147. Icon: EFST_ABYSS_SLAYER
  8148. DurationLookup: ABC_ABYSS_SLAYER
  8149. CalcFlags:
  8150. Hit: true
  8151. Patk: true
  8152. Smatk: true
  8153. Flags:
  8154. BlEffect: true
  8155. DisplayPc: true
  8156. - Status: Flametechnic
  8157. Icon: EFST_FLAMETECHNIC
  8158. Flags:
  8159. RemoveElementalOption: true
  8160. - Status: Flametechnic_Option
  8161. Icon: EFST_FLAMETECHNIC_OPTION
  8162. DurationLookup: EM_EL_FLAMETECHNIC
  8163. Flags:
  8164. RemoveElementalOption: true
  8165. - Status: Flamearmor
  8166. Icon: EFST_FLAMEARMOR
  8167. Flags:
  8168. RemoveElementalOption: true
  8169. - Status: Flamearmor_Option
  8170. Icon: EFST_FLAMEARMOR_OPTION
  8171. DurationLookup: EM_EL_FLAMEARMOR
  8172. CalcFlags:
  8173. All: true
  8174. Flags:
  8175. RemoveElementalOption: true
  8176. - Status: Cold_Force
  8177. Icon: EFST_COLD_FORCE
  8178. Flags:
  8179. RemoveElementalOption: true
  8180. - Status: Cold_Force_Option
  8181. Icon: EFST_COLD_FORCE_OPTION
  8182. DurationLookup: EM_EL_COLD_FORCE
  8183. Flags:
  8184. RemoveElementalOption: true
  8185. - Status: Crystal_Armor
  8186. Icon: EFST_CRYSTAL_ARMOR
  8187. Flags:
  8188. RemoveElementalOption: true
  8189. - Status: Crystal_Armor_Option
  8190. Icon: EFST_CRYSTAL_ARMOR_OPTION
  8191. DurationLookup: EM_EL_CRYSTAL_ARMOR
  8192. CalcFlags:
  8193. All: true
  8194. Flags:
  8195. RemoveElementalOption: true
  8196. - Status: Grace_Breeze
  8197. Icon: EFST_GRACE_BREEZE
  8198. Flags:
  8199. RemoveElementalOption: true
  8200. - Status: Grace_Breeze_Option
  8201. Icon: EFST_GRACE_BREEZE_OPTION
  8202. DurationLookup: EM_EL_GRACE_BREEZE
  8203. Flags:
  8204. RemoveElementalOption: true
  8205. - Status: Eyes_Of_Storm
  8206. Icon: EFST_EYES_OF_STORM
  8207. Flags:
  8208. RemoveElementalOption: true
  8209. - Status: Eyes_Of_Storm_Option
  8210. Icon: EFST_EYES_OF_STORM_OPTION
  8211. DurationLookup: EM_EL_EYES_OF_STORM
  8212. CalcFlags:
  8213. All: true
  8214. Flags:
  8215. RemoveElementalOption: true
  8216. - Status: Earth_Care
  8217. Icon: EFST_EARTH_CARE
  8218. Flags:
  8219. RemoveElementalOption: true
  8220. - Status: Earth_Care_Option
  8221. Icon: EFST_EARTH_CARE_OPTION
  8222. DurationLookup: EM_EL_EARTH_CARE
  8223. Flags:
  8224. RemoveElementalOption: true
  8225. - Status: Strong_Protection
  8226. Icon: EFST_STRONG_PROTECTION
  8227. Flags:
  8228. RemoveElementalOption: true
  8229. - Status: Strong_Protection_Option
  8230. Icon: EFST_STRONG_PROTECTION_OPTION
  8231. DurationLookup: EM_EL_STRONG_PROTECTION
  8232. CalcFlags:
  8233. All: true
  8234. Flags:
  8235. RemoveElementalOption: true
  8236. - Status: Deep_Poisoning
  8237. Icon: EFST_DEEP_POISONING
  8238. Flags:
  8239. RemoveElementalOption: true
  8240. - Status: Deep_Poisoning_Option
  8241. Icon: EFST_DEEP_POISONING_OPTION
  8242. DurationLookup: EM_EL_DEEP_POISONING
  8243. Flags:
  8244. RemoveElementalOption: true
  8245. - Status: Poison_Shield
  8246. Icon: EFST_POISON_SHIELD
  8247. Flags:
  8248. RemoveElementalOption: true
  8249. - Status: Poison_Shield_Option
  8250. Icon: EFST_POISON_SHIELD_OPTION
  8251. DurationLookup: EM_EL_POISON_SHIELD
  8252. CalcFlags:
  8253. All: true
  8254. Flags:
  8255. RemoveElementalOption: true
  8256. - Status: M_Lifepotion
  8257. Icon: EFST_M_LIFEPOTION
  8258. Flags:
  8259. NoDispell: true
  8260. NoBanishingBuster: true
  8261. NoClearance: true
  8262. - Status: S_Manapotion
  8263. Icon: EFST_S_MANAPOTION
  8264. Flags:
  8265. NoDispell: true
  8266. NoBanishingBuster: true
  8267. NoClearance: true
  8268. - Status: Sub_Weaponproperty
  8269. Flags:
  8270. NoBanishingBuster: true
  8271. NoDispell: true
  8272. NoClearance: true
  8273. NoRemoveOnDead: true
  8274. NoClearbuff: true
  8275. EndOnStart:
  8276. Sub_Weaponproperty: true
  8277. - Status: Almighty
  8278. Icon: EFST_ALMIGHTY
  8279. CalcFlags:
  8280. Batk: true
  8281. Matk: true
  8282. Flags:
  8283. NoRemoveOnDead: true
  8284. NoClearbuff: true
  8285. NoDispell: true
  8286. NoBanishingBuster: true
  8287. NoClearance: true
  8288. EndOnStart:
  8289. UltimateCook: true
  8290. - Status: UltimateCook
  8291. Icon: EFST_ULTIMATECOOK
  8292. CalcFlags:
  8293. Str: true
  8294. Agi: true
  8295. Vit: true
  8296. Int: true
  8297. Dex: true
  8298. Luk: true
  8299. Batk: true
  8300. Matk: true
  8301. Flags:
  8302. NoClearbuff: true
  8303. NoDispell: true
  8304. NoBanishingBuster: true
  8305. NoClearance: true
  8306. EndOnStart:
  8307. Food_Str_Cash: true
  8308. Food_Agi_Cash: true
  8309. Food_Vit_Cash: true
  8310. Food_Int_Cash: true
  8311. Food_Dex_Cash: true
  8312. Food_Luk_Cash: true
  8313. Almighty: true
  8314. - Status: M_DefScroll
  8315. Icon: EFST_M_DEFSCROLL
  8316. CalcFlags:
  8317. Def: true
  8318. Mdef: true
  8319. Flags:
  8320. NoClearbuff: true
  8321. NoDispell: true
  8322. NoBanishingBuster: true
  8323. NoClearance: true
  8324. - Status: Infinity_Drink
  8325. Icon: EFST_INFINITY_DRINK
  8326. CalcFlags:
  8327. All: true
  8328. Flags:
  8329. NoClearbuff: true
  8330. NoDispell: true
  8331. NoBanishingBuster: true
  8332. NoClearance: true
  8333. - Status: Mental_Potion
  8334. Icon: EFST_TARGET_ASPD
  8335. CalcFlags:
  8336. All: true
  8337. Flags:
  8338. NoClearbuff: true
  8339. NoDispell: true
  8340. NoBanishingBuster: true
  8341. NoClearance: true
  8342. - Status: Limit_Power_Booster
  8343. Icon: EFST_LIMIT_POWER_BOOSTER
  8344. CalcFlags:
  8345. All: true
  8346. Flags:
  8347. NoClearbuff: true
  8348. NoDispell: true
  8349. NoBanishingBuster: true
  8350. NoClearance: true
  8351. - Status: Combat_Pill
  8352. Icon: EFST_GM_BATTLE
  8353. CalcFlags:
  8354. All: true
  8355. Flags:
  8356. NoRemoveOnDead: true
  8357. NoClearbuff: true
  8358. NoDispell: true
  8359. NoBanishingBuster: true
  8360. NoClearance: true
  8361. - Status: Combat_Pill2
  8362. Icon: EFST_GM_BATTLE2
  8363. CalcFlags:
  8364. All: true
  8365. Flags:
  8366. NoRemoveOnDead: true
  8367. NoClearbuff: true
  8368. NoDispell: true
  8369. NoBanishingBuster: true
  8370. NoClearance: true
  8371. - Status: MysticPowder
  8372. Icon: EFST_MYSTICPOWDER
  8373. CalcFlags:
  8374. Luk: true
  8375. Flee: true
  8376. Flags:
  8377. NoRemoveOnDead: true
  8378. NoClearbuff: true
  8379. NoDispell: true
  8380. NoBanishingBuster: true
  8381. NoClearance: true
  8382. - Status: SparkCandy
  8383. Icon: EFST_STEAMPACK
  8384. CalcFlags:
  8385. All: true
  8386. Flags:
  8387. NoRemoveOnDead: true
  8388. NoClearbuff: true
  8389. NoDispell: true
  8390. NoBanishingBuster: true
  8391. NoClearance: true
  8392. - Status: MagicCandy
  8393. Icon: EFST_MAGIC_CANDY
  8394. CalcFlags:
  8395. All: true
  8396. Flags:
  8397. NoRemoveOnDead: true
  8398. NoClearbuff: true
  8399. NoDispell: true
  8400. NoBanishingBuster: true
  8401. NoClearance: true
  8402. - Status: Acaraje
  8403. Icon: EFST_ACARAJE
  8404. CalcFlags:
  8405. Hit: true
  8406. Aspd: true
  8407. Flags:
  8408. NoRemoveOnDead: true
  8409. NoClearbuff: true
  8410. NoDispell: true
  8411. NoBanishingBuster: true
  8412. NoClearance: true
  8413. - Status: PopeCookie
  8414. Icon: EFST_POPECOOKIE
  8415. CalcFlags:
  8416. All: true
  8417. Flags:
  8418. NoRemoveOnDead: true
  8419. NoClearbuff: true
  8420. NoDispell: true
  8421. NoBanishingBuster: true
  8422. NoClearance: true
  8423. - Status: Vitalize_Potion
  8424. Icon: EFST_VITALIZE_POTION
  8425. CalcFlags:
  8426. All: true
  8427. Flags:
  8428. NoClearbuff: true
  8429. NoBanishingBuster: true
  8430. NoClearance: true
  8431. - Status: Cup_Of_Boza
  8432. Icon: EFST_CUP_OF_BOZA
  8433. CalcFlags:
  8434. All: true
  8435. Flags:
  8436. NoRemoveOnDead: true
  8437. NoClearbuff: true
  8438. NoDispell: true
  8439. NoBanishingBuster: true
  8440. NoClearance: true
  8441. - Status: SKF_MATK
  8442. Icon: EFST_SKF_MATK
  8443. CalcFlags:
  8444. Matk: true
  8445. Flags:
  8446. NoRemoveOnDead: true
  8447. NoClearbuff: true
  8448. NoDispell: true
  8449. NoBanishingBuster: true
  8450. NoClearance: true
  8451. - Status: SKF_ATK
  8452. Icon: EFST_SKF_ATK
  8453. CalcFlags:
  8454. Batk: true
  8455. Flags:
  8456. NoRemoveOnDead: true
  8457. NoClearbuff: true
  8458. NoDispell: true
  8459. NoBanishingBuster: true
  8460. NoClearance: true
  8461. - Status: SKF_ASPD
  8462. Icon: EFST_SKF_ASPD
  8463. CalcFlags:
  8464. Aspd: true
  8465. Flags:
  8466. NoRemoveOnDead: true
  8467. NoClearbuff: true
  8468. NoDispell: true
  8469. NoBanishingBuster: true
  8470. NoClearance: true
  8471. - Status: SKF_CAST
  8472. Icon: EFST_SKF_CAST
  8473. CalcFlags:
  8474. All: true
  8475. Flags:
  8476. NoRemoveOnDead: true
  8477. NoClearbuff: true
  8478. NoDispell: true
  8479. NoBanishingBuster: true
  8480. NoClearance: true
  8481. - Status: Beef_Rib_Stew
  8482. Icon: EFST_BEEF_RIB_STEW
  8483. CalcFlags:
  8484. All: true
  8485. Flags:
  8486. NoRemoveOnDead: true
  8487. NoClearbuff: true
  8488. NoDispell: true
  8489. NoBanishingBuster: true
  8490. NoClearance: true
  8491. - Status: Pork_Rib_Stew
  8492. Icon: EFST_PORK_RIB_STEW
  8493. CalcFlags:
  8494. All: true
  8495. Flags:
  8496. NoRemoveOnDead: true
  8497. NoClearbuff: true
  8498. NoDispell: true
  8499. NoBanishingBuster: true
  8500. NoClearance: true
  8501. - Status: WeaponBreaker
  8502. DurationLookup: NPC_WEAPONBRAKER
  8503. - Status: Tempering
  8504. Icon: EFST_TEMPERING
  8505. DurationLookup: MH_TEMPERING
  8506. CalcFlags:
  8507. Patk: true
  8508. - Status: Goldene_Tone
  8509. Icon: EFST_GOLDENE_TONE
  8510. DurationLookup: MH_GOLDENE_TONE
  8511. CalcFlags:
  8512. Res: true
  8513. Mres: true
  8514. - Status: Toxin_of_Mandara
  8515. Icon: EFST_TOXIN_OF_MANDARA
  8516. DurationLookup: MH_TOXIN_OF_MANDARA
  8517. Flags:
  8518. Debuff: true
  8519. CalcFlags:
  8520. Res: true
  8521. - Status: GRADUAL_GRAVITY
  8522. Icon: EFST_GRADUAL_GRAVITY
  8523. DurationLookup: NPC_GRADUAL_GRAVITY
  8524. Flags:
  8525. BlEffect: true
  8526. DisplayPc: true
  8527. NoDispell: true
  8528. NoClearance: true
  8529. - Status: ALL_STAT_DOWN
  8530. Icon: EFST_ALL_STAT_DOWN
  8531. DurationLookup: NPC_ALL_STAT_DOWN
  8532. CalcFlags:
  8533. Str: true
  8534. Agi: true
  8535. Vit: true
  8536. Int: true
  8537. Dex: true
  8538. Luk: true
  8539. Flags:
  8540. NoDispell: true
  8541. NoClearance: true
  8542. - Status: Killing_Aura
  8543. Icon: EFST_KILLING_AURA
  8544. DurationLookup: NPC_KILLING_AURA
  8545. Flags:
  8546. BlEffect: true
  8547. DisplayPc: true
  8548. NoDispell: true
  8549. NoBanishingBuster: true
  8550. NoClearance: true
  8551. - Status: DAMAGE_HEAL
  8552. Icon: EFST_DAMAGE_HEAL
  8553. DurationLookup: NPC_DAMAGE_HEAL
  8554. Flags:
  8555. NoDispell: true
  8556. - Status: IMMUNE_PROPERTY_NOTHING
  8557. Icon: EFST_IMMUNE_PROPERTY_NOTHING
  8558. DurationLookup: NPC_IMMUNE_PROPERTY
  8559. Flags:
  8560. BlEffect: true
  8561. DisplayPc: true
  8562. EndOnStart:
  8563. IMMUNE_PROPERTY_WATER: true
  8564. IMMUNE_PROPERTY_GROUND: true
  8565. IMMUNE_PROPERTY_FIRE: true
  8566. IMMUNE_PROPERTY_WIND: true
  8567. IMMUNE_PROPERTY_POISON: true
  8568. IMMUNE_PROPERTY_SAINT: true
  8569. IMMUNE_PROPERTY_DARKNESS: true
  8570. IMMUNE_PROPERTY_TELEKINESIS: true
  8571. IMMUNE_PROPERTY_UNDEAD: true
  8572. - Status: IMMUNE_PROPERTY_WATER
  8573. Icon: EFST_IMMUNE_PROPERTY_WATER
  8574. DurationLookup: NPC_IMMUNE_PROPERTY
  8575. Flags:
  8576. BlEffect: true
  8577. DisplayPc: true
  8578. EndOnStart:
  8579. IMMUNE_PROPERTY_NOTHING: true
  8580. IMMUNE_PROPERTY_GROUND: true
  8581. IMMUNE_PROPERTY_FIRE: true
  8582. IMMUNE_PROPERTY_WIND: true
  8583. IMMUNE_PROPERTY_POISON: true
  8584. IMMUNE_PROPERTY_SAINT: true
  8585. IMMUNE_PROPERTY_DARKNESS: true
  8586. IMMUNE_PROPERTY_TELEKINESIS: true
  8587. IMMUNE_PROPERTY_UNDEAD: true
  8588. - Status: IMMUNE_PROPERTY_GROUND
  8589. Icon: EFST_IMMUNE_PROPERTY_GROUND
  8590. DurationLookup: NPC_IMMUNE_PROPERTY
  8591. Flags:
  8592. BlEffect: true
  8593. DisplayPc: true
  8594. EndOnStart:
  8595. IMMUNE_PROPERTY_NOTHING: true
  8596. IMMUNE_PROPERTY_WATER: true
  8597. IMMUNE_PROPERTY_FIRE: true
  8598. IMMUNE_PROPERTY_WIND: true
  8599. IMMUNE_PROPERTY_POISON: true
  8600. IMMUNE_PROPERTY_SAINT: true
  8601. IMMUNE_PROPERTY_DARKNESS: true
  8602. IMMUNE_PROPERTY_TELEKINESIS: true
  8603. IMMUNE_PROPERTY_UNDEAD: true
  8604. - Status: IMMUNE_PROPERTY_FIRE
  8605. Icon: EFST_IMMUNE_PROPERTY_FIRE
  8606. DurationLookup: NPC_IMMUNE_PROPERTY
  8607. Flags:
  8608. BlEffect: true
  8609. DisplayPc: true
  8610. EndOnStart:
  8611. IMMUNE_PROPERTY_NOTHING: true
  8612. IMMUNE_PROPERTY_WATER: true
  8613. IMMUNE_PROPERTY_GROUND: true
  8614. IMMUNE_PROPERTY_WIND: true
  8615. IMMUNE_PROPERTY_POISON: true
  8616. IMMUNE_PROPERTY_SAINT: true
  8617. IMMUNE_PROPERTY_DARKNESS: true
  8618. IMMUNE_PROPERTY_TELEKINESIS: true
  8619. IMMUNE_PROPERTY_UNDEAD: true
  8620. - Status: IMMUNE_PROPERTY_WIND
  8621. Icon: EFST_IMMUNE_PROPERTY_WIND
  8622. DurationLookup: NPC_IMMUNE_PROPERTY
  8623. Flags:
  8624. BlEffect: true
  8625. DisplayPc: true
  8626. EndOnStart:
  8627. IMMUNE_PROPERTY_NOTHING: true
  8628. IMMUNE_PROPERTY_WATER: true
  8629. IMMUNE_PROPERTY_GROUND: true
  8630. IMMUNE_PROPERTY_FIRE: true
  8631. IMMUNE_PROPERTY_POISON: true
  8632. IMMUNE_PROPERTY_SAINT: true
  8633. IMMUNE_PROPERTY_DARKNESS: true
  8634. IMMUNE_PROPERTY_TELEKINESIS: true
  8635. IMMUNE_PROPERTY_UNDEAD: true
  8636. - Status: IMMUNE_PROPERTY_POISON
  8637. Icon: EFST_IMMUNE_PROPERTY_POISON
  8638. DurationLookup: NPC_IMMUNE_PROPERTY
  8639. Flags:
  8640. BlEffect: true
  8641. DisplayPc: true
  8642. EndOnStart:
  8643. IMMUNE_PROPERTY_NOTHING: true
  8644. IMMUNE_PROPERTY_WATER: true
  8645. IMMUNE_PROPERTY_GROUND: true
  8646. IMMUNE_PROPERTY_FIRE: true
  8647. IMMUNE_PROPERTY_WIND: true
  8648. IMMUNE_PROPERTY_SAINT: true
  8649. IMMUNE_PROPERTY_DARKNESS: true
  8650. IMMUNE_PROPERTY_TELEKINESIS: true
  8651. IMMUNE_PROPERTY_UNDEAD: true
  8652. - Status: IMMUNE_PROPERTY_SAINT
  8653. Icon: EFST_IMMUNE_PROPERTY_SAINT
  8654. DurationLookup: NPC_IMMUNE_PROPERTY
  8655. Flags:
  8656. BlEffect: true
  8657. DisplayPc: true
  8658. EndOnStart:
  8659. IMMUNE_PROPERTY_NOTHING: true
  8660. IMMUNE_PROPERTY_WATER: true
  8661. IMMUNE_PROPERTY_GROUND: true
  8662. IMMUNE_PROPERTY_FIRE: true
  8663. IMMUNE_PROPERTY_WIND: true
  8664. IMMUNE_PROPERTY_POISON: true
  8665. IMMUNE_PROPERTY_DARKNESS: true
  8666. IMMUNE_PROPERTY_TELEKINESIS: true
  8667. IMMUNE_PROPERTY_UNDEAD: true
  8668. - Status: IMMUNE_PROPERTY_DARKNESS
  8669. Icon: EFST_IMMUNE_PROPERTY_DARKNESS
  8670. DurationLookup: NPC_IMMUNE_PROPERTY
  8671. Flags:
  8672. BlEffect: true
  8673. DisplayPc: true
  8674. EndOnStart:
  8675. IMMUNE_PROPERTY_NOTHING: true
  8676. IMMUNE_PROPERTY_WATER: true
  8677. IMMUNE_PROPERTY_GROUND: true
  8678. IMMUNE_PROPERTY_FIRE: true
  8679. IMMUNE_PROPERTY_WIND: true
  8680. IMMUNE_PROPERTY_POISON: true
  8681. IMMUNE_PROPERTY_SAINT: true
  8682. IMMUNE_PROPERTY_TELEKINESIS: true
  8683. IMMUNE_PROPERTY_UNDEAD: true
  8684. - Status: IMMUNE_PROPERTY_TELEKINESIS
  8685. Icon: EFST_IMMUNE_PROPERTY_TELEKINESIS
  8686. DurationLookup: NPC_IMMUNE_PROPERTY
  8687. Flags:
  8688. BlEffect: true
  8689. DisplayPc: true
  8690. EndOnStart:
  8691. IMMUNE_PROPERTY_NOTHING: true
  8692. IMMUNE_PROPERTY_WATER: true
  8693. IMMUNE_PROPERTY_GROUND: true
  8694. IMMUNE_PROPERTY_FIRE: true
  8695. IMMUNE_PROPERTY_WIND: true
  8696. IMMUNE_PROPERTY_POISON: true
  8697. IMMUNE_PROPERTY_SAINT: true
  8698. IMMUNE_PROPERTY_DARKNESS: true
  8699. IMMUNE_PROPERTY_UNDEAD: true
  8700. - Status: IMMUNE_PROPERTY_UNDEAD
  8701. Icon: EFST_IMMUNE_PROPERTY_UNDEAD
  8702. DurationLookup: NPC_IMMUNE_PROPERTY
  8703. Flags:
  8704. BlEffect: true
  8705. DisplayPc: true
  8706. EndOnStart:
  8707. IMMUNE_PROPERTY_NOTHING: true
  8708. IMMUNE_PROPERTY_WATER: true
  8709. IMMUNE_PROPERTY_GROUND: true
  8710. IMMUNE_PROPERTY_FIRE: true
  8711. IMMUNE_PROPERTY_WIND: true
  8712. IMMUNE_PROPERTY_POISON: true
  8713. IMMUNE_PROPERTY_SAINT: true
  8714. IMMUNE_PROPERTY_DARKNESS: true
  8715. IMMUNE_PROPERTY_TELEKINESIS: true
  8716. - Status: RELIEVE_ON
  8717. Icon: EFST_RELIEVE_DAMAGE
  8718. DurationLookup: NPC_RELIEVE_ON
  8719. Flags:
  8720. BlEffect: true
  8721. DisplayPc: true
  8722. NoDispell: true
  8723. NoBanishingBuster: true
  8724. NoClearance: true
  8725. EndOnStart:
  8726. Relieve_off: true
  8727. - Status: Relieve_off
  8728. DurationLookup: NPC_RELIEVE_OFF
  8729. Flags:
  8730. NoDispell: true
  8731. NoBanishingBuster: true
  8732. NoClearance: true
  8733. EndOnStart:
  8734. Relieve_on: true
  8735. - Status: Rush_Quake1
  8736. Icon: EFST_RUSH_QUAKE1
  8737. DurationLookup: MT_RUSH_QUAKE
  8738. Flags:
  8739. BlEffect: true
  8740. Debuff: true
  8741. - Status: Rush_Quake2
  8742. Icon: EFST_RUSH_QUAKE2
  8743. DurationLookup: MT_RUSH_QUAKE
  8744. CalcFlags:
  8745. All: true
  8746. - Status: G_LIFEPOTION
  8747. Icon: EFST_G_LIFEPOTION
  8748. Flags:
  8749. NoDispell: true
  8750. NoBanishingBuster: true
  8751. NoClearance: true