Last active
August 29, 2015 14:21
-
-
Save SwadicalRag/87fa5a13dd4f5008495e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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