diff gamelib/gameboard.py @ 290:664bba9be40a

Fences are eclectic.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 05 Sep 2009 16:07:48 +0000
parents 37d88a9fc097
children bf271e857157
line wrap: on
line diff
--- a/gamelib/gameboard.py	Sat Sep 05 16:05:41 2009 +0000
+++ b/gamelib/gameboard.py	Sat Sep 05 16:07:48 2009 +0000
@@ -287,11 +287,14 @@
     WOODLAND = tiles.REVERSE_TILE_MAP['woodland']
     BROKEN_FENCE = tiles.REVERSE_TILE_MAP['broken fence']
 
+    # These don't have to add up to 100, but it's easier to think
+    # about them if they do.
     FOX_WEIGHTINGS = (
-        (animal.Fox, 60),
+        (animal.Fox, 59),
         (animal.GreedyFox, 30),
         (animal.NinjaFox, 5),
         (animal.DemoFox, 5),
+        (animal.Rinkhals, 1),
         )
 
     def __init__(self, main_app):