From: Jason Woofenden Date: Sun, 3 Nov 2013 10:01:12 +0000 (-0500) Subject: make it a bit easier, more unflipping X-Git-Url: https://jasonwoof.com/gitweb/?p=hexbog.git;a=commitdiff_plain;h=9cc07cbaa0e30193f6d92301b5b960051ae70374 make it a bit easier, more unflipping --- diff --git a/main.coffee b/main.coffee index 860469d..366d54e 100644 --- a/main.coffee +++ b/main.coffee @@ -339,11 +339,12 @@ blip_selection = -> for nei in [neighbors, nneighbors] if unsink > 0 for i in nei - if i.hp is 0 and unsink >= 15 + if i.hp is 0 and unsink >= 10 i.new_hp = 10 - unsink -= 15 + unsink -= 10 i.text = new_letter() i.dom.html i.text + for nei in [neighbors, nneighbors] if unsink > 0 for i in nei if i.hp > 0 and unsink > 0 @@ -445,7 +446,7 @@ select_tile = (num) -> new_tile = (num, x, y) -> letter = new_letter() - hp = Math.floor(Math.random() * HP_MAX) + hp = 1 + Math.floor(Math.random() * (HP_MAX - 1)) html_tile = $("
#{letter}
") $board.append(html_tile)