status.yml 152 KB

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