Files
shenandClaude Sonnet 5 2277b1dd60 Vendor Metin2 assets (assets/ + bgm/)
Committed to this self-hosted private repo so a clone builds on any machine
without a separate asset sync. Copyrighted Ymir art — do not publish or
redistribute. 54198 files, ~2.2 GB. asset_index.txt / assets.zip stay
gitignored (derived: bake_asset_index.gd / pack-assets.sh).

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_013EJxkHiNKS4kybHS3XKyAJ
2026-08-31 20:04:32 +09:00

47 lines
928 B
Python

import glob
import os
import stat
def GetSpeed(name):
lines = open(name).readlines()
inp = 0
beg = 0
end = 0
for line in lines:
if "DirectInput" in line:
inp = float(line.strip().split()[1])
if "AttackingStartTime" in line:
beg = float(line.strip().split()[1])
if "AttackingEndTime" in line:
end = float(line.strip().split()[1])
return inp, beg, end
def GetComboList(job):
print job
os.chdir(job)
dirList = os.listdir(".")
folders = [name for name in dirList if stat.S_ISDIR(os.stat(name).st_mode)]
for folder in folders:
os.chdir(folder)
comboList = []
for name in glob.glob("*.msa"):
if "combo" in name:
comboList.append("\t" + " ".join((name, "%.2f (%.2f-%.2f)" % (GetSpeed(name)))))
if comboList:
print folder
print "\n".join(comboList)
os.chdir("..")
os.chdir("..")
GetComboList("warrior");
GetComboList("assassin");
GetComboList("sura");
GetComboList("shaman");