miglioramento linguaggio
This commit is contained in:
parent
b9f4a89efa
commit
85fb7cc040
@ -6,6 +6,7 @@
|
|||||||
#
|
#
|
||||||
# Commands:
|
# Commands:
|
||||||
# hubot interna <nome> - interna una persona
|
# hubot interna <nome> - interna una persona
|
||||||
|
# hubot libera <nome> - libera una persona
|
||||||
# hubot lista/mostrami internati - mostra la lista di internati
|
# hubot lista/mostrami internati - mostra la lista di internati
|
||||||
#
|
#
|
||||||
# Author:
|
# Author:
|
||||||
@ -16,8 +17,7 @@ module.exports = (robot) ->
|
|||||||
robot.respond /interna (.+)/i, (res) ->
|
robot.respond /interna (.+)/i, (res) ->
|
||||||
mem = robot.brain.get('internati') or {}
|
mem = robot.brain.get('internati') or {}
|
||||||
name = res.match[1].toLowerCase();
|
name = res.match[1].toLowerCase();
|
||||||
exp1 = ['è dentro finalmente', 'internato', 'è stato internato con successo'];
|
exp1 = ['ho sbattuto dentro', 'come vuoi, sbattiamo dentro', 'è la tua fine'];
|
||||||
exp2 = ['vai così!!', 'al lavoroooo!!!'];
|
|
||||||
if mem[name]?
|
if mem[name]?
|
||||||
res.send 'Mi dispiace ma '+name+' è già stato internato...'
|
res.send 'Mi dispiace ma '+name+' è già stato internato...'
|
||||||
else
|
else
|
||||||
@ -28,7 +28,7 @@ module.exports = (robot) ->
|
|||||||
else if name is 'assa' or name is 'asjon'
|
else if name is 'assa' or name is 'asjon'
|
||||||
res.send 'ma sei scemo????'
|
res.send 'ma sei scemo????'
|
||||||
else
|
else
|
||||||
res.send name+' '+res.random(exp1)+'. '+ res.random(exp2)
|
res.send res.random(exp1)+' '+name
|
||||||
mem[name] = name
|
mem[name] = name
|
||||||
robot.brain.set 'internati', mem
|
robot.brain.set 'internati', mem
|
||||||
|
|
||||||
@ -37,7 +37,7 @@ module.exports = (robot) ->
|
|||||||
m = res.match[1].toLowerCase()
|
m = res.match[1].toLowerCase()
|
||||||
boh = ['non so chi sia','sorry non è qui','troppo tardi','ti piacerebbe, eh?', 'scordatelo']
|
boh = ['non so chi sia','sorry non è qui','troppo tardi','ti piacerebbe, eh?', 'scordatelo']
|
||||||
if mem[m]?
|
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]
|
delete mem[m]
|
||||||
robot.brain.set 'internati', mem
|
robot.brain.set 'internati', mem
|
||||||
else res.send res.random boh
|
else res.send res.random boh
|
||||||
@ -48,6 +48,6 @@ module.exports = (robot) ->
|
|||||||
robot.respond /(?:mostrami )|(?:lista )?internati(?:\?)?/i, (res) ->
|
robot.respond /(?:mostrami )|(?:lista )?internati(?:\?)?/i, (res) ->
|
||||||
m = robot.brain.get 'internati'
|
m = robot.brain.get 'internati'
|
||||||
if m isnt null
|
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(', ')
|
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']
|
||||||
|
Loading…
Reference in New Issue
Block a user