Skip to content

Commit f8fb932

Browse files
committed
intro
1 parent 89f3249 commit f8fb932

12 files changed

+292
-74
lines changed
3.12 KB
Binary file not shown.

assets/musicGame_intro.py

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import tkinter as tk
2+
import tkinter.messagebox as msg
3+
4+
class MusicGameIntro():
5+
def __init__(self):
6+
self.base = tk.Tk()
7+
self.base.title("提示")
8+
self.text = tk.StringVar()
9+
self.base.geometry("450x200")
10+
self.proc = 0
11+
self.choose = False
12+
self.t = '''
13+
接下來 Bamboo 會不斷地向你丟出美乃滋 (不要問為什麼)
14+
因為美乃滋是一種樂器,所以在美乃滋向你襲來的時候,同時會有音樂播出。
15+
為了抵擋 Bamboo 的攻擊,你必須接住美乃滋
16+
按下 d、f、j、k 來接住對應位置的美乃滋吧! (對啦其實就是音遊)
17+
ps: 如果你有帶有線耳機的話,接上電腦吧!
18+
音樂:ウミユリ海底譚 / n-buna
19+
'''
20+
21+
self.text.set(self.t)
22+
self.label = tk.Label(self.base, textvariable=self.text)
23+
self.button = tk.Button(self.base, text = "我懂了", command=self.op4)
24+
self.label.pack()
25+
self.button.pack()
26+
self.base.mainloop()
27+
28+
29+
def op4(self):
30+
self.base.destroy()
31+
32+
q2 = MusicGameIntro()

assets/opening_skip.py

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import tkinter as tk
2+
import tkinter.messagebox as msg
3+
4+
class OpeningSkip():
5+
def __init__(self):
6+
self.base = tk.Tk()
7+
self.base.title("")
8+
self.text = tk.StringVar()
9+
self.base.geometry("200x150")
10+
self.proc = 0
11+
self.choose = False
12+
self.t = '''
13+
確定跳過前導劇情?
14+
'''
15+
16+
self.text.set(self.t)
17+
self.label = tk.Label(self.base, textvariable=self.text)
18+
self.buttonY = tk.Button(self.base, text = "確定", command=self.yes)
19+
self.buttonN = tk.Button(self.base, text = "繼續看", command=self.no)
20+
self.label.pack()
21+
self.buttonY.pack()
22+
self.buttonN.pack()
23+
self.base.mainloop()
24+
self.skip = False
25+
26+
27+
def yes(self):
28+
self.skip = True
29+
self.base.destroy()
30+
31+
def no(self):
32+
self.base.destroy()
33+
34+
q2 = OpeningSkip()

images/converted.mp3

-1.55 MB
Binary file not shown.

images/logo.ico

5.43 KB
Binary file not shown.

images/mayo.jfif

-121 KB
Binary file not shown.

images/opening.mov

3.72 MB
Binary file not shown.

images/q1.cpp

-20
This file was deleted.

images/q1.exe

-1.9 MB
Binary file not shown.

images/q1.txt

-16
This file was deleted.

0 commit comments

Comments
 (0)