diff --git a/resources/msctDevAuthors.txt b/resources/msctDevAuthors.txt index 5da725a..41d89c5 100644 --- a/resources/msctDevAuthors.txt +++ b/resources/msctDevAuthors.txt @@ -15,10 +15,10 @@ en-US EillesWan 启诸葛亮与八卦阵 zh-CN 诸葛亮与八卦阵 zh-TW 諸葛亮與八卦陣 -# zh-ME 诸葛八卦喵 +zh-ME 诸葛八卦喵 zh-HK 諸葛亮與八卦陣 -# en-GB Bagua Array -# en-US bgArray +en-GB Bagua Array +en-US bgArray 启鸣凤鸽子 zh-CN 鸣凤鸽子 diff --git a/作者的自我装逼.py b/作者的自我装逼.py index e571642..32c67f8 100644 --- a/作者的自我装逼.py +++ b/作者的自我装逼.py @@ -1,4 +1,30 @@ +from time import sleep from msctLib.buildIN import author_reader +from os import system -input(author_reader()) \ No newline at end of file +authors = author_reader() + +def run(string): + try: + system(string) + except: + return + +run('color 70') + +for bigname,languages in authors.items(): + run('color 02') + for i in bigname: + print(i,end="",flush=True) + sleep(0.1) + run('color 70') + print(' :') + for language,author in languages.items(): + line = ' '+language+' > '+author + for i in line: + print(i,end="",flush=True) + sleep(0.05) + print() + +input() \ No newline at end of file