• 大小: 9.71MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-11-10
  • 语言: Python
  • 标签: Python  游戏  

资源简介

Python编写的连连看游戏,有三个关卡,每个关卡有不同的效果。

资源截图

代码片段和文件信息

import pygame
one=(86) #简单难度  (3,4) 代表 横排3个 竖排4个  横排乘竖排时单数,那么程序错误 ,因为单数不可以消
two=(108)#一般难度
three=(1210)#困难难度
time_=100 #游戏时间
score_sep_=5 #剩余1秒增加5分  每一关的分数会自动加上去
tick_=5 #可以提示的次数
level__=2 #洗牌的关卡  如果要取消,请设置5到10的数字
level___=3  #同上
#音乐刚好下载了告白气球 所以-——-
#如果要替换音乐,在void文件下,覆盖原来文件, mp3格式,文件名要一致
pygame.mixer.init()
bg_sound=pygame.mixer.music.load(‘void/bgsound.mp3‘)
def load(url=‘picture/‘name=‘‘type=‘.png‘width=Noneheight=None):
tmp=pygame.image.load(url+str(name)+type)
if width and height:
return pygame.transform.scale(tmp(widthheight))
else:
return tmp

pic={}
for i in range(20):
try:
pic[str(i)]=load(name=str(i)width=38height=38)
except:
pass
bg=load(name=‘bg‘)
button=load(name=‘button‘)
top=load(name=‘top‘)
nogood=load(name=‘nogood‘width=20height=20)
good=load(name=‘good‘width=20height=20)
order=load(name=‘order‘)
success=load(name=‘success‘)
over=load(name=‘gameover‘)
sorry=load(name=‘baoqian‘)
false=load(name=‘false‘)
restart=load(name=‘restart‘width=50height=50)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1323  2019-06-03 21:51  杩炶繛鐪?loading.py
     目录           0  2019-06-03 21:51  杩炶繛鐪?need\
     文件        2874  2019-06-03 21:51  杩炶繛鐪?need\extend.py
     文件        3590  2019-06-03 21:51  杩炶繛鐪?need\tools.py
     目录           0  2019-06-03 21:51  杩炶繛鐪?picture\
     文件           0  2019-06-03 21:51  杩炶繛鐪?picture\0.png
     文件       83693  2019-06-03 21:51  杩炶繛鐪?picture\1.png
     文件       63794  2019-06-03 21:51  杩炶繛鐪?picture\10.png
     文件       26292  2019-06-03 21:51  杩炶繛鐪?picture\11.png
     文件       62496  2019-06-03 21:51  杩炶繛鐪?picture\12.png
     文件       58338  2019-06-03 21:51  杩炶繛鐪?picture\2.png
     文件       40689  2019-06-03 21:51  杩炶繛鐪?picture\3.png
     文件       22883  2019-06-03 21:51  杩炶繛鐪?picture\4.png
     文件       36238  2019-06-03 21:51  杩炶繛鐪?picture\5.png
     文件       34105  2019-06-03 21:51  杩炶繛鐪?picture\6.png
     文件       27157  2019-06-03 21:51  杩炶繛鐪?picture\7.png
     文件       47194  2019-06-03 21:51  杩炶繛鐪?picture\8.png
     文件       39296  2019-06-03 21:51  杩炶繛鐪?picture\9.png
     文件       84309  2019-06-03 21:51  杩炶繛鐪?picture\baoqian.png
     文件      181948  2019-06-03 21:51  杩炶繛鐪?picture\bg.png
     文件       11059  2019-06-03 21:51  杩炶繛鐪?picture\button.png
     文件       49591  2019-06-03 21:51  杩炶繛鐪?picture\false.png
     文件         758  2019-06-03 21:51  杩炶繛鐪?picture\gameover.png
     文件       62690  2019-06-03 21:51  杩炶繛鐪?picture\good.png
     文件       21582  2019-06-03 21:51  杩炶繛鐪?picture\good1.png
     文件       79860  2019-06-03 21:51  杩炶繛鐪?picture\nogood.png
     文件       59952  2019-06-03 21:51  杩炶繛鐪?picture\order.png
     文件        6023  2019-06-03 21:51  杩炶繛鐪?picture\redbird-midflap.png
     文件        7110  2019-06-03 21:51  杩炶繛鐪?picture\restart.png
     文件      108228  2019-06-03 21:51  杩炶繛鐪?picture\success.png
     文件      242095  2019-06-03 21:51  杩炶繛鐪?picture\tkbg.gif
............此处省略8个文件信息

评论

共有 条评论