diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-05-23 20:52:57 -0500 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-05-23 20:52:57 -0500 |
commit | b6d40fa3776b33a03f8f40636a35a967873fc97b (patch) | |
tree | 9d777e363363c150290733dbf5613df4306e7c21 /src/sim/static/tiles.js | |
parent | b5de6d44e0f291f6fcbe035f4a15edcab1491aad (diff) |
Make sim an idle game
Diffstat (limited to 'src/sim/static/tiles.js')
-rw-r--r-- | src/sim/static/tiles.js | 34 |
1 files changed, 5 insertions, 29 deletions
diff --git a/src/sim/static/tiles.js b/src/sim/static/tiles.js index 5b31d19..203acb4 100644 --- a/src/sim/static/tiles.js +++ b/src/sim/static/tiles.js @@ -10,17 +10,8 @@ Mountain.prototype.draw = function (x, y, size) { ctx.stroke(); ctx.fill(); } -Mountain.prototype.update = function () { - var event = undefined - if(Math.random() < 0.1){ - event = function(){ - - } - } - return { - gold: 1, - event: event - } +Mountain.prototype.update = function (game) { + game.gold += 1 } function Forest() { @@ -35,15 +26,9 @@ Forest.prototype.draw = function (x, y, size) { ctx.stroke(); ctx.fill(); } -Forest.prototype.update = function () { +Forest.prototype.update = function (game) { var event = {} - if(Math.random() < 0.1){ - event.status = "A tree monster taks half of your" - } - return { - resources: Math.floor(Math.random() * 5), - event: event - } + game.resources += Math.floor(Math.random() * 5) } function Town() { @@ -60,14 +45,5 @@ Town.prototype.draw = function (x, y, size) { ctx.fill(); } Town.prototype.update = function () { - var event = undefined - if(Math.random() < 0.1){ - event = function(){ - - } - } - return { - population: Math.floor(Math.random() * 4) - 1, - event: event - } + game.population += Math.floor(Math.random() * 4) - 1 } |