status.yml 199 KB

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