From 52696a064ca014339dd2fea40c26eb0ab8c61caf Mon Sep 17 00:00:00 2001 From: Jacob Wolf Date: Mon, 10 Aug 2020 12:24:30 +0800 Subject: [PATCH] updated image to come from assests folder renamed image to .jpg file --- adventure/seafloor/coral_reef/chest.py | 3 ++- returnToShip.py | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/adventure/seafloor/coral_reef/chest.py b/adventure/seafloor/coral_reef/chest.py index ff3f315..9087d8d 100644 --- a/adventure/seafloor/coral_reef/chest.py +++ b/adventure/seafloor/coral_reef/chest.py @@ -1,5 +1,6 @@ # This is a Python program. You should run it by typing "chest.py" +import os from urllib.request import urlretrieve import threading import datetime @@ -36,7 +37,7 @@ guess = input(" > ") if guess == secret: print(" The chest snaps open, releasing several huge air bubbles.") print(" You look into the chest and see...\n") - urlretrieve("http://chrisproctor.net/images/fork.png", "treasure.png") + os.system('cp ./../../../.assets/fork.jpg treasure.jpg') timer1 = threading.Timer(1.0, treasure) timer2 = threading.Timer(3.0, monster1) timer3 = threading.Timer(5.0, monster2) diff --git a/returnToShip.py b/returnToShip.py index df3cbc3..64723ef 100644 --- a/returnToShip.py +++ b/returnToShip.py @@ -4,7 +4,7 @@ from datetime import timedelta import subprocess def reset(): - with open("./bag/treasure.png", "w") as keyfile: + with open("./bag/treasure.jpg", "w") as keyfile: keyfile.write("lost") print(" You are swimming as fast as you can towards the boat but you can") @@ -35,7 +35,7 @@ def win(): print(" time to avoid the sea monster's vicious maw.") print(" You're safe at last!") print(" Now you can finally show off the treasure you risked your life for...") - print(" Use open treasure.png to take a peek.") + print(" Use open treasure.jpg to take a peek.") now = datetime.now() @@ -45,7 +45,7 @@ if not Path("adventure/seafloor/coral_reef/.timer").exists(): print(" to the ship. More secrets await you in the ocean's depths.") else: - if not Path("./bag/treasure.png").exists(): + if not Path("./bag/treasure.jpg").exists(): print(" You forgot your treasure bag! Hurry back to get it before the sea monster") print(" hides it away forever!")