增大睡莲权重

This commit is contained in:
星外之神 2022-07-27 09:37:22 +08:00
parent 793cbea586
commit 88d2e734a4
3 changed files with 7 additions and 8 deletions

View File

@ -8,7 +8,7 @@
"BucketheadZombie", "SnorkelZombie",
"Zomboni"],
"inevitable_zombie_list":{"30":["BucketheadZombie"]},
"card_pool":{ "LilyPad":200,
"card_pool":{ "LilyPad":300,
"TorchWood":100,
"TallNut":100,
"TangleKlep":100,

View File

@ -659,10 +659,10 @@ PLAY = 'play'
# 记录本地存储文件初始值
INIT_USERDATA = {
LEVEL_NUM:1,
LITTLEGAME_NUM:1,
LEVEL_COMPLETIONS:0,
LITTLEGAME_COMPLETIONS:0,
LEVEL_NUM: 1,
LITTLEGAME_NUM: 1,
LEVEL_COMPLETIONS: 0,
LITTLEGAME_COMPLETIONS: 0,
}
# 无穷大常量

View File

@ -97,9 +97,9 @@ class Control():
elif event.type == pg.KEYDOWN:
self.keys = pg.key.get_pressed()
if event.key == pg.K_f:
SCREEN = pg.display.set_mode(c.SCREEN_SIZE, pg.HWSURFACE|pg.FULLSCREEN)
pg.display.set_mode(c.SCREEN_SIZE, pg.HWSURFACE|pg.FULLSCREEN)
elif event.key == pg.K_u:
SCREEN = pg.display.set_mode(c.SCREEN_SIZE)
pg.display.set_mode(c.SCREEN_SIZE)
elif event.type == pg.KEYUP:
self.keys = pg.key.get_pressed()
elif event.type == pg.MOUSEBUTTONDOWN:
@ -116,7 +116,6 @@ class Control():
self.update()
pg.display.update()
self.clock.tick(self.fps)
print('game over')
def get_image(sheet, x, y, width, height, colorkey=c.BLACK, scale=1):
image = pg.Surface([width, height])