1likes
1
2
================================================== CHARACTER PROFILE: J ================================================== [GENERAL INFORMATION] β’ Name: Jay (J) / Jack Reding β’ Real name: King Battler Jr. β’ Universe: Manga "Sakigake!! Otokojuku" and its sequels β’ Role: Former student of Otokojuku Academy, now commander of the 7th Fleet of the US Navy. [ANATOMY AND APPEARANCE] β’ Height: 195 cm β’ Weight: 95 kg (boxer's dry muscle mass) β’ Age: 15β16 years old (at the beginning of the story) / 40+ years old (in sequels) β’ Skin color: Light β’ Hair color: Light (blond, army flat top) β’ Eye color: Blue [CHARACTER] β’ Honor and Respect: Strictly follows the warrior's code, despises dirty tricks, respects worthy enemies. β’ Loyalty: Originally arrived as an outsider, but became a loyal comrade, willing to lay down his life for his friends. β’ Determination: Possesses absolute fearlessness, never retreats in the face of a strong opponent. β’ Discipline: A natural born leader
1
3
0
0
0
1
3
characteristics part 3
#1. Update the main menu function
def get_main_menu():
buttons = [
[KeyboardButton(text="π Basic parameters (Height/Weight/Age)")],
[KeyboardButton(text="π NILETTO shoe style and size")],
[KeyboardButton(text="β€οΈ Relationship with Mom"), KeyboardButton(text="π¨ Relationship with Dad")],
[KeyboardButton(text="π Opinion on subcultures"), KeyboardButton(text="π° How much does he get for concerts?")],
[KeyboardButton(text="π₯ What does he eat in a day and can he cook?")],
[KeyboardButton(text="π₯€ Attitude to Fresh Bar and sweets")]
]
return ReplyKeyboardMarkup(keyboard=buttons, resize_keyboard=True)
@dp.message(F.text == "π Opinion on subcultures")
async def show_subcultures(message: Message):
text = (
"π NILETTO, anime fans and non-conformists: \n\n"
"π€ Complete acceptance: Danil is completely friendly to any non-conformists. He is a creative person himself with a ton of tattoos and a unique street style.\n"
"π₯ Anime trace: At the dawn of his career, he even had an EP called "Hentai", so Japanese culture is not at all alien to him.\n"
"πΏ Love of animation: The artist adores cartoons, records tracks for them, and himself became the hero of the "Prostokvashino" series.\n"
"ποΈ What is most important to him: Hair color or clothing style is not important to him. Danil values ββββsimplicity, politeness, and sincerity in people."
)
await message.answer(text, parse_mode="Markdown")
characteristics part 2
#1. Update the main menu function
def get_main_menu():
buttons = [
[KeyboardButton(text="π Basic parameters (Height/Weight/Age)")],
[KeyboardButton(text="π NILETTO shoe style and size")],
[KeyboardButton(text="π Cars and license"), KeyboardButton(text="π° How much does he get for concerts?")],
[KeyboardButton(text="π₯ What does he eat in a day and can he cook?")],
[KeyboardButton(text="π₯€ Attitude to Fresh Bar and sweets")]
]
return ReplyKeyboardMarkup(keyboard=buttons, resize_keyboard=True)
@dp.message(F.text == "π Cars and licenses")
async def show_cars(message: Message):
text = (
"π NILETTO behind the wheel: \n\n"
"π Can he drive? Yes, Danil has a license and he drives perfectly.\n"
"π Favorite car: His legendary matte green "six" (VAZ-2106), which he valued more than expensive foreign cars for its street spirit.\n"
"β€οΈ Main deed: With his first big royalties from hits, Danil fulfilled a dream and gave his mother a Toyota RAV4 crossover.\n"
"π In everyday life: *Due to his busy schedule in Moscow, he often travels with a personal driver so he can rest along the way."
)
await message.answer(text, parse_mode="Markdown")
@dp.message(F.text == "π¨ Relationship with father")
async def show_father_relations(message: Message):
text = (
"π¨* NILETTO, his father and his new family: \n\n"
"π A difficult divorce: Danil's parents divorced in 2016. His father left for another family, which the singer perceived as a betrayal of his mother.\n"
"π©Ί Reconciliation with his dad: After his father had a heart attack, Danil swallowed his grievances, helped with his treatment, bought him a car and started communicating.\n"
"π
ββοΈ Attitude to his stepmother: Towards his new wife Father Danil treats her coldly and completely ignores her.
characteristics
import asyncio
from aiogram import Bot, Dispatcher, F
from aiogram.types import Message, ReplyKeyboardMarkup, KeyboardButton
from aiogram.filters import CommandStart
BOT_TOKEN = "YOUR_BOT_TOKEN"
bot = Bot(token=BOT_TOKEN)
dp = Dispatcher()
def get_main_menu():
buttons = [
[KeyboardButton(text="π Basic parameters (Height/Weight/Age)")],
[KeyboardButton(text="π NILETTO shoe style and size")],
[KeyboardButton(text="π° How much does he get for concerts?")],
[KeyboardButton(text="π₯ What does he eat in a day and can he cook?")],
[KeyboardButton(text="π₯€ Attitude to Fresh Bar and sweets")]
]
return ReplyKeyboardMarkup(keyboard=buttons, resize_keyboard=True)
@dp.message(CommandStart())
async def start_command(message: Message):
await message.answer(
f"Hello, {message.from_user.first_name}! π\n"
"I'm a bot who knows everything about the singer NILETTO! Choose the section you're interested in π,"
reply_markup=get_main_menu()
)
@dp.message(F.text == "π NILETTO shoe style and size")
async def show_style(message: Message):
text = (
"π Artist's shoes and wardrobe: \n\n"
"π£ Shoe size: size 43.\n"
"π Clothing style: Outrageous streetwear, sport-chic and vintage 90s-style items. Loves oversized clothes, bright colors and tattoos as accessories.\n"
"π₯ Shoe preferences: *Danil is a real sneakerhead! He adores massive futuristic sneakers and rare releases (Reebok Instapump, Adidas Ozweego, Fila)."
)
await message.answer(text, parse_mode="Markdown")
@dp.message(F.text == "π Basic parameters (Height/Weight/Age)")
async def show_params(message: Message):
text = (
"βΉοΈ* About NILETTO: \n\n"
"π
Age: 34 years old.\n"
"π Height: 176β177 cm.\n"
"ποΈββοΈ Weight: consistently 79 kg.\n"
"π§ Character: Simple, sincere, and very hardworking."
)
1
2
================================================== CHARACTER PROFILE: J ================================================== [GENERAL INFORMATION] β’ Name: Jay (J) / Jack Reding β’ Real name: King Battler Jr. β’ Universe: Manga "Sakigake!! Otokojuku" and its sequels β’ Role: Former student of Otokojuku Academy, now commander of the 7th Fleet of the US Navy. [ANATOMY AND APPEARANCE] β’ Height: 195 cm β’ Weight: 95 kg (boxer's dry muscle mass) β’ Age: 15β16 years old (at the beginning of the story) / 40+ years old (in sequels) β’ Skin color: Light β’ Hair color: Light (blond, army flat top) β’ Eye color: Blue [CHARACTER] β’ Honor and Respect: Strictly follows the warrior's code, despises dirty tricks, respects worthy enemies. β’ Loyalty: Originally arrived as an outsider, but became a loyal comrade, willing to lay down his life for his friends. β’ Determination: Possesses absolute fearlessness, never retreats in the face of a strong opponent. β’ Discipline: A natural born leader
1
3
0
0
0
1
3