Skip to content

Instantly share code, notes, and snippets.

View megamaz's full-sized avatar
💻
mid programmer

megamaz

💻
mid programmer
View GitHub Profile
@megamaz
megamaz / Labyrinthfacts.py
Last active July 20, 2020 21:24
Labyrinth
import random
def fact():
facts = ["There are more than 100 lines of code dedicated to mapping! (240, and growing each updates!)", "Tree leafs (fakewallpos, #) were actually the wall texture, before being updated in 1.10 to █", "Monsters and traps currently remain unused", "The very first version of the game had walls randomized and the area size was customizeable.", "The game's first code was written on the 15th october 2018.", "There is a test area almost out of reach."]
fact = random.choice(facts)
print(fact)