Last active
March 1, 2024 09:19
-
-
Save Hipnosis183/383194ad41386a02a5549b8045bcf7bb to your computer and use it in GitHub Desktop.
Metal Slug Defense - Asset Downloader
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Requires NPM package 'node-fetch'. | |
// npm install node-fetch@2 | |
const fetch = require('node-fetch'); | |
const fs = require('fs'); | |
const http = require('http'); | |
const util = require('util'); | |
const pipeline = util.promisify(require('stream').pipeline); | |
// Import file list. | |
let filesGot = 0; | |
let filesTotal = 0; | |
const filesList = fs.readFileSync(`${__dirname}/download.listfile`, 'utf-8').split('\n'); | |
// Game server information. | |
const serverHost = 'https://strage.snkplaymore.info/'; | |
const serverUrl = `${serverHost}snkp/msdf/`; | |
http.createServer().listen(3000, '127.0.0.1', async () => { | |
console.log(`[Metal Slug Defense - Assets Downloader]\n`); | |
await getResources(); | |
console.log(`[DONE] ${filesGot}/${filesTotal} files.`); | |
process.exit(0); // Terminate server process. | |
}); | |
const getResources = async () => { | |
console.log(`[RESOURCES]`); | |
filesTotal += filesList.length - 1; | |
const pathResources = createPath('com.snkplaymore.android003'); | |
for (let [i, file] of filesList.entries()) { | |
if (i == filesList.length - 1) { continue; } | |
const fileName = file.substring(0, file.indexOf(' ')); | |
const $fileName = fileName.replace(/(\.[\w\d_-]+)$/i, '.msdf'); | |
const fileVersion = file.substring(file.lastIndexOf(' ') + 1); | |
const fileUrl = `${serverUrl}${fileVersion}/${fileName}`; | |
console.log(`[${i + 1}/${filesList.length - 1}] ${fileName}`); | |
if (await fileDownload($fileName, fileUrl, pathResources)) { filesGot++; }; | |
} console.log(); | |
} | |
const createPath = (output) => { | |
// Create output path if it doesn't exist. | |
const outputPath = `./${output}/`; | |
if (!fs.existsSync(outputPath)) { fs.mkdirSync(outputPath, { recursive: true }); } | |
return outputPath; | |
} | |
const fileDownload = async (name, url, output) => { | |
try { // Download data from url. | |
const fileData = await fetch(url, { method: 'GET' }); | |
// Write downloaded data into a new file stream. | |
await pipeline(fileData.body, fs.createWriteStream(output + name)); | |
console.log(`[OK] >>${output.slice(1)}${name}`); return 1; | |
} catch { // Failed to download file. | |
console.log(`[ERROR] ${output.slice(1)}${name} (${url})`); return 0; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0001_0231_2_out.obm 16456 5648 1390 | |
01_marco_1_out.obm 33800 48567 1440 | |
02_tarma_2_out.obm 33800 3630 1440 | |
03_eri_3_out.obm 17416 41794 1440 | |
040_2_out.obm 33800 38408 1410 | |
043_2_out.obm 33800 44758 1410 | |
04_fio_4_out.obm 17416 19548 1440 | |
05_trevor_5_out.obm 33800 34508 1440 | |
06_nadia_6_out.obm 33800 15454 1440 | |
07_ralf_7_out.obm 33800 55414 1440 | |
08_clark_8_out.obm 33800 19923 1440 | |
09_leona_9_out.obm 17416 48547 1440 | |
0C1_2_2_out.obm 17416 23656 1410 | |
0C4_3_out.obm 66568 30186 1410 | |
102_4_out.obm 17416 10815 1410 | |
105_5_out.obm 17416 35620 1410 | |
11038_1_out.obm 525320 35000 1390 | |
16341_1_out.obm 33800 50545 1400 | |
27539_out.obm 263176 22098 1400 | |
38890_0_out.obm 66568 34898 1370 | |
422_out.obm 132104 18287 1400 | |
45925_out.obm 525320 47991 1390 | |
46540_2_out.obm 132104 64415 1370 | |
470_0_out.obm 66568 15329 1410 | |
471_1_out.obm 17416 36950 1410 | |
472_2_out.obm 66568 16956 1410 | |
473_3_out.obm 33800 45426 1410 | |
496_4_out.obm 525320 35469 1360 | |
497_5_out.obm 525320 57473 1360 | |
4BOSS_TOWER_01_0_out.obm 525320 29313 1430 | |
4BOSS_TOWER_02_1_out.obm 263176 9315 1430 | |
4BOSS_TOWER_03_2_out.obm 263176 11814 1430 | |
4BOSS_TOWER_04_3_out.obm 132104 24222 1430 | |
4BOSS_TOWER_05_4_out.obm 132104 6833 1430 | |
4BOSS_TOWER_06_5_out.obm 525320 16619 1430 | |
4BOSS_TOWER_07_6_out.obm 263176 2745 1430 | |
4E0_0_out.obm 17416 29906 1350 | |
4FINALBOSSA_1_0_out.obm 263176 9061 1380 | |
4FINALBOSSA_2_1_out.obm 132104 38249 1380 | |
4FINALBOSSA_3_2_out.obm 525320 5966 1380 | |
4FINALBOSSA_4_5_out.obm 132104 3185 1380 | |
4FINALBOSSA_arms_4_out.obm 263176 64293 1380 | |
4FINALBOSSB_1_0_out.obm 263176 5304 1380 | |
4FINALBOSSB_2_1_out.obm 263176 42874 1380 | |
4FINALBOSSB_4_2_out.obm 263176 22547 1380 | |
4FINALBOSSB_arms_4_out.obm 263176 25664 1380 | |
aca_door.ogg 7004 59176 1380 | |
aca_ring.ogg 7331 6381 1380 | |
acb_saw.ogg 9924 64830 1380 | |
acb_sp.ogg 6015 36811 1380 | |
acc_laser_l.ogg 25216 58775 1380 | |
acc_laser_s.ogg 28073 59372 1380 | |
acc_laser_ss.ogg 7687 17899 1380 | |
acc_sp_charge.ogg 16304 36409 1380 | |
acc_sp_shoot.ogg 16575 40688 1380 | |
acr_laser.ogg 6984 36772 1380 | |
Advance_Formor_out.obm 525320 49194 1390 | |
AIKAWA.ogg 5675 45866 100 | |
alert.ogg 27473 1257 100 | |
allenjr_vo_come.ogg 12577 65447 1280 | |
allenjr_vo_hell.ogg 15438 45418 1280 | |
allenjr_vo_laugh.ogg 13765 62400 1280 | |
allen_wrath_base_0_out.obm 525320 42140 1370 | |
allen_wrath_base_1_out.obm 132104 7535 1370 | |
andy_special.ogg 12434 43274 1230 | |
andy_vo_lose.ogg 12245 8164 1230 | |
andy_vo_special.ogg 12739 54460 1230 | |
andy_vo_win.ogg 7593 20912 1230 | |
andy_vo_zan.ogg 8558 17596 1230 | |
andy_zan.ogg 7702 30495 1230 | |
AP_tap.ogg 13150 45765 100 | |
arabia_army_4_out.obm 263176 40695 1380 | |
area_enter.ogg 12342 31977 100 | |
athena_ball.ogg 7772 47174 1200 | |
athena_tokusyu.ogg 8027 46732 1200 | |
athena_vo_attack.ogg 8379 37837 1200 | |
athena_vo_ball.ogg 12978 51116 1220 | |
athena_vo_fight.ogg 15328 21504 1200 | |
athena_vo_lose.ogg 10569 38680 1200 | |
athena_vo_tokusyu.ogg 13672 41028 1200 | |
AUGEN_DEATH.ogg 10092 38493 170 | |
AUGEN_SA_A.ogg 12053 34560 170 | |
AUGEN_SA_B.ogg 7258 44304 170 | |
avatar.obm 3145736 37708 1330 | |
B4PDOWN1.ogg 7102 60018 100 | |
B4PJUMP1.ogg 7132 43017 100 | |
B4PLAND2.ogg 6799 55182 100 | |
B4PUP1.ogg 6602 342 100 | |
B4REXPSD.ogg 10996 10122 180 | |
B4TKNIFE.ogg 6561 48706 100 | |
B4V1MONJ.ogg 6089 50246 100 | |
B4VHELL.ogg 15054 5764 100 | |
B4VKYAA1.ogg 8120 20445 100 | |
B4VKYAHH.ogg 8011 57960 100 | |
B4VMARS.ogg 7031 23572 100 | |
B4VMIRA1.ogg 11008 64276 100 | |
B4VMIRA2.ogg 8316 3567 100 | |
B4VMODEN.ogg 12121 50957 100 | |
B4VNO.ogg 11974 49289 100 | |
B4VTHANK.ogg 7902 21268 100 | |
B4VYHAHA.ogg 14568 5436 100 | |
B4_BATK3.ogg 10669 41641 150 | |
B4_BSKID.ogg 7042 22972 150 | |
B4_BULL1_S.ogg 14663 42787 1330 | |
B4_CAN1.ogg 8045 12116 100 | |
B4_CANT1.ogg 8435 42990 100 | |
B4_CATM1.ogg 12874 22965 100 | |
B4_DARA1.ogg 10458 12479 100 | |
B4_DET1M.ogg 9949 58436 100 | |
B4_DET2M.ogg 7122 22936 100 | |
B4_DET3M.ogg 10505 48621 100 | |
B4_DET4M.ogg 8598 36006 100 | |
B4_DET6M.ogg 5321 59746 140 | |
B4_EXP1.ogg 11863 57261 100 | |
B4_EXP2.ogg 8051 14828 100 | |
B4_EXP3.ogg 10241 47082 100 | |
B4_EXP5.ogg 8128 9550 100 | |
B4_EXPBB.ogg 35766 53044 100 | |
B4_EXPBB_MID2.ogg 20147 35679 1410 | |
B4_EXPBB_MINI.ogg 14338 19822 1200 | |
B4_EXPBB_SAND.ogg 28031 26345 1380 | |
B4_EXPBG.ogg 17880 32000 100 | |
B4_EXPGL.ogg 11574 17736 100 | |
B4_EXPIR.ogg 9598 8663 100 | |
B4_EXPK3.ogg 18767 43331 100 | |
B4_EXPKI.ogg 14395 36402 100 | |
B4_EXPKI_S.ogg 12188 20381 1330 | |
B4_EXPMT.ogg 18717 63504 100 | |
B4_EXPPL.ogg 16409 45238 100 | |
B4_EXPRO.ogg 10367 20367 100 | |
B4_EXPRO_S.ogg 7715 11393 1390 | |
B4_FLAME.ogg 9602 37301 100 | |
B4_HATK1.ogg 6049 13553 140 | |
B4_HATK2.ogg 5394 46141 100 | |
B4_HATK2_2.ogg 5394 46141 150 | |
B4_HMGUN.ogg 9187 23847 100 | |
B4_HT11C.ogg 5392 44787 100 | |
B4_ht13.ogg 9210 60369 100 | |
B4_KNIFE.ogg 7505 55142 100 | |
B4_MISSL.ogg 8723 45801 100 | |
B4_MOVE2.ogg 7223 40155 1110 | |
B4_NRGUN.ogg 6581 59357 100 | |
B4_OPDES.ogg 7629 50263 100 | |
B4_PDMG.ogg 11304 14881 100 | |
B4_PDMG2.ogg 7305 55917 100 | |
B4_PUNCH.ogg 6203 40703 100 | |
B4_RIFLE.ogg 7172 57410 120 | |
B4_RIFLE_REN_1.ogg 8648 63155 190 | |
B4_RLNCH.ogg 8338 10068 100 | |
B4_STGUN.ogg 9411 12731 100 | |
B4_TCAN2.ogg 9984 61083 1110 | |
B4_TCAN3.ogg 11092 65324 100 | |
B4_TCAN4.ogg 9689 20035 100 | |
B4_VLHIT.ogg 7129 21787 100 | |
B4_VUL1.ogg 6979 6473 100 | |
B4_VULDM.ogg 5619 57367 100 | |
B4_VULRI.ogg 5784 63442 100 | |
bazooka2_9_out.obm 66568 6726 1430 | |
bazooka_7_out.obm 66568 9803 1430 | |
beep.ogg 5482 12339 100 | |
beni_raijin.ogg 8153 61539 1160 | |
beni_tokusyu_1.ogg 7680 37720 1160 | |
beni_tokusyu_2.ogg 8600 53764 1160 | |
beni_vo_lose.ogg 13469 32358 1160 | |
beni_vo_raijin.ogg 10053 20845 1160 | |
beni_vo_tokusyu.ogg 10803 47678 1160 | |
beni_vo_win.ogg 9069 46603 1160 | |
bgm01.ogg 676935 42329 100 | |
bgm02.ogg 808494 4535 100 | |
bgm03.ogg 885236 19877 100 | |
bgm04.ogg 414481 2013 100 | |
bgm05.ogg 57572 4128 100 | |
bgm06.ogg 175297 11068 100 | |
bgm07.ogg 59190 3718 100 | |
bgm08.ogg 167479 37677 130 | |
bgm_australia_S3.ogg 430984 45581 160 | |
bgm_australia_S4.ogg 759618 55753 160 | |
bgm_boss_aren.ogg 974514 1250 1320 | |
bgm_b_10_2.ogg 840245 15704 100 | |
bgm_b_11_1.ogg 779233 7046 100 | |
bgm_b_12_3.ogg 497798 13371 100 | |
bgm_b_13_1.ogg 604537 50085 100 | |
bgm_b_14_1.ogg 837278 41576 100 | |
bgm_b_15_4.ogg 589086 965 100 | |
bgm_b_15_5.ogg 824472 43289 100 | |
bgm_b_16_1.ogg 934490 19918 100 | |
bgm_b_17_1.ogg 798979 24988 140 | |
bgm_b_17_2.ogg 736609 14728 140 | |
bgm_b_17_3.ogg 811543 16375 140 | |
bgm_b_18_1.ogg 689548 47918 140 | |
bgm_b_1_1.ogg 880955 5690 100 | |
bgm_b_1_4.ogg 459289 1871 100 | |
bgm_b_2_1.ogg 648099 32779 100 | |
bgm_b_3_1.ogg 556990 27601 100 | |
bgm_b_3_3.ogg 723972 19888 100 | |
bgm_b_4_1.ogg 668830 64457 100 | |
bgm_b_5_1.ogg 855414 25767 100 | |
bgm_b_5_3.ogg 780488 15459 100 | |
bgm_b_5_5.ogg 445520 48500 100 | |
bgm_b_6_1.ogg 722572 49765 100 | |
bgm_b_7_1.ogg 352778 60068 100 | |
bgm_b_7_2.ogg 411121 28438 100 | |
bgm_b_7_4.ogg 531335 4372 100 | |
bgm_b_8_1.ogg 650585 4304 100 | |
bgm_b_8_3.ogg 497468 59570 100 | |
bgm_b_9_1.ogg 787443 39611 100 | |
bgm_b_9_3.ogg 602719 12989 100 | |
bgm_b_jp.ogg 628370 37970 120 | |
bgm_canada_1.ogg 814899 62728 1110 | |
bgm_cave.ogg 170919 47542 100 | |
bgm_ending.ogg 1000088 3101 100 | |
bgm_fierce_battle.ogg 647479 42833 1370 | |
bgm_final_attack.ogg 891394 8834 1220 | |
bgm_kof_ikari96_arr.ogg 640715 39048 1330 | |
bgm_kof_iori96_arr.ogg 957611 20929 1330 | |
bgm_kof_jokaku94_arr.ogg 712147 14588 1330 | |
bgm_kof_kyo96_arr.ogg 711050 36087 1400 | |
bgm_kyokuto_russia.ogg 1023712 63361 1110 | |
bgm_ms4_final.ogg 782232 9184 1380 | |
bgm_ms4_finalboss.ogg 666241 6640 1380 | |
bgm_ms4_m1.ogg 871092 4334 1410 | |
bgm_ms4_m2.ogg 814241 27777 1410 | |
bgm_ms5_final.ogg 951439 64113 1410 | |
bgm_ms7_finalboss.ogg 777025 35743 1410 | |
bgm_ms7_select.ogg 166674 41619 1370 | |
bgm_nepal.ogg 725054 41497 1130 | |
bgm_nyanko_battle.ogg 1323209 42769 1340 | |
bgm_nyanko_boss.ogg 1588803 49646 1340 | |
bgm_nyanko_menu.ogg 1543808 36057 1340 | |
bgm_rugal98.ogg 220617 50412 1400 | |
bgm_rugal98_battle.ogg 584701 2225 1400 | |
bgm_ruins_excavation.ogg 913358 54219 1370 | |
BH_BEAM.ogg 7972 33595 190 | |
BH_CHARGE.ogg 16075 23729 190 | |
bigeye_baseb_1_out.obm 33800 45520 1370 | |
bigeye_leader_baseb_0_out.obm 66568 42175 1370 | |
big_shei_out.obm 2098184 21231 1360 | |
bike_escape_3_out.obm 17416 22770 1330 | |
bike_prisoner_0_out.obm 525320 49937 1330 | |
bj_bubble_1.ogg 5633 29375 1260 | |
bj_bubble_2.ogg 8351 23138 1260 | |
bj_missile.ogg 11558 45516 1260 | |
bj_tokusyu_1.ogg 10174 3233 1260 | |
bj_tokusyu_2.ogg 7384 49421 1260 | |
black_3_out.obm 66568 43751 1350 | |
black_bunbun_out.obm 1049608 33272 1340 | |
black_kabe_out.obm 66568 20577 1340 | |
black_kimo_0_out.obm 263176 58326 1340 | |
black_kyoshin_0_out.obm 263176 43 1340 | |
black_neko_out.obm 66568 54146 1340 | |
BOMBS1.ogg 6423 15037 100 | |
BOSS0104_1_out.obm 263176 61831 1350 | |
BOSS0601_0_out.obm 525320 11403 1380 | |
BOSS0603_1_out.obm 525320 16073 1380 | |
BOSS0604_2_out.obm 525320 23668 1380 | |
BOSS0605_3_out.obm 1049608 54016 1380 | |
BOSS0606_4_out.obm 1049608 45665 1380 | |
BOSS0607_5_out.obm 66568 3208 1380 | |
bossA_3_out.obm 263176 62325 1380 | |
bossB_3_out.obm 132104 38434 1380 | |
boss_3_out.obm 9224 19171 1380 | |
boss_laser.ogg 28071 8866 100 | |
brain_robot_1.ogg 8066 319 1180 | |
brain_robot_2.ogg 11409 12702 1180 | |
brain_robot_beam_1.ogg 7766 41811 1180 | |
brain_robot_beam_2.ogg 25269 19597 1180 | |
Brian_base_out.obm 263176 2973 1360 | |
brian_special.ogg 9256 31672 1360 | |
brian_vo_attack.ogg 9010 2326 1360 | |
brian_vo_lose.ogg 20612 37478 1360 | |
brian_vo_special.ogg 11181 49599 1360 | |
brian_vo_win.ogg 13563 26807 1360 | |
BS31_A.ogg 18773 20141 100 | |
BS31_D.ogg 33526 19034 100 | |
BS31_D_MINI.ogg 18548 23510 1200 | |
BS31_H.ogg 9298 24260 100 | |
BS33FIRE.ogg 16501 50701 100 | |
BS33MISA.ogg 9325 30818 100 | |
BS33TUKA.ogg 6150 25818 100 | |
BS33_CAT.ogg 11087 58683 100 | |
BSKRAKEN_base_out.obm 1049608 838 1410 | |
bullchan_2_out.obm 132104 48033 1330 | |
bullet_10_out.obm 33800 119 1430 | |
bullet_mv-280c_out.obm 9224 2257 1410 | |
bull_drill_1.ogg 12256 57567 1260 | |
bull_drill_2.ogg 7142 27969 1260 | |
bull_rockshot.ogg 8565 12574 1260 | |
bull_shovel.ogg 7361 11740 1260 | |
bull_tokusyu.ogg 15683 12649 1260 | |
bull_tokusyu_2.ogg 14041 29958 1260 | |
bunbun_out.obm 1049608 27659 1340 | |
buy_enter.ogg 14165 48389 100 | |
b_punch.ogg 11640 62892 104 | |
cabrakan_pod_0_out.obm 525320 30471 1390 | |
cabra_bullet_1_out.obm 9224 8409 1390 | |
cab_lazer.ogg 6299 12319 1390 | |
cab_sp_charge.ogg 8311 48947 1390 | |
cab_sp_lazer.ogg 54818 38214 1390 | |
cal_sp_lazer.ogg 9963 52639 1390 | |
camel_death.ogg 10136 8157 100 | |
cancel.ogg 6224 549 100 | |
canon_eff_13_out.obm 66568 2486 1430 | |
chang_attack.ogg 5353 61516 1300 | |
chang_hit.ogg 6561 39801 1300 | |
chang_tokusyu_1.ogg 9348 24346 1300 | |
chang_tokusyu_2.ogg 10184 22870 1300 | |
chang_vo_attack.ogg 9416 43131 1300 | |
chang_vo_fight.ogg 8940 29253 1300 | |
chang_vo_lose.ogg 10413 35310 1300 | |
chang_vo_tokusyu_1.ogg 9894 23175 1300 | |
chang_vo_tokusyu_2.ogg 8043 54265 1300 | |
chang_vo_win.ogg 15033 42661 1300 | |
charge.ogg 10221 23110 100 | |
charge2.ogg 7692 64146 1180 | |
chin_attack.ogg 8224 20084 1210 | |
chin_vo_attack.ogg 6012 4897 1210 | |
chin_vo_fight.ogg 16064 40247 1210 | |
chin_vo_lose.ogg 15796 35205 1210 | |
chin_vo_tokusyu.ogg 9201 23999 1210 | |
choi_attack.ogg 7413 19699 1300 | |
choi_tokusyu.ogg 7630 18157 1300 | |
choi_vo_attack.ogg 11608 43234 1300 | |
choi_vo_fight.ogg 11983 20145 1300 | |
choi_vo_lose.ogg 21194 65171 1300 | |
choi_vo_tokusyu.ogg 11471 4798 1300 | |
choi_vo_tokusyu_1.ogg 12833 44203 1300 | |
choi_vo_tokusyu_2.ogg 6371 5117 1300 | |
choi_vo_win.ogg 13556 19860 1300 | |
christmas_item_1_out.obm 66568 49490 1390 | |
cla_death.ogg 10837 36838 104 | |
cla_sp.ogg 7354 32002 104 | |
cl_leg_cannon.ogg 8177 61543 1380 | |
count.ogg 4383 64254 100 | |
crabmecha_ashi_out.obm 1049608 36926 1370 | |
CSFORT_out.obm 263176 54859 1400 | |
Cut2_mordenXX_base_0_out.obm 525320 57438 1350 | |
Cut2_neko_1_out.obm 66568 62917 1350 | |
Cut_BigGate_base_1_out.obm 525320 30672 1340 | |
Cut_BSKRAKEN_silhouette_4_out.obm 66568 2916 1340 | |
Cut_di-cokka_base_3_out.obm 66568 8639 1340 | |
Cut_event_background_base_6_out.obm 263176 6199 1340 | |
Cut_mordenXX_base_0_out.obm 263176 45462 1340 | |
Cut_morden_tank_base_2_out.obm 66568 43019 1340 | |
Cut_neko_5_out.obm 33800 36053 1340 | |
daimon_kick.ogg 5238 7739 1160 | |
daimon_tokusyu.ogg 9752 30420 1160 | |
daimon_vo_kick.ogg 5917 17480 1160 | |
daimon_vo_lose.ogg 14250 17794 1220 | |
daimon_vo_tokusyu_1.ogg 7634 50099 1220 | |
daimon_vo_tokusyu_2.ogg 9272 43405 1220 | |
daimon_vo_win.ogg 17016 62116 1220 | |
daimon_win.ogg 11564 41798 1160 | |
dai_charge.ogg 10497 44614 1230 | |
dai_laser.ogg 11850 54824 1230 | |
death_ivy_1_out.obm 66568 3201 1400 | |
devil_0C1_1_out.obm 17416 23656 1410 | |
devil_0C3_2_out.obm 66568 41473 1410 | |
devil_canon_1_out.obm 263176 47270 1410 | |
devil_canon_3_out.obm 263176 47270 1410 | |
devil_canon_4_out.obm 263176 47270 1410 | |
devil_eri_0_out.obm 263176 40701 1410 | |
devil_fio_0_out.obm 263176 24193 1410 | |
devil_marco_out.obm 263176 3923 1410 | |
devil_tarma_out.obm 263176 36799 1410 | |
dlm_special_1.ogg 11886 21089 1430 | |
dlm_special_2.ogg 11473 31148 1430 | |
donou.ogg 5881 45508 100 | |
dono_break.ogg 10792 32482 100 | |
DO_CLOSE.ogg 6738 52530 100 | |
dropkemuri_2_out.obm 17416 51483 1420 | |
dropshot.ogg 5775 27082 1420 | |
dropshot_3_out.obm 2056 17022 1420 | |
dropshot_bound.ogg 5446 11319 1420 | |
DS_SHOT.ogg 8069 31393 170 | |
DS_SHOT1.ogg 10754 60951 180 | |
DS_SHOT_END.ogg 6795 14923 170 | |
d_shot.ogg 5814 60915 104 | |
E007_ALL_out.obm 263176 16751 1380 | |
eaca_missile_1_out.obm 9224 26678 1400 | |
eff_corabo_hit_3_out.obm 66568 32164 1340 | |
elephant_tokusyu.ogg 10924 41099 1290 | |
ELITE_BIKE.ogg 17700 26562 160 | |
ELITE_SPEED_UP.ogg 10900 35250 160 | |
EmainMacha_P_0_out.obm 132104 8535 1420 | |
EmainMacha_P_1_out.obm 132104 46350 1420 | |
EmainMacha_red_P_out.obm 132104 5474 1420 | |
eri_noid_1_out.obm 66568 53917 1430 | |
ERI_ZDES.ogg 14888 46441 140 | |
ETC_048_out.obm 263176 35384 1390 | |
event1_engine1.ogg 17757 42581 1290 | |
event1_engine2.ogg 21429 21276 1290 | |
event1_scream.ogg 11804 59219 1290 | |
event1_step.ogg 6490 33703 1290 | |
event1_wind.ogg 70819 2877 1290 | |
event2_wind1.ogg 100468 33762 1310 | |
event2_wind2.ogg 69023 19014 1310 | |
event_background.obm 525320 53923 1340 | |
event_newspaper_2_out.obm 524296 21021 1350 | |
event_otakara_ui.obm 65544 6877 1410 | |
event_task_ui.obm 65544 12543 1420 | |
exp_sol_1_out.obm 263176 56562 1370 | |
F322BEAM.ogg 6362 15480 1200 | |
F333AWA.ogg 5307 47144 100 | |
F341BEAM.ogg 8686 54814 1160 | |
F343BUND.ogg 8013 33948 100 | |
F344BEM1.ogg 7725 33816 100 | |
F344BEM2.ogg 6089 49892 100 | |
fake_rootmars_out.obm 2098184 6446 1440 | |
fanfare.ogg 12921 22696 100 | |
FB32IAIM.ogg 15623 117 100 | |
FB32IAIM_SHORT.ogg 10051 17090 1200 | |
FB32IBEM.ogg 27101 36051 100 | |
FB32IBEM_SHORT.ogg 16978 65010 1200 | |
FB32MBM1.ogg 6952 11075 100 | |
FB32MBM2.ogg 8294 22420 100 | |
FB32MFLY.ogg 18291 18526 100 | |
FB32MHN1.ogg 7151 22861 100 | |
FB32MHN2.ogg 6749 38075 100 | |
FB33BEAM.ogg 17638 10832 100 | |
ff.ogg 5223 24667 100 | |
fio_eff_base_1_out.obm 131144 32394 1410 | |
fio_xmaseff.obm 131144 2336 1390 | |
FIO_ZDES.ogg 15152 40074 140 | |
fire_hit_s.ogg 8172 64281 100 | |
forklift_up.ogg 8585 12513 1300 | |
frm_beam_l.ogg 15437 65081 1440 | |
frm_beam_s.ogg 7899 61668 1440 | |
frozen_POW_0_out.obm 33800 51097 1390 | |
FSATERAI.ogg 4396 19841 100 | |
future_army_bazooka_out.obm 132104 16757 1410 | |
future_jeep_out.obm 263176 35858 1410 | |
future_macsnel_out.obm 263176 3491 1410 | |
f_shot.ogg 16062 64810 100 | |
geep_2_out.obm 263176 53262 1410 | |
gen_death.ogg 7877 44902 140 | |
geri_baz.ogg 10044 13368 140 | |
GERO.ogg 7195 56653 100 | |
gimlet_out.obm 525320 26447 1420 | |
gimlet_vo_death.ogg 11213 21319 1420 | |
gitidabullet_P_out.obm 9224 10816 1420 | |
gragun_2_out.obm 17416 16416 1420 | |
grakemuri_1_out.obm 17416 51483 1420 | |
g_fantom.ogg 9851 19925 104 | |
hadou_1_out.obm 32840 3421 1340 | |
HALLOWEEN_out.obm 263176 30645 1360 | |
haou.ogg 8482 25392 1250 | |
hb_ms.ogg 7516 56769 140 | |
hdrn_jump.ogg 7852 19079 1440 | |
hdrn_special.ogg 12619 22640 1440 | |
hdrn_special_end.ogg 9298 52304 1440 | |
hdrn_special_end_2.ogg 8323 38626 1440 | |
hdrn_special_hit.ogg 11048 25490 1440 | |
hdrn_vo_attack_1.ogg 5813 40720 1440 | |
hdrn_vo_attack_2.ogg 7025 38141 1440 | |
hdrn_vo_lose.ogg 9846 10628 1440 | |
hdrn_vo_special_1.ogg 10270 13319 1440 | |
hdrn_vo_special_2.ogg 10460 18316 1440 | |
hdrn_win.ogg 5019 24913 1440 | |
heavy_D_out.obm 525320 55346 1360 | |
HEICOUNT.ogg 6435 17055 100 | |
heidern_base_out.obm 525320 63966 1440 | |
heli.ogg 14470 40137 100 | |
HELOF2.ogg 9466 50133 100 | |
henkei_SlugGunner_0_out.obm 525320 20007 1380 | |
henkei_SlugGunner_1_out.obm 132104 14655 1380 | |
hover_fly.ogg 8362 12824 150 | |
hoz_charge_L.ogg 16051 12128 1360 | |
hoz_charge_S.ogg 12065 49472 1360 | |
hoz_lazer_1.ogg 12916 33764 1360 | |
hoz_lazer_2.ogg 29478 64233 1360 | |
hoz_rise.ogg 28107 38250 1360 | |
hoz_water.ogg 8484 61156 1360 | |
hvd_upper.ogg 8989 52200 1360 | |
hvd_vo_dash.ogg 6737 47626 1360 | |
hvd_vo_lose.ogg 12421 38479 1360 | |
hvd_vo_special_1.ogg 10682 38699 1360 | |
hvd_vo_special_2.ogg 10353 13373 1360 | |
hvd_vo_upper.ogg 11567 47363 1360 | |
hvd_vo_win.ogg 19106 10411 1360 | |
h_machin.ogg 15973 54575 100 | |
ice_2_out.obm 9224 5029 1390 | |
icon_mov.obm 262152 38281 1450 | |
iori_aoi.ogg 6363 12359 1180 | |
iori_oni.ogg 9030 39777 1180 | |
iori_tokusyu.ogg 12107 1813 1180 | |
iori_vo_aoi_1.ogg 5192 52958 1210 | |
iori_vo_aoi_2.ogg 5034 64350 1210 | |
iori_vo_aoi_3.ogg 5644 34935 1210 | |
iori_vo_lose.ogg 19252 58837 1210 | |
iori_vo_oni.ogg 7203 50805 1180 | |
iori_vo_tokusyu.ogg 11403 5290 1210 | |
iori_vo_win_1.ogg 8718 46686 1210 | |
iori_vo_win_2.ogg 14830 47218 1210 | |
iori_vo_win_3.ogg 17061 60147 1210 | |
iron_lizard.ogg 13880 13752 104 | |
iron_nokana3_eff_base_6_out.obm 263176 50935 1350 | |
iron_nokana_ballet_3_out.obm 2056 18909 1350 | |
iron_saw.ogg 13666 57460 1230 | |
item_get.ogg 6320 26993 150 | |
item_otakara_coin_3_out.obm 8200 26887 1390 | |
JET02_L.ogg 44577 13929 1380 | |
JET02_S.ogg 40883 5639 1150 | |
JET02_SS.ogg 11905 19129 1320 | |
joe_special.ogg 13110 45120 1230 | |
joe_tiger.ogg 8895 8639 1230 | |
joe_vo_lose.ogg 7842 15364 1230 | |
joe_vo_special_1.ogg 7325 14668 1230 | |
joe_vo_special_2.ogg 9463 54640 1230 | |
joe_vo_tiger.ogg 9768 61846 1230 | |
joe_vo_win.ogg 10182 46954 1230 | |
keeIII_tyakudan_base_1_out.obm 17416 10937 1390 | |
keesi2_0_out.obm 2098184 37602 1330 | |
keesijet_1_out.obm 525320 17353 1370 | |
Keesi_III_0_out.obm 525320 11175 1390 | |
Keesi_III_out.obm 525320 11190 1380 | |
kemuri_8_out.obm 132104 10084 1430 | |
kemuri_gunner_2_out.obm 33800 22494 1380 | |
kensu_attack.ogg 7727 50314 1210 | |
kensu_tokusyu.ogg 12136 6990 1210 | |
kensu_vo_attack.ogg 10597 64254 1210 | |
kensu_vo_eat.ogg 5705 6645 1210 | |
kensu_vo_lose_1.ogg 6128 47361 1210 | |
kensu_vo_lose_2.ogg 10595 23949 1210 | |
kensu_vo_tokusyu.ogg 15411 14156 1210 | |
kensu_vo_win_1.ogg 6114 22001 1210 | |
kensu_vo_win_2.ogg 9467 7824 1210 | |
kimo_neko_out.obm 263176 27140 1340 | |
kim_attack.ogg 7386 59690 1300 | |
kim_tokusyu.ogg 7692 10229 1300 | |
kim_vo_attack.ogg 8545 7775 1300 | |
kim_vo_fight.ogg 12078 36976 1300 | |
kim_vo_lose.ogg 11074 51860 1300 | |
kim_vo_tokusyu.ogg 9322 12441 1300 | |
kim_vo_win.ogg 6401 12353 1300 | |
king_vo_fight.ogg 11436 4084 1270 | |
king_vo_lose.ogg 11023 38140 1270 | |
king_vo_strike.ogg 9520 44997 1270 | |
king_vo_tokusyu.ogg 9553 58832 1270 | |
KOF95_HIT.ogg 6219 59553 1200 | |
KOF_HIT_BIG.ogg 10604 54492 1250 | |
KOF_HIT_CUT.ogg 6965 5756 1300 | |
KOF_HIT_KICK.ogg 6897 16346 1250 | |
KOF_JOINS_1.ogg 19374 45967 1160 | |
KOF_JOINS_2.ogg 15127 1905 1160 | |
KOF_JOINS_3.ogg 27804 45287 1160 | |
KOUMORI.ogg 6677 24500 1100 | |
kraken_sp1.ogg 17350 62020 1410 | |
kraken_sp2.ogg 12221 13501 1410 | |
kuzure.ogg 10944 65288 100 | |
kyoshin_out.obm 263176 16030 1340 | |
kyo_oni.ogg 10030 55101 1160 | |
kyo_tokusyu.ogg 12100 63082 1160 | |
kyo_vo_lose.ogg 16556 49089 1220 | |
kyo_vo_oni.ogg 9387 39059 1220 | |
kyo_vo_tokusyu_1.ogg 12491 57752 1220 | |
kyo_vo_tokusyu_2.ogg 17317 51572 1220 | |
kyo_vo_win.ogg 16570 7340 1220 | |
kyo_vo_yami.ogg 7990 46662 1160 | |
kyo_yami.ogg 8112 44189 1160 | |
landseek_0_out.obm 132104 9001 1430 | |
land_shot.ogg 9933 40009 1430 | |
land_special.ogg 8019 38383 1430 | |
LASER.ogg 8582 8302 100 | |
laser0604_2_out.obm 132104 24725 1380 | |
Leo_death.ogg 7741 30404 104 | |
leo_sp.ogg 5828 64863 104 | |
lg_landing.ogg 8343 59253 1320 | |
lizard_dash.ogg 6393 43588 104 | |
locust_bite.ogg 4737 61699 1210 | |
locust_death.ogg 8457 8518 1210 | |
locust_fly.ogg 7546 20382 1210 | |
lucky_attack.ogg 7440 19262 1360 | |
lucky_base_out.obm 263176 33949 1360 | |
lucky_special_1.ogg 8457 61838 1360 | |
lucky_special_2.ogg 6997 7363 1360 | |
lucky_vo_attack.ogg 8632 63494 1360 | |
lucky_vo_lose.ogg 13687 22568 1360 | |
lucky_vo_special.ogg 7296 9902 1360 | |
lucky_vo_win.ogg 9898 47871 1360 | |
lw_beam.ogg 7005 51402 1230 | |
lw_special.ogg 8294 12348 1230 | |
L_ARMER.ogg 6600 65445 100 | |
l_gun.ogg 13909 19021 100 | |
M22UGATK.ogg 13141 44734 100 | |
M22UGHIT.ogg 8182 251 100 | |
magazine.ogg 6481 57557 100 | |
mai_enbu.ogg 8925 822 1270 | |
mai_sen.ogg 6276 19401 1270 | |
mai_tokusyu.ogg 11687 13664 1270 | |
mai_vo_enbu.ogg 7693 61961 1270 | |
mai_vo_lose.ogg 10645 2597 1270 | |
mai_vo_sen.ogg 8330 24729 1270 | |
mai_vo_tokusyu.ogg 16405 11766 1270 | |
mai_vo_win.ogg 17563 52946 1270 | |
maksnellpm_1_out.obm 263176 59875 1360 | |
map_send.ogg 6556 5591 100 | |
MARSWARP.ogg 8297 27691 100 | |
mask_vo_1.ogg 6822 57837 1280 | |
mask_vo_2.ogg 9340 14396 1280 | |
matching.ogg 12757 59288 160 | |
mature_attack.ogg 6812 18066 1180 | |
mature_vo_attack.ogg 9177 26106 1180 | |
mature_vo_lose.ogg 12866 58832 1180 | |
mature_vo_tokusyu.ogg 6477 43964 1180 | |
mature_vo_win.ogg 8770 43300 1180 | |
ma_1.ogg 18556 11534 100 | |
MA_ZUWAL.ogg 7754 48923 100 | |
mcsnl_eff_1_out.obm 9224 49509 1360 | |
mc_gate.ogg 15025 58476 1280 | |
menu_news00_hk.obm 393224 39116 1350 | |
menu_news00_kr.obm 393224 38711 1350 | |
menu_news00_us.obm 393224 59443 1350 | |
miniufoplayer_1_out.obm 132104 42656 1350 | |
mirai_energy.ogg 6760 9645 1190 | |
mirai_shield.ogg 9400 25338 1190 | |
MISSF1.ogg 20205 47544 1110 | |
missile_11_out.obm 33800 17646 1430 | |
missile_6_out.obm 17416 1717 1380 | |
mizuhashira_6_out.obm 262216 5019 1360 | |
mmv_attack1.ogg 8718 52681 1410 | |
mmv_attack2.ogg 13150 12343 1410 | |
mob_engine.ogg 10700 25801 1260 | |
mordenattack_out.obm 525320 23616 1390 | |
morden_death_base_5_out.obm 33800 16963 1350 | |
mpb_0_out.obm 5128 23283 1400 | |
mpp_death.ogg 8477 36260 1230 | |
mpp_shot.ogg 5948 21630 1230 | |
mp_death.ogg 9384 34286 100 | |
mp_shot.ogg 7227 43288 100 | |
MRC_ZDES.ogg 16139 36364 100 | |
MUSI01.ogg 8081 59088 1100 | |
MUTADES.ogg 10403 9595 100 | |
mutant_r_out.obm 525320 59388 1360 | |
m_comp.ogg 16109 62932 100 | |
m_enter.ogg 9361 27510 100 | |
m_slash.ogg 7412 33974 104 | |
m_start.ogg 14481 15126 100 | |
nadia_01_1_out.obm 33800 43311 1330 | |
Nadia_bike_deth_4_out.obm 132104 41067 1330 | |
nadia_death.ogg 7645 16261 120 | |
nadia_zombie_01_0_out.obm 66568 24967 1430 | |
nadia_zombie_02_1_out.obm 9224 29558 1430 | |
nadia_zombie_03_2_out.obm 263176 56923 1430 | |
nadia_zombie_04_3_out.obm 66568 52244 1430 | |
nadia_zombie_05_4_out.obm 132104 30843 1430 | |
nekoslug.obm 525320 60478 1350 | |
neko_3_out.obm 33800 37549 1350 | |
neko_base.obm 17416 53987 1340 | |
neko_base_2_out.obm 17416 53987 1350 | |
neko_base_eff_base_1_out.obm 65608 40700 1340 | |
neko_base_eff_base_2_out.obm 32840 52331 1350 | |
neko_base_eff_base_4_out.obm 32840 59255 1350 | |
neko_kabe_out.obm 66568 12679 1340 | |
neko_out.obm 66568 8448 1340 | |
neko_snow_1_out.obm 66568 35318 1350 | |
neko_snow_out.obm 263176 12137 1350 | |
neko_stage_back.obm 786440 33162 1340 | |
noise.ogg 7872 7221 100 | |
nokanya_out.obm 132104 49774 1350 | |
Normal_Army_1_out.obm 33800 20291 1430 | |
nyankohou.ogg 5739 11565 1340 | |
nyankohou_hit.ogg 10338 50039 1340 | |
nyanko_hit_1.ogg 7764 52888 1340 | |
nyanko_hit_2.ogg 5695 61605 1340 | |
nyanko_k_hit.ogg 7445 12996 1340 | |
nyanko_syouten.ogg 11516 58923 1340 | |
OgA_Burst.ogg 5622 53459 1150 | |
OgA_Shot.ogg 5073 21857 1150 | |
OgB_DB_Burst.ogg 6812 2367 1140 | |
OgB_DB_Close.ogg 4953 14604 1140 | |
OgB_DB_Open.ogg 6245 13787 1140 | |
OgB_DB_Shot2.ogg 6803 10773 1140 | |
OgB_Shot.ogg 6039 29687 1140 | |
OgE_Shot_L.ogg 10641 9251 1140 | |
OgE_Shot_S.ogg 7194 29817 1140 | |
OgF_Fall2.ogg 8519 41180 1140 | |
OgF_Fly.ogg 9374 13258 1140 | |
OgF_Swell.ogg 5689 16158 1140 | |
Oguro_Dead1e.ogg 8342 23304 1150 | |
Oguro_Haku.ogg 5179 49460 1150 | |
ok.ogg 13654 21720 100 | |
open.ogg 7073 47524 100 | |
opening.obm 4194312 30605 1330 | |
OSTRICH.ogg 5932 59445 100 | |
otegami_out.obm 5128 29315 1400 | |
parasite_syokusyu.ogg 5210 37737 1160 | |
parasite_vo_death.ogg 8157 47070 1160 | |
parasite_vo_tokusyu.ogg 7198 8349 1160 | |
PARTYP1_2_2_out.obm 1049608 18365 1400 | |
PARTYP1_out.obm 1049608 45062 1400 | |
PARTYP2_2_1_out.obm 263176 9210 1400 | |
PARTYP2_out.obm 263176 53197 1400 | |
PARTYP3_1_3_out.obm 1049608 57879 1400 | |
PARTYP3_2_2_out.obm 263176 31721 1400 | |
Pillar_0_out.obm 17416 34180 1370 | |
pirate2_1_0_out.obm 65608 50119 1380 | |
pirate2_2_2_out.obm 32840 4329 1380 | |
pirate2_3_3_out.obm 32840 31654 1380 | |
pirate2_4_1_out.obm 32840 30710 1380 | |
Pirate_out.obm 263176 39429 1380 | |
POINT.ogg 6873 61130 100 | |
popup_sp01_hk.obm 393224 25358 1340 | |
popup_sp01_kr.obm 393224 58806 1340 | |
popup_sp01_us.obm 393224 20842 1340 | |
pow_morden.obm 66056 20167 1340 | |
ppblack2_out.obm 263176 60497 1400 | |
pp_attack.ogg 5940 5093 1400 | |
pp_b2_1_out.obm 33800 2083 1400 | |
pp_w_base_0_out.obm 525320 62271 1400 | |
prisoner_zombie.obm 8388616 8582 1330 | |
ral_death.ogg 9908 57424 104 | |
ral_dokan.ogg 10370 11902 104 | |
ral_sp.ogg 13600 53114 104 | |
RBkemuri_1_out.obm 17416 51483 1420 | |
Redeye_out.obm 263176 26650 1420 | |
redeye_vo_death.ogg 7976 36016 1420 | |
rifle_12_out.obm 132104 58010 1430 | |
rmars_death.ogg 16579 33687 1190 | |
rmars_laugh.ogg 16948 21347 1190 | |
rmars_laugh_2.ogg 6707 14418 1190 | |
rmars_tokusyu.ogg 15476 48812 1190 | |
robo_4boss_base_out.obm 132104 44927 1380 | |
Robslug_Docking.ogg 8671 31111 1320 | |
rob_vo_fight.ogg 11056 65522 1250 | |
rob_vo_haou.ogg 15249 10254 1250 | |
rob_vo_lose.ogg 13544 4937 1250 | |
rob_vo_ryugeki.ogg 10702 37252 1250 | |
roll.ogg 4642 61141 100 | |
Rugal_out.obm 525320 4434 1400 | |
rugal_reppu.ogg 7941 57513 1400 | |
rugal_special.ogg 10307 28202 1400 | |
rugal_vo_cutter_1.ogg 8295 32832 1400 | |
rugal_vo_cutter_2.ogg 7740 700 1400 | |
rugal_vo_lose.ogg 17772 50983 1400 | |
rugal_vo_reppu.ogg 11371 15653 1400 | |
rugal_vo_special.ogg 11204 37116 1400 | |
rugal_vo_win.ogg 7238 48679 1400 | |
ruin_fire_base_out.obm 132104 5825 1370 | |
ryo_koo.ogg 7856 29039 1250 | |
ryo_shippu.ogg 6580 19528 1250 | |
ryo_tokusyu.ogg 10916 56757 1250 | |
ryo_tokusyu_charge.ogg 11056 18511 1250 | |
ryo_vo_koo.ogg 7590 50084 1250 | |
ryo_vo_lose.ogg 11903 830 1250 | |
ryo_vo_shippu.ogg 11332 55026 1250 | |
ryo_vo_tokusyu_1.ogg 8315 55940 1250 | |
ryo_vo_tokusyu_2.ogg 8019 41638 1250 | |
ryo_vo_win.ogg 8374 53438 1250 | |
r_1_out.obm 66568 50974 1400 | |
r_lch.ogg 17337 33349 100 | |
sabel_throw.ogg 10831 44084 100 | |
sandmarine_body_6_out.obm 525320 34933 1370 | |
sand_move.ogg 9898 20796 1290 | |
sand_rise.ogg 26995 21174 1290 | |
sand_rise_S.ogg 9683 38044 1320 | |
SA_DASH.ogg 11052 32735 1240 | |
SGkemuri_4_out.obm 17416 51483 1420 | |
shotgun_2_out.obm 66568 18204 1330 | |
SHUFT.ogg 9006 62969 100 | |
shutter.ogg 11502 63935 100 | |
SIGNAL.ogg 8313 48907 100 | |
SIGNAL_ma.ogg 12343 881 104 | |
SINGOU.ogg 26337 12539 100 | |
slow.ogg 5142 31174 100 | |
slugnoid_TYPE-B_out.obm 525320 1991 1430 | |
smowman_eff_4_out.obm 132104 9607 1390 | |
SNOWMAN.ogg 10489 39854 1130 | |
SNOWMAN2.ogg 9797 298 1390 | |
snow_common_1_out.obm 66568 15753 1390 | |
snow_common_2_out.obm 132104 12361 1390 | |
snow_common_3_out.obm 132104 48379 1390 | |
snow_common_4_out.obm 132104 12361 1390 | |
snow_common_5_out.obm 66568 15753 1390 | |
snow_eri_0_out.obm 263176 64826 1390 | |
snow_eri_5_out.obm 66568 31768 1390 | |
snow_fio_0_out.obm 525320 39233 1390 | |
snow_fio_6_out.obm 132104 46172 1390 | |
snow_marco_7_out.obm 66568 42969 1390 | |
snow_marco_out.obm 525320 15977 1390 | |
snow_nadia_0_out.obm 263176 56395 1390 | |
snow_nadia_8_out.obm 132104 13154 1390 | |
snow_tarma_0_out.obm 525320 22900 1390 | |
snow_tarma_9_out.obm 66568 58736 1390 | |
snow_trevar_0_out.obm 263176 56467 1390 | |
snow_trevar_10_out.obm 132104 22990 1390 | |
SOKODOOR.ogg 7244 20218 150 | |
sol_de_rocca_wrath_0_out.obm 4195336 17832 1370 | |
sol_random.ogg 39374 44143 1220 | |
sol_tokusyu_1.ogg 12977 35823 1220 | |
sol_tokusyu_2.ogg 18488 6069 1220 | |
sol_wolf_1.ogg 8411 1367 1220 | |
sol_wolf_2.ogg 14932 20389 1220 | |
stage03_event_01.obm 524808 9536 1370 | |
stage03_event_02.obm 524808 50211 1370 | |
stage03_event_03.obm 524808 65123 1370 | |
stage03_event_04.obm 524808 42471 1370 | |
stage07_05.obm 262664 32516 1360 | |
stage26_04.obm 131112 31622 1390 | |
stage_amadeus_1.obm 262664 3940 1380 | |
stage_amadeus_2.obm 262664 12684 1380 | |
stage_amadeus_3.obm 524808 59109 1380 | |
stage_boss_01.obm 131592 52465 1370 | |
stage_boss_02.obm 131592 26218 1440 | |
stage_boss_03.obm 262664 28975 1380 | |
stage_esaka.obm 1048584 6763 1330 | |
stage_hakai.obm 525320 51309 1410 | |
stage_ie2.obm 524808 46422 1410 | |
stage_kouji.obm 524808 29850 1410 | |
stage_kraken.obm 1049096 54969 1410 | |
stage_neko00.obm 262664 25512 1340 | |
stage_neko01.obm 262664 38072 1340 | |
stage_neko02.obm 263176 49959 1340 | |
stage_ruins02.obm 524808 58622 1370 | |
stage_ruins03.obm 524808 25711 1370 | |
stage_subway.obm 524808 6864 1410 | |
stage_thumbnail_07-2.obm 24584 35014 1360 | |
stage_thumbnail_event01.obm 98312 48380 1400 | |
stage_thumbnail_event02.obm 98312 53223 1340 | |
stage_thumbnail_event03.obm 98312 36736 1370 | |
stage_thumbnail_event04.obm 49160 28024 1370 | |
stage_thumbnail_event05.obm 98312 25207 1370 | |
stage_thumbnail_event06-1.obm 98312 65290 1380 | |
stage_thumbnail_event06-2.obm 24584 1930 1380 | |
stage_thumbnail_event07.obm 24584 48309 1400 | |
stage_thumbnail_event08-1.obm 98312 48229 1410 | |
stage_thumbnail_event08-2.obm 24584 36107 1410 | |
stage_thumbnail_event09-1.obm 98312 43383 1430 | |
stage_thumbnail_event09-2.obm 24584 14682 1430 | |
stage_thumbnail_event10.obm 24584 54134 1440 | |
STEAM.ogg 9482 17309 120 | |
stungun.ogg 7678 20013 120 | |
Submarine_out.obm 132104 42138 1390 | |
supergrenade_3_out.obm 3080 29851 1420 | |
SVEFIRE.ogg 9142 44003 100 | |
SVELE_1.ogg 7793 41397 100 | |
SVELE_2.ogg 15122 16760 100 | |
s_gun.ogg 14986 4950 100 | |
tak_tokusyu.ogg 9002 22147 1250 | |
tak_vo_haou.ogg 13315 42490 1250 | |
tak_vo_lose.ogg 10522 32270 1250 | |
tak_vo_tokusyu_1.ogg 6759 29745 1250 | |
tak_vo_tokusyu_2.ogg 7091 63344 1250 | |
tak_vo_win.ogg 8275 3518 1250 | |
tani_tokusyu_smoke.ogg 11169 34314 1250 | |
terry_knuckle.ogg 7689 30681 1230 | |
terry_special.ogg 9500 11930 1230 | |
terry_upper.ogg 6343 22898 1230 | |
terry_vo_knuckle.ogg 10653 48733 1230 | |
terry_vo_lose.ogg 15314 49053 1230 | |
terry_vo_special_1.ogg 7537 33565 1230 | |
terry_vo_special_2.ogg 8486 33881 1230 | |
terry_vo_upper.ogg 6742 35550 1230 | |
terry_vo_win.ogg 9260 65068 1230 | |
TK302_DB.ogg 6631 53564 120 | |
TK302_DC.ogg 7588 1017 120 | |
TK315_DS.ogg 10793 42744 120 | |
TK315_HT.ogg 5311 1896 100 | |
TK315_T1.ogg 7513 38018 120 | |
TK315_T2.ogg 7411 314 120 | |
TK315_ZH.ogg 10649 31922 120 | |
TK317ASI.ogg 14701 28626 100 | |
TK317DES.ogg 8144 51512 100 | |
TK317HIT.ogg 10279 39033 100 | |
TK317KAR.ogg 6560 29884 100 | |
TK319_A.ogg 5864 21128 100 | |
TK319_D.ogg 11961 28639 100 | |
TK321_.ogg 9227 40446 120 | |
TK321_D.ogg 8054 64780 120 | |
TK331HIT.ogg 7097 48934 100 | |
TK332_GO.ogg 8485 18371 120 | |
TK333DES.ogg 8514 36691 100 | |
TK334_B.ogg 4736 14500 100 | |
TK338FD1.ogg 7755 55998 100 | |
TK338FK.ogg 8146 19401 100 | |
TK338_MD.ogg 8142 9113 100 | |
TK338_WD.ogg 6386 44089 100 | |
TK339_A.ogg 9928 24840 100 | |
TK339_B.ogg 6882 3678 100 | |
TK339_C.ogg 9643 40859 100 | |
TK339_D.ogg 17447 51140 100 | |
TMA_ZDES.ogg 17619 25724 1310 | |
treb_death.ogg 9027 38307 104 | |
tresure1_1_out.obm 17416 1939 1370 | |
trevar_jump_2_out.obm 33800 29979 1390 | |
trevor_zombie_01_0_out.obm 66568 9306 1430 | |
trevor_zombie_02_1_out.obm 9224 2571 1430 | |
trevor_zombie_03_3_out.obm 132104 28912 1430 | |
trevor_zombie_04_2_out.obm 132104 1920 1430 | |
trevor_zombie_05_5_out.obm 66568 35113 1430 | |
TruckSlug_base_0_out.obm 263176 33585 1440 | |
turtle_tread.ogg 12038 35936 1210 | |
tuti_kemuri_1_out.obm 33800 12962 1390 | |
two_machinegun.ogg 17262 315 104 | |
Tyra1_out.obm 66568 4855 1420 | |
Tyra2_3_out.obm 66568 56574 1420 | |
Tyra_fire_2_out.obm 66568 6654 1420 | |
tyra_vo_death.ogg 7629 13194 1420 | |
uenoneko_1_out.obm 33800 21977 1350 | |
UFOSLSER.ogg 5420 55558 130 | |
unit_ng.ogg 6302 52929 100 | |
unit_off.ogg 6687 5125 100 | |
unit_on.ogg 5281 46850 100 | |
utan.ogg 6261 59135 100 | |
utan_death.ogg 6699 47190 100 | |
ValentineNadia_out.obm 66568 19027 1420 | |
valentine_out.obm 263176 64660 1420 | |
vfo_attack.ogg 14355 37122 1280 | |
VG27_00C_0_out.obm 66568 44584 1360 | |
VG27_040_1_out.obm 33800 2755 1390 | |
VG27_043_1_out.obm 33800 18487 1390 | |
VG27_102_1_out.obm 33800 3005 1390 | |
VG27_105_1_out.obm 33800 36633 1390 | |
VG27_212_1_out.obm 17416 46420 1390 | |
VG27_212_6_out.obm 17416 46420 1380 | |
VG27_29E_2_out.obm 525320 50608 1360 | |
VG27_29F_3_out.obm 525320 43568 1360 | |
VG27_29F_5_out.obm 525320 41509 1360 | |
VG27_2A7_1_out.obm 2098184 42368 1360 | |
VG27_2A7_2_out.obm 2098184 42368 1360 | |
VG27_2A8_3_out.obm 525320 31395 1360 | |
VG27_2AB_1_out.obm 33800 39179 1330 | |
vice_attack.ogg 7789 53838 1180 | |
vice_tokusyu.ogg 8616 7813 1180 | |
vice_vo_attack.ogg 6525 29259 1180 | |
vice_vo_lose.ogg 15348 29535 1180 | |
vice_vo_tokusyu.ogg 8966 59236 1180 | |
vice_vo_win_1.ogg 7549 57294 1180 | |
vice_vo_win_2.ogg 8553 15582 1180 | |
Wall_Drone_out.obm 66568 373 1370 | |
Walter2_1_out.obm 66568 58862 1420 | |
Walter_out.obm 66568 32236 1420 | |
walter_vo_death.ogg 9415 60574 1420 | |
warning.ogg 41964 10251 100 | |
WARP_BON.ogg 6461 20154 100 | |
WARP_GAN.ogg 6475 9831 100 | |
water.ogg 8278 38802 140 | |
whip_attack.ogg 6745 14446 1440 | |
whip_hit.ogg 7155 16016 1440 | |
whip_out.obm 525320 9280 1440 | |
whip_special.ogg 7831 76 1440 | |
whip_vo_attack_1.ogg 7361 24281 1440 | |
whip_vo_attack_2.ogg 6629 59044 1440 | |
whip_vo_attack_3.ogg 7880 14406 1440 | |
whip_vo_attack_4.ogg 7298 38213 1440 | |
whip_vo_lose.ogg 13428 9567 1440 | |
whip_vo_special.ogg 6349 33697 1440 | |
whip_vo_win.ogg 13210 35279 1440 | |
window_open.ogg 10931 19312 100 | |
W_BOM_S.ogg 12168 12972 100 | |
W_BOM_S_MINI.ogg 8495 28082 1200 | |
XHMOBS1.ogg 15757 57950 100 | |
XHOKEY1.ogg 13967 32910 100 | |
XMASERI_0_out.obm 263176 8245 1390 | |
xmasfio2_out.obm 33800 2590 1390 | |
XMASFIO_1_out.obm 263176 29451 1390 | |
xmaslaser_1_out.obm 33800 4442 1390 | |
XSBOWOW.ogg 7686 63226 100 | |
XSKYAIN.ogg 8095 29552 100 | |
YOUSETSU.ogg 10477 13740 100 | |
yuri_tokusyu.ogg 7151 45017 1270 | |
yuri_upper.ogg 6169 15601 1270 | |
yuri_vo_lose.ogg 15687 60176 1270 | |
yuri_vo_tokusyu.ogg 9401 45654 1270 | |
yuri_vo_upper_1.ogg 11762 25440 1270 | |
yuri_vo_upper_2.ogg 8298 35712 1270 | |
yuri_vo_win.ogg 10755 43853 1270 | |
ZOMBIB1.ogg 13640 16733 100 | |
ZombieBrain_out.obm 525320 24558 1360 | |
zombie_braindead_1_out.obm 132104 32221 1360 | |
zombie_gero_4_out.obm 525320 16334 1430 | |
zombie_gero_5_out.obm 263176 20618 1430 | |
zombie_growl.ogg 14552 43667 1310 | |
ZON_PIKA.ogg 10031 64775 1310 | |
ZOU_ASI.ogg 7374 3970 100 | |
z_nadi_death.ogg 17681 5754 1430 | |
z_treb_death.ogg 18633 13089 1430 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment