mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Merge branch 'master' of github.com:Steffo99/royalnet
This commit is contained in:
commit
fc0e6e574c
3 changed files with 19 additions and 12 deletions
|
@ -133,17 +133,17 @@ def brawlhalla_rank_change(item, change: typing.Tuple[DirtyDelta, Dirty]):
|
|||
try:
|
||||
if solo.delta >= 10:
|
||||
reply_msg(telegram_bot, main_chat_id, strings.STATSUPDATE.BRAWLHALLA.SOLO,
|
||||
username=item.steam.royal.username,
|
||||
username=item.steam.royal.telegram.mention(),
|
||||
rating=solo.value,
|
||||
delta=solo.delta_string())
|
||||
delta=solo.difference_string())
|
||||
if team.is_dirty():
|
||||
partner = item.best_team_partner
|
||||
if partner is None:
|
||||
other = "???"
|
||||
other = "qualcun altro"
|
||||
else:
|
||||
other = partner.steam.royal.username
|
||||
other = partner.steam.royal.telegram.mention()
|
||||
reply_msg(telegram_bot, main_chat_id, strings.STATSUPDATE.BRAWLHALLA.TEAM,
|
||||
username=item.steam.royal.username,
|
||||
username=item.steam.royal.telegram.mention(),
|
||||
rating=team.value[1],
|
||||
other=other)
|
||||
except Exception:
|
||||
|
|
|
@ -14,8 +14,9 @@ class Dirty:
|
|||
|
||||
|
||||
class DirtyDelta(Dirty):
|
||||
|
||||
@property
|
||||
def delta(self):
|
||||
def difference(self):
|
||||
if self.initial_value is None:
|
||||
initial_value = 0
|
||||
else:
|
||||
|
@ -24,9 +25,13 @@ class DirtyDelta(Dirty):
|
|||
value = 0
|
||||
else:
|
||||
value = self.value
|
||||
return abs(value - initial_value)
|
||||
return value - initial_value
|
||||
|
||||
def delta_string(self):
|
||||
if self.delta > 0:
|
||||
return f"+{self.delta}"
|
||||
return self.delta
|
||||
@property
|
||||
def delta(self):
|
||||
return abs(self.difference)
|
||||
|
||||
def difference_string(self):
|
||||
if self.difference > 0:
|
||||
return f"+{self.difference}"
|
||||
return self.difference
|
||||
|
|
|
@ -26,8 +26,10 @@ emojis = {
|
|||
"a": ["🅰️"],
|
||||
"b": ["🅱️"],
|
||||
"c": ["☪️", "©", "🥐"],
|
||||
"d": ["🇩"],
|
||||
"e": ["📧", "💶"],
|
||||
"f": ["🎏"],
|
||||
"g": ["🇬"],
|
||||
"h": ["🏨", "🏩", "🏋♀", "🏋♂"],
|
||||
"i": ["ℹ️", "♊️", "🕕"],
|
||||
"j": ["⤴️"],
|
||||
|
@ -44,8 +46,8 @@ emojis = {
|
|||
"u": ["⛎", "⚓️", "🍉", "🌙", "🐋"],
|
||||
"v": ["✅", "🔽", "☑️", "✔️"],
|
||||
"w": ["🤷♀","🤷♂", "🤾♀", "🤾♂", "🤽♀", "🤽♂"],
|
||||
"y": ["💴"],
|
||||
"x": ["🙅♀", "🙅♂", "❌", "❎"],
|
||||
"y": ["💴"],
|
||||
"z": ["⚡️"]
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue