Skip to content

Commit

Permalink
Adds README and credits
Browse files Browse the repository at this point in the history
  • Loading branch information
randonia committed Aug 16, 2017
1 parent 2a8bc79 commit 2d03869
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 7 deletions.
50 changes: 44 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,52 @@
# lowrezjam2017
Entry for #LOWREZJAM 2017
# ALERT: PUG STATIONS #
Entry for [#LOWREZJAM 2017][12]

[@Zambini][0]
![][20]

Developed by: [@Zambini][0]
[zambini.itch.io][1]
Art created by: [@Soulis6][2]

## GamePlay ##
You're hauling precious cargo (re: bones) through the galaxy. Along the way face dangerous threats to your very well being HEAD ON... through the comfort of your command consoles.

![][21]

As threats show up on your radar (top left) go to the respective station and ~~smash the keyboard until it works~~ precisely press the specific key sequences.
### Four Stations, Four Threats ###
Fortunately you come equipped with a state-of-the-art top-of-the-line Personal Universal Grabbing Ship, which has four of the best defences in the known galaxy.
* ![][40] Thrusters - Capable of outrunning the strongest of **black holes** ![][30]. _Event-horizon Schmevent-schmorizon_
* ![][42] Shields - Able to zap off pesky **leeches** ![][32] that suck on the power couplers. Commonly found in asteroids
* ![][43] Missiles - The odds of an **asteroid** ![][33] surviving a blast from this are 3,720 to 1
* ![][41] Lasers - Hokey religions and ancient **enemy** ![][31] ships are no match for a good laser on your bow

### Tools ###
* [Pyxel][10]
* [Tiled][11]
* [Sublime Text][13]
* [Phaser Engine][14]

## Tools ##
1. [Pyxel][10]
1. [Tiled][11]
### Music ###
Royalty Free Music
Reformat Kevin MacLeod (incompetech.com)
Licensed under Creative Commons: By Attribution 3.0 License
http://creativecommons.org/licenses/by/3.0/

[0]: https://twitter.com/zambini845
[1]: https://zambini.itch.io/
[2]: https://twitter.com/Soulis6
[10]: http://pyxeledit.com/
[11]: http://www.mapeditor.org/
[12]: https://itch.io/jam/lowrezjam2017
[13]: https://www.sublimetext.com/
[14]: https://phaser.io/
[20]: https://raw.githubusercontent.com/randonia/lowrezjam2017/master/screenshots/spacepugs.gif
[21]: https://raw.githubusercontent.com/randonia/lowrezjam2017/master/screenshots/stationsuccess.gif
[30]: https://raw.githubusercontent.com/randonia/lowrezjam2017/master/dist/assets/threats_blackhole.gif
[31]: https://raw.githubusercontent.com/randonia/lowrezjam2017/master/dist/assets/threats_enemy.gif
[32]: https://raw.githubusercontent.com/randonia/lowrezjam2017/master/dist/assets/threats_leech.gif
[33]: https://raw.githubusercontent.com/randonia/lowrezjam2017/master/dist/assets/threats_asteroid.gif
[40]: https://raw.githubusercontent.com/randonia/lowrezjam2017/master/dist/assets/stations_thrust.gif
[41]: https://raw.githubusercontent.com/randonia/lowrezjam2017/master/dist/assets/stations_laser.gif
[42]: https://raw.githubusercontent.com/randonia/lowrezjam2017/master/dist/assets/stations_shield.gif
[43]: https://raw.githubusercontent.com/randonia/lowrezjam2017/master/dist/assets/stations_missile.gif
2 changes: 1 addition & 1 deletion dist/src/creditstate.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class CreditState extends BaseState {
const restartKey = game.input.keyboard.addKey(Phaser.Keyboard.ENTER);
restartKey.onDown.add(this.restartGameState, this);

const bmpfnt = game.add.bitmapText(32, 32, 'visitor', 'Press\n<Enter>\nTo\nRestart', 8)
const bmpfnt = game.add.bitmapText(32, 32, 'visitor', `You saved\n${Math.round(INTER_SCENE_DATA.bones)}\nbones\nGood work\nPress\n<Enter>\nTo\nRestart`, 8)
bmpfnt.x -= bmpfnt.textWidth * 0.5;
bmpfnt.y -= bmpfnt.textHeight * 0.5;
bmpfnt.align = 'center';
Expand Down

0 comments on commit 2d03869

Please sign in to comment.