status.yml 179 KB

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