2016-08-18 14:14:48 +10:00
|
|
|
http://www.w3schools.com/games/tryit.asp?filename=trygame_default_gravity
|
|
|
|
|
|
|
|
cat game ???
|
|
|
|
gems
|
|
|
|
diff kinds of cats, and food
|
|
|
|
|
|
|
|
swap cat with food = cat chomps food. minor points for food vanish.
|
|
|
|
food: dry food
|
|
|
|
food: wet food
|
|
|
|
food: cheese
|
|
|
|
food: ham
|
|
|
|
|
|
|
|
cat gets fatter ?
|
|
|
|
|
|
|
|
line of diff cats = cat parade. medium points.
|
|
|
|
line of same cats = big points!
|
|
|
|
line of cats with goat at the end = get rid of lots!
|
|
|
|
|
|
|
|
any parade gives you more moves.
|
|
|
|
|
|
|
|
|
|
|
|
game params:
|
|
|
|
# of moves limit
|
|
|
|
score
|
|
|
|
|
2016-08-20 12:59:29 +10:00
|
|
|
phone fixes as per http://www.html5rocks.com/en/mobile/touch/
|
|
|
|
|
2016-08-18 14:14:48 +10:00
|
|
|
----------------------------
|
|
|
|
|
2016-08-20 12:59:29 +10:00
|
|
|
https://www.smashingmagazine.com/2012/10/design-your-own-mobile-game/
|
2016-08-18 14:14:48 +10:00
|
|
|
|
2016-08-21 09:57:40 +10:00
|
|
|
custom thing chance ratios for each level
|
|
|
|
1: no llamas
|
|
|
|
2: no llamas
|
|
|
|
3: llamas
|
|
|
|
|
|
|
|
make llamas only start appearing a few levels in
|
|
|
|
|
|
|
|
make help text for llamas come later
|
|
|
|
llamas scaring cats
|
|
|
|
parades can have one llama
|
|
|
|
|
|
|
|
make initial help text jsut talk about paraes, no llamas
|
2016-08-20 15:12:32 +10:00
|
|
|
|
2016-08-21 07:56:41 +10:00
|
|
|
|
2016-08-21 09:32:57 +10:00
|
|
|
Level selection screen
|
|
|
|
grid of numbers for each level
|
|
|
|
1 2 3 4 5
|
|
|
|
6 7 8 9 10
|
|
|
|
...etc
|
|
|
|
|
|
|
|
scrolling background of cat paws ?
|
|
|
|
|
2016-08-21 09:57:40 +10:00
|
|
|
Store level progress using localstorage
|
|
|
|
https://www.smashingmagazine.com/2010/10/local-storage-and-how-to-use-it/
|
|
|
|
localStorage.setItem('favoriteflavor','vanilla');
|
|
|
|
|
|
|
|
var taste = localStorage.getItem('favoriteflavor');
|
|
|
|
// -> "vanilla"
|
|
|
|
|
|
|
|
localStorage.removeItem('favoriteflavor');
|
|
|
|
var taste = localStorage.getItem('favoriteflavor');
|
|
|
|
// -> null
|
|
|
|
|
|
|
|
You can also use sessionStorage instead of localStorage if you want the data to be maintained only until the browser window closes.
|
|
|
|
|
2016-08-21 09:32:57 +10:00
|
|
|
|
|
|
|
|
|
|
|
better level complete animation
|
|
|
|
zoom in random cat picture?
|
|
|
|
|
|
|
|
|
2016-08-21 09:57:40 +10:00
|
|
|
|
2016-08-21 09:32:57 +10:00
|
|
|
title screen -> level select -> help -> startgame
|
2016-08-21 07:56:41 +10:00
|
|
|
|
|
|
|
certain levels have help screens (ie. lev 1 is initial help)
|
|
|
|
|
|
|
|
remember which level you're up to
|
|
|
|
|
2016-08-21 09:32:57 +10:00
|
|
|
complex goal: form x parades of length y
|
|
|
|
|
2016-08-21 07:56:41 +10:00
|
|
|
|
|
|
|
sounds:
|
|
|
|
chomp
|
|
|
|
catparade (can-can ?)
|
|
|
|
indy theme - title screen?
|
|
|
|
(if so, make title text indy themed too)
|
2016-08-20 15:12:32 +10:00
|
|
|
|
|
|
|
|
2016-08-19 17:46:39 +10:00
|
|
|
|
|
|
|
|
|
|
|
make path part of game object
|
|
|
|
make things part of game object
|
|
|
|
|
|
|
|
ideas:
|
|
|
|
llamas don't appear after the start, you just have to get rid of them all?
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-08-18 14:14:48 +10:00
|
|
|
|