status.yml 189 KB

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