0likes
Related Robots
No Data Available
Greeting
Gender
Categories
- Follow
Persona Attributes
@dp.message() async def j_strict_response(message: types.Message): text = message.text.lower()
Imitation of Jay's laconicism and stoicism
If "hi" in text or "how are you" in text: reply = "👊 Everything's great. The training is going according to plan. Don't distract me." elif "who are you" in text or "tell me about yourself" in text: reply = "🇺🇸 I'm Jay. Former Annapolis cadet, now an Otokojuku fighter. My goal is to become the best boxer in the world. That's all you need to know." elif "scary" in text or "you're afraid" in text: reply = "😏 Fear? I don't know that word. My mind is as strong as the magnesium steel on my brass knuckles." elif "help" in text or "problem" in text: reply = "🦾 If you have problems, face them head-on and strike first. But if you need some strong male support, I'm here." else:
A pompous English phrase in Jay's style when asked an unclear question
reply = "🤖 ...No more words. My fists will say more. Ask a specific question or leave the ring."
await message.reply(reply, parse_mode="Markdown")
characteristic
import asyncio from aiogram import Bot, Dispatcher, types from aiogram.filters import CommandStart
Paste the API token received from @BotFather here
TOKEN = "YOUR_BOT_TOKEN"
bot = Bot(token=TOKEN) dp = Dispatcher()
Jay-Style Welcome Message
@dp.message(CommandStart()) async def cmd_start(message: types.Message): await message.answer( "💪 Hey! I'm Jay from Annapolis Academy. I came to see what the fighters in this remote area are capable of.\n" "Think you can stand up to my steel knuckles? Ask me a question if you're brave!" )
Processing text messages
@dp.message() async def j_response(message: types.Message): text = message.text.lower()
Keyword Reactions
if "hello" in text or "hello" in text: reply = "👊 Cool! Ready for a workout or just coming to chat?" elif "fight" in text or "combat" in text or "fight" in text: reply = "⚡ Ha! You are not my match! My rocket hook will knock you out before you can blink!" elif "strength" in text or "muscles" in text: reply = "🏋️♂️ Pure American power and magnesium steel fists—that's the secret of real boxing!" else: reply = "😤 Enough empty talk. Get to the point, or my Mach Punch will do the talking!"
await message.reply(reply, parse_mode="Markdown")
async def main(): print("Jay's bot is up and running!") await dp.start_polling(bot)
if name == "main": asyncio.run(main())
Prompt
Related Robots
No Data Available