1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 03:24:20 +00:00

Update command formatting

This commit is contained in:
Steffo 2021-04-20 02:43:48 +02:00
parent 9506658b43
commit 15c92160c1
Signed by: steffo
GPG key ID: 6965406171929D01
11 changed files with 15 additions and 16 deletions

View file

@ -22,7 +22,7 @@ ANSWERS = [
"🔵 Ovviamente.",
"🔵 Questa domanda ha risposta affermativa.",
"🔵 Hell yeah.",
"🔵 [url=https://www.youtube.com/watch?v=sq_Fm7qfRQk]YES! YES! YES![/url]",
"🔵 YES! YES! YES!",
"🔵 yusssssss",
"🔵 Non vedo perchè no",
"🔵 Ha senso, ha perfettamente senso, nulla da obiettare, ha senso.",
@ -32,7 +32,7 @@ ANSWERS = [
# risposte "no": 19
"❌ No.",
"❌ Decisamente no!",
"❌ Uhm, secondo me sì. No, aspetta, ci ho ripensato. è un no.",
"❌ Uhm, secondo me sì. No, aspetta, ci ho ripensato. È un no.",
"❌ No, no, e ancora NO!",
"❌ Nope.",
"❌ Direi proprio di no.",
@ -43,9 +43,9 @@ ANSWERS = [
"❌ Niente affatto!",
"❌ Questa domanda ha risposta negativa.",
"❌ Hell no.",
"[url=https://www.youtube.com/watch?v=fKEZFRcuEqw]NO! NO! NO![/url]",
"NO! NO! NO!",
"❌ lolno",
"[url=https://www.youtube.com/watch?v=5lbGAzo9RrM]NEIN NEIN NEIN NEIN[/url]",
"NEIN NEIN NEIN NEIN",
"❌ Delet dis",
"❌ Nopety nope!",
"❌ No, ma tienilo segreto.",
@ -60,7 +60,7 @@ ANSWERS = [
"❔ Dunno.",
"❔ Perché lo chiedi a me?",
"❔ Ah, non lo so io!",
"❔ ¯\\_(ツ)_/¯",
r"❔ ¯\_(ツ)_/¯",
"❔ No idea.",
"❔ Dunno.",
"❔ Boooooh!",

View file

@ -14,7 +14,7 @@ async def ciaoruozi(*, _msg: engi.Message, _imp, **__):
sender: royalnet_telethon.bullet.contents.TelegramUser = await _msg.sender
# noinspection PyProtectedMember
if sender._user.id == 112437036:
await _msg.reply(text="👋 Ciao me!")
await _msg.reply(text="👋 Ciao \uE01Bme\uE00B!")
await _msg.reply(text="👋 Ciao Ruozi!")

View file

@ -8,7 +8,7 @@ async def color(*, _msg: engi.Message, **__):
"""
await _msg.reply(
text="I am sorry, unknown error occured during working with your request, Admin were notified"
text="\uE011I am sorry, unknown error occured during working with your request, Admin were notified\uE001"
)

View file

@ -187,7 +187,7 @@ async def dog_breedlist(*, _msg: engi.Message, **__):
Elenca tutte le razze di dogghi disponibili! 🐶
"""
msg = [
"🐶 Razze disponibili:",
"🐶 \uE01BRazze disponibili:\uE00B",
", ".join(_breeds),
]

View file

@ -80,7 +80,7 @@ _emojis = {
@engi.TeleportingConversation
async def emojify(*, message: str, **__):
async def emojify(*, _msg: engi.Message, message: str, **__):
"""
Converti un messaggio in emoji.
"""

View file

@ -29,7 +29,7 @@ _fortunes = [
"🤖 Oggi il Royal Bot ti dirà qualcosa di molto utile!",
"🏠 Oggi qualcuno si autoinviterà a casa tua!",
"📵 Oggi passerai una bella giornata tranquilla senza che nessuno ti chiami!",
"🕸 Oggi cadrai trappola di una ragnatela! O ti arriverà in faccia.",
"🕸 Oggi cadrai trappola di una ragnatela! \uE011O ti arriverà in faccia.\uE001",
"🔮 Oggi chiederai a @royalgamesbot di dirti la tua /fortune!",
"👽 Oggi incontrerai gli UFI!!!1!!uno!",
"🦾 Oggi uno scienziato pazzo ti proporrà di sostituire il tuo braccio con un braccio-razzo meccanico!",

View file

@ -144,7 +144,7 @@ async def prompt_login(channel: engi.Channel, verification_url: str, user_code:
text=f"🌍 Effettua il RYGlogin al seguente URL, poi premi Confirm:\n"
f"{verification_url}\n"
f"\n"
f"(Codice: {user_code})"
f"\uE011(Codice: {user_code})\uE001"
)

View file

@ -21,7 +21,7 @@ async def man(*, _msg: engi.Message, _router: engi.Router, commandname: str, **_
pass
msg = [
f" Manuale di {commandname}:",
f" Manuale di \uE011{commandname}\uE001:",
f"{command.__doc__}",
]

View file

@ -45,7 +45,7 @@ async def ship(*, _msg: engi.Message, first: str, second: str, **__):
# Send the message to the chat
log.debug(f"Sending ship to the chat...")
await _msg.reply(
text=f"💞 {first.capitalize()} + {second.capitalize()} = {combined.capitalize()}"
text=f"💞 {first.capitalize()} + {second.capitalize()} = \uE01B{combined.capitalize()}\uE00B"
)

View file

@ -9,7 +9,7 @@ async def spell(*, _msg: engi.Message, spellname: str, **__):
"""
s = royalspells.Spell(spellname)
rows: list[str] = [f"{s.name}"]
rows: list[str] = [f"\uE01B{s.name}\uE00B"]
if s.damage_component:
dmg: royalspells.DamageComponent = s.damage_component

View file

@ -11,9 +11,8 @@ async def whoami(*, _msg: engi.Message, _user: db.User, **__):
Scopri con che RYGaccount sei loggato.
"""
# TODO: improve output
if _user:
await _msg.reply(text=f"☀️ {_user.name}")
await _msg.reply(text=f"☀️ Sei loggato come \uE01B{_user.name}\uE00B!")
else:
await _msg.reply(text="☁️ Non hai effettuato il login.")