miglioramento linguaggio

This commit is contained in:
ravinderpal 2015-04-26 04:13:34 +02:00
parent b9f4a89efa
commit 85fb7cc040

View File

@ -6,6 +6,7 @@
#
# Commands:
# hubot interna <nome> - interna una persona
# hubot libera <nome> - libera una persona
# hubot lista/mostrami internati - mostra la lista di internati
#
# Author:
@ -16,8 +17,7 @@ module.exports = (robot) ->
robot.respond /interna (.+)/i, (res) ->
mem = robot.brain.get('internati') or {}
name = res.match[1].toLowerCase();
exp1 = ['è dentro finalmente', 'internato', 'è stato internato con successo'];
exp2 = ['vai così!!', 'al lavoroooo!!!'];
exp1 = ['ho sbattuto dentro', 'come vuoi, sbattiamo dentro', 'è la tua fine'];
if mem[name]?
res.send 'Mi dispiace ma '+name+' è già stato internato...'
else
@ -28,7 +28,7 @@ module.exports = (robot) ->
else if name is 'assa' or name is 'asjon'
res.send 'ma sei scemo????'
else
res.send name+' '+res.random(exp1)+'. '+ res.random(exp2)
res.send res.random(exp1)+' '+name
mem[name] = name
robot.brain.set 'internati', mem
@ -37,7 +37,7 @@ module.exports = (robot) ->
m = res.match[1].toLowerCase()
boh = ['non so chi sia','sorry non è qui','troppo tardi','ti piacerebbe, eh?', 'scordatelo']
if mem[m]?
res.send 'ho liberato "'+mem[m]+'" ma ricordate che sarà sempre il benvenuto qui ;)'
res.send 'ho liberato "'+mem[m]+'" ma ricordate che potete sbatterlo dentro quando volete ;)'
delete mem[m]
robot.brain.set 'internati', mem
else res.send res.random boh
@ -48,6 +48,6 @@ module.exports = (robot) ->
robot.respond /(?:mostrami )|(?:lista )?internati(?:\?)?/i, (res) ->
m = robot.brain.get 'internati'
if m isnt null
r = ['ho internato', 'ho preso', 'ho catturato']
r = ['ho internato', 'ho preso', 'ho catturato', 'sbattuto dentro']
res.send 'negli ultimi giorni '+res.random(r)+' '+(i for i of m).join(', ')
else res.send res.random ['nessun prigioniero...', 'nessuno. mandatemi qualcuno']
else res.send res.random ['sorry, nessun prigioniero...', 'nessuno. mandatemi subito qualcuno']