Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/enemy' into feature/enemy
Browse files Browse the repository at this point in the history
  • Loading branch information
samv26 committed Oct 19, 2023
2 parents 062d846 + d1e080c commit d615396
Show file tree
Hide file tree
Showing 160 changed files with 2,102 additions and 1,444 deletions.
78 changes: 39 additions & 39 deletions saves/savefile.json
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
{
entities: {
CompanionConfig: [
{
class: com.csse3200.game.entities.configs.CompanionConfig
position: {
x: 22
y: 24
}
health: 100
baseAttack: 5
attackMultiplier: 1
}
]
PlayerConfig: [
{
class: com.csse3200.game.entities.configs.PlayerConfig
spritePath: images/player/player.atlas
position: {
x: 23
y: 25
}
health: 100
baseAttack: 10
lives: 3
sounds: {
soundsMap: {
low_health: sounds/playerLow_health.wav
dodge: sounds/dodgingAlertSweep.wav
boostPowerup: sounds/playerBoostRecharge.wav
healthPowerup: sounds/PlayerHealthRecharge.wav
footstep: sounds/footStepsInTheForestGround.wav
upgradeWeapon: sounds/upgradeWeapon.wav
upgradeTree: sounds/upgradeTreeTap.wav
exitbutton: sounds/ExitButton.wav,
}
}
}
]
}
entities: {
CompanionConfig: [
{
class: com.csse3200.game.entities.configs.CompanionConfig
position: {
x: 22
y: 24
}
health: 100
baseAttack: 5
attackMultiplier: 1
}
]
PlayerConfig: [
{
class: com.csse3200.game.entities.configs.PlayerConfig
spritePath: images/player/player.atlas
position: {
x: 23
y: 25
}
health: 100
baseAttack: 10
lives: 3
sounds: {
soundsMap: {
low_health: sounds/playerLow_health.wav
dodge: sounds/dodgingAlertSweep.wav
boostPowerup: sounds/playerBoostRecharge.wav
healthPowerup: sounds/PlayerHealthRecharge.wav
footstep: sounds/footStepsInTheForestGround.wav
upgradeWeapon: sounds/upgradeWeapon.wav
upgradeTree: sounds/upgradeTreeTap.wav
exitbutton: sounds/ExitButton.wav,
}
}
}
]
}
}
2 changes: 1 addition & 1 deletion source/core/assets/configs/powerups.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},

"tempImmunityPowerup": {
"spritePath": "images/powerups/invincibility_potion.png",
"spritePath": "images/powerups/temp_immunity.png",
"type": "TEMP_IMMUNITY"
},

Expand Down
4 changes: 2 additions & 2 deletions source/core/assets/configs/shipUpgrades.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"healthUpgrade": {
"spritePath": "images/powerups/health_potion.png",
"spritePath": "images/powerups/health_boost.png",
"type": "HEALTH_UPGRADE"
},
"fuelUpgrade": {
"spritePath": "images/powerups/speed_potion.png",
"spritePath": "images/powerups/speed_boost.png",
"type": "FUEL_UPGRADE"
}
}
Loading

0 comments on commit d615396

Please sign in to comment.