├── Elecbyte.MUGEN.libs ├── Elecbyte.MUGEN.libs.manifest ├── Microsoft.VC90.CRT │ ├── Microsoft.VC90.CRT.manifest │ ├── msvcm90.dll │ └── msvcr90.dll ├── README-SDL.txt ├── SDL.dll ├── SDL_gfx.dll ├── SDL_image.dll ├── SDL_mixer.dll ├── SDL_ttf.dll ├── glew32.dll ├── libfreetype-6.dll ├── libmpg123-0.dll ├── libpng12-0.dll ├── libresample.dll ├── mikmod.dll ├── pthreadVC2.dll └── zlib1.dll ├── Microsoft.VC90.CRT ├── Microsoft.VC90.CRT.manifest ├── msvcm90.dll └── msvcr90.dll ├── chars ├── kfm │ ├── ending.def │ ├── ending.sff │ ├── intro.def │ ├── intro.sff │ ├── kfm.air │ ├── kfm.cmd │ ├── kfm.cns │ ├── kfm.def │ ├── kfm.sff │ ├── kfm.snd │ └── readme.txt └── kfm720 │ ├── ending.def │ ├── ending.sff │ ├── intro.def │ ├── intro.sff │ ├── kfm.snd │ ├── kfm720.air │ ├── kfm720.cmd │ ├── kfm720.cns │ ├── kfm720.def │ ├── kfm720.sff │ └── readme.txt ├── data ├── big │ ├── readme.txt │ └── system.def ├── common.snd ├── common1.cns ├── fight.def ├── fight.sff ├── fight.snd ├── fightfx.air ├── fightfx.sff ├── kfm │ ├── credits.def │ ├── credits.sff │ ├── gameover.def │ ├── gameover.sff │ ├── intro.def │ ├── intro.sff │ ├── kfmtitle.sff │ ├── logo.def │ ├── logo.sff │ ├── select.def │ └── system.def ├── mugen.cfg ├── mugen1 │ ├── fight.def │ ├── fight.sff │ ├── system.def │ └── system.sff ├── select.def ├── system.def ├── system.sff └── system.snd ├── docs ├── LICENSES.TXT ├── README-ALPHA.html ├── air.html ├── bg-tut.html ├── bgs.html ├── cns.html ├── coordspace.html ├── fonts.html ├── history.html ├── html4css1.css ├── licenses │ ├── FTL.TXT │ ├── GLEW.txt │ ├── LGPL.TXT │ ├── allegro.txt │ ├── libpng.txt │ ├── xiph.txt │ └── zlib.txt ├── localization.html ├── loopguide.html ├── mugen.html ├── old_tools │ └── airedit.txt ├── readme.txt ├── sctrls.html ├── spr.html ├── spr.png ├── sprmake2.html ├── storyboard.html ├── trigger.html ├── tutorial │ ├── airvw0.gif │ ├── airvw1.gif │ ├── airvw2.gif │ ├── airvw3.gif │ ├── airvw4.gif │ ├── atkbox.gif │ ├── atkx-hih.gif │ ├── atkx-hil.gif │ ├── atkx-him.gif │ ├── atkx-loh.gif │ ├── atkx-lol.gif │ ├── atkx-lom.gif │ ├── atkx0.gif │ ├── atkx1.gif │ ├── axis0.gif │ ├── axis1.gif │ ├── axis2.gif │ ├── axis3.gif │ ├── axis4.gif │ ├── color0.gif │ ├── color0n.gif │ ├── color0y.gif │ ├── debug0.gif │ ├── pshop0.gif │ ├── pshop1.gif │ ├── pshop2.gif │ ├── pshop2.png │ └── pshop3.gif ├── tutorial1.html ├── tutorial2.html ├── tutorial3.html ├── tutorial4.html └── upgrading.html ├── font ├── arcade.def ├── arcade.sff ├── enter48.def ├── enter48.sff ├── f-4x6.def ├── f-4x6.fnt ├── f-4x6.sff ├── f-6x8f.fnt ├── f-6x9.def ├── f-6x9.fnt ├── f-6x9.sff ├── f-6x9f.fnt ├── infofont.def ├── jg.fnt ├── msgothic-tt36.def ├── mssansserif-tt36.def ├── name1.fnt ├── name14.def ├── name14.sff ├── num1.def ├── num1.fnt ├── num1.sff ├── num48.def ├── num48.sff └── options.def ├── mugen.exe ├── old_tools ├── ALLEG40.DLL ├── airedit.txt ├── aireditw.exe ├── data │ └── airedit.cfg ├── fntmaker.exe ├── font │ ├── f-4x6.fnt │ └── f-6x9.fnt ├── mtools.txt ├── pcxclean.exe ├── sff2pcx.exe ├── snd2wav.exe └── sprmaker.exe ├── plugins ├── Microsoft.VC90.CRT │ ├── Microsoft.VC90.CRT.manifest │ ├── msvcm90.dll │ └── msvcr90.dll ├── vorbisplug.dll └── waveplug.dll ├── readme.md ├── readme.txt ├── sff2png.exe ├── sndmaker.exe ├── sprmake2.exe ├── stages ├── kfm.def ├── kfm.sff ├── stage0-720.def ├── stage0-720.sff ├── stage0.def └── stage0.sff └── work ├── common └── sound │ ├── fall.wav │ ├── fall2.wav │ ├── fall3.wav │ ├── guard.wav │ ├── hit.wav │ ├── hit2.wav │ ├── hit3.wav │ ├── hit4.wav │ ├── hit5.wav │ ├── readme.txt │ ├── sound.txt │ └── super1.wav ├── fight ├── facebg0l.pcx ├── fight.pcx ├── fight.txt ├── fight1.pcx ├── fight2.pcx ├── fight3.pcx ├── fight4.pcx ├── fight5.pcx ├── fight6.pcx ├── fight7.pcx ├── ko0.pcx ├── ko1.pcx ├── ko10.pcx ├── ko2.pcx ├── ko3.pcx ├── ko4.pcx ├── ko5.pcx ├── ko6.pcx ├── ko7.pcx ├── ko8.pcx ├── ko9.pcx ├── lifeba0.pcx ├── lifebg0l.pcx ├── lifefr0l.pcx ├── lifemd0.pcx ├── pwrba0l.pcx ├── pwrbg0l.pcx ├── pwrfr0l.pcx ├── readme.txt ├── simul │ ├── facebg0l.pcx │ ├── lifba0.pcx │ ├── lifbg0l.pcx │ ├── liffr0l.pcx │ └── lifmd0.pcx ├── sound │ ├── dko.wav │ ├── fight.wav │ ├── ko.wav │ ├── level1.wav │ ├── readme.txt │ ├── round1.wav │ ├── round2.wav │ ├── round3.wav │ ├── sound.txt │ └── to.wav ├── turns │ ├── facebg0l.pcx │ └── facex0l.pcx ├── w_cheese.pcx ├── w_chouhi.pcx ├── w_hisatu.pcx ├── w_jikan.pcx ├── w_jisatu.pcx ├── w_nage.pcx ├── w_perfct.pcx ├── w_team.pcx ├── w_vic.pcx └── wo_pfct.pcx ├── fightfx ├── blooda00.pcx ├── blooda01.pcx ├── blooda02.pcx ├── blooda03.pcx ├── blooda04.pcx ├── blooda05.pcx ├── bloodc00.pcx ├── bloodc01.pcx ├── bloodc02.pcx ├── bloodc03.pcx ├── bloodc04.pcx ├── bloodc05.pcx ├── dusta00.pcx ├── dusta01.pcx ├── dusta02.pcx ├── dusta03.pcx ├── dusta04.pcx ├── dusta05.pcx ├── fightfx.txt ├── gshoka04.pcx ├── gshokb00.pcx ├── gshokb01.pcx ├── gshokb02.pcx ├── gshokb03.pcx ├── gshokb04.pcx ├── gshokb05.pcx ├── gshokb06.pcx ├── gshokc00.pcx ├── gshokc01.pcx ├── gshokc02.pcx ├── gshokc03.pcx ├── gshokc04.pcx ├── gshokc05.pcx ├── gshokc06.pcx ├── gshokc07.pcx ├── gshokc08.pcx ├── gshokc09.pcx ├── gshokc10.pcx ├── guarda00.pcx ├── guarda01.pcx ├── guarda02.pcx ├── guarda03.pcx ├── guarda04.pcx ├── hita00.pcx ├── hita01.pcx ├── hita02.pcx ├── hita03.pcx ├── hita04.pcx ├── hita05.pcx ├── hitb00.pcx ├── hitb01.pcx ├── hitb02.pcx ├── hitb03.pcx ├── hitb04.pcx ├── hitc00.pcx ├── hitc01.pcx ├── hitc02.pcx ├── hitc03.pcx ├── hitc04.pcx ├── hitc05.pcx ├── hitc06.pcx ├── hitd00.pcx ├── hitd01.pcx ├── hitd02.pcx ├── hitd03.pcx ├── hitd04.pcx ├── hitd05.pcx ├── hitd06.pcx ├── power00.pcx ├── power01.pcx ├── power02.pcx ├── power03.pcx ├── readme.txt ├── supera00.pcx ├── supera01.pcx ├── supera02.pcx ├── supera03.pcx ├── supera04.pcx ├── supera05.pcx ├── supera06.pcx ├── superb00.pcx ├── superb01.pcx ├── superb02.pcx ├── superb03.pcx ├── superb04.pcx ├── superb05.pcx ├── superb06.pcx ├── superb07.pcx ├── superc00.pcx ├── superc01.pcx ├── superc02.pcx ├── superc03.pcx ├── superc04.pcx ├── superc05.pcx ├── superc06.pcx ├── superc07.pcx ├── superc08.pcx ├── superc09.pcx ├── wshokc00.pcx ├── wshokc01.pcx ├── wshokc02.pcx ├── wshokc03.pcx ├── wshokc04.pcx ├── wshokc05.pcx ├── wshokc06.pcx └── wshokc07.pcx ├── font ├── arcade │ ├── arcade-sff.def │ ├── arcade.pcx │ ├── blue.act │ ├── brown.act │ ├── cyan.act │ ├── green.act │ ├── grey.act │ ├── purple.act │ ├── red.act │ └── yellow.act ├── bitmap-glyphs.txt ├── enter48 │ ├── blue.act │ ├── brown.act │ ├── cyan.act │ ├── enter48-sff.def │ ├── enter48.pcx │ ├── green.act │ ├── grey.act │ ├── purple.act │ ├── red.act │ └── yellow.act ├── f-4x6 │ ├── 0.pcx │ ├── 1.pcx │ ├── 2.pcx │ ├── 3.pcx │ ├── 4.pcx │ ├── 5.pcx │ ├── 6.pcx │ ├── 7.pcx │ ├── 8.pcx │ ├── 9.pcx │ ├── A.pcx │ ├── B.pcx │ ├── C.pcx │ ├── D.pcx │ ├── E.pcx │ ├── F.pcx │ ├── G.pcx │ ├── H.pcx │ ├── I.pcx │ ├── J.pcx │ ├── K.pcx │ ├── L.pcx │ ├── M.pcx │ ├── N.pcx │ ├── O.pcx │ ├── P.pcx │ ├── Q.pcx │ ├── R.pcx │ ├── S.pcx │ ├── T.pcx │ ├── U.pcx │ ├── V.pcx │ ├── W.pcx │ ├── X.pcx │ ├── Y.pcx │ ├── Z.pcx │ ├── ampersand.pcx │ ├── asterisk.pcx │ ├── at.pcx │ ├── backquote.pcx │ ├── backslash.pcx │ ├── caret.pcx │ ├── colon.pcx │ ├── comma.pcx │ ├── curlyclose.pcx │ ├── curlyopen.pcx │ ├── dollar.pcx │ ├── doublequote.pcx │ ├── equals.pcx │ ├── exclamation.pcx │ ├── f-4x6-sff.def │ ├── f-4x6.act │ ├── forwardslash.pcx │ ├── greater.pcx │ ├── less.pcx │ ├── minus.pcx │ ├── number.pcx │ ├── paranclose.pcx │ ├── paranopen.pcx │ ├── percent.pcx │ ├── period.pcx │ ├── pipe.pcx │ ├── plus.pcx │ ├── question.pcx │ ├── semicolon.pcx │ ├── singlequote.pcx │ ├── squareclose.pcx │ ├── squareopen.pcx │ ├── tilde.pcx │ └── underscore.pcx ├── f-6x9 │ ├── f-6x9-sff.def │ └── f-6x9.png ├── name14 │ ├── blue.act │ ├── brown.act │ ├── cyan.act │ ├── green.act │ ├── grey.act │ ├── name14-sff.def │ ├── name14.pcx │ ├── purple.act │ ├── red.act │ └── yellow.act ├── num1 │ ├── blue.act │ ├── brown.act │ ├── cyan.act │ ├── green.act │ ├── mono.act │ ├── num1-sff.def │ ├── num1.pcx │ ├── purple.act │ ├── red.act │ └── yellow.act ├── num48 │ ├── blue.act │ ├── brown.act │ ├── cyan.act │ ├── green.act │ ├── num48-sff.def │ ├── num48.pcx │ ├── purple.act │ ├── red.act │ └── yellow.act └── readme.txt ├── kfm ├── a_a01.png ├── a_a02.png ├── a_b00.png ├── a_b01.png ├── a_b02.png ├── a_x00.png ├── a_x01.png ├── a_y00.png ├── a_y01.png ├── a_y02.png ├── a_y03.png ├── ablock00.png ├── ablock01.png ├── block00.png ├── block01.png ├── block02.png ├── c_a00.png ├── c_a01.png ├── c_a02.png ├── c_a03.png ├── c_b00.png ├── c_b01.png ├── c_b02.png ├── c_b03.png ├── c_b04.png ├── c_b05.png ├── c_b06.png ├── c_x00.png ├── c_x01.png ├── c_y00.png ├── c_y01.png ├── c_y02.png ├── c_y03.png ├── c_y04.png ├── cblock00.png ├── cblock01.png ├── cblock02.png ├── copy_stand00.png ├── crouch00.png ├── crouch01.png ├── crouch02.png ├── cturn00.png ├── dizzy00.png ├── dizzy01.png ├── dizzy02.png ├── dizzy03.png ├── ending │ ├── ending.txt │ ├── scene00 │ │ ├── pic00.pcx │ │ ├── txt00.pcx │ │ └── txt01.pcx │ ├── scene01 │ │ ├── pic00.pcx │ │ └── txt00.pcx │ └── scene02 │ │ ├── pic00.pcx │ │ └── txt00.pcx ├── f-face.png ├── f-faceb.png ├── guarda00.png ├── guardc00.png ├── guards00.png ├── guards01.png ├── guards02.png ├── hita00.png ├── hita10.png ├── hitc00.png ├── hitc10.png ├── hitc20.png ├── hitd00.png ├── hitf20.png ├── hitf30.png ├── hitf31.png ├── hitf40.png ├── hitf50.png ├── hithi00.png ├── hithi10.png ├── hithi11.png ├── hithi20.png ├── hithi21.png ├── hitlie10.png ├── hitlie11.png ├── hitlo00.png ├── hitlo10.png ├── hitlo20.png ├── hitlo21.png ├── hitth00.png ├── hitth10.png ├── hitth20.png ├── hitup00.png ├── hitup01.png ├── hitup10.png ├── hitupf01.png ├── intro │ ├── intro.txt │ ├── scene00 │ │ ├── pic00.pcx │ │ └── txt00.pcx │ ├── scene01 │ │ ├── pic00.pcx │ │ └── txt00.pcx │ ├── scene02 │ │ ├── pic00.pcx │ │ └── txt00.pcx │ ├── scene03 │ │ ├── pic00.pcx │ │ └── txt00.pcx │ └── scene04 │ │ ├── arrow.pcx │ │ ├── pic00.pcx │ │ ├── txt00.pcx │ │ └── txt01.pcx ├── jumpb00.png ├── jumpb01.png ├── jumpf00.png ├── jumpf01.png ├── jumpf02.png ├── jumpf03.png ├── jumpf04.png ├── jumpf05.png ├── jumpup00.png ├── jumpup01.png ├── jumpup02.png ├── jumpup03.png ├── jumpup04.png ├── jumpup05.png ├── jumpup06.png ├── jumpup07.png ├── jumpup08.png ├── kfm-sff-optimized.def ├── kfm-sff.def ├── kfm.act ├── kfm2.act ├── kfm3.act ├── kfm4.act ├── kfm5.act ├── kfm6.act ├── knee00.png ├── knee01.png ├── knee02.png ├── knee03.png ├── knee04.png ├── knee05.png ├── knee06.png ├── knee07.png ├── kneek00.png ├── kneek01.png ├── kneek02.png ├── kneek03.png ├── kneek04.png ├── kneek05.png ├── kneek06.png ├── kneek07.png ├── kneeld00.png ├── kneeld01.png ├── kneeld02.png ├── kneeld03.png ├── palm00.png ├── palm01.png ├── palm02.png ├── palm03.png ├── palm04.png ├── palm05.png ├── palm06.png ├── palm07.png ├── runf00.png ├── runf01.png ├── runf02.png ├── runf03.png ├── runf04.png ├── runf05.png ├── s_a00.png ├── s_a01.png ├── s_a02.png ├── s_b00.png ├── s_b01.png ├── s_b02.png ├── s_b03.png ├── s_b04.png ├── s_b05.png ├── s_th_a00.png ├── s_th_a01.png ├── s_th_a02.png ├── s_th_a03.png ├── s_th_a04.png ├── s_th_a05.png ├── s_th_a06.png ├── s_th_a07.png ├── s_th_a08.png ├── s_th_a09.png ├── s_th_a10.png ├── s_th_a11.png ├── s_th_a12.png ├── s_x00.png ├── s_x01.png ├── s_x02.png ├── s_y00.png ├── s_y01.png ├── s_y02.png ├── s_y03.png ├── s_y04.png ├── s_y05.png ├── sound │ ├── atk0.wav │ ├── atk1.wav │ ├── atk2.wav │ ├── atk3.wav │ ├── atk4.wav │ ├── die.wav │ ├── guard0.wav │ ├── hit1.wav │ ├── land0.wav │ ├── sound.txt │ ├── ta.wav │ ├── throw0.wav │ └── voi0.wav ├── stand00.png ├── stand01.png ├── stand02.png ├── stand03.png ├── stand04.png ├── stand05.png ├── stun00.png ├── stun01.png ├── stun02.png ├── stun03.png ├── stun04.png ├── stun05.png ├── stun06.png ├── sturn00.png ├── tzanko00.png ├── tzanko01.png ├── tzanko02.png ├── tzanko03.png ├── tzanko03buff.png ├── tzanko04.png ├── tzanko05.png ├── tzanko06.png ├── tzanko07.png ├── upper00.png ├── upper01.png ├── upper02.png ├── upper03.png ├── upper04.png ├── upper05.png ├── upper06.png ├── upper07.png ├── upper08.png ├── upper09.png ├── walkb00.png ├── walkb01.png ├── walkb02.png ├── walkb03.png ├── walkb04.png ├── walkb05.png ├── walkb06.png ├── walkb07.png ├── walkb08.png ├── walkb09.png ├── walkb10.png ├── walkb11.png ├── walkb12.png ├── walkb13.png ├── walkb14.png ├── walkb15.png ├── walkf00.png ├── walkf01.png ├── walkf02.png ├── walkf03.png ├── walkf04.png ├── walkf05.png ├── walkf06.png ├── walkf07.png ├── walkf08.png ├── walkf09.png ├── walkf10.png ├── walkf11.png ├── walkf12.png ├── walkf13.png ├── walkf14.png ├── walkf15.png ├── win_a00.png ├── win_a01.png ├── win_a02.png ├── win_a03.png ├── win_a04.png ├── win_a05.png ├── win_a06.png ├── wood00.png ├── wood01.png ├── wood02.png ├── wood03.png ├── woodb00.png └── woodb01.png ├── kfm720 ├── a_a01.png ├── a_a02.png ├── a_b00.png ├── a_b01.png ├── a_b02.png ├── a_x00.png ├── a_x01.png ├── a_y00.png ├── a_y01.png ├── a_y02.png ├── a_y03.png ├── ablock00.png ├── ablock01.png ├── block00.png ├── block01.png ├── block02.png ├── c_a00.png ├── c_a01.png ├── c_a02.png ├── c_a03.png ├── c_b00.png ├── c_b01.png ├── c_b02.png ├── c_b03.png ├── c_b04.png ├── c_b05.png ├── c_b06.png ├── c_x00.png ├── c_x01.png ├── c_y00.png ├── c_y01.png ├── c_y02.png ├── c_y03.png ├── c_y04.png ├── cblock00.png ├── cblock01.png ├── cblock02.png ├── color1.png ├── color2.png ├── color3.png ├── color4.png ├── color5.png ├── color6.png ├── crouch00.png ├── crouch01.png ├── crouch02.png ├── cturn00.png ├── dizzy00.png ├── dizzy01.png ├── dizzy02.png ├── dizzy03.png ├── f-face.png ├── f-faceb.png ├── guarda00.png ├── guardc00.png ├── guards00.png ├── guards01.png ├── guards02.png ├── hita00.png ├── hita10.png ├── hitc00.png ├── hitc10.png ├── hitc20.png ├── hitd00.png ├── hitf20.png ├── hitf30.png ├── hitf31.png ├── hitf40.png ├── hitf50.png ├── hithi00.png ├── hithi10.png ├── hithi11.png ├── hithi20.png ├── hithi21.png ├── hitlie10.png ├── hitlie11.png ├── hitlo00.png ├── hitlo10.png ├── hitlo20.png ├── hitlo21.png ├── hitth00.png ├── hitth10.png ├── hitth20.png ├── hitup00.png ├── hitup01.png ├── hitup10.png ├── hitupf01.png ├── jumpb00.png ├── jumpb01.png ├── jumpf00.png ├── jumpf01.png ├── jumpf02.png ├── jumpf03.png ├── jumpf04.png ├── jumpf05.png ├── jumpup00.png ├── jumpup01.png ├── jumpup02.png ├── jumpup03.png ├── jumpup04.png ├── jumpup05.png ├── jumpup06.png ├── jumpup07.png ├── jumpup08.png ├── kfm720-sff.def ├── knee00.png ├── knee01.png ├── knee02.png ├── knee03.png ├── knee04.png ├── knee05.png ├── knee06.png ├── knee07.png ├── kneek00.png ├── kneek01.png ├── kneek02.png ├── kneek03.png ├── kneek04.png ├── kneek05.png ├── kneek06.png ├── kneek07.png ├── kneeld00.png ├── kneeld01.png ├── kneeld02.png ├── kneeld03.png ├── palm00.png ├── palm01.png ├── palm02.png ├── palm03.png ├── palm04.png ├── palm05.png ├── palm06.png ├── palm07.png ├── runf00.png ├── runf01.png ├── runf02.png ├── runf03.png ├── runf04.png ├── runf05.png ├── s_a00.png ├── s_a01.png ├── s_a02.png ├── s_b00.png ├── s_b01.png ├── s_b02.png ├── s_b03.png ├── s_b04.png ├── s_b05.png ├── s_th_a00.png ├── s_th_a01.png ├── s_th_a02.png ├── s_th_a03.png ├── s_th_a04.png ├── s_th_a05.png ├── s_th_a06.png ├── s_th_a07.png ├── s_th_a08.png ├── s_th_a09.png ├── s_th_a10.png ├── s_th_a11.png ├── s_th_a12.png ├── s_x00.png ├── s_x01.png ├── s_x02.png ├── s_y00.png ├── s_y01.png ├── s_y02.png ├── s_y03.png ├── s_y04.png ├── s_y05.png ├── stand00.png ├── stand01.png ├── stand02.png ├── stand03.png ├── stand04.png ├── stand05.png ├── stun00.png ├── stun01.png ├── stun02.png ├── stun03.png ├── stun04.png ├── stun05.png ├── stun06.png ├── sturn00.png ├── tzanko00.png ├── tzanko01.png ├── tzanko02.png ├── tzanko03.png ├── tzanko03buff.png ├── tzanko04.png ├── tzanko05.png ├── tzanko06.png ├── tzanko07.png ├── upper00.png ├── upper01.png ├── upper02.png ├── upper03.png ├── upper04.png ├── upper05.png ├── upper06.png ├── upper07.png ├── upper08.png ├── upper09.png ├── walkb00.png ├── walkb01.png ├── walkb02.png ├── walkb03.png ├── walkb04.png ├── walkb05.png ├── walkb06.png ├── walkb07.png ├── walkb08.png ├── walkb09.png ├── walkb10.png ├── walkb11.png ├── walkb12.png ├── walkb13.png ├── walkb14.png ├── walkb15.png ├── walkf00.png ├── walkf01.png ├── walkf02.png ├── walkf03.png ├── walkf04.png ├── walkf05.png ├── walkf06.png ├── walkf07.png ├── walkf08.png ├── walkf09.png ├── walkf10.png ├── walkf11.png ├── walkf12.png ├── walkf13.png ├── walkf14.png ├── walkf15.png ├── win_a00.png ├── win_a01.png ├── win_a02.png ├── win_a03.png ├── win_a04.png ├── win_a05.png ├── win_a06.png ├── wood00.png ├── wood01.png ├── wood02.png ├── wood03.png ├── woodb00.png └── woodb01.png ├── mugen1 ├── fight │ ├── facebg0l.pcx │ ├── facebg1l.pcx │ ├── fight-sff.def │ ├── fight.pcx │ ├── fight1.pcx │ ├── fight2.pcx │ ├── fight3.pcx │ ├── fight4.pcx │ ├── ko.pcx │ ├── lifeba0.pcx │ ├── lifebg0l.pcx │ ├── lifefr0l.pcx │ ├── lifemd0.pcx │ ├── lifemd1.pcx │ ├── lifemd2.pcx │ ├── lifemd3.pcx │ ├── lifemd4.pcx │ ├── lifemd5.pcx │ ├── pwrba0l.pcx │ ├── pwrbg0l.pcx │ ├── pwrfr0l.pcx │ ├── pwrfr10l.pcx │ ├── pwrfr11l.pcx │ ├── pwrfr12l.pcx │ ├── pwrfr13l.pcx │ ├── pwrfr14l.pcx │ ├── pwrfr15l.pcx │ ├── pwrfr16l.pcx │ ├── pwrfr17l.pcx │ ├── pwrfr1l.pcx │ ├── pwrfr2l.pcx │ ├── pwrfr3l.pcx │ ├── pwrfr4l.pcx │ ├── pwrfr5l.pcx │ ├── pwrfr6l.pcx │ ├── pwrfr7l.pcx │ ├── pwrfr8l.pcx │ ├── pwrfr9l.pcx │ ├── readme.txt │ ├── simul │ │ └── lifeba0.pcx │ ├── turns │ │ ├── facebg0l.pcx │ │ ├── facebg1l.pcx │ │ └── facex0l.pcx │ ├── w_bg.pcx │ ├── w_cheese.pcx │ ├── w_chouhi.pcx │ ├── w_hisatu.pcx │ ├── w_jikan.pcx │ ├── w_jisatu.pcx │ ├── w_nage.pcx │ ├── w_team.pcx │ ├── w_vic.pcx │ └── wo_pfct.pcx └── system │ ├── boxbg.png │ ├── boxoff1.png │ ├── boxoff2.png │ ├── boxon1-0.png │ ├── boxon1-1.png │ ├── boxon1-2.png │ ├── boxon1-3.png │ ├── boxon1-4.png │ ├── boxon1-5.png │ ├── boxon1-6.png │ ├── boxon2-0.png │ ├── boxon2-1.png │ ├── boxon2-2.png │ ├── boxon2-3.png │ ├── boxon2-4.png │ ├── boxon2-5.png │ ├── boxon2-6.png │ ├── boxrand.png │ ├── readme.txt │ ├── selbg1.png │ ├── selbg2.png │ ├── seltitl0.png │ ├── seltitl1.png │ ├── seltitl2.png │ ├── system-sff.def │ ├── title.png │ ├── tmcur1.png │ ├── tmcur2.png │ ├── tmicon1.png │ ├── tmicon2.png │ ├── tmicone1.png │ ├── tmicone2.png │ ├── vs-box1.png │ ├── vs-box2.png │ ├── vs-next.png │ ├── vs-shadow.png │ ├── vs.png │ └── vsbg.png ├── stages ├── kfm │ ├── ceiling0.pcx │ ├── floor0.pcx │ ├── kfm-sff.def │ ├── mountn0.pcx │ ├── pillar0.pcx │ ├── pillar1.pcx │ ├── readme.txt │ ├── wall0.pcx │ └── wall0ref.pcx ├── stage0-720 │ ├── bg0.pcx │ ├── floor.pcx │ ├── highlight.pcx │ └── stage0-sff.def └── stage0 │ ├── bg0.pcx │ ├── bg1.pcx │ └── stage0-sff.def └── system ├── boxbg.pcx ├── boxoff1.pcx ├── boxoff2.pcx ├── boxon1.pcx ├── boxon2.pcx ├── boxrand.pcx ├── readme.txt ├── selbg1.pcx ├── selbg2.pcx ├── seltitl0.pcx ├── seltitl1.pcx ├── seltitl2.pcx ├── sound ├── cursorc.wav ├── cursord.wav ├── cursorm.wav ├── readme.txt └── sound.txt ├── system.txt ├── title.pcx ├── titlebg0.pcx ├── titlebg1.pcx ├── titlebg2.pcx ├── tmcur1.pcx ├── tmcur2.pcx ├── tmicon1.pcx ├── tmicon2.pcx ├── tmicone1.pcx ├── tmicone2.pcx ├── vs.pcx ├── vs1.pcx ├── vs2.pcx ├── vs3.pcx ├── vs4.pcx ├── vs5.pcx ├── vs6.pcx ├── vs7.pcx └── vs8.pcx /Elecbyte.MUGEN.libs/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/Elecbyte.MUGEN.libs/SDL.dll -------------------------------------------------------------------------------- /chars/kfm/ending.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm/ending.def -------------------------------------------------------------------------------- /chars/kfm/ending.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm/ending.sff -------------------------------------------------------------------------------- /chars/kfm/intro.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm/intro.def -------------------------------------------------------------------------------- /chars/kfm/intro.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm/intro.sff -------------------------------------------------------------------------------- /chars/kfm/kfm.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm/kfm.air -------------------------------------------------------------------------------- /chars/kfm/kfm.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm/kfm.cmd -------------------------------------------------------------------------------- /chars/kfm/kfm.cns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm/kfm.cns -------------------------------------------------------------------------------- /chars/kfm/kfm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm/kfm.def -------------------------------------------------------------------------------- /chars/kfm/kfm.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm/kfm.sff -------------------------------------------------------------------------------- /chars/kfm/kfm.snd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm/kfm.snd -------------------------------------------------------------------------------- /chars/kfm/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm/readme.txt -------------------------------------------------------------------------------- /chars/kfm720/ending.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm720/ending.def -------------------------------------------------------------------------------- /chars/kfm720/ending.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm720/ending.sff -------------------------------------------------------------------------------- /chars/kfm720/intro.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm720/intro.def -------------------------------------------------------------------------------- /chars/kfm720/intro.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm720/intro.sff -------------------------------------------------------------------------------- /chars/kfm720/kfm.snd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm720/kfm.snd -------------------------------------------------------------------------------- /chars/kfm720/kfm720.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm720/kfm720.air -------------------------------------------------------------------------------- /chars/kfm720/kfm720.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm720/kfm720.cmd -------------------------------------------------------------------------------- /chars/kfm720/kfm720.cns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm720/kfm720.cns -------------------------------------------------------------------------------- /chars/kfm720/kfm720.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm720/kfm720.def -------------------------------------------------------------------------------- /chars/kfm720/kfm720.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm720/kfm720.sff -------------------------------------------------------------------------------- /chars/kfm720/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/chars/kfm720/readme.txt -------------------------------------------------------------------------------- /data/big/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/big/readme.txt -------------------------------------------------------------------------------- /data/big/system.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/big/system.def -------------------------------------------------------------------------------- /data/common.snd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/common.snd -------------------------------------------------------------------------------- /data/common1.cns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/common1.cns -------------------------------------------------------------------------------- /data/fight.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/fight.def -------------------------------------------------------------------------------- /data/fight.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/fight.sff -------------------------------------------------------------------------------- /data/fight.snd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/fight.snd -------------------------------------------------------------------------------- /data/fightfx.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/fightfx.air -------------------------------------------------------------------------------- /data/fightfx.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/fightfx.sff -------------------------------------------------------------------------------- /data/kfm/credits.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/kfm/credits.def -------------------------------------------------------------------------------- /data/kfm/credits.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/kfm/credits.sff -------------------------------------------------------------------------------- /data/kfm/gameover.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/kfm/gameover.def -------------------------------------------------------------------------------- /data/kfm/gameover.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/kfm/gameover.sff -------------------------------------------------------------------------------- /data/kfm/intro.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/kfm/intro.def -------------------------------------------------------------------------------- /data/kfm/intro.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/kfm/intro.sff -------------------------------------------------------------------------------- /data/kfm/kfmtitle.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/kfm/kfmtitle.sff -------------------------------------------------------------------------------- /data/kfm/logo.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/kfm/logo.def -------------------------------------------------------------------------------- /data/kfm/logo.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/kfm/logo.sff -------------------------------------------------------------------------------- /data/kfm/select.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/kfm/select.def -------------------------------------------------------------------------------- /data/kfm/system.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/kfm/system.def -------------------------------------------------------------------------------- /data/mugen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/mugen.cfg -------------------------------------------------------------------------------- /data/mugen1/fight.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/mugen1/fight.def -------------------------------------------------------------------------------- /data/mugen1/fight.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/mugen1/fight.sff -------------------------------------------------------------------------------- /data/mugen1/system.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/mugen1/system.def -------------------------------------------------------------------------------- /data/mugen1/system.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/mugen1/system.sff -------------------------------------------------------------------------------- /data/select.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/select.def -------------------------------------------------------------------------------- /data/system.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/system.def -------------------------------------------------------------------------------- /data/system.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/system.sff -------------------------------------------------------------------------------- /data/system.snd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/data/system.snd -------------------------------------------------------------------------------- /docs/LICENSES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/LICENSES.TXT -------------------------------------------------------------------------------- /docs/README-ALPHA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/README-ALPHA.html -------------------------------------------------------------------------------- /docs/air.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/air.html -------------------------------------------------------------------------------- /docs/bg-tut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/bg-tut.html -------------------------------------------------------------------------------- /docs/bgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/bgs.html -------------------------------------------------------------------------------- /docs/cns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/cns.html -------------------------------------------------------------------------------- /docs/coordspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/coordspace.html -------------------------------------------------------------------------------- /docs/fonts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/fonts.html -------------------------------------------------------------------------------- /docs/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/history.html -------------------------------------------------------------------------------- /docs/html4css1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/html4css1.css -------------------------------------------------------------------------------- /docs/licenses/FTL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/licenses/FTL.TXT -------------------------------------------------------------------------------- /docs/licenses/GLEW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/licenses/GLEW.txt -------------------------------------------------------------------------------- /docs/licenses/LGPL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/licenses/LGPL.TXT -------------------------------------------------------------------------------- /docs/licenses/allegro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/licenses/allegro.txt -------------------------------------------------------------------------------- /docs/licenses/libpng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/licenses/libpng.txt -------------------------------------------------------------------------------- /docs/licenses/xiph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/licenses/xiph.txt -------------------------------------------------------------------------------- /docs/licenses/zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/licenses/zlib.txt -------------------------------------------------------------------------------- /docs/localization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/localization.html -------------------------------------------------------------------------------- /docs/loopguide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/loopguide.html -------------------------------------------------------------------------------- /docs/mugen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/mugen.html -------------------------------------------------------------------------------- /docs/old_tools/airedit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/old_tools/airedit.txt -------------------------------------------------------------------------------- /docs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/readme.txt -------------------------------------------------------------------------------- /docs/sctrls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/sctrls.html -------------------------------------------------------------------------------- /docs/spr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/spr.html -------------------------------------------------------------------------------- /docs/spr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/spr.png -------------------------------------------------------------------------------- /docs/sprmake2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/sprmake2.html -------------------------------------------------------------------------------- /docs/storyboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/storyboard.html -------------------------------------------------------------------------------- /docs/trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/trigger.html -------------------------------------------------------------------------------- /docs/tutorial/airvw0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/airvw0.gif -------------------------------------------------------------------------------- /docs/tutorial/airvw1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/airvw1.gif -------------------------------------------------------------------------------- /docs/tutorial/airvw2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/airvw2.gif -------------------------------------------------------------------------------- /docs/tutorial/airvw3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/airvw3.gif -------------------------------------------------------------------------------- /docs/tutorial/airvw4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/airvw4.gif -------------------------------------------------------------------------------- /docs/tutorial/atkbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/atkbox.gif -------------------------------------------------------------------------------- /docs/tutorial/atkx-hih.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/atkx-hih.gif -------------------------------------------------------------------------------- /docs/tutorial/atkx-hil.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/atkx-hil.gif -------------------------------------------------------------------------------- /docs/tutorial/atkx-him.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/atkx-him.gif -------------------------------------------------------------------------------- /docs/tutorial/atkx-loh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/atkx-loh.gif -------------------------------------------------------------------------------- /docs/tutorial/atkx-lol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/atkx-lol.gif -------------------------------------------------------------------------------- /docs/tutorial/atkx-lom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/atkx-lom.gif -------------------------------------------------------------------------------- /docs/tutorial/atkx0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/atkx0.gif -------------------------------------------------------------------------------- /docs/tutorial/atkx1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/atkx1.gif -------------------------------------------------------------------------------- /docs/tutorial/axis0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/axis0.gif -------------------------------------------------------------------------------- /docs/tutorial/axis1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/axis1.gif -------------------------------------------------------------------------------- /docs/tutorial/axis2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/axis2.gif -------------------------------------------------------------------------------- /docs/tutorial/axis3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/axis3.gif -------------------------------------------------------------------------------- /docs/tutorial/axis4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/axis4.gif -------------------------------------------------------------------------------- /docs/tutorial/color0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/color0.gif -------------------------------------------------------------------------------- /docs/tutorial/color0n.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/color0n.gif -------------------------------------------------------------------------------- /docs/tutorial/color0y.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/color0y.gif -------------------------------------------------------------------------------- /docs/tutorial/debug0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/debug0.gif -------------------------------------------------------------------------------- /docs/tutorial/pshop0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/pshop0.gif -------------------------------------------------------------------------------- /docs/tutorial/pshop1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/pshop1.gif -------------------------------------------------------------------------------- /docs/tutorial/pshop2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/pshop2.gif -------------------------------------------------------------------------------- /docs/tutorial/pshop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/pshop2.png -------------------------------------------------------------------------------- /docs/tutorial/pshop3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial/pshop3.gif -------------------------------------------------------------------------------- /docs/tutorial1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial1.html -------------------------------------------------------------------------------- /docs/tutorial2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial2.html -------------------------------------------------------------------------------- /docs/tutorial3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial3.html -------------------------------------------------------------------------------- /docs/tutorial4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/tutorial4.html -------------------------------------------------------------------------------- /docs/upgrading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/docs/upgrading.html -------------------------------------------------------------------------------- /font/arcade.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/arcade.def -------------------------------------------------------------------------------- /font/arcade.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/arcade.sff -------------------------------------------------------------------------------- /font/enter48.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/enter48.def -------------------------------------------------------------------------------- /font/enter48.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/enter48.sff -------------------------------------------------------------------------------- /font/f-4x6.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/f-4x6.def -------------------------------------------------------------------------------- /font/f-4x6.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/f-4x6.fnt -------------------------------------------------------------------------------- /font/f-4x6.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/f-4x6.sff -------------------------------------------------------------------------------- /font/f-6x8f.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/f-6x8f.fnt -------------------------------------------------------------------------------- /font/f-6x9.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/f-6x9.def -------------------------------------------------------------------------------- /font/f-6x9.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/f-6x9.fnt -------------------------------------------------------------------------------- /font/f-6x9.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/f-6x9.sff -------------------------------------------------------------------------------- /font/f-6x9f.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/f-6x9f.fnt -------------------------------------------------------------------------------- /font/infofont.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/infofont.def -------------------------------------------------------------------------------- /font/jg.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/jg.fnt -------------------------------------------------------------------------------- /font/msgothic-tt36.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/msgothic-tt36.def -------------------------------------------------------------------------------- /font/mssansserif-tt36.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/mssansserif-tt36.def -------------------------------------------------------------------------------- /font/name1.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/name1.fnt -------------------------------------------------------------------------------- /font/name14.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/name14.def -------------------------------------------------------------------------------- /font/name14.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/name14.sff -------------------------------------------------------------------------------- /font/num1.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/num1.def -------------------------------------------------------------------------------- /font/num1.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/num1.fnt -------------------------------------------------------------------------------- /font/num1.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/num1.sff -------------------------------------------------------------------------------- /font/num48.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/num48.def -------------------------------------------------------------------------------- /font/num48.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/num48.sff -------------------------------------------------------------------------------- /font/options.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/font/options.def -------------------------------------------------------------------------------- /mugen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/mugen.exe -------------------------------------------------------------------------------- /old_tools/ALLEG40.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/old_tools/ALLEG40.DLL -------------------------------------------------------------------------------- /old_tools/airedit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/old_tools/airedit.txt -------------------------------------------------------------------------------- /old_tools/aireditw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/old_tools/aireditw.exe -------------------------------------------------------------------------------- /old_tools/data/airedit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/old_tools/data/airedit.cfg -------------------------------------------------------------------------------- /old_tools/fntmaker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/old_tools/fntmaker.exe -------------------------------------------------------------------------------- /old_tools/font/f-4x6.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/old_tools/font/f-4x6.fnt -------------------------------------------------------------------------------- /old_tools/font/f-6x9.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/old_tools/font/f-6x9.fnt -------------------------------------------------------------------------------- /old_tools/mtools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/old_tools/mtools.txt -------------------------------------------------------------------------------- /old_tools/pcxclean.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/old_tools/pcxclean.exe -------------------------------------------------------------------------------- /old_tools/sff2pcx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/old_tools/sff2pcx.exe -------------------------------------------------------------------------------- /old_tools/snd2wav.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/old_tools/snd2wav.exe -------------------------------------------------------------------------------- /old_tools/sprmaker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/old_tools/sprmaker.exe -------------------------------------------------------------------------------- /plugins/vorbisplug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/plugins/vorbisplug.dll -------------------------------------------------------------------------------- /plugins/waveplug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/plugins/waveplug.dll -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/readme.md -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/readme.txt -------------------------------------------------------------------------------- /sff2png.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/sff2png.exe -------------------------------------------------------------------------------- /sndmaker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/sndmaker.exe -------------------------------------------------------------------------------- /sprmake2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/sprmake2.exe -------------------------------------------------------------------------------- /stages/kfm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/stages/kfm.def -------------------------------------------------------------------------------- /stages/kfm.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/stages/kfm.sff -------------------------------------------------------------------------------- /stages/stage0-720.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/stages/stage0-720.def -------------------------------------------------------------------------------- /stages/stage0-720.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/stages/stage0-720.sff -------------------------------------------------------------------------------- /stages/stage0.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/stages/stage0.def -------------------------------------------------------------------------------- /stages/stage0.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/stages/stage0.sff -------------------------------------------------------------------------------- /work/common/sound/fall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/common/sound/fall.wav -------------------------------------------------------------------------------- /work/common/sound/fall2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/common/sound/fall2.wav -------------------------------------------------------------------------------- /work/common/sound/fall3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/common/sound/fall3.wav -------------------------------------------------------------------------------- /work/common/sound/guard.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/common/sound/guard.wav -------------------------------------------------------------------------------- /work/common/sound/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/common/sound/hit.wav -------------------------------------------------------------------------------- /work/common/sound/hit2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/common/sound/hit2.wav -------------------------------------------------------------------------------- /work/common/sound/hit3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/common/sound/hit3.wav -------------------------------------------------------------------------------- /work/common/sound/hit4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/common/sound/hit4.wav -------------------------------------------------------------------------------- /work/common/sound/hit5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/common/sound/hit5.wav -------------------------------------------------------------------------------- /work/common/sound/sound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/common/sound/sound.txt -------------------------------------------------------------------------------- /work/fight/facebg0l.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/facebg0l.pcx -------------------------------------------------------------------------------- /work/fight/fight.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/fight.pcx -------------------------------------------------------------------------------- /work/fight/fight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/fight.txt -------------------------------------------------------------------------------- /work/fight/fight1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/fight1.pcx -------------------------------------------------------------------------------- /work/fight/fight2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/fight2.pcx -------------------------------------------------------------------------------- /work/fight/fight3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/fight3.pcx -------------------------------------------------------------------------------- /work/fight/fight4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/fight4.pcx -------------------------------------------------------------------------------- /work/fight/fight5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/fight5.pcx -------------------------------------------------------------------------------- /work/fight/fight6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/fight6.pcx -------------------------------------------------------------------------------- /work/fight/fight7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/fight7.pcx -------------------------------------------------------------------------------- /work/fight/ko0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/ko0.pcx -------------------------------------------------------------------------------- /work/fight/ko1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/ko1.pcx -------------------------------------------------------------------------------- /work/fight/ko10.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/ko10.pcx -------------------------------------------------------------------------------- /work/fight/ko2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/ko2.pcx -------------------------------------------------------------------------------- /work/fight/ko3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/ko3.pcx -------------------------------------------------------------------------------- /work/fight/ko4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/ko4.pcx -------------------------------------------------------------------------------- /work/fight/ko5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/ko5.pcx -------------------------------------------------------------------------------- /work/fight/ko6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/ko6.pcx -------------------------------------------------------------------------------- /work/fight/ko7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/ko7.pcx -------------------------------------------------------------------------------- /work/fight/ko8.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/ko8.pcx -------------------------------------------------------------------------------- /work/fight/ko9.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/ko9.pcx -------------------------------------------------------------------------------- /work/fight/lifeba0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/lifeba0.pcx -------------------------------------------------------------------------------- /work/fight/lifebg0l.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/lifebg0l.pcx -------------------------------------------------------------------------------- /work/fight/lifefr0l.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/lifefr0l.pcx -------------------------------------------------------------------------------- /work/fight/lifemd0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/lifemd0.pcx -------------------------------------------------------------------------------- /work/fight/pwrba0l.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/pwrba0l.pcx -------------------------------------------------------------------------------- /work/fight/pwrbg0l.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/pwrbg0l.pcx -------------------------------------------------------------------------------- /work/fight/pwrfr0l.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/pwrfr0l.pcx -------------------------------------------------------------------------------- /work/fight/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/readme.txt -------------------------------------------------------------------------------- /work/fight/simul/lifba0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/simul/lifba0.pcx -------------------------------------------------------------------------------- /work/fight/simul/lifmd0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/simul/lifmd0.pcx -------------------------------------------------------------------------------- /work/fight/sound/dko.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/sound/dko.wav -------------------------------------------------------------------------------- /work/fight/sound/fight.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/sound/fight.wav -------------------------------------------------------------------------------- /work/fight/sound/ko.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/sound/ko.wav -------------------------------------------------------------------------------- /work/fight/sound/level1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/sound/level1.wav -------------------------------------------------------------------------------- /work/fight/sound/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/sound/readme.txt -------------------------------------------------------------------------------- /work/fight/sound/to.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/sound/to.wav -------------------------------------------------------------------------------- /work/fight/w_cheese.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/w_cheese.pcx -------------------------------------------------------------------------------- /work/fight/w_chouhi.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/w_chouhi.pcx -------------------------------------------------------------------------------- /work/fight/w_hisatu.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/w_hisatu.pcx -------------------------------------------------------------------------------- /work/fight/w_jikan.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/w_jikan.pcx -------------------------------------------------------------------------------- /work/fight/w_jisatu.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/w_jisatu.pcx -------------------------------------------------------------------------------- /work/fight/w_nage.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/w_nage.pcx -------------------------------------------------------------------------------- /work/fight/w_perfct.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/w_perfct.pcx -------------------------------------------------------------------------------- /work/fight/w_team.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/w_team.pcx -------------------------------------------------------------------------------- /work/fight/w_vic.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/w_vic.pcx -------------------------------------------------------------------------------- /work/fight/wo_pfct.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fight/wo_pfct.pcx -------------------------------------------------------------------------------- /work/fightfx/blooda00.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/blooda00.pcx -------------------------------------------------------------------------------- /work/fightfx/blooda01.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/blooda01.pcx -------------------------------------------------------------------------------- /work/fightfx/blooda02.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/blooda02.pcx -------------------------------------------------------------------------------- /work/fightfx/blooda03.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/blooda03.pcx -------------------------------------------------------------------------------- /work/fightfx/blooda04.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/blooda04.pcx -------------------------------------------------------------------------------- /work/fightfx/blooda05.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/blooda05.pcx -------------------------------------------------------------------------------- /work/fightfx/bloodc00.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/bloodc00.pcx -------------------------------------------------------------------------------- /work/fightfx/bloodc01.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/bloodc01.pcx -------------------------------------------------------------------------------- /work/fightfx/bloodc02.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/bloodc02.pcx -------------------------------------------------------------------------------- /work/fightfx/bloodc03.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/bloodc03.pcx -------------------------------------------------------------------------------- /work/fightfx/bloodc04.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/bloodc04.pcx -------------------------------------------------------------------------------- /work/fightfx/bloodc05.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/bloodc05.pcx -------------------------------------------------------------------------------- /work/fightfx/dusta00.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/dusta00.pcx -------------------------------------------------------------------------------- /work/fightfx/dusta01.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/dusta01.pcx -------------------------------------------------------------------------------- /work/fightfx/dusta02.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/dusta02.pcx -------------------------------------------------------------------------------- /work/fightfx/dusta03.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/dusta03.pcx -------------------------------------------------------------------------------- /work/fightfx/dusta04.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/dusta04.pcx -------------------------------------------------------------------------------- /work/fightfx/dusta05.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/dusta05.pcx -------------------------------------------------------------------------------- /work/fightfx/fightfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/fightfx.txt -------------------------------------------------------------------------------- /work/fightfx/gshoka04.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshoka04.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokb00.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokb00.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokb01.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokb01.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokb02.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokb02.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokb03.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokb03.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokb04.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokb04.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokb05.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokb05.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokb06.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokb06.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokc00.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokc00.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokc01.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokc01.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokc02.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokc02.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokc03.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokc03.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokc04.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokc04.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokc05.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokc05.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokc06.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokc06.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokc07.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokc07.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokc08.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokc08.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokc09.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokc09.pcx -------------------------------------------------------------------------------- /work/fightfx/gshokc10.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/gshokc10.pcx -------------------------------------------------------------------------------- /work/fightfx/guarda00.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/guarda00.pcx -------------------------------------------------------------------------------- /work/fightfx/guarda01.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/guarda01.pcx -------------------------------------------------------------------------------- /work/fightfx/guarda02.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/guarda02.pcx -------------------------------------------------------------------------------- /work/fightfx/guarda03.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/guarda03.pcx -------------------------------------------------------------------------------- /work/fightfx/guarda04.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/guarda04.pcx -------------------------------------------------------------------------------- /work/fightfx/hita00.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hita00.pcx -------------------------------------------------------------------------------- /work/fightfx/hita01.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hita01.pcx -------------------------------------------------------------------------------- /work/fightfx/hita02.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hita02.pcx -------------------------------------------------------------------------------- /work/fightfx/hita03.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hita03.pcx -------------------------------------------------------------------------------- /work/fightfx/hita04.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hita04.pcx -------------------------------------------------------------------------------- /work/fightfx/hita05.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hita05.pcx -------------------------------------------------------------------------------- /work/fightfx/hitb00.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitb00.pcx -------------------------------------------------------------------------------- /work/fightfx/hitb01.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitb01.pcx -------------------------------------------------------------------------------- /work/fightfx/hitb02.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitb02.pcx -------------------------------------------------------------------------------- /work/fightfx/hitb03.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitb03.pcx -------------------------------------------------------------------------------- /work/fightfx/hitb04.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitb04.pcx -------------------------------------------------------------------------------- /work/fightfx/hitc00.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitc00.pcx -------------------------------------------------------------------------------- /work/fightfx/hitc01.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitc01.pcx -------------------------------------------------------------------------------- /work/fightfx/hitc02.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitc02.pcx -------------------------------------------------------------------------------- /work/fightfx/hitc03.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitc03.pcx -------------------------------------------------------------------------------- /work/fightfx/hitc04.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitc04.pcx -------------------------------------------------------------------------------- /work/fightfx/hitc05.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitc05.pcx -------------------------------------------------------------------------------- /work/fightfx/hitc06.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitc06.pcx -------------------------------------------------------------------------------- /work/fightfx/hitd00.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitd00.pcx -------------------------------------------------------------------------------- /work/fightfx/hitd01.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitd01.pcx -------------------------------------------------------------------------------- /work/fightfx/hitd02.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitd02.pcx -------------------------------------------------------------------------------- /work/fightfx/hitd03.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitd03.pcx -------------------------------------------------------------------------------- /work/fightfx/hitd04.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitd04.pcx -------------------------------------------------------------------------------- /work/fightfx/hitd05.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitd05.pcx -------------------------------------------------------------------------------- /work/fightfx/hitd06.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/hitd06.pcx -------------------------------------------------------------------------------- /work/fightfx/power00.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/power00.pcx -------------------------------------------------------------------------------- /work/fightfx/power01.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/power01.pcx -------------------------------------------------------------------------------- /work/fightfx/power02.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/power02.pcx -------------------------------------------------------------------------------- /work/fightfx/power03.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/power03.pcx -------------------------------------------------------------------------------- /work/fightfx/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/readme.txt -------------------------------------------------------------------------------- /work/fightfx/supera00.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/supera00.pcx -------------------------------------------------------------------------------- /work/fightfx/supera01.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/supera01.pcx -------------------------------------------------------------------------------- /work/fightfx/supera02.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/supera02.pcx -------------------------------------------------------------------------------- /work/fightfx/supera03.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/supera03.pcx -------------------------------------------------------------------------------- /work/fightfx/supera04.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/supera04.pcx -------------------------------------------------------------------------------- /work/fightfx/supera05.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/supera05.pcx -------------------------------------------------------------------------------- /work/fightfx/supera06.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/supera06.pcx -------------------------------------------------------------------------------- /work/fightfx/superb00.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superb00.pcx -------------------------------------------------------------------------------- /work/fightfx/superb01.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superb01.pcx -------------------------------------------------------------------------------- /work/fightfx/superb02.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superb02.pcx -------------------------------------------------------------------------------- /work/fightfx/superb03.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superb03.pcx -------------------------------------------------------------------------------- /work/fightfx/superb04.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superb04.pcx -------------------------------------------------------------------------------- /work/fightfx/superb05.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superb05.pcx -------------------------------------------------------------------------------- /work/fightfx/superb06.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superb06.pcx -------------------------------------------------------------------------------- /work/fightfx/superb07.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superb07.pcx -------------------------------------------------------------------------------- /work/fightfx/superc00.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superc00.pcx -------------------------------------------------------------------------------- /work/fightfx/superc01.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superc01.pcx -------------------------------------------------------------------------------- /work/fightfx/superc02.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superc02.pcx -------------------------------------------------------------------------------- /work/fightfx/superc03.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superc03.pcx -------------------------------------------------------------------------------- /work/fightfx/superc04.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superc04.pcx -------------------------------------------------------------------------------- /work/fightfx/superc05.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superc05.pcx -------------------------------------------------------------------------------- /work/fightfx/superc06.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superc06.pcx -------------------------------------------------------------------------------- /work/fightfx/superc07.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superc07.pcx -------------------------------------------------------------------------------- /work/fightfx/superc08.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superc08.pcx -------------------------------------------------------------------------------- /work/fightfx/superc09.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/superc09.pcx -------------------------------------------------------------------------------- /work/fightfx/wshokc00.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/wshokc00.pcx -------------------------------------------------------------------------------- /work/fightfx/wshokc01.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/wshokc01.pcx -------------------------------------------------------------------------------- /work/fightfx/wshokc02.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/wshokc02.pcx -------------------------------------------------------------------------------- /work/fightfx/wshokc03.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/wshokc03.pcx -------------------------------------------------------------------------------- /work/fightfx/wshokc04.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/wshokc04.pcx -------------------------------------------------------------------------------- /work/fightfx/wshokc05.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/wshokc05.pcx -------------------------------------------------------------------------------- /work/fightfx/wshokc06.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/wshokc06.pcx -------------------------------------------------------------------------------- /work/fightfx/wshokc07.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/fightfx/wshokc07.pcx -------------------------------------------------------------------------------- /work/font/arcade/blue.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/arcade/blue.act -------------------------------------------------------------------------------- /work/font/arcade/cyan.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/arcade/cyan.act -------------------------------------------------------------------------------- /work/font/arcade/grey.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/arcade/grey.act -------------------------------------------------------------------------------- /work/font/arcade/red.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/arcade/red.act -------------------------------------------------------------------------------- /work/font/enter48/red.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/enter48/red.act -------------------------------------------------------------------------------- /work/font/f-4x6/0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/0.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/1.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/2.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/3.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/4.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/5.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/6.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/7.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/8.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/8.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/9.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/9.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/A.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/A.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/B.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/B.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/C.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/C.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/D.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/D.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/E.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/E.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/F.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/F.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/G.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/G.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/H.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/H.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/I.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/I.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/J.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/J.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/K.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/K.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/L.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/L.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/M.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/M.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/N.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/N.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/O.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/O.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/P.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/P.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/Q.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/Q.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/R.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/R.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/S.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/S.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/T.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/T.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/U.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/U.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/V.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/V.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/W.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/W.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/X.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/X.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/Y.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/Y.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/Z.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/Z.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/at.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/at.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/caret.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/caret.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/colon.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/colon.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/comma.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/comma.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/f-4x6.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/f-4x6.act -------------------------------------------------------------------------------- /work/font/f-4x6/less.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/less.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/minus.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/minus.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/pipe.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/pipe.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/plus.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/plus.pcx -------------------------------------------------------------------------------- /work/font/f-4x6/tilde.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-4x6/tilde.pcx -------------------------------------------------------------------------------- /work/font/f-6x9/f-6x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/f-6x9/f-6x9.png -------------------------------------------------------------------------------- /work/font/name14/blue.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/name14/blue.act -------------------------------------------------------------------------------- /work/font/name14/cyan.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/name14/cyan.act -------------------------------------------------------------------------------- /work/font/name14/grey.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/name14/grey.act -------------------------------------------------------------------------------- /work/font/name14/red.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/name14/red.act -------------------------------------------------------------------------------- /work/font/num1/blue.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/num1/blue.act -------------------------------------------------------------------------------- /work/font/num1/brown.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/num1/brown.act -------------------------------------------------------------------------------- /work/font/num1/cyan.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/num1/cyan.act -------------------------------------------------------------------------------- /work/font/num1/green.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/num1/green.act -------------------------------------------------------------------------------- /work/font/num1/mono.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/num1/mono.act -------------------------------------------------------------------------------- /work/font/num1/num1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/num1/num1.pcx -------------------------------------------------------------------------------- /work/font/num1/purple.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/num1/purple.act -------------------------------------------------------------------------------- /work/font/num1/red.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/num1/red.act -------------------------------------------------------------------------------- /work/font/num1/yellow.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/num1/yellow.act -------------------------------------------------------------------------------- /work/font/num48/blue.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/num48/blue.act -------------------------------------------------------------------------------- /work/font/num48/brown.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/num48/brown.act -------------------------------------------------------------------------------- /work/font/num48/cyan.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/num48/cyan.act -------------------------------------------------------------------------------- /work/font/num48/green.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/num48/green.act -------------------------------------------------------------------------------- /work/font/num48/num48.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/num48/num48.pcx -------------------------------------------------------------------------------- /work/font/num48/red.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/num48/red.act -------------------------------------------------------------------------------- /work/font/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/font/readme.txt -------------------------------------------------------------------------------- /work/kfm/a_a01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/a_a01.png -------------------------------------------------------------------------------- /work/kfm/a_a02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/a_a02.png -------------------------------------------------------------------------------- /work/kfm/a_b00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/a_b00.png -------------------------------------------------------------------------------- /work/kfm/a_b01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/a_b01.png -------------------------------------------------------------------------------- /work/kfm/a_b02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/a_b02.png -------------------------------------------------------------------------------- /work/kfm/a_x00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/a_x00.png -------------------------------------------------------------------------------- /work/kfm/a_x01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/a_x01.png -------------------------------------------------------------------------------- /work/kfm/a_y00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/a_y00.png -------------------------------------------------------------------------------- /work/kfm/a_y01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/a_y01.png -------------------------------------------------------------------------------- /work/kfm/a_y02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/a_y02.png -------------------------------------------------------------------------------- /work/kfm/a_y03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/a_y03.png -------------------------------------------------------------------------------- /work/kfm/ablock00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/ablock00.png -------------------------------------------------------------------------------- /work/kfm/ablock01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/ablock01.png -------------------------------------------------------------------------------- /work/kfm/block00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/block00.png -------------------------------------------------------------------------------- /work/kfm/block01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/block01.png -------------------------------------------------------------------------------- /work/kfm/block02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/block02.png -------------------------------------------------------------------------------- /work/kfm/c_a00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_a00.png -------------------------------------------------------------------------------- /work/kfm/c_a01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_a01.png -------------------------------------------------------------------------------- /work/kfm/c_a02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_a02.png -------------------------------------------------------------------------------- /work/kfm/c_a03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_a03.png -------------------------------------------------------------------------------- /work/kfm/c_b00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_b00.png -------------------------------------------------------------------------------- /work/kfm/c_b01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_b01.png -------------------------------------------------------------------------------- /work/kfm/c_b02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_b02.png -------------------------------------------------------------------------------- /work/kfm/c_b03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_b03.png -------------------------------------------------------------------------------- /work/kfm/c_b04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_b04.png -------------------------------------------------------------------------------- /work/kfm/c_b05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_b05.png -------------------------------------------------------------------------------- /work/kfm/c_b06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_b06.png -------------------------------------------------------------------------------- /work/kfm/c_x00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_x00.png -------------------------------------------------------------------------------- /work/kfm/c_x01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_x01.png -------------------------------------------------------------------------------- /work/kfm/c_y00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_y00.png -------------------------------------------------------------------------------- /work/kfm/c_y01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_y01.png -------------------------------------------------------------------------------- /work/kfm/c_y02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_y02.png -------------------------------------------------------------------------------- /work/kfm/c_y03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_y03.png -------------------------------------------------------------------------------- /work/kfm/c_y04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/c_y04.png -------------------------------------------------------------------------------- /work/kfm/cblock00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/cblock00.png -------------------------------------------------------------------------------- /work/kfm/cblock01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/cblock01.png -------------------------------------------------------------------------------- /work/kfm/cblock02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/cblock02.png -------------------------------------------------------------------------------- /work/kfm/copy_stand00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/copy_stand00.png -------------------------------------------------------------------------------- /work/kfm/crouch00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/crouch00.png -------------------------------------------------------------------------------- /work/kfm/crouch01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/crouch01.png -------------------------------------------------------------------------------- /work/kfm/crouch02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/crouch02.png -------------------------------------------------------------------------------- /work/kfm/cturn00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/cturn00.png -------------------------------------------------------------------------------- /work/kfm/dizzy00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/dizzy00.png -------------------------------------------------------------------------------- /work/kfm/dizzy01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/dizzy01.png -------------------------------------------------------------------------------- /work/kfm/dizzy02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/dizzy02.png -------------------------------------------------------------------------------- /work/kfm/dizzy03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/dizzy03.png -------------------------------------------------------------------------------- /work/kfm/f-face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/f-face.png -------------------------------------------------------------------------------- /work/kfm/f-faceb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/f-faceb.png -------------------------------------------------------------------------------- /work/kfm/guarda00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/guarda00.png -------------------------------------------------------------------------------- /work/kfm/guardc00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/guardc00.png -------------------------------------------------------------------------------- /work/kfm/guards00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/guards00.png -------------------------------------------------------------------------------- /work/kfm/guards01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/guards01.png -------------------------------------------------------------------------------- /work/kfm/guards02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/guards02.png -------------------------------------------------------------------------------- /work/kfm/hita00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hita00.png -------------------------------------------------------------------------------- /work/kfm/hita10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hita10.png -------------------------------------------------------------------------------- /work/kfm/hitc00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitc00.png -------------------------------------------------------------------------------- /work/kfm/hitc10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitc10.png -------------------------------------------------------------------------------- /work/kfm/hitc20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitc20.png -------------------------------------------------------------------------------- /work/kfm/hitd00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitd00.png -------------------------------------------------------------------------------- /work/kfm/hitf20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitf20.png -------------------------------------------------------------------------------- /work/kfm/hitf30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitf30.png -------------------------------------------------------------------------------- /work/kfm/hitf31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitf31.png -------------------------------------------------------------------------------- /work/kfm/hitf40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitf40.png -------------------------------------------------------------------------------- /work/kfm/hitf50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitf50.png -------------------------------------------------------------------------------- /work/kfm/hithi00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hithi00.png -------------------------------------------------------------------------------- /work/kfm/hithi10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hithi10.png -------------------------------------------------------------------------------- /work/kfm/hithi11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hithi11.png -------------------------------------------------------------------------------- /work/kfm/hithi20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hithi20.png -------------------------------------------------------------------------------- /work/kfm/hithi21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hithi21.png -------------------------------------------------------------------------------- /work/kfm/hitlie10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitlie10.png -------------------------------------------------------------------------------- /work/kfm/hitlie11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitlie11.png -------------------------------------------------------------------------------- /work/kfm/hitlo00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitlo00.png -------------------------------------------------------------------------------- /work/kfm/hitlo10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitlo10.png -------------------------------------------------------------------------------- /work/kfm/hitlo20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitlo20.png -------------------------------------------------------------------------------- /work/kfm/hitlo21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitlo21.png -------------------------------------------------------------------------------- /work/kfm/hitth00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitth00.png -------------------------------------------------------------------------------- /work/kfm/hitth10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitth10.png -------------------------------------------------------------------------------- /work/kfm/hitth20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitth20.png -------------------------------------------------------------------------------- /work/kfm/hitup00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitup00.png -------------------------------------------------------------------------------- /work/kfm/hitup01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitup01.png -------------------------------------------------------------------------------- /work/kfm/hitup10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitup10.png -------------------------------------------------------------------------------- /work/kfm/hitupf01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/hitupf01.png -------------------------------------------------------------------------------- /work/kfm/intro/intro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/intro/intro.txt -------------------------------------------------------------------------------- /work/kfm/jumpb00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/jumpb00.png -------------------------------------------------------------------------------- /work/kfm/jumpb01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/jumpb01.png -------------------------------------------------------------------------------- /work/kfm/jumpf00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/jumpf00.png -------------------------------------------------------------------------------- /work/kfm/jumpf01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/jumpf01.png -------------------------------------------------------------------------------- /work/kfm/jumpf02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/jumpf02.png -------------------------------------------------------------------------------- /work/kfm/jumpf03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/jumpf03.png -------------------------------------------------------------------------------- /work/kfm/jumpf04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/jumpf04.png -------------------------------------------------------------------------------- /work/kfm/jumpf05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/jumpf05.png -------------------------------------------------------------------------------- /work/kfm/jumpup00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/jumpup00.png -------------------------------------------------------------------------------- /work/kfm/jumpup01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/jumpup01.png -------------------------------------------------------------------------------- /work/kfm/jumpup02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/jumpup02.png -------------------------------------------------------------------------------- /work/kfm/jumpup03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/jumpup03.png -------------------------------------------------------------------------------- /work/kfm/jumpup04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/jumpup04.png -------------------------------------------------------------------------------- /work/kfm/jumpup05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/jumpup05.png -------------------------------------------------------------------------------- /work/kfm/jumpup06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/jumpup06.png -------------------------------------------------------------------------------- /work/kfm/jumpup07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/jumpup07.png -------------------------------------------------------------------------------- /work/kfm/jumpup08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/jumpup08.png -------------------------------------------------------------------------------- /work/kfm/kfm-sff.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kfm-sff.def -------------------------------------------------------------------------------- /work/kfm/kfm.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kfm.act -------------------------------------------------------------------------------- /work/kfm/kfm2.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kfm2.act -------------------------------------------------------------------------------- /work/kfm/kfm3.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kfm3.act -------------------------------------------------------------------------------- /work/kfm/kfm4.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kfm4.act -------------------------------------------------------------------------------- /work/kfm/kfm5.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kfm5.act -------------------------------------------------------------------------------- /work/kfm/kfm6.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kfm6.act -------------------------------------------------------------------------------- /work/kfm/knee00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/knee00.png -------------------------------------------------------------------------------- /work/kfm/knee01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/knee01.png -------------------------------------------------------------------------------- /work/kfm/knee02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/knee02.png -------------------------------------------------------------------------------- /work/kfm/knee03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/knee03.png -------------------------------------------------------------------------------- /work/kfm/knee04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/knee04.png -------------------------------------------------------------------------------- /work/kfm/knee05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/knee05.png -------------------------------------------------------------------------------- /work/kfm/knee06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/knee06.png -------------------------------------------------------------------------------- /work/kfm/knee07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/knee07.png -------------------------------------------------------------------------------- /work/kfm/kneek00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kneek00.png -------------------------------------------------------------------------------- /work/kfm/kneek01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kneek01.png -------------------------------------------------------------------------------- /work/kfm/kneek02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kneek02.png -------------------------------------------------------------------------------- /work/kfm/kneek03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kneek03.png -------------------------------------------------------------------------------- /work/kfm/kneek04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kneek04.png -------------------------------------------------------------------------------- /work/kfm/kneek05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kneek05.png -------------------------------------------------------------------------------- /work/kfm/kneek06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kneek06.png -------------------------------------------------------------------------------- /work/kfm/kneek07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kneek07.png -------------------------------------------------------------------------------- /work/kfm/kneeld00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kneeld00.png -------------------------------------------------------------------------------- /work/kfm/kneeld01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kneeld01.png -------------------------------------------------------------------------------- /work/kfm/kneeld02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kneeld02.png -------------------------------------------------------------------------------- /work/kfm/kneeld03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/kneeld03.png -------------------------------------------------------------------------------- /work/kfm/palm00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/palm00.png -------------------------------------------------------------------------------- /work/kfm/palm01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/palm01.png -------------------------------------------------------------------------------- /work/kfm/palm02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/palm02.png -------------------------------------------------------------------------------- /work/kfm/palm03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/palm03.png -------------------------------------------------------------------------------- /work/kfm/palm04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/palm04.png -------------------------------------------------------------------------------- /work/kfm/palm05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/palm05.png -------------------------------------------------------------------------------- /work/kfm/palm06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/palm06.png -------------------------------------------------------------------------------- /work/kfm/palm07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/palm07.png -------------------------------------------------------------------------------- /work/kfm/runf00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/runf00.png -------------------------------------------------------------------------------- /work/kfm/runf01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/runf01.png -------------------------------------------------------------------------------- /work/kfm/runf02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/runf02.png -------------------------------------------------------------------------------- /work/kfm/runf03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/runf03.png -------------------------------------------------------------------------------- /work/kfm/runf04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/runf04.png -------------------------------------------------------------------------------- /work/kfm/runf05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/runf05.png -------------------------------------------------------------------------------- /work/kfm/s_a00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_a00.png -------------------------------------------------------------------------------- /work/kfm/s_a01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_a01.png -------------------------------------------------------------------------------- /work/kfm/s_a02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_a02.png -------------------------------------------------------------------------------- /work/kfm/s_b00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_b00.png -------------------------------------------------------------------------------- /work/kfm/s_b01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_b01.png -------------------------------------------------------------------------------- /work/kfm/s_b02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_b02.png -------------------------------------------------------------------------------- /work/kfm/s_b03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_b03.png -------------------------------------------------------------------------------- /work/kfm/s_b04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_b04.png -------------------------------------------------------------------------------- /work/kfm/s_b05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_b05.png -------------------------------------------------------------------------------- /work/kfm/s_th_a00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_th_a00.png -------------------------------------------------------------------------------- /work/kfm/s_th_a01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_th_a01.png -------------------------------------------------------------------------------- /work/kfm/s_th_a02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_th_a02.png -------------------------------------------------------------------------------- /work/kfm/s_th_a03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_th_a03.png -------------------------------------------------------------------------------- /work/kfm/s_th_a04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_th_a04.png -------------------------------------------------------------------------------- /work/kfm/s_th_a05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_th_a05.png -------------------------------------------------------------------------------- /work/kfm/s_th_a06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_th_a06.png -------------------------------------------------------------------------------- /work/kfm/s_th_a07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_th_a07.png -------------------------------------------------------------------------------- /work/kfm/s_th_a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_th_a08.png -------------------------------------------------------------------------------- /work/kfm/s_th_a09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_th_a09.png -------------------------------------------------------------------------------- /work/kfm/s_th_a10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_th_a10.png -------------------------------------------------------------------------------- /work/kfm/s_th_a11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_th_a11.png -------------------------------------------------------------------------------- /work/kfm/s_th_a12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_th_a12.png -------------------------------------------------------------------------------- /work/kfm/s_x00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_x00.png -------------------------------------------------------------------------------- /work/kfm/s_x01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_x01.png -------------------------------------------------------------------------------- /work/kfm/s_x02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_x02.png -------------------------------------------------------------------------------- /work/kfm/s_y00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_y00.png -------------------------------------------------------------------------------- /work/kfm/s_y01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_y01.png -------------------------------------------------------------------------------- /work/kfm/s_y02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_y02.png -------------------------------------------------------------------------------- /work/kfm/s_y03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_y03.png -------------------------------------------------------------------------------- /work/kfm/s_y04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_y04.png -------------------------------------------------------------------------------- /work/kfm/s_y05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/s_y05.png -------------------------------------------------------------------------------- /work/kfm/sound/atk0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/sound/atk0.wav -------------------------------------------------------------------------------- /work/kfm/sound/atk1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/sound/atk1.wav -------------------------------------------------------------------------------- /work/kfm/sound/atk2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/sound/atk2.wav -------------------------------------------------------------------------------- /work/kfm/sound/atk3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/sound/atk3.wav -------------------------------------------------------------------------------- /work/kfm/sound/atk4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/sound/atk4.wav -------------------------------------------------------------------------------- /work/kfm/sound/die.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/sound/die.wav -------------------------------------------------------------------------------- /work/kfm/sound/guard0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/sound/guard0.wav -------------------------------------------------------------------------------- /work/kfm/sound/hit1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/sound/hit1.wav -------------------------------------------------------------------------------- /work/kfm/sound/land0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/sound/land0.wav -------------------------------------------------------------------------------- /work/kfm/sound/sound.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/sound/sound.txt -------------------------------------------------------------------------------- /work/kfm/sound/ta.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/sound/ta.wav -------------------------------------------------------------------------------- /work/kfm/sound/throw0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/sound/throw0.wav -------------------------------------------------------------------------------- /work/kfm/sound/voi0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/sound/voi0.wav -------------------------------------------------------------------------------- /work/kfm/stand00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/stand00.png -------------------------------------------------------------------------------- /work/kfm/stand01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/stand01.png -------------------------------------------------------------------------------- /work/kfm/stand02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/stand02.png -------------------------------------------------------------------------------- /work/kfm/stand03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/stand03.png -------------------------------------------------------------------------------- /work/kfm/stand04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/stand04.png -------------------------------------------------------------------------------- /work/kfm/stand05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/stand05.png -------------------------------------------------------------------------------- /work/kfm/stun00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/stun00.png -------------------------------------------------------------------------------- /work/kfm/stun01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/stun01.png -------------------------------------------------------------------------------- /work/kfm/stun02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/stun02.png -------------------------------------------------------------------------------- /work/kfm/stun03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/stun03.png -------------------------------------------------------------------------------- /work/kfm/stun04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/stun04.png -------------------------------------------------------------------------------- /work/kfm/stun05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/stun05.png -------------------------------------------------------------------------------- /work/kfm/stun06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/stun06.png -------------------------------------------------------------------------------- /work/kfm/sturn00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/sturn00.png -------------------------------------------------------------------------------- /work/kfm/tzanko00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/tzanko00.png -------------------------------------------------------------------------------- /work/kfm/tzanko01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/tzanko01.png -------------------------------------------------------------------------------- /work/kfm/tzanko02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/tzanko02.png -------------------------------------------------------------------------------- /work/kfm/tzanko03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/tzanko03.png -------------------------------------------------------------------------------- /work/kfm/tzanko03buff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/tzanko03buff.png -------------------------------------------------------------------------------- /work/kfm/tzanko04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/tzanko04.png -------------------------------------------------------------------------------- /work/kfm/tzanko05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/tzanko05.png -------------------------------------------------------------------------------- /work/kfm/tzanko06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/tzanko06.png -------------------------------------------------------------------------------- /work/kfm/tzanko07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/tzanko07.png -------------------------------------------------------------------------------- /work/kfm/upper00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/upper00.png -------------------------------------------------------------------------------- /work/kfm/upper01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/upper01.png -------------------------------------------------------------------------------- /work/kfm/upper02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/upper02.png -------------------------------------------------------------------------------- /work/kfm/upper03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/upper03.png -------------------------------------------------------------------------------- /work/kfm/upper04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/upper04.png -------------------------------------------------------------------------------- /work/kfm/upper05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/upper05.png -------------------------------------------------------------------------------- /work/kfm/upper06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/upper06.png -------------------------------------------------------------------------------- /work/kfm/upper07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/upper07.png -------------------------------------------------------------------------------- /work/kfm/upper08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/upper08.png -------------------------------------------------------------------------------- /work/kfm/upper09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/upper09.png -------------------------------------------------------------------------------- /work/kfm/walkb00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkb00.png -------------------------------------------------------------------------------- /work/kfm/walkb01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkb01.png -------------------------------------------------------------------------------- /work/kfm/walkb02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkb02.png -------------------------------------------------------------------------------- /work/kfm/walkb03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkb03.png -------------------------------------------------------------------------------- /work/kfm/walkb04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkb04.png -------------------------------------------------------------------------------- /work/kfm/walkb05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkb05.png -------------------------------------------------------------------------------- /work/kfm/walkb06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkb06.png -------------------------------------------------------------------------------- /work/kfm/walkb07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkb07.png -------------------------------------------------------------------------------- /work/kfm/walkb08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkb08.png -------------------------------------------------------------------------------- /work/kfm/walkb09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkb09.png -------------------------------------------------------------------------------- /work/kfm/walkb10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkb10.png -------------------------------------------------------------------------------- /work/kfm/walkb11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkb11.png -------------------------------------------------------------------------------- /work/kfm/walkb12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkb12.png -------------------------------------------------------------------------------- /work/kfm/walkb13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkb13.png -------------------------------------------------------------------------------- /work/kfm/walkb14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkb14.png -------------------------------------------------------------------------------- /work/kfm/walkb15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkb15.png -------------------------------------------------------------------------------- /work/kfm/walkf00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkf00.png -------------------------------------------------------------------------------- /work/kfm/walkf01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkf01.png -------------------------------------------------------------------------------- /work/kfm/walkf02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkf02.png -------------------------------------------------------------------------------- /work/kfm/walkf03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkf03.png -------------------------------------------------------------------------------- /work/kfm/walkf04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkf04.png -------------------------------------------------------------------------------- /work/kfm/walkf05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkf05.png -------------------------------------------------------------------------------- /work/kfm/walkf06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkf06.png -------------------------------------------------------------------------------- /work/kfm/walkf07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkf07.png -------------------------------------------------------------------------------- /work/kfm/walkf08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkf08.png -------------------------------------------------------------------------------- /work/kfm/walkf09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkf09.png -------------------------------------------------------------------------------- /work/kfm/walkf10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkf10.png -------------------------------------------------------------------------------- /work/kfm/walkf11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkf11.png -------------------------------------------------------------------------------- /work/kfm/walkf12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkf12.png -------------------------------------------------------------------------------- /work/kfm/walkf13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkf13.png -------------------------------------------------------------------------------- /work/kfm/walkf14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkf14.png -------------------------------------------------------------------------------- /work/kfm/walkf15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/walkf15.png -------------------------------------------------------------------------------- /work/kfm/win_a00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/win_a00.png -------------------------------------------------------------------------------- /work/kfm/win_a01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/win_a01.png -------------------------------------------------------------------------------- /work/kfm/win_a02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/win_a02.png -------------------------------------------------------------------------------- /work/kfm/win_a03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/win_a03.png -------------------------------------------------------------------------------- /work/kfm/win_a04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/win_a04.png -------------------------------------------------------------------------------- /work/kfm/win_a05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/win_a05.png -------------------------------------------------------------------------------- /work/kfm/win_a06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/win_a06.png -------------------------------------------------------------------------------- /work/kfm/wood00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/wood00.png -------------------------------------------------------------------------------- /work/kfm/wood01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/wood01.png -------------------------------------------------------------------------------- /work/kfm/wood02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/wood02.png -------------------------------------------------------------------------------- /work/kfm/wood03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/wood03.png -------------------------------------------------------------------------------- /work/kfm/woodb00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/woodb00.png -------------------------------------------------------------------------------- /work/kfm/woodb01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm/woodb01.png -------------------------------------------------------------------------------- /work/kfm720/a_a01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/a_a01.png -------------------------------------------------------------------------------- /work/kfm720/a_a02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/a_a02.png -------------------------------------------------------------------------------- /work/kfm720/a_b00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/a_b00.png -------------------------------------------------------------------------------- /work/kfm720/a_b01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/a_b01.png -------------------------------------------------------------------------------- /work/kfm720/a_b02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/a_b02.png -------------------------------------------------------------------------------- /work/kfm720/a_x00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/a_x00.png -------------------------------------------------------------------------------- /work/kfm720/a_x01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/a_x01.png -------------------------------------------------------------------------------- /work/kfm720/a_y00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/a_y00.png -------------------------------------------------------------------------------- /work/kfm720/a_y01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/a_y01.png -------------------------------------------------------------------------------- /work/kfm720/a_y02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/a_y02.png -------------------------------------------------------------------------------- /work/kfm720/a_y03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/a_y03.png -------------------------------------------------------------------------------- /work/kfm720/ablock00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/ablock00.png -------------------------------------------------------------------------------- /work/kfm720/ablock01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/ablock01.png -------------------------------------------------------------------------------- /work/kfm720/block00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/block00.png -------------------------------------------------------------------------------- /work/kfm720/block01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/block01.png -------------------------------------------------------------------------------- /work/kfm720/block02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/block02.png -------------------------------------------------------------------------------- /work/kfm720/c_a00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_a00.png -------------------------------------------------------------------------------- /work/kfm720/c_a01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_a01.png -------------------------------------------------------------------------------- /work/kfm720/c_a02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_a02.png -------------------------------------------------------------------------------- /work/kfm720/c_a03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_a03.png -------------------------------------------------------------------------------- /work/kfm720/c_b00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_b00.png -------------------------------------------------------------------------------- /work/kfm720/c_b01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_b01.png -------------------------------------------------------------------------------- /work/kfm720/c_b02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_b02.png -------------------------------------------------------------------------------- /work/kfm720/c_b03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_b03.png -------------------------------------------------------------------------------- /work/kfm720/c_b04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_b04.png -------------------------------------------------------------------------------- /work/kfm720/c_b05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_b05.png -------------------------------------------------------------------------------- /work/kfm720/c_b06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_b06.png -------------------------------------------------------------------------------- /work/kfm720/c_x00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_x00.png -------------------------------------------------------------------------------- /work/kfm720/c_x01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_x01.png -------------------------------------------------------------------------------- /work/kfm720/c_y00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_y00.png -------------------------------------------------------------------------------- /work/kfm720/c_y01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_y01.png -------------------------------------------------------------------------------- /work/kfm720/c_y02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_y02.png -------------------------------------------------------------------------------- /work/kfm720/c_y03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_y03.png -------------------------------------------------------------------------------- /work/kfm720/c_y04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/c_y04.png -------------------------------------------------------------------------------- /work/kfm720/cblock00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/cblock00.png -------------------------------------------------------------------------------- /work/kfm720/cblock01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/cblock01.png -------------------------------------------------------------------------------- /work/kfm720/cblock02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/cblock02.png -------------------------------------------------------------------------------- /work/kfm720/color1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/color1.png -------------------------------------------------------------------------------- /work/kfm720/color2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/color2.png -------------------------------------------------------------------------------- /work/kfm720/color3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/color3.png -------------------------------------------------------------------------------- /work/kfm720/color4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/color4.png -------------------------------------------------------------------------------- /work/kfm720/color5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/color5.png -------------------------------------------------------------------------------- /work/kfm720/color6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/color6.png -------------------------------------------------------------------------------- /work/kfm720/crouch00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/crouch00.png -------------------------------------------------------------------------------- /work/kfm720/crouch01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/crouch01.png -------------------------------------------------------------------------------- /work/kfm720/crouch02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/crouch02.png -------------------------------------------------------------------------------- /work/kfm720/cturn00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/cturn00.png -------------------------------------------------------------------------------- /work/kfm720/dizzy00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/dizzy00.png -------------------------------------------------------------------------------- /work/kfm720/dizzy01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/dizzy01.png -------------------------------------------------------------------------------- /work/kfm720/dizzy02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/dizzy02.png -------------------------------------------------------------------------------- /work/kfm720/dizzy03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/dizzy03.png -------------------------------------------------------------------------------- /work/kfm720/f-face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/f-face.png -------------------------------------------------------------------------------- /work/kfm720/f-faceb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/f-faceb.png -------------------------------------------------------------------------------- /work/kfm720/guarda00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/guarda00.png -------------------------------------------------------------------------------- /work/kfm720/guardc00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/guardc00.png -------------------------------------------------------------------------------- /work/kfm720/guards00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/guards00.png -------------------------------------------------------------------------------- /work/kfm720/guards01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/guards01.png -------------------------------------------------------------------------------- /work/kfm720/guards02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/guards02.png -------------------------------------------------------------------------------- /work/kfm720/hita00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hita00.png -------------------------------------------------------------------------------- /work/kfm720/hita10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hita10.png -------------------------------------------------------------------------------- /work/kfm720/hitc00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitc00.png -------------------------------------------------------------------------------- /work/kfm720/hitc10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitc10.png -------------------------------------------------------------------------------- /work/kfm720/hitc20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitc20.png -------------------------------------------------------------------------------- /work/kfm720/hitd00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitd00.png -------------------------------------------------------------------------------- /work/kfm720/hitf20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitf20.png -------------------------------------------------------------------------------- /work/kfm720/hitf30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitf30.png -------------------------------------------------------------------------------- /work/kfm720/hitf31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitf31.png -------------------------------------------------------------------------------- /work/kfm720/hitf40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitf40.png -------------------------------------------------------------------------------- /work/kfm720/hitf50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitf50.png -------------------------------------------------------------------------------- /work/kfm720/hithi00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hithi00.png -------------------------------------------------------------------------------- /work/kfm720/hithi10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hithi10.png -------------------------------------------------------------------------------- /work/kfm720/hithi11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hithi11.png -------------------------------------------------------------------------------- /work/kfm720/hithi20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hithi20.png -------------------------------------------------------------------------------- /work/kfm720/hithi21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hithi21.png -------------------------------------------------------------------------------- /work/kfm720/hitlie10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitlie10.png -------------------------------------------------------------------------------- /work/kfm720/hitlie11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitlie11.png -------------------------------------------------------------------------------- /work/kfm720/hitlo00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitlo00.png -------------------------------------------------------------------------------- /work/kfm720/hitlo10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitlo10.png -------------------------------------------------------------------------------- /work/kfm720/hitlo20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitlo20.png -------------------------------------------------------------------------------- /work/kfm720/hitlo21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitlo21.png -------------------------------------------------------------------------------- /work/kfm720/hitth00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitth00.png -------------------------------------------------------------------------------- /work/kfm720/hitth10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitth10.png -------------------------------------------------------------------------------- /work/kfm720/hitth20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitth20.png -------------------------------------------------------------------------------- /work/kfm720/hitup00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitup00.png -------------------------------------------------------------------------------- /work/kfm720/hitup01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitup01.png -------------------------------------------------------------------------------- /work/kfm720/hitup10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitup10.png -------------------------------------------------------------------------------- /work/kfm720/hitupf01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/hitupf01.png -------------------------------------------------------------------------------- /work/kfm720/jumpb00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/jumpb00.png -------------------------------------------------------------------------------- /work/kfm720/jumpb01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/jumpb01.png -------------------------------------------------------------------------------- /work/kfm720/jumpf00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/jumpf00.png -------------------------------------------------------------------------------- /work/kfm720/jumpf01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/jumpf01.png -------------------------------------------------------------------------------- /work/kfm720/jumpf02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/jumpf02.png -------------------------------------------------------------------------------- /work/kfm720/jumpf03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/jumpf03.png -------------------------------------------------------------------------------- /work/kfm720/jumpf04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/jumpf04.png -------------------------------------------------------------------------------- /work/kfm720/jumpf05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/jumpf05.png -------------------------------------------------------------------------------- /work/kfm720/jumpup00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/jumpup00.png -------------------------------------------------------------------------------- /work/kfm720/jumpup01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/jumpup01.png -------------------------------------------------------------------------------- /work/kfm720/jumpup02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/jumpup02.png -------------------------------------------------------------------------------- /work/kfm720/jumpup03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/jumpup03.png -------------------------------------------------------------------------------- /work/kfm720/jumpup04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/jumpup04.png -------------------------------------------------------------------------------- /work/kfm720/jumpup05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/jumpup05.png -------------------------------------------------------------------------------- /work/kfm720/jumpup06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/jumpup06.png -------------------------------------------------------------------------------- /work/kfm720/jumpup07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/jumpup07.png -------------------------------------------------------------------------------- /work/kfm720/jumpup08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/jumpup08.png -------------------------------------------------------------------------------- /work/kfm720/knee00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/knee00.png -------------------------------------------------------------------------------- /work/kfm720/knee01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/knee01.png -------------------------------------------------------------------------------- /work/kfm720/knee02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/knee02.png -------------------------------------------------------------------------------- /work/kfm720/knee03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/knee03.png -------------------------------------------------------------------------------- /work/kfm720/knee04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/knee04.png -------------------------------------------------------------------------------- /work/kfm720/knee05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/knee05.png -------------------------------------------------------------------------------- /work/kfm720/knee06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/knee06.png -------------------------------------------------------------------------------- /work/kfm720/knee07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/knee07.png -------------------------------------------------------------------------------- /work/kfm720/kneek00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/kneek00.png -------------------------------------------------------------------------------- /work/kfm720/kneek01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/kneek01.png -------------------------------------------------------------------------------- /work/kfm720/kneek02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/kneek02.png -------------------------------------------------------------------------------- /work/kfm720/kneek03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/kneek03.png -------------------------------------------------------------------------------- /work/kfm720/kneek04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/kneek04.png -------------------------------------------------------------------------------- /work/kfm720/kneek05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/kneek05.png -------------------------------------------------------------------------------- /work/kfm720/kneek06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/kneek06.png -------------------------------------------------------------------------------- /work/kfm720/kneek07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/kneek07.png -------------------------------------------------------------------------------- /work/kfm720/kneeld00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/kneeld00.png -------------------------------------------------------------------------------- /work/kfm720/kneeld01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/kneeld01.png -------------------------------------------------------------------------------- /work/kfm720/kneeld02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/kneeld02.png -------------------------------------------------------------------------------- /work/kfm720/kneeld03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/kneeld03.png -------------------------------------------------------------------------------- /work/kfm720/palm00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/palm00.png -------------------------------------------------------------------------------- /work/kfm720/palm01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/palm01.png -------------------------------------------------------------------------------- /work/kfm720/palm02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/palm02.png -------------------------------------------------------------------------------- /work/kfm720/palm03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/palm03.png -------------------------------------------------------------------------------- /work/kfm720/palm04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/palm04.png -------------------------------------------------------------------------------- /work/kfm720/palm05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/palm05.png -------------------------------------------------------------------------------- /work/kfm720/palm06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/palm06.png -------------------------------------------------------------------------------- /work/kfm720/palm07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/palm07.png -------------------------------------------------------------------------------- /work/kfm720/runf00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/runf00.png -------------------------------------------------------------------------------- /work/kfm720/runf01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/runf01.png -------------------------------------------------------------------------------- /work/kfm720/runf02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/runf02.png -------------------------------------------------------------------------------- /work/kfm720/runf03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/runf03.png -------------------------------------------------------------------------------- /work/kfm720/runf04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/runf04.png -------------------------------------------------------------------------------- /work/kfm720/runf05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/runf05.png -------------------------------------------------------------------------------- /work/kfm720/s_a00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_a00.png -------------------------------------------------------------------------------- /work/kfm720/s_a01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_a01.png -------------------------------------------------------------------------------- /work/kfm720/s_a02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_a02.png -------------------------------------------------------------------------------- /work/kfm720/s_b00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_b00.png -------------------------------------------------------------------------------- /work/kfm720/s_b01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_b01.png -------------------------------------------------------------------------------- /work/kfm720/s_b02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_b02.png -------------------------------------------------------------------------------- /work/kfm720/s_b03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_b03.png -------------------------------------------------------------------------------- /work/kfm720/s_b04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_b04.png -------------------------------------------------------------------------------- /work/kfm720/s_b05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_b05.png -------------------------------------------------------------------------------- /work/kfm720/s_th_a00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_th_a00.png -------------------------------------------------------------------------------- /work/kfm720/s_th_a01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_th_a01.png -------------------------------------------------------------------------------- /work/kfm720/s_th_a02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_th_a02.png -------------------------------------------------------------------------------- /work/kfm720/s_th_a03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_th_a03.png -------------------------------------------------------------------------------- /work/kfm720/s_th_a04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_th_a04.png -------------------------------------------------------------------------------- /work/kfm720/s_th_a05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_th_a05.png -------------------------------------------------------------------------------- /work/kfm720/s_th_a06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_th_a06.png -------------------------------------------------------------------------------- /work/kfm720/s_th_a07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_th_a07.png -------------------------------------------------------------------------------- /work/kfm720/s_th_a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_th_a08.png -------------------------------------------------------------------------------- /work/kfm720/s_th_a09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_th_a09.png -------------------------------------------------------------------------------- /work/kfm720/s_th_a10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_th_a10.png -------------------------------------------------------------------------------- /work/kfm720/s_th_a11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_th_a11.png -------------------------------------------------------------------------------- /work/kfm720/s_th_a12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_th_a12.png -------------------------------------------------------------------------------- /work/kfm720/s_x00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_x00.png -------------------------------------------------------------------------------- /work/kfm720/s_x01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_x01.png -------------------------------------------------------------------------------- /work/kfm720/s_x02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_x02.png -------------------------------------------------------------------------------- /work/kfm720/s_y00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_y00.png -------------------------------------------------------------------------------- /work/kfm720/s_y01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_y01.png -------------------------------------------------------------------------------- /work/kfm720/s_y02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_y02.png -------------------------------------------------------------------------------- /work/kfm720/s_y03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_y03.png -------------------------------------------------------------------------------- /work/kfm720/s_y04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_y04.png -------------------------------------------------------------------------------- /work/kfm720/s_y05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/s_y05.png -------------------------------------------------------------------------------- /work/kfm720/stand00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/stand00.png -------------------------------------------------------------------------------- /work/kfm720/stand01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/stand01.png -------------------------------------------------------------------------------- /work/kfm720/stand02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/stand02.png -------------------------------------------------------------------------------- /work/kfm720/stand03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/stand03.png -------------------------------------------------------------------------------- /work/kfm720/stand04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/stand04.png -------------------------------------------------------------------------------- /work/kfm720/stand05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/stand05.png -------------------------------------------------------------------------------- /work/kfm720/stun00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/stun00.png -------------------------------------------------------------------------------- /work/kfm720/stun01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/stun01.png -------------------------------------------------------------------------------- /work/kfm720/stun02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/stun02.png -------------------------------------------------------------------------------- /work/kfm720/stun03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/stun03.png -------------------------------------------------------------------------------- /work/kfm720/stun04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/stun04.png -------------------------------------------------------------------------------- /work/kfm720/stun05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/stun05.png -------------------------------------------------------------------------------- /work/kfm720/stun06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/stun06.png -------------------------------------------------------------------------------- /work/kfm720/sturn00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/sturn00.png -------------------------------------------------------------------------------- /work/kfm720/tzanko00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/tzanko00.png -------------------------------------------------------------------------------- /work/kfm720/tzanko01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/tzanko01.png -------------------------------------------------------------------------------- /work/kfm720/tzanko02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/tzanko02.png -------------------------------------------------------------------------------- /work/kfm720/tzanko03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/tzanko03.png -------------------------------------------------------------------------------- /work/kfm720/tzanko04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/tzanko04.png -------------------------------------------------------------------------------- /work/kfm720/tzanko05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/tzanko05.png -------------------------------------------------------------------------------- /work/kfm720/tzanko06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/tzanko06.png -------------------------------------------------------------------------------- /work/kfm720/tzanko07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/tzanko07.png -------------------------------------------------------------------------------- /work/kfm720/upper00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/upper00.png -------------------------------------------------------------------------------- /work/kfm720/upper01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/upper01.png -------------------------------------------------------------------------------- /work/kfm720/upper02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/upper02.png -------------------------------------------------------------------------------- /work/kfm720/upper03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/upper03.png -------------------------------------------------------------------------------- /work/kfm720/upper04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/upper04.png -------------------------------------------------------------------------------- /work/kfm720/upper05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/upper05.png -------------------------------------------------------------------------------- /work/kfm720/upper06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/upper06.png -------------------------------------------------------------------------------- /work/kfm720/upper07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/upper07.png -------------------------------------------------------------------------------- /work/kfm720/upper08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/upper08.png -------------------------------------------------------------------------------- /work/kfm720/upper09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/upper09.png -------------------------------------------------------------------------------- /work/kfm720/walkb00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkb00.png -------------------------------------------------------------------------------- /work/kfm720/walkb01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkb01.png -------------------------------------------------------------------------------- /work/kfm720/walkb02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkb02.png -------------------------------------------------------------------------------- /work/kfm720/walkb03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkb03.png -------------------------------------------------------------------------------- /work/kfm720/walkb04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkb04.png -------------------------------------------------------------------------------- /work/kfm720/walkb05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkb05.png -------------------------------------------------------------------------------- /work/kfm720/walkb06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkb06.png -------------------------------------------------------------------------------- /work/kfm720/walkb07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkb07.png -------------------------------------------------------------------------------- /work/kfm720/walkb08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkb08.png -------------------------------------------------------------------------------- /work/kfm720/walkb09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkb09.png -------------------------------------------------------------------------------- /work/kfm720/walkb10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkb10.png -------------------------------------------------------------------------------- /work/kfm720/walkb11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkb11.png -------------------------------------------------------------------------------- /work/kfm720/walkb12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkb12.png -------------------------------------------------------------------------------- /work/kfm720/walkb13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkb13.png -------------------------------------------------------------------------------- /work/kfm720/walkb14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkb14.png -------------------------------------------------------------------------------- /work/kfm720/walkb15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkb15.png -------------------------------------------------------------------------------- /work/kfm720/walkf00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkf00.png -------------------------------------------------------------------------------- /work/kfm720/walkf01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkf01.png -------------------------------------------------------------------------------- /work/kfm720/walkf02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkf02.png -------------------------------------------------------------------------------- /work/kfm720/walkf03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkf03.png -------------------------------------------------------------------------------- /work/kfm720/walkf04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkf04.png -------------------------------------------------------------------------------- /work/kfm720/walkf05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkf05.png -------------------------------------------------------------------------------- /work/kfm720/walkf06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkf06.png -------------------------------------------------------------------------------- /work/kfm720/walkf07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkf07.png -------------------------------------------------------------------------------- /work/kfm720/walkf08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkf08.png -------------------------------------------------------------------------------- /work/kfm720/walkf09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkf09.png -------------------------------------------------------------------------------- /work/kfm720/walkf10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkf10.png -------------------------------------------------------------------------------- /work/kfm720/walkf11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkf11.png -------------------------------------------------------------------------------- /work/kfm720/walkf12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkf12.png -------------------------------------------------------------------------------- /work/kfm720/walkf13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkf13.png -------------------------------------------------------------------------------- /work/kfm720/walkf14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkf14.png -------------------------------------------------------------------------------- /work/kfm720/walkf15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/walkf15.png -------------------------------------------------------------------------------- /work/kfm720/win_a00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/win_a00.png -------------------------------------------------------------------------------- /work/kfm720/win_a01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/win_a01.png -------------------------------------------------------------------------------- /work/kfm720/win_a02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/win_a02.png -------------------------------------------------------------------------------- /work/kfm720/win_a03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/win_a03.png -------------------------------------------------------------------------------- /work/kfm720/win_a04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/win_a04.png -------------------------------------------------------------------------------- /work/kfm720/win_a05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/win_a05.png -------------------------------------------------------------------------------- /work/kfm720/win_a06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/win_a06.png -------------------------------------------------------------------------------- /work/kfm720/wood00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/wood00.png -------------------------------------------------------------------------------- /work/kfm720/wood01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/wood01.png -------------------------------------------------------------------------------- /work/kfm720/wood02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/wood02.png -------------------------------------------------------------------------------- /work/kfm720/wood03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/wood03.png -------------------------------------------------------------------------------- /work/kfm720/woodb00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/woodb00.png -------------------------------------------------------------------------------- /work/kfm720/woodb01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/kfm720/woodb01.png -------------------------------------------------------------------------------- /work/mugen1/fight/ko.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/mugen1/fight/ko.pcx -------------------------------------------------------------------------------- /work/mugen1/system/vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/mugen1/system/vs.png -------------------------------------------------------------------------------- /work/stages/kfm/wall0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/stages/kfm/wall0.pcx -------------------------------------------------------------------------------- /work/system/boxbg.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/boxbg.pcx -------------------------------------------------------------------------------- /work/system/boxoff1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/boxoff1.pcx -------------------------------------------------------------------------------- /work/system/boxoff2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/boxoff2.pcx -------------------------------------------------------------------------------- /work/system/boxon1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/boxon1.pcx -------------------------------------------------------------------------------- /work/system/boxon2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/boxon2.pcx -------------------------------------------------------------------------------- /work/system/boxrand.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/boxrand.pcx -------------------------------------------------------------------------------- /work/system/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/readme.txt -------------------------------------------------------------------------------- /work/system/selbg1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/selbg1.pcx -------------------------------------------------------------------------------- /work/system/selbg2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/selbg2.pcx -------------------------------------------------------------------------------- /work/system/seltitl0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/seltitl0.pcx -------------------------------------------------------------------------------- /work/system/seltitl1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/seltitl1.pcx -------------------------------------------------------------------------------- /work/system/seltitl2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/seltitl2.pcx -------------------------------------------------------------------------------- /work/system/system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/system.txt -------------------------------------------------------------------------------- /work/system/title.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/title.pcx -------------------------------------------------------------------------------- /work/system/titlebg0.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/titlebg0.pcx -------------------------------------------------------------------------------- /work/system/titlebg1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/titlebg1.pcx -------------------------------------------------------------------------------- /work/system/titlebg2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/titlebg2.pcx -------------------------------------------------------------------------------- /work/system/tmcur1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/tmcur1.pcx -------------------------------------------------------------------------------- /work/system/tmcur2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/tmcur2.pcx -------------------------------------------------------------------------------- /work/system/tmicon1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/tmicon1.pcx -------------------------------------------------------------------------------- /work/system/tmicon2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/tmicon2.pcx -------------------------------------------------------------------------------- /work/system/tmicone1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/tmicone1.pcx -------------------------------------------------------------------------------- /work/system/tmicone2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/tmicone2.pcx -------------------------------------------------------------------------------- /work/system/vs.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/vs.pcx -------------------------------------------------------------------------------- /work/system/vs1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/vs1.pcx -------------------------------------------------------------------------------- /work/system/vs2.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/vs2.pcx -------------------------------------------------------------------------------- /work/system/vs3.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/vs3.pcx -------------------------------------------------------------------------------- /work/system/vs4.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/vs4.pcx -------------------------------------------------------------------------------- /work/system/vs5.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/vs5.pcx -------------------------------------------------------------------------------- /work/system/vs6.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/vs6.pcx -------------------------------------------------------------------------------- /work/system/vs7.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/vs7.pcx -------------------------------------------------------------------------------- /work/system/vs8.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanyer/mugen/HEAD/work/system/vs8.pcx --------------------------------------------------------------------------------