status.yml 179 KB

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