Skip to content

Instantly share code, notes, and snippets.

View tashachin's full-sized avatar

Ren C. tashachin

View GitHub Profile
@tashachin
tashachin / personal_project.py
Created December 3, 2017 02:28
First terminal-based Python game for Hackbright prep course. WIP.
# Can come back later to set tally to 0 for a "hard mode" option.
def tally_update(value, tally = 3):
"""Retrieves the point value of the player's dialogue option."""
tally = tally + value
if tally < 0:
tally = 0