更改设计
This commit is contained in:
parent
0c9d7f1468
commit
43da630394
@ -85,6 +85,7 @@ nuitka --mingw --standalone --onefile --show-progress --show-memory --output-dir
|
|||||||
* 给胜利和失败界面添加音乐
|
* 给胜利和失败界面添加音乐
|
||||||
* 修复已经死亡的僵尸会触发大嘴花、土豆雷甚至小推车的问题
|
* 修复已经死亡的僵尸会触发大嘴花、土豆雷甚至小推车的问题
|
||||||
* 用蓝色滤镜标识冷冻的僵尸
|
* 用蓝色滤镜标识冷冻的僵尸
|
||||||
|
* 修复暂停游戏时仍在计时的bug
|
||||||
|
|
||||||
## 截屏
|
## 截屏
|
||||||
|
|
||||||
|
|||||||
@ -229,7 +229,7 @@ class Sun(Plant):
|
|||||||
self.sun_value = c.SUN_VALUE
|
self.sun_value = c.SUN_VALUE
|
||||||
else:
|
else:
|
||||||
scale = 0.6
|
scale = 0.6
|
||||||
self.sun_value = 12
|
self.sun_value = 15
|
||||||
Plant.__init__(self, x, y, c.SUN, 0, None, scale)
|
Plant.__init__(self, x, y, c.SUN, 0, None, scale)
|
||||||
self.move_speed = 1
|
self.move_speed = 1
|
||||||
self.dest_x = dest_x
|
self.dest_x = dest_x
|
||||||
@ -756,7 +756,7 @@ class SunShroom(Plant):
|
|||||||
if not self.is_big:
|
if not self.is_big:
|
||||||
if self.change_timer == 0:
|
if self.change_timer == 0:
|
||||||
self.change_timer = self.current_time
|
self.change_timer = self.current_time
|
||||||
elif (self.current_time - self.change_timer) > 25000:
|
elif (self.current_time - self.change_timer) > 100000:
|
||||||
self.changeFrames(self.big_frames)
|
self.changeFrames(self.big_frames)
|
||||||
self.is_big = True
|
self.is_big = True
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user