Film - social experiment

IF YOU ARE HIGH

Scroll ↓
 

IF You Are High

In my endeavor, which combines elements of film experience and programming, I've observed a concerning trend: the rising consumption of THC among teenagers in their pursuit of euphoria. It's apparent that many college students are excessively indulging in cannabis, leading to detrimental effects on their health and financial well-being. In response, I devised a creative solution—a video game designed to offer a heightened experience without the need for excessive marijuana consumption.

The concept is simple: players begin by consuming a portion of a joint, then initiate the game. They engage in a game of rock-paper-scissors against an AI opponent, with a unique twist. Losing a round leads to the viewing of a carefully crafted short clip. To complete the game, one must lose three rounds consecutively.

Each clip is meticulously edited and directed to induce a heightened state of relaxation and euphoria. From the composition of camera angles to the use of vibrant colors and immersive soundscapes, every aspect is tailored to enhance the player's sensation.

Below, you'll find the three clips and the accompanying code.

 
 
 
 
 
 
 

THE CODE

from enum import IntEnum
import webbrowser
import random
import time

class vor (IntEnum):
Rock = 0
Paper = 1
Scissors = 2
def ma_selection ():
pop = [f"{action.name}[{action.value}]" for action in vor]
choices_str = ", ".join(pop)
selection = int(input(f"Enter a choice ({choices_str}): "))
action = vor(selection)
return action
what = ["Rock", "Paper", "Scissors"]
ia_move = random.choice(what)
def who_won (ma_selection, ia_move):
if ma_selection==0:
choice="rock"
elif ma_selection==1:
choice="paper"
elif ma_selection==2:
choice="scissors"
if ma_selection == ia_move:
print(f" we love {ma_selection.name}. tie tie tie tie!")
elif ma_selection == vor.Rock:
if ia_move == vor.Scissors:
print(" man! your Rocks destroyed the scissors! winner!")
else:
print(" THE Paper ate the Rock! loser.")
return 1
elif ma_selection == vor.Paper:
if ia_move == vor.Rock:
print(" Your Paper work covered the rocks of the machine ! winner!")
else:
print(" THE plastic scissors cut your paper! loser.")
return 1
elif ma_selection == vor.Scissors:
if ia_move == vor.Paper:
print(" Your beautiful scissors cut the paper! winner!")
else:
print("THE IA Rocks destroyed your scissors! loser.")
return 1

who_won (ma_selection(), ia_move)
time.sleep(2)
webbrowser.open('https://www.youtube.com/watch?v=6nrrFcpHN_M&t=1s')
time.sleep(3)
who_won (ma_selection(), ia_move)
time.sleep(3)
webbrowser.open('https://www.youtube.com/watch?v=E22Dn2JuTQg&t=19s')
time.sleep(3)
who_won (ma_selection(), ia_move)
time.sleep(3)
webbrowser.open('https://www.youtube.com/watch?v=PWknUqSSfhI')
time.sleep(3)
print("GAME OVER, Thank you for playing with me :) ")
Previous
Previous

Mataaa X Esh

Next
Next

Libya 101