hdkv
/
i2_bot
Archived
1
Fork 0
This repository has been archived on 2022-11-04. You can view files and clone it, but cannot push or open issues/pull-requests.
i2_bot/lib/talkers/easter.go

44 lines
1.4 KiB
Go
Raw Normal View History

2017-10-04 17:56:18 +04:00
// i2_bot Instinct PokememBro Bot
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
package talkers
import (
2017-11-14 03:44:21 +04:00
"github.com/go-telegram-bot-api/telegram-bot-api"
2017-10-18 07:03:34 +04:00
"math/rand"
"time"
2017-10-04 17:56:18 +04:00
)
// DurakMessage is an easter egg
2017-11-14 03:44:21 +04:00
func (t *Talkers) DurakMessage(update *tgbotapi.Update) {
2017-10-18 07:03:34 +04:00
reactions := make([]string, 0)
reactions = append(reactions, "Сам такой!",
"А ты типа нет?",
"Фу, как некультурно!",
"Попка не дурак, Попка самый непадающий бот!")
2017-10-04 17:56:18 +04:00
2017-10-18 07:03:34 +04:00
// Praise the Random Gods!
rand.Seed(time.Now().Unix())
msg := tgbotapi.NewMessage(update.Message.Chat.ID, reactions[rand.Intn(len(reactions))])
msg.ReplyToMessageID = update.Message.MessageID
2017-10-04 17:56:18 +04:00
2017-10-18 07:03:34 +04:00
c.Bot.Send(msg)
2017-10-04 17:56:18 +04:00
}
// MatMessage is an easter rgg
2017-11-14 03:44:21 +04:00
func (t *Talkers) MatMessage(update *tgbotapi.Update) {
2017-10-18 07:03:34 +04:00
reactions := make([]string, 0)
reactions = append(reactions, "Фу, как некультурно!",
"Иди рот с мылом помой",
"Тшшшш!",
"Да я твою мамку в кино водил!",
"Приятно пообщаться с умным собеседником. К тебе это не относится.")
2017-10-04 17:56:18 +04:00
2017-10-18 07:03:34 +04:00
// Praise the Random Gods!
rand.Seed(time.Now().Unix())
msg := tgbotapi.NewMessage(update.Message.Chat.ID, reactions[rand.Intn(len(reactions))])
msg.ReplyToMessageID = update.Message.MessageID
2017-10-04 17:56:18 +04:00
2017-10-18 07:03:34 +04:00
c.Bot.Send(msg)
2017-10-04 17:56:18 +04:00
}