status.yml 154 KB

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