status.yml 155 KB

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