Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- listofobjects = [pipe, wooden-slab, wheels, wooden-planks, coal, campfire, train-tracks, seat, screws, interior]
- print(listofobjects)
- print("What do you do with these objects?")
- print("Choose your first interaction:")
- actionofobjects1 = input()
- if actionofobjects1 == "wooden-slab" or "Wooden-Slab" or "Wooden-slab" or "wooden-Slab":
- print("You place down the wooden-slab, now you need to make it into something...")
- else:
- print("You should try something else first")
- print("So you are done with your first object, now try something else.")
- actionofobjects2 = input()
- if actionofobjects2 == "Wooden-Planks" or "Wooden-planks" or "wooden-planks" or "wooden-Planks":
- print("Great, now you need something to attach the wooden planks to the slab...")
- else:
- print("Try something else")
- print("Second step down, third one coming!")
- actionofobjects3 = input()
- if actionofobjects3 == "Screws" or "screws":
- print("Yeaaaaa, screw them planks!")
- else:
- print("Try something else")
- print("Well done, you really screwed those planks well!")
- actionofobjects4 = input()
- if actionofobjects4 == "Wheels" or "wheels":
- print("Yep, you need them, for what seems now to be a vehicle")
- else:
- print("Try something else")
- print("Nice, now we need to start making this useable and an actual vehicle it would seem")
- actionofobjects5 = input()
- if actionofobjects5 == "Seat" or "seat":
- print("Now you can be comfortable whilst riding ayy")
- else:
- print("Try something else")
- print("Alright, now we need something to propell this beast!")
- actionofobjects6 = input()
- if actionofobjects6 == "Campfire" or "campfire":
- print("Nice engine bro")
- else:
- print("Try something else")
- print("Now we need some fuel")
- actionofobjects7 = input()
- if actionofobjects7 == "Coal" or "coal":
- print("Yep you got that right")
- else:
- print("Try something else")
- print("Now we need something to clear this all out so we don't die")
- actionofobjects8 = input()
- if actionofobjects8 == "Pipe" or "pipe":
- print("Yep, that's an exhaust")
- else:
- print("Try something else")
- print("Now we need some last finishing-touches")
- actionofobjects9 = input()
- if actionofobjects9 == "Interior" or "interior":
- print("ooo being a bit fancy today I see")
- else:
- print("Try something else")
- print("Now we just need to drive this epic homemade train")
- actionofobjects10 = input()
- if actionofobjects10 == "Train-Tracks" or "Train-tracks" or "train-Tracks" or "train-tracks":
- print("vroooooooooooooooooooooooooooom")
- print("The End")
- else:
- print("Try something else")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement