Level 2 is now a boss level.
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
"level_id": 2,
|
"level_id": 2,
|
||||||
"name": "The Graveyard",
|
"name": "The Graveyard",
|
||||||
"description": "The mausoleum led to an ancient graveyard. Watch out for falling skulls!",
|
"description": "The mausoleum led to an ancient graveyard. Watch out for falling skulls!",
|
||||||
|
"locked": true,
|
||||||
"player_start": {
|
"player_start": {
|
||||||
"x": 0,
|
"x": 0,
|
||||||
"y": 0
|
"y": 0
|
||||||
@@ -136,16 +137,35 @@
|
|||||||
"zombie_spawn_chance": 0
|
"zombie_spawn_chance": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x_range": [165, 175],
|
"x": 165,
|
||||||
|
"y": 0,
|
||||||
|
"type": "grave",
|
||||||
|
"sound": "grave",
|
||||||
|
"static": true,
|
||||||
|
"zombie_spawn_chance": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x_range": [200, 215],
|
||||||
"y": 0,
|
"y": 0,
|
||||||
"enemy_type": "witch",
|
"enemy_type": "witch",
|
||||||
"health": 3,
|
"health": 6,
|
||||||
"damage": 2,
|
"damage": 2,
|
||||||
"attack_range": 1.5,
|
"attack_range": 1.5,
|
||||||
"attack_pattern": {
|
"attack_pattern": {
|
||||||
"type": "patrol"
|
"type": "patrol"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"x_range": [190, 200],
|
||||||
|
"y": 0,
|
||||||
|
"enemy_type": "black_cat",
|
||||||
|
"health": 6,
|
||||||
|
"damage": 2,
|
||||||
|
"attack_range": 1,
|
||||||
|
"attack_pattern": {
|
||||||
|
"type": "patrol"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"x": 170,
|
"x": 170,
|
||||||
"y": 3,
|
"y": 3,
|
||||||
@@ -171,7 +191,7 @@
|
|||||||
],
|
],
|
||||||
"boundaries": {
|
"boundaries": {
|
||||||
"left": 0,
|
"left": 0,
|
||||||
"right": 200
|
"right": 220
|
||||||
},
|
},
|
||||||
"ambience": "Graveyard Blitz.ogg",
|
"ambience": "Graveyard Blitz.ogg",
|
||||||
"footstep_sound": "footstep_tall_grass"
|
"footstep_sound": "footstep_tall_grass"
|
||||||
|
BIN
sounds/black_cat.ogg
(Stored with Git LFS)
Normal file
BIN
sounds/black_cat.ogg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
sounds/black_cat_dies.ogg
(Stored with Git LFS)
Normal file
BIN
sounds/black_cat_dies.ogg
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -12,7 +12,7 @@ class PowerUp(Object):
|
|||||||
)
|
)
|
||||||
self.sounds = sounds
|
self.sounds = sounds
|
||||||
self.direction = direction
|
self.direction = direction
|
||||||
self.speed = 0.05 # Base movement speed
|
self.speed = 0.049 # Base movement speed
|
||||||
self.item_type = item_type
|
self.item_type = item_type
|
||||||
self.channel = None
|
self.channel = None
|
||||||
self._currentX = x # Initialize the current x position
|
self._currentX = x # Initialize the current x position
|
||||||
|
Reference in New Issue
Block a user