# Cool games you get lost in
# Streamlined tech stack - rapid 2D game dev
# Regular awesome neon-junky games

...

def lostGames(damon, blu, lazer, laura):
    brand = { 
        "style": "2D, colors + numbers",
        "art": "minimal",
        "motto": "no words, all game"}
    return damon()+blu()+lazer()+laura()
    
Office

...

def damon(time, imagination):
    # Industry vet damon branch
    if time == "5am" and imagination == "on":
        print("Coding game engine...")
        return ["game_ideas", "tech_stack"]
    else:
        return ["sleep", "coffee"]
        
Damon

...

def blu(guitar, social_media):
    # Sfx and music, jamming between tweets
    if guitar == "strumming":
        sounds = ["pew", "zap", "boop"],
        music = "epic_8bit_loop.mp3"
    if social_media == "scrolling":
        sounds.append("notification_boop")
    return sounds + [music]
        
Blu

...

def lazer(roblox, testing):
    # Testing dynamo, when not lost in Roblox
    if roblox == "always":
        effort = "minimal"
    else:
        effort = "relentless"
    return {"bugs_squashed": 42 * effort}
        
Lazer

...

def laura(reviews, marketing):
    """PR, comms, and social darling"""
    campaign = {
        reviews: "5 stars",
        social: ["tweets", "posts"],
        marketing: "campaign" }
    return campaign
        
Laura