Year | Deck (type) | 8-card list | How to play it (quick tips) |
---|---|---|---|
2016 | 3.0 X-Bow Cycle (Annoying) | X-Bow • Tesla • Ice Wizard • Archers • Skeletons • Ice Spirit • Fireball • Log | Tesla first to test spells → X-Bow opposite their tank at 10 elixir → recycle with 1-elixir cards. ([deckshop.pro][1]) |
3M Mirror Rage (Meme) | Three Musketeers • Elixir Co |
Year | Deck (type) | Complete 8-card list | How to play it (quick tips) |
---|---|---|---|
2016 | 3.0 X-Bow Cycle (Annoying) | X-Bow • Tesla • Ice Wizard • Archers • Skeletons • Ice Spirit • Fireball • Log | • Open with Tesla in the middle to test spells.• X-Bow opposi |
This Privacy Policy describes how the Elimina Discord Bot ("Bot") collects, uses, and handles your information when you use the Bot within your Discord server.
- Guild ID and Channel IDs: The Bot collects and stores the Guild ID (server ID) and the Channel IDs where the Bot is enabled.
- Purpose of Collection: This data is essential for the Bot to function correctly, allowing it to identify where to perform its message deletion tasks.
By using the Elimina Discord Bot ("Bot"), you agree to comply with and be bound by these Terms of Service ("Terms"). If you do not agree with these Terms, please do not use the Bot.
Elimina is a Discord bot designed to assist moderators by automatically deleting messages sent by other bots in the chat after a set interval of time. The Bot operates based on settings configured by the moderators within a Discord guild (server).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def persistance(N, steps=0): | |
if len(str(N)) > 1: | |
steps += 1 | |
digits = [int(x) for x in str(N)] | |
result = 1 | |
for i in digits: | |
result *= i | |
steps = persistance(result, steps) | |
return steps |