Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alien invasion #4590

Merged
merged 4 commits into from
Jun 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Games/Alien_Invasion/.DS_Store
Binary file not shown.
20 changes: 20 additions & 0 deletions Games/Alien_Invasion/README..md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# AttackAlienInvaders Game App
A cool 2D alien planet exploration steampunk-themed game application with techniques of vanilla JavaScript, HTML5, CSS3 and HTML Canvas. From sprite animation to parallax backgrounds, the game App is completely built from scratch, with no frameworks or libraries, using HTML, CSS and plain vanilla JavaScript. The game contains richful premium art assets for characters, environments and props.

### [Game Won Demo](https://github.com/KrystalZhang612/KrystalZhang-AttackAlienInvaders-Game-App/blob/main/testing-result-AttackAlienInvader-game-app/Won%20Game.mov): Most Wondrous! Well done explorer!
https://user-images.githubusercontent.com/72481348/198857930-95a5c040-1d47-4ca6-b5a6-15ac05e8e520.mov
### [Game Lost Demo](https://github.com/KrystalZhang612/KrystalZhang-AttackAlienInvaders-Game-App/blob/main/testing-result-AttackAlienInvader-game-app/Lost%20Game.mov): Blazed! Get my repair kit and try again!
https://user-images.githubusercontent.com/72481348/198857699-86d076d4-f746-435b-89ec-333ad1ba01b8.mov

# Game Premiere Storyline
***Central Computer***: <br/>
`These alien creatures have very similar physiology to the earth seahorses. Their bodies can easily cut through the thick atmosphere. They can move very fast.`<br/>
***Explorer***:<br/>
`Seahorses hives are being attacked by something. This one has been damaged. I wonder if you can hack into this creature’s central computer to control it for a while.`<br/>
***Central Computer***: <br/>
`It is surprisingly easy to override its circuits. Seems like these machines are not used by our technology. I’m getting a lot of new data.`<br/>
***Central Computer***: <br/>
`The atmosphere on this planet is thick enough to allow heavy silicon-based lifeforms to float but smoke is blocking most of the sunlight. Many creatures developed artificial lights and glowing appendages to see through the heavy clouds. The Seahorse sentinel has a basic attack that’s powerful against weak enemies, but if it absorbs energy from one of the overcharged creatures, it gets additional firepower for a short period of time and it instantly replenishes its ammo. Ammo also automatically recharges over time. It seems we just need to help it to get through these aggressive swarms in time so it can join its hive.`
- There is a stream of data about multiple different species.
- The alien creatures in the hood of their ecosystem have special movements, special abilities, and interact with the environments on other planets.

44 changes: 44 additions & 0 deletions Games/Alien_Invasion/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<meta name="viewport" content="width-device-width, initial-scale=1.0">
<title>AttackAlienInvader Game</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bangers&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">

</head>


<body>
<canvas id="canvas1"></canvas>

<!-- characters -->
<img id="player" src="assets/player.png">
<img id="angler1" src="assets/angler1.png">
<img id="angler2" src="assets/angler2.png">
<img id="lucky" src="assets/lucky.png">
<img id ="hivewhale" src = "assets/hivewhale.png">
<img id = "drone" src = "assets//drone.png">


<!-- props -->
<img id="projectile" src="assets/projectile.png">
<img id ="gears" src = "assets/gears.png">
<img id ="smokeExplosion" src = "assets/smokeExplosion.png">
<img id ="fireExplosion" src = "assets/fireExplosion.png">

<!-- environment -->
<img id="layer1" src="assets/layer1.png" />
<img id="layer2" src="assets/layer2.png" />
<img id="layer3" src="assets/layer3.png" />
<img id="layer4" src="assets/layer4.png" />

<script src="script.js"> </script>
</body>

</html>
Loading
Loading