status.yml 204 KB

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