Advertisement
omarr0d

Untitled

Dec 12th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. NOTIFY_EGGS = True # Enable egg notifications. Default False
  2. NOTIFY_RAIDS = True # Enable raid notifications. Default False
  3. #TELEGRAM_RAIDS_LVL_MIN = 1
  4. #TELEGRAM_RAIDS_IDS = {143, 248}
  5.  
  6. DEFAULT_EGG_ALARM = {
  7. 'type': 'egg',
  8. 'username': 'Egg Bot',
  9. 'title': "A Level {level} Egg appeared",
  10. 'description': """Gym: {gym_name}
  11. It hatches at: {time_battle_24}
  12. Raid ends at: {raid_end_24}
  13. Google Maps Link: {gmap_link},
  14. Apple Maps Link: {applemap_link}""",
  15. 'level': {'value': 1, 'op': '>='},
  16. 'color': 'GREY', # RED/AQUA/GREEN/BLUE/GOLD/ORANGE/RED/GREY/NAVY
  17. 'avatar_url': EGG_ICONS_URL,
  18. 'gmap_icon_url': GMAP_EGG_ICONS_URL,
  19. 'webhook_url': "https://discordapp.com/api/webhooks/xxxxxxxxxxxxx/xxxxxxxxxxxxxxx"
  20. }
  21.  
  22. DEFAULT_RAID_ALARM = {
  23. 'type': 'raid',
  24. 'username': 'Raid Bot',
  25. 'title': 'A {poke_name} Raid (Level {level}) hatched',
  26. 'description': """Gym: {gym_name}
  27. Until: {raid_end_24}
  28. controlled by: **Team {team}**
  29. Pokemon: **{poke_name}**
  30. Attacks: **{move_1}** / **{move_2}**,
  31. Google Maps Link: {gmap_link},
  32. Apple Maps Link: {applemap_link}""",
  33. 'color': 'BLUE', # RED/AQUA/GREEN/BLUE/GOLD/ORANGE/RED/GREY/NAVY
  34. 'webhook_url': 'https://discordapp.com/api/webhooks/xxxxxxxxxxxxx/xxxxxxxxxxxxxxx'
  35. }
  36.  
  37.  
  38. RAID_ALARMS = {
  39. 'discord': [
  40. {
  41. 'type': 'egg',
  42. 'level': {'value': 4, 'op': '<='},
  43. 'username': 'LVL 1-4 Egg Bot',
  44. 'color': 'NAVY', # RED/AQUA/GREEN/BLUE/GOLD/ORANGE/RED/GREY/NAVY
  45. 'webhook_url': 'https://discordapp.com/api/webhooks/355556714122051584/OXxJPSHg2Tyt3YG8Nv3TP-hjGqoECs2h82YJhqIbMIs0Iu3jKEgxxxxxxxx'
  46. },
  47. {
  48. 'type': 'egg',
  49. 'level': {'value': 5, 'op': '=='},
  50. 'username': 'LVL 5 Egg Bot',
  51. 'color': 'NAVY', # RED/AQUA/GREEN/BLUE/GOLD/ORANGE/RED/GREY/NAVY
  52. 'webhook_url': 'https://discordapp.com/api/webhooks/389481990870532116/xSp7aDkdfNbH0bB6ldta4mqd9-pieyypaybA5Mkbrb24VyHIW-xxxxxxxxx'
  53. },
  54. {
  55. 'type': 'raid',
  56. 'level': {'value': 4, 'op': '<='},
  57. 'username': 'LVL 1-4 Raid Bot',
  58. 'color': 'NAVY', # RED/AQUA/GREEN/BLUE/GOLD/ORANGE/RED/GREY/NAVY
  59. 'webhook_url': 'https://discordapp.com/api/webhooks/356246347688574976/sBmnV_m0WXk6bONW2mJxDMC2bXMeJaq_6w7nxaDvyiM1wu9xxxxxxxx'
  60. },
  61. {
  62. 'type': 'raid',
  63. 'level': {'value': 5, 'op': '=='},
  64. 'username': 'LVL 5 Raid Bot',
  65. 'color': 'NAVY', # RED/AQUA/GREEN/BLUE/GOLD/ORANGE/RED/GREY/NAVY
  66. 'webhook_url': 'https://discordapp.com/api/webhooks/356246025503113217/yxxmKB-V4KzXDP-EOojIgh9tLnT1aa3-UodV3jPhXK0ZapZals7AyhtyRxxxxxxxxx'
  67. }
  68. ]
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement