Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove unused worksheet fields #1630

Merged
merged 1 commit into from
Mar 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions aimmo/worksheets.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ class Worksheet:
description: str
image_path: str
short_description: str
sort_order: int
thumbnail_image_path: str
thumbnail_text: str
student_challenge_url: str

Expand Down Expand Up @@ -58,8 +56,6 @@ def next_turn(world_state, avatar_state):
description="While working at the Scriptsonian museum for class credit, you have accidentally activated the mysterious Kurono time machine! The museum’s valuable artefacts are scattered across the shelves, the floor, the whole spacetime continuum. It’s going to take more than just a backpack to collect them all. You need to use the Kurono time machine to get them back – but before jumping in you need to learn how to use its navigation system. This challenge shows you how to move around the map so you don’t run into problems in the future…or past.",
image_path="images/worksheets/future.jpg",
short_description="While working at the Scriptsonian museum for class credit, you have accidentally activated the mysterious Kurono time machine!",
sort_order=100,
thumbnail_image_path="images/worksheets/lock.png",
thumbnail_text="",
student_challenge_url="https://code-for-life.gitbook.io/learning-resources/student-challenges/student-challenge-1",
),
Expand Down Expand Up @@ -115,8 +111,6 @@ def next_turn(world_state, avatar_state):
description="Now that you know how to navigate, it’s time to clean up the evidence before leaving this timeline! Some of the artefacts escaped the vortex and ended up all over the museum - if each of you picks one of them up, you should be ready to embark on your journey!",
image_path="images/worksheets/future.jpg",
short_description="Now that you know how to navigate, it’s time to clean up the evidence before leaving this timeline!",
sort_order=200,
thumbnail_image_path="images/worksheets/lock.png",
thumbnail_text="",
student_challenge_url="https://code-for-life.gitbook.io/learning-resources/student-challenges/student-challenge-2",
),
Expand Down Expand Up @@ -169,8 +163,6 @@ def next_turn(world_state, avatar_state):
description="You are now familiar with your equipment and have managed to unlock the gateway to the first time checkpoint. You find yourself in a strange place, full of familiar structures in the form of ruins. You see artefacts of different types scattered around you, where to start? Luckily, your navigator is working... You can use it to scan your surroundings and walk towards the artefacts. If you and your friends pick up five artefacts each, you should be done in no time!",
image_path="images/worksheets/ancient.jpg",
short_description="You find yourself in a strange place, full of familiar structures in the form of ruins.",
sort_order=300,
thumbnail_image_path="images/worksheets/lock.png",
thumbnail_text="",
student_challenge_url="https://code-for-life.gitbook.io/learning-resources/student-challenges/student-challenge-3",
),
Expand All @@ -189,8 +181,6 @@ def next_turn(world_state, avatar_state):
description="After successfully collecting all the missing artefacts from the first time checkpoint, you arrive at what looks like the 21st century. You recognise some cars parked here and there, old-fashioned roads and houses like the ones your history teacher told you about. On the bright side, you seem to be alone and safe to walk around... for now. A more recent timeline doesn’t make artefacts easier to find, though. Or at least not the right ones. In this timeline there seems to be an amount of falsified objects that resemble the ones you’re looking for, but aren’t quite genuine. These will have no value in the museum. Your navigation system will be able to tell you whether an object is genuine or not, but it’s up to you to decide which ones to bring back!",
image_path="images/worksheets/modern.jpg",
short_description="After successfully collecting all the missing artefacts from the first time checkpoint, you arrive at what looks like the 21st century.",
sort_order=400,
thumbnail_image_path="",
thumbnail_text="Coming Soon",
student_challenge_url="",
),
Expand All @@ -209,8 +199,6 @@ def next_turn(world_state, avatar_state):
description="Oh no! Looks like the time machine has taken you even further back in time. You find yourself in a place that looks very… wild. You can hear the occasional distant roaring, added to the buzzing of what sound like gigantic insects. Vegetation is so abundant around you that you can barely move. It might be a good idea to use your navigation system to scan all around you before even trying! And don’t forget to keep track of the portal that’ll send you back to your original timeline - just in case something with sharp teeth starts running towards you.",
image_path="images/worksheets/prehistory.jpg",
short_description="Oh no! Looks like the time machine has taken you even further back in time. You find yourself in a place that looks very… wild.",
sort_order=500,
thumbnail_image_path="",
thumbnail_text="Coming Soon",
student_challenge_url="",
),
Expand All @@ -229,8 +217,6 @@ def next_turn(world_state, avatar_state):
description="You’ve made it! Well, almost. You’re back to your original time, but something seems to be off. The museum is still there, with all the chaos you still need to tidy up, but the environment isn’t quite right. The electronic containers and shelves seem slightly different, and when the AI interlocutor speaks, you don’t recognise the language. It looks like you’ve changed something in the past that affected events in your present! If you manage to extract the metadata from the recovered artefacts, you should be able to find out which timelines they were found in. You can input this text into the Kurono machine to get things back to normal.",
image_path="images/worksheets/broken_future.jpg",
short_description="You’ve made it! Well, almost. You’re back to your original time, but something seems to be off.",
sort_order=600,
thumbnail_image_path="",
thumbnail_text="Coming Soon",
student_challenge_url="",
),
Expand Down