Added some test default parameters for the random walk generator
This commit is contained in:
parent
bc9c7cd7f7
commit
3717429549
|
@ -3,6 +3,13 @@ from random import choice, random, randint
|
|||
from dungeonbattle.interfaces import Map, Tile
|
||||
|
||||
|
||||
DEFAULT_PARAMS = {"split_chance" : .15,
|
||||
"turn_chance" : .5,
|
||||
"death_chance" : .1,
|
||||
"max_walkers" : 15,
|
||||
"width" : 100,
|
||||
"height" : 100,
|
||||
"fill" : .4}
|
||||
|
||||
|
||||
class Directions(Enum):
|
||||
|
|
Loading…
Reference in New Issue