("building", "office", "building", "office"),
("building", "retail", "building", "industrial"),
("building", "industrial", "building", "industrial"),
+ ("building", "house", "building", "house"),
("building", "yes", "building", "common")
]
("building", "office", 1),
("building", "retail", 1),
("building", "industrial", 1),
+ ("building", "house", 1),
("building", "yes", 1)
]
# Here we need to do some magic to make some features look more natural
if (self._tag == "landuse" and self._value == "meadow") or (self._tag == "natural" and self._value == "grassland") or (self._tag == "natural" and self._value == "heath"):
- amt = randrange(1,3)
+ amt = randrange(1,5)
for i in range(1, amt):
ptc = randrange(1, 7)
img = Image.open(mstr_datafolder + "Textures\\tile\\completion\\p" + str(ptc)+".png")