status.yml 154 KB

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