status.yml 155 KB

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