Fear and Loathing in Las Vegas

journalist =
    drugs: "mescaline"
    other_drugs:"lsd"
    more_drugs:"adrenochrom"
    why_not_more_drugs:"cocaine"
    fun_things:"dr gonzo freaking out"
   
las_vegas = [ journalist ]

for raoul_duke in las_vegas
    for fear, loathing of raoul_duke.drug_induced_states
        case loathing
            when "mescaline"
                console.log "We can't stop here! This is bat country!"
            when "lsd"
                lizardOrgy()
            when "dr gonzo freaking out"
                throw "grapefruit", "bathtub"
            when "adrenochrom"
                wear "lizard tail"
                flood "hotel room"
             when "cocaine"
                attendPoliceConference()

plot?()