#!/usr/bin/python

import string

#f = open ("character-list.txt");
#f = open ("menu-list.txt");

f = open ("win-charlist.txt");

lines = f.readlines();
f.close()

for line in lines:
    name = line[:len(line)-1]
#    print("slienc-type-1\tcharacters/zh/N-"+name+".rgba\tIMAGES/zh/ko_name_"+name+".tex\ttex_name_"+name+"\tPILOT");

#XXXX bug---leon/reon---data and files called reon, symbol is Leon 
    lowerName = "t"+string.lower(name);
    if ( lowerName == "leon" ): lowerName="reon";
    print("slienc-type-1\twin/zh/"+lowerName+"_usa.rgb\tIMAGES/zh/kn_"+lowerName+".tex\ttexT"+name+"\tPILOT_WIN");


#    otherName = "dai_m" + line[6:]
#    print("slienc-type-1\tmenu/zh/"+name+".rgb\tIMAGES/zh/"+name+".tex\t"+otherName+"\tN");
 
