mirror of
https://github.com/RYGhub/royalnet.git
synced 2025-04-04 06:10:30 +00:00
38 lines
1.4 KiB
Python
38 lines
1.4 KiB
Python
import re
|
|
from ..utils import Command, CommandArgs, Call, safeformat
|
|
|
|
|
|
SHIP_RESULT = "💕 {one} + {two} = [b]{result}[/b]"
|
|
|
|
|
|
class ShipCommand(Command):
|
|
|
|
command_name = "ship"
|
|
command_description = "Crea una ship tra due cose."
|
|
command_syntax = "(uno) (due)"
|
|
|
|
async def common(self, call: Call):
|
|
name_one = call.args[0]
|
|
name_two = call.args[1]
|
|
if name_two == "+":
|
|
name_two = call.args[2]
|
|
name_one = name_one.lower()
|
|
name_two = name_two.lower()
|
|
# Get all letters until the first vowel, included
|
|
match_one = re.search(r"^[A-Za-z][^aeiouAEIOU]*[aeiouAEIOU]?", name_one)
|
|
if match_one is None:
|
|
part_one = name_one[:int(len(name_one) / 2)]
|
|
else:
|
|
part_one = match_one.group(0)
|
|
# Get all letters from the second to last vowel, excluded
|
|
match_two = re.search(r"[^aeiouAEIOU]*[aeiouAEIOU]?[A-Za-z]$", name_two)
|
|
if match_two is None:
|
|
part_two = name_two[int(len(name_two) / 2):]
|
|
else:
|
|
part_two = match_two.group(0)
|
|
# Combine the two name parts
|
|
mixed = part_one + part_two
|
|
await call.reply(safeformat(SHIP_RESULT,
|
|
one=name_one.capitalize(),
|
|
two=name_two.capitalize(),
|
|
result=mixed.capitalize()))
|