You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ebermergen-td/srv/ebermergen/lib/__init__.py

9 lines
194 B
Python

import random
TERRAIN_TYPES = [0, 1, 2, 3]
def generate_map(dimensions):
x_len, y_len = dimensions
return [[random.choice(TERRAIN_TYPES) for y in range(y_len)] for x in range(x_len)]