Skip to content

Commit ff83e5e

Browse files
authored
Add files via upload
1 parent bb66dec commit ff83e5e

File tree

9 files changed

+1811
-1017
lines changed

9 files changed

+1811
-1017
lines changed

Minecraft.py

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ def crea_flat_s():
2323

2424
crea.geometry('450x250')
2525
crea.iconbitmap('_internal/icon/icon.ico')
26-
crea.title('MINECRAFT 1.0.0.50 - New World - Creatival')
26+
crea.title('MINECRAFT 2.0.0.57 - New World - Creatival')
2727

2828

29-
label1 = Label(crea,text='MINECRAFT',font=('minecrafter',36),foreground='#262626')
30-
label2 = Label(crea,text='Creatival',font=('minecraft ae pixel',14),foreground='#8F8F8F')
29+
label1 = Label(crea,text='MINECRAFT',font=('minecraft evenings',36),foreground='#262626')
30+
label2 = Label(crea,text='Creatival',font=('minecraft',14),foreground='#8F8F8F')
3131

3232
button1 = Button(crea,command=crea_wave_g,text='Wave And Grass Landform',font=('minecraft',14),width=25,height=1,foreground='white',background='grey',activeforeground='white',activebackground='#707070')
3333
button2 = Button(crea,command=crea_flat_g,text='Flat And Grass Landform',font=('minecraft',14),width=25,height=1,foreground='white',background='grey',activeforeground='white',activebackground='#707070')
@@ -51,11 +51,11 @@ def random_landform():
5151

5252
surv.geometry('450x250')
5353
surv.iconbitmap('_internal/icon/icon.ico')
54-
surv.title('MINECRAFT 1.0.0.50 - New World - Survival')
54+
surv.title('MINECRAFT 2.0.0.57 - New World - Survival')
5555

5656

57-
label1 = Label(surv,text='MINECRAFT',font=('minecrafter',36),foreground='#262626')
58-
label2 = Label(surv,text='Survival',font=('minecraft ae pixel',14),foreground='#8F8F8F')
57+
label1 = Label(surv,text='MINECRAFT',font=('minecraft evenings',36),foreground='#262626')
58+
label2 = Label(surv,text='Survival',font=('minecraft',14),foreground='#8F8F8F')
5959

6060
button1 = Button(surv,command=random_landform,text='Random Landform',font=('minecraft',14),width=25,height=1,foreground='white',background='grey',activeforeground='white',activebackground='#707070')
6161

@@ -72,11 +72,11 @@ def new_world():
7272

7373
new.geometry('600x350')
7474
new.iconbitmap('_internal/icon/icon.ico')
75-
new.title('MINECRAFT 1.0.0.50 - New World')
75+
new.title('MINECRAFT 2.0.0.57 - New World')
7676

7777

78-
label1 = Label(new,text='MINECRAFT',font=('minecrafter',48) ,foreground='#262626')
79-
label2 = Label(new,text='New World',font=('minecraft ae pixel',20),foreground='#8F8F8F')
78+
label1 = Label(new,text='MINECRAFT',font=('minecraft evenings',48) ,foreground='#262626')
79+
label2 = Label(new,text='New World',font=('minecraft',20),foreground='#8F8F8F')
8080

8181
padding1 = Label(new,text='',font=('微软雅黑',18))
8282
button1 = Button(new,command=creatival,text='Creatival',font=('minecraft',20),width=25,height=1,foreground='white',background='grey',activeforeground='white',activebackground='#707070')
@@ -91,22 +91,25 @@ def new_world():
9191

9292
new.mainloop()
9393

94+
def open_game():
95+
subprocess.run(['python','_internal/open_game.py'])
96+
9497
def about():
95-
subprocess.run(['python','main/about.py'])
98+
subprocess.run(['python','_internal/about.py'])
9699

97100

98101
def main():
99102
root.geometry('850x450')
100103
root.iconbitmap('_internal/icon/icon.ico')
101-
root.title('MINECRAFT 1.0.0.50')
104+
root.title('MINECRAFT 2.0.0.57')
102105

103106

104-
label1 = Label(root,text='MINECRAFT' ,font=('minecrafter',54) ,foreground='#262626')
105-
label2 = Label(root,text='Python Edition',font=('minecraft ae pixel',20),foreground='#8F8F8F')
107+
label1 = Label(root,text='MINECRAFT' ,font=('minecraft evenings',54),foreground='#262626')
108+
label2 = Label(root,text='Python Edition',font=('minecraft',18) ,foreground='#8F8F8F')
106109

107110
padding1 = Label(root,text='',font=('微软雅黑',16))
108-
button1 = Button(root,command=new_world ,text='New World' ,font=('minecraft',20),width=30,height=1,foreground='white',background='grey',activeforeground='white',activebackground='#707070')
109-
button2 = Button(root ,text='Open World (Will Be Open)',font=('minecraft',20),width=30,height=1,foreground='white',background='#505050',activeforeground='white',activebackground='#505050')
111+
button1 = Button(root,command=new_world,text='New World' ,font=('minecraft',20),width=30,height=1,foreground='white',background='grey',activeforeground='white',activebackground='#707070')
112+
button2 = Button(root,command=open_game,text='Open A Game',font=('minecraft',20),width=30,height=1,foreground='white',background='grey',activeforeground='white',activebackground='#707070')
110113

111114
padding2 = Label(root,text='',font=('微软雅黑',36))
112115
button3 = Button(root,command=about,text='About',font=('minecraft',20),width=30,height=1,foreground='white',background='grey',activeforeground='white',activebackground='#707070')

0 commit comments

Comments
 (0)