Skip to content
This repository has been archived by the owner on Jul 7, 2021. It is now read-only.

Commit

Permalink
!arrodillarse
Browse files Browse the repository at this point in the history
  • Loading branch information
CosasDePuma committed Apr 4, 2018
1 parent 724609b commit 648f6b0
Showing 1 changed file with 32 additions and 4 deletions.
36 changes: 32 additions & 4 deletions pet.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const msg = document.getElementById('msg')
const pet = document.getElementById('pet')

// Constantes de las configuraciones
const owner = "suraei"
const owner = "bakedpuma"
const animal = "panda"
const current_elo = 'Bronce III'
const rango_lider = "Pizza Suprema"
Expand Down Expand Up @@ -123,6 +123,8 @@ chappie.on("chat", function(channel, user, message, self) {
lider()
} else if(commands[0] == "!luchar") {
luchar(user['display-name'])
} else if(commands[0] == "!arrodillarse") {
arrodillarse(user['display-name'])
}

// Comprobamos si alguien ha saludado
Expand All @@ -138,10 +140,10 @@ chappie.on("chat", function(channel, user, message, self) {
// Actualizamos cual ha sido el ultimo mensaje y de quien
last_msg = user['display-name'] + message
}
})

/*
*/
chappie.on('hosted', function(channel, user, message, self) {

})

// Conectamos el bot al canal si no está conectado ya
Expand Down Expand Up @@ -238,6 +240,32 @@ sillazo = (usuario, victima, isSub) => {
}
}

// -----------------------------------------------------------------------------------------------------------------

arrodillarse = (usuario) => {
// Rutina para arrodillarse ante el lider
if(usuario == actual_lider) {
var quotes = [
'La ' + rango_lider + ' no se arrodilla ante nada ni nadie.'
]
chappie.say(owner, randomQuote(quotes))
} else if(actual_lider == undefined || actual_lider == "") {
var quotes = [
usuario + ' se arrodilla, pero como no hay actual ' + rango_lider + ' se levanta rápidamente y disimula silbando',
usuario + ' intenta arrodillarse pero acaba atándose los cordones disimuladamente al ver que no hay actual ' + rango_lider
]
chappie.say(owner, randomQuote(quotes))
} else {
var quotes = [
usuario + ' se arrodilla ante ' + actual_lider + ', actual ' + rango_lider,
usuario + ' le muestra todos sus repetos a ' + actual_lider + ', actual ' + rango_lider,
usuario + ' se convierte en un súbdito de ' + actual_lider + ', actual ' + rango_lider,
usuario + ' quiere que ' + actual_lider + ', actual ' + rango_lider + ', sepa que le es totalmente fiel'
]
chappie.say(owner, randomQuote(quotes))
}
}

// ---------------------------------------------------------------------------------------

elo = () => {
Expand Down

0 comments on commit 648f6b0

Please sign in to comment.