Skip to content
Permalink
Browse files
Update story.py
  • Loading branch information
a committed Oct 7, 2022
1 parent fd668ec commit b635aff13d17ec4a933e99d5d6a2dc21d0ae1d31
Showing 1 changed file with 3 additions and 3 deletions.
@@ -15,7 +15,7 @@ CHAPTERS: list[Chapter] = [
Chapter(
text="It was a bitterly frigid winter day. On a rough rocky plain lay a mechanical head, unlike most mechanical objects this head had consciousness and an innate desire to explore the world and build upon it, but its lack of body and eyes staved off any explorative ambitions. After a week of scurrying around the wilderness using its sheer willpower to compensate for its lack of vision, it noticed a dramatic change in the terrain with once rough stony land becoming paved levelled asphalt; It had discovered the remnants of society. After more scurrying around it entered a building, traversing the structure was much easier than outside due to its confined spaces making it harder to gesture off course. Now deep within the confines of the facility, the atmosphere suddenly became heavy and overpowering. “Hello, you are to be called Stanley” a deep voice bellowed, stunned the mechanical head rolled into a frenzy, rapidly retracing its steps to try to leave the facility. However, the overwhelming presence of the figure weighed him down preventing him from moving. “I will give you a selection of eyes, arms, torsos and legs to choose from make your choice an astute one,” the figure explained. Relayed to its consciousness was a wide array of different eyes, each with unique features and capabilities after careful deliberation Stanley narrowed the list down to two options, Option one a pair of eyes featuring intense lasers, x-ray vision and the ability to see in infrared or Option two, a pair of eyes which featured night vision, strong lenses allowing for an increased focal length and extrasensory perception providing insight into what is in its field of view.",
equipments=[
Equipment(name="Lazer Eye", description="Lazer Eye", power_level=4, utility_level=2),
Equipment(name="Laser Eye", description="Laser Eye", power_level=4, utility_level=2),
Equipment(name="Bionic Eye", description="Bionic Eye", power_level=0, utility_level=0),
]
),
@@ -33,7 +33,7 @@ CHAPTERS: list[Chapter] = [
"Lastly, Stanley looked at the arm on the far right and saw that this arm had a strange look to it. As if it had prongs at the end of the fingertips and once again Stanley’s reliable friend the computer system prompted to life explaining that the arm is a tool kit that is used in unconventional scenarios.",
equipments=[
Equipment(name="Hook Arm", description="a long arm featuring a grappling hook which can be used to quickly scale structures", power_level=2, utility_level=3),
Equipment(name="Lazer Arm", description="an arm featuring a high energy lazer beam. Hard to control", power_level=5, utility_level=1),
Equipment(name="Laser Arm", description="an arm featuring a high energy laser beam. Hard to control", power_level=5, utility_level=1),
Equipment(name="Toolkit Arm", description="the swiss-army knife of arms", power_level=1, utility_level=5)
]
),
@@ -70,4 +70,4 @@ class Ending(Enum):

@classmethod
def from_scores(cls: Type[TEnding], utility: int, power: int) -> TEnding:
return cls.NEGATIVE if power > utility else cls.POSITIVE
return cls.NEGATIVE if power > utility else cls.POSITIVE

0 comments on commit b635aff

Please sign in to comment.