status.yml 186 KB

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