Skip to content

Instantly share code, notes, and snippets.

@SwadicalRag
Last active August 29, 2015 14:21
Show Gist options
  • Save SwadicalRag/87fa5a13dd4f5008495e to your computer and use it in GitHub Desktop.
Save SwadicalRag/87fa5a13dd4f5008495e to your computer and use it in GitHub Desktop.
cookie.maymays.flipTable = function(unflip)
local flips = {
"(╯°□°)╯︵ ┻━┻",
"(ノ ゜Д゜)ノ ︵ ┻━┻",
"(╯°□°)╯︵ ┻━┻ ︵ ╯(°□° ╯)",
"┬─┬ ︵ /(.□. \\)",
"(ノಥ益ಥ)ノ ┻━┻",
"(╯°Д°)╯︵ /(.□ . \\)",
"(╯'□')╯︵ ┻━┻",
"(ノಥДಥ)ノ︵┻━┻・/",
"(/ .□.)\\ ︵╰(゜Д゜)╯︵ /(.□. \\)",
"(._.) ~ ︵ ┻━┻",
"(ʘ∇ʘ)ク 彡 ┻━┻"
}
if(unflip) then
flips = {
"┬─┬ ノ( ゜-゜ノ)",
"(ノ^_^)ノ┻━┻ ┬─┬ ノ( ^_^ノ)"
}
end
local n = n or math.random(1,#flips)
return flips[n]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment