Checkpoint initial implementation

This commit is contained in:
Andrew Miner
2025-10-06 17:41:18 -06:00
parent 773e0a3d85
commit a8b6e6b15e
106 changed files with 3012 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
# Class ############################################################################################
class Scarcity:
"""
How frequently something appears within a given region.
"""
def __init__(self, name):
self.name = name
def __str__(self) -> str:
return self.name
def __repr__(self) -> str:
return f"Scarcity<{self.name}>"
# Constants ########################################################################################
ABSENT = Scarcity("absent")
RARE = Scarcity("rare")
UNUSUAL = Scarcity("unusual")
SPARSE = Scarcity("sparse")
UNCOMMON = Scarcity("uncommon")
COMMON = Scarcity("common")
CARPET = Scarcity("carpet")
ALL = [ABSENT, RARE, UNUSUAL, SPARSE, UNCOMMON, COMMON, CARPET]