Skip to content

Commit

Permalink
fix billundted exports
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtazz committed Nov 8, 2012
1 parent 1a9b758 commit 4770246
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions scripts/billundted.coffee
Original file line number Diff line number Diff line change
@@ -1,24 +1,27 @@
#
# Bill and Ted y'all
#

Bills = ["Bill S. Preston, Herrscher über die Sülznasen"]
Hoschi = ["Volle Kanne Hoschi"]
Ted = ["Ted Das Nashorn Logan"]
Zaziki = ["Ins zaziki Griechenland !"]
Kind = ["Klingt extrem cremig Mister Das Kind !"]

module.exports = (robot) ->

robot.hear /Bill|Herrscher|Nasen/i, (msg) ->
msg.reply msg.random Bills
Hoschi = ["Volle Kanne Hoschi"]
module.exports = (robot) ->

robot.hear /Hoschi|granatenstark|Bunt|Dasein/i, (msg) ->
msg.reply msg.random Hoschi
Ted = ["Ted Das Nashorn Logan"]
module.exports = (robot) ->

robot.hear /Ted|Nashorn/i, (msg) ->
msg.reply msg.random Ted
Zaziki = ["Ins zaziki Griechenland !"]
module.exports = (robot) ->

robot.hear /Griechenland|Grieche|zaziki/i, (msg) ->
msg.reply msg.random Zaziki
Kind = ["Klingt extrem cremig Mister Das Kind !"]
module.exports = (robot) ->

robot.hear /Kind|Kid|Billy/i, (msg) ->
msg.reply msg.random Kind

0 comments on commit 4770246

Please sign in to comment.