-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
1597 lines (1515 loc) · 83.6 KB
/
Copy pathmain.py
File metadata and controls
1597 lines (1515 loc) · 83.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import discord
from bs4 import BeautifulSoup
from cleverbot import async_ as cleverbot
import aiohttp
import json
import sqlite3
import math
import time
import datetime
from discord.ext import commands
import os
import random
import webbrowser as web
from time import sleep as offset
startup_extensions = ["Music"]
import requests
from discord.ext.commands import Bot
prefix = "/"
bot = commands.Bot(command_prefix=prefix)
bot.remove_command("help")
client = discord.Client()
bot.remove_command("help")
@bot.command(pass_context=True)
async def help(ctx):
embed = discord.Embed(title="AQ3D Community ~ Melodia Bot", description="Here you will find all the help you need. Not satisfied? Tag one of the mods or staff members", color=0x00a0ea)
embed.add_field(name="Character Page".format("null"), value="Use /char for your AQ3D Character profile. Example /char Artix")
embed.add_field(name="AQ3D Servers Status".format("null"), value="Use /status to see AQ3D's servers current status.")
embed.add_field(name="Wiki".format("null"), value="Use /item ItemName to fetch info from an AQ3D item. Example: /item Alpha Knight Armor. (Note: This feature is in progress)")
embed.set_thumbnail(url = "https://media.discordapp.net/attachments/579170793020325888/586399925202583561/ER21_Logo.png")
embed.set_footer(text="Melodia Bot © ~ Developed with ❤ for the AQ3D Community")
await bot.say(embed=embed)
cb = cleverbot.Cleverbot('YOUR_API_KEY', cs='76nxdxIJ02AAA', timeout=60, tweak1=0, tweak2=100, tweak3=100)
try:
cb.say("Hello")
except cleverbot.APIError as error:
print(error.error, error.status)
cb.close()
@bot.command(pass_context = True)
async def mute(ctx, member: discord.Member):
if ctx.message.author.server_permissions.administrator or ctx.message.author.id == '337343219128074240':
role = discord.utils.get(member.server.roles, name='Muted')
await bot.add_roles(member, role)
embed=discord.Embed(title="User Muted!", description="**{0}** was muted by **{1}**!".format(member, ctx.message.author), color=0xff00f6)
await bot.say(embed=embed)
else:
embed=discord.Embed(title="Permission Denied.", description="You don't have permission to use this command.", color=0xff00f6)
await bot.say(embed=embed)
@bot.command()
async def ping(ctx):
await bot.say('Pong! {0}'.format(round(bot.latency, 1)))
@bot.command()
async def shopcmd():
await bot.say("wiki.daily ~ daily cash rewards")
await bot.say("wiki.shop ~ opens the shop")
await bot.say("wiki.cash ~ displays your cash amount")
await bot.say("wiki.inventory ~ displays your inventory")
await bot.say("wiki.buy \"itemname\" ~ buys an item")
@bot.command()
async def dashboard():
embed=discord.Embed(title="Dashboard", url="https://helixbotdashboard.herokuapp.com/", description="Click Dashboard to access HelixBot web dashboard.", color=0x463dfc)
await bot.say(embed=embed)
@bot.command(pass_context=True)
async def suggest(ctx, member : discord.Member, *, content: str):
await bot.send_message(member, content)
@bot.command()
async def news():
await bot.say("https://www.aq3d.com/news")
global categories
categories = ["helms", "shoulders", "armors", "boots", "gloves", "belts", "capes"]
@bot.command()
async def say(*, mess: str):
await bot.say(mess)
@bot.command()
async def invite():
await bot.say("Invite me with this link: https://discordapp.com/oauth2/authorize?client_id=579135470634532894&scope=bot")
@bot.command()
async def load(extension_name : str):
"""Loads an extension."""
try:
bot.load_extension(extension_name)
except (AttributeError, ImportError) as e:
await bot.say("```py\n{}: {}\n```".format(type(e).__name__, str(e)))
return
await bot.say("{} loaded.".format(extension_name))
@bot.command()
async def servers():
embed = discord.Embed(title="Bot Server Count", description="Servers the bot is in.", color=0x00ff00)
embed.add_field(name="Servers: ", value=len(bot.servers))
await bot.say(embed=embed)
letter_a = ["Alpha Knight Armor"]
letter_b = ["Basic Armor", "Battleon Militia", "Beta Berserker", "Blood Knight", "Blue Eye Leather Robe", "Blue Eye Leather Outfit", "Blue Villager Clothing", "Boreal Robe" ]
letter_c_1 = ["Campy Rogue", "Campy Warrior", "Chewed Mystic Robes", "Chewed Warrior Armor", "Chiropteran Armor", "Campy Mage", "Crimson Mage Robes"]
letter_c_2 = ["Chronomancer Armor", "Clawed Rogue Outfit", "Common Darkovian Clothes", "Common Darkovian Dress", "Crimson Battle Mage Robe", "Crusty Inn Keeper Clothes"]
letter_d_1 = ["Dark Defender Armor", "David's Coat", "Defender Guardian Armor", "Defender Knight Armor", "Defender Mage Robes", "Defender Rogue Armor"]
letter_d_2 = [ "Dragon Berserker Armor", "Dragon Champion Armor", "Dragon Stalker Flame Tabard", "Dragon Stalker Gold Tabard", "Dragon Stalker Sky Tabard" "Dragon SLayer Armor"]
letter_d_3 = ["Drake Hunter Flame Tabard", "Drake Hunter Gold Tabard", "Drake Hunter Sky Tabard", "Dread Hood Armor", "Dricken Feathered Robe"]
letter_d_4 = ["Dricken Scaled Armor", "Dusk Hunters Tunic", "Dwarven Foreman Armor", "Dwarven Miner Armor"]
letter_e = ["Ebon Talon Armor", "Elite Dragon Champion", "Elvenguard Armor", "Eternal Chronomancer Armor"]
letter_f = ["Forest Tunic", "Fire Mage Robe", "Fire Rogue Outfit"]
@bot.command(pass_context=True)
async def armors(ctx):
embed = discord.Embed(title="Armors", description="Current armors listed in the wiki bot.", color=0x00a0ea)
embed.set_thumbnail(url="https://thumb.ibb.co/jnBPB7/descarga.png")
embed.add_field(name="Letter A", value=letter_a)
embed.add_field(name="Letter B", value=letter_b)
embed.add_field(name="Letter C", value=letter_c_1)
embed.add_field(name="Letter C", value=letter_c_2)
embed.add_field(name="Letter D", value=letter_d_1)
embed.add_field(name="Letter D", value=letter_d_2)
embed.add_field(name="Letter D", value=letter_d_3)
embed.add_field(name="Letter D", value=letter_d_4)
embed.add_field(name="Letter E", value=letter_e)
embed.add_field(name="Letter F", value=letter_f)
await bot.say(embed=embed)
if __name__ == "__main__":
for extension in startup_extensions:
try:
bot.load_extension(extension)
except Exception as e:
exc = '{}: {}'.format(type(e).__name__, e)
print('Failed to load extension {}\n{}'.format(extension, exc))
belts1 = ['adventurersbelt','alphaknightbelt', 'alphapiratebelt', 'ancientevilwrap', 'ashbrandbelt']
belts2 = ['betaberserkerbelt', 'burntsash', 'campybelt', 'chiropteranbelt', 'chronomancerbelt']
belts3 = ['crimsonbattlemagebelt', 'davidsbelt', 'defenderroguebelt', 'dragonberserkerbelt', 'dragonchampionwrap']
belts4 = ['dragonstalkerbelt', 'dragonslayerbelt', 'drakehunterbelt', 'drickenscaledbelt', 'drickentrophy']
belts5 = ['dwarvenminerbelt', 'elitedragonchampionwrap', 'elvenguardbelt', 'eternalchronomancerbelt','firemagesash']
belts6 = ['fireroguebelt', 'frostdefenderbelt', 'frostlornmagebelt']
@bot.command(pass_context=True)
async def belts(ctx):
embed = discord.Embed(title="belts", description="Current belts listed in the wiki bot.", color=0x00a0ea)
embed.set_image(url="https://thumb.ibb.co/hheFjx/ndice.png")
embed.add_field(name="Belts List", value=belts1)
embed.add_field(name="Belts List", value=belts2)
embed.add_field(name="Belts List", value=belts3)
embed.add_field(name="Belts List", value=belts4)
embed.add_field(name="Belts List", value=belts5)
embed.add_field(name="Belts List", value=belts6)
await bot.say(embed=embed)
@bot.command()
async def status():
async with aiohttp.ClientSession() as session:
async with session.get("http://game.aq3d.com/api/game/ServerList") as response:
parsed = json.loads(await response.text())
embed = discord.Embed(title="AQ3D Server Status", description="Artix Entertainment :copyright:", color=0x00ff00)
embed.add_field(name="Red Dragon :red_circle:", value=parsed[0]["UserCount"])
embed.add_field(name="Blue Dragon :large_blue_circle:", value=parsed[2]["UserCount"])
embed.add_field(name="Total Online :earth_americas:", value=parsed[0]["UserCount"] + parsed[2]["UserCount"])
embed.set_thumbnail(url="https://media.discordapp.net/attachments/579170793020325888/586399925202583561/ER21_Logo.png")
await bot.say(embed=embed)
@bot.command(pass_context=True)
async def rootrealm(ctx):
await bot.say('http://game.aq3d.com/api/game/ServerList')
chronomancer_armor = {
'chronomancer armor', 'Chronomancer armor', 'Chronomancer Armor'
}
alpha_knight_armor = {
'Alpha Knight Armor', 'Alpha knight armor', 'alpha knight armor'
}
battleon_militia_armor = {
'Battleon Militia Armor', 'Battleon militia armor', 'battleon militia armor'
}
beta_berserker = {
'Beta Berserker Armor', 'Beta berserker armor', 'beta berserker armor'
}
blood_knight_armor = {
'Blood Knight Armor', 'Blood knight armor','blood knight armor'
}
campy_rogue = {
'Campy Rogue', 'Campy rogue', 'campy rogue'
}
campy_warrior = {
'Campy Warrior', 'Campy warrior', 'campy warrior'
}
chewed_mystic_robes = {
'Chewed Mystic Robes', 'Chewed mystic robes', 'chewed mystic robes'
}
chewed_warrior_armor = {
'Chewed warrior armor', 'Chewed Warrior Armor', 'chewed warrior armor'
}
chiropteran_armor = {
'Chiropteran Armor', 'Chiropteran armor', 'chiropteran armor'
}
clawed_rogue_outfit = {
'Clawed Rogue Outfit', 'Clawed rogue outfit', 'clawed rogue outfit'
}
commondarkovianclothes = {
'Common Darkovian Clothes', 'Common darkovian clothes',
}
commondarkoviandress = {
'Common Darkovian Dress', 'Common darkovian dress', 'common darkovian dress'
}
crimsonbattlemagerobe = {
'Crimson Battle Mage Robe', 'Crimson battle mage robe', 'crimson battle mage robe'
}
crimsonmagerobes = {
'Crimson Mage Robes', 'Crimson mage robes', 'crimson mage robes'
}
crustyinnkeepersclothes = {
'Crusty inn keepers clothes'
}
darkdefenderarmor = {
'Dark Defender Armor', 'Dark defender armor', 'dark defender armor'
}
davidscoat = {
'Davids Coat', 'Davids coat', 'davids coat', 'david\'s coat'
}
drakehuntergoldtabard = {
'Drake Hunter Gold Tabard', 'Drake hunter gold tabard', 'drake hunter gold tabard'
}
drakehunterskytabard = {
'Drake Hunter Sky Tabard', 'Drake hunter sky tabard', 'drake hunter sky tabard'
}
defenderguardianarmor = {
'Defender Guardian Armor', 'Defender guardian armor', 'defender guardian armor'
}
drakehunterflametabard = {
'Drake Hunter Flame Tabard', 'Drake hunter flame tabard', 'drake hunter flame tabard'
}
drickenfeatheredrobe = {
'Dricken Feathered Robe', 'Dricken feathered robe', 'dricken feathered robe'
}
defenderknightarmor = {
'Defender Knight Armor', 'Defender knight armor', 'defender knight armor'
}
defendermagerobes = {
'Defender Mafe Robes', 'Defender mage robes', 'defender mage robes'
}
defenderroguearmor = {
'Defender Rogue Armor', 'Defender rogue armor', 'defender rogue armor'
}
dragonberserkerarmor = {
'Dragon Berserker Armor', 'Dragon berserker armor', 'dragon berserker armor'
}
dragonslayerarmor = {
'Dragon Slayer Armor', 'DragonSlayer Armor', 'Dragon slayer armor', 'Dragonslayer armor', 'dragon slayer armor', 'dragonslayer armor'
}
dragonchampionarmor = {
'Dragon Champion Armor', 'Dragon champion armor', 'dragon champion armor'
}
dragonstalkerflametabard = {
'Dragon Stalker Flame Tabard', 'Dragon stalker flame tabard', 'dragon stalker flame tabard'
}
dragonstalkerskytabard = {
'Dragon Stalker Sky Tabard', 'Dragon stalker sky tabard', 'dragon stalker sky tabard'
}
dreadhoodarmor = {
'Dread Hood Armor', 'Dread hood armor', 'dread hood armor', 'dreadhood armor'
}
drickenfeatheredarmor = {
'Dricken Feathered Armor', 'Dricken feathered armor', 'dricken feathered armor'
}
drickenscaledarmor = {
'Dricken Scaled Armor', 'Dricken scaled armor', 'dricken scaled armor'
}
duskhunterstunic = {
'Dusk Hunters Tunic', 'Dusk hunters tunic', 'dusk hunters tunic'
}
dwarvenforemanarmor = {
'Dwarven Foreman Armor', 'Dwarven foreman armor', 'dwarven foreman armor'
}
dwarvenminerarmor = {
'Dwarven Miner Armor', 'Dwarven miner armor', 'dwarven miner armor'
}
ebontalonarmor = {
'Ebon Talon Armor', 'Ebon talon armor', 'ebon talon armor'
}
elitedragonchampionarmor = {
'Elite Dragon Champion Armor', 'Elite dragon champion armor', 'elite dragon champion armor'
}
elvenguardarmor = {
'Elvenguard Armor', 'Elvenguard armor', 'elvenguard armor'
}
eternalchronomancerarmor = {
'Eternal Chronomancer Armor', 'Eternal chronomancer armor', 'eternal chronomancer armor'
}
firemagerobe = {
'Fire Mage Robe', 'Fire mage robe', 'fire mage robe'
}
firerogueoutfit = {
'Fire Rogue Outfit', 'Fire rogue outfit', 'fire rogue outftit'
}
foresttunic = {
'Forest Tunic', 'Forest tunic', 'forest tunic'
}
dragonstalkergoldtabard = {
'Dragon Stalker Gold Tabard', 'Dragon stalker gold tabard', 'dragon stalker gold tabard'
}
@bot.command()
async def item(*, message: str):
if message in chronomancer_armor:
embed = discord.Embed(title="Chronomancer Armor", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/d1KVnH/a_PQt3ht_1.png")
embed.add_field(name="Price", value="2017 calendar")
embed.add_field(name="Sellback", value="0 gold")
embed.add_field(name="Level", value="1")
embed.add_field(name="Health Stats", value="+47")
embed.add_field(name="Attack Stats", value="+24")
embed.add_field(name="Armor Stats", value="+39")
embed.add_field(name="Evasion Stats", value="+19")
embed.add_field(name="Crit Stats", value="+15")
embed.add_field(name="Found on: ", value="2017 Calendar Shop - Yulgar's Inn")
await bot.say(embed=embed)
elif message in alpha_knight_armor:
embed = discord.Embed(title="Alpha Knight Armor", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/gMcF4H/MflPmCe.png")
embed.add_field(name="Price", value="2 gold")
embed.add_field(name="Level", value="1")
embed.add_field(name="Found on: ", value="Melodia's Shop, Founders Sanctuary")
await bot.say(embed=embed)
elif message in blood_knight_armor:
embed = discord.Embed(title="Bloodknight Armor", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/bxb67H/Blood_Knight_Armor_MF_1.png")
embed.add_field(name="Price", value="Drop, Shrade Minions")
embed.add_field(name="Sellback", value="1 gold")
embed.add_field(name="Level", value="5")
embed.add_field(name="Health Stats", value="+67")
embed.add_field(name="Attack Stats", value="+21")
embed.add_field(name="Armor Stats", value="+48")
embed.add_field(name="Evasion Stats", value="+16")
embed.add_field(name="Crit Stats", value="+24")
embed.add_field(name="Found on: ", value="Camp Gonnagetcha")
await bot.say(embed=embed)
elif message in campy_rogue:
embed = discord.Embed(title="Campy Rogue", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/jVVHzx/Dp_K7_Xa_D_1.png")
embed.add_field(name="Price", value="Craftable, Craft Badge x50, 500 gold")
embed.add_field(name="Sellback", value="10 gold")
embed.add_field(name="Level", value="1")
embed.add_field(name="Health Stats", value="N/A")
embed.add_field(name="Attack Stats", value="N/A")
embed.add_field(name="Armor Stats", value="N/A")
embed.add_field(name="Evasion Stats", value="N/A")
embed.add_field(name="Crit Stats", value="N/A")
embed.add_field(name="Found on: ", value="Dricken Uniforms - Camp Gonnagetcha")
await bot.say(embed=embed)
elif message in campy_warrior:
embed = discord.Embed(title="Campy Warrior", color=0x00a0ea)
embed.add_field(name="Price", value="Craftable, Craft Badge x50, 500 gold")
embed.add_field(name="Sellback", value="10 gold")
embed.add_field(name="Level", value="1")
embed.add_field(name="Health Stats", value="N/A")
embed.add_field(name="Attack Stats", value="N/A")
embed.add_field(name="Armor Stats", value="N/A")
embed.add_field(name="Evasion Stats", value="N/A")
embed.add_field(name="Crit Stats", value="N/A")
embed.add_field(name="Found on: ", value="Frogzard Uniforms - Camp Gonnagetcha")
await bot.say(embed=embed)
await bot.say("Image unavailable :anger:")
elif message in chewed_mystic_robes:
embed = discord.Embed(title="Chewed Mystic Robes", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/cMO4ex/Fmymv7v_1.png")
embed.add_field(name="Price", value="Dropped by Mystic Bones")
embed.add_field(name="Sellback", value="10 gold")
embed.add_field(name="Level", value="4")
embed.add_field(name="Health Stats", value="+58")
embed.add_field(name="Attack Stats", value="+26")
embed.add_field(name="Armor Stats", value="+44")
embed.add_field(name="Evasion Stats", value="+20")
embed.add_field(name="Crit Stats", value="+20")
embed.add_field(name="Found on: ", value="Mystics Cave")
await bot.say(embed=embed)
elif message in chewed_warrior_armor:
embed = discord.Embed(title="Chewed Warrior Armor ", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/eNtjCH/9_WHLh_TD_1.png")
embed.add_field(name="Price", value="Dropped by Direwolf, Forest wolf, Lycan Guard, Lycan Prowler, Umbral wolf, Warwolf, Warwolf Chieftain")
embed.add_field(name="Sellback", value="10 gold")
embed.add_field(name="Level", value="18")
embed.add_field(name="Health Stats", value="+193")
embed.add_field(name="Attack Stats", value="+58")
embed.add_field(name="Armor Stats", value="+149")
embed.add_field(name="Evasion Stats", value="+44")
embed.add_field(name="Crit Stats", value="+58")
embed.add_field(name="Found on: ", value="Darkovia Forest, Deepclaw Caverns, Dimgrove")
await bot.say(embed=embed)
elif message in chiropteran_armor:
embed = discord.Embed(title="Chiropteran Armor", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/fFw7zx/t_HNKy_ZY_1.png")
embed.add_field(name="Price", value="Dropped by Ancient Evil (in darkhurt only)")
embed.add_field(name="Sellback", value="10 gold")
embed.add_field(name="Level", value="18")
embed.add_field(name="Health Stats", value="+175")
embed.add_field(name="Attack Stats", value="+87")
embed.add_field(name="Armor Stats", value="+127")
embed.add_field(name="Evasion Stats", value="+74")
embed.add_field(name="Crit Stats", value="+61")
embed.add_field(name="Found on: ", value="Darkhurst Town")
await bot.say(embed=embed)
elif message in clawed_rogue_outfit:
embed = discord.Embed(title="Clawed Rogue Outfit", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/gfurux/PFj25_Tw_1.png")
embed.add_field(name="Price", value="Dropped by Cave Ghoul, Ghoul Minion")
embed.add_field(name="Sellback", value="10 gold")
embed.add_field(name="Level", value="18")
embed.add_field(name="Health Stats", value="+147")
embed.add_field(name="Attack Stats", value="+77")
embed.add_field(name="Armor Stats", value="+133")
embed.add_field(name="Evasion Stats", value="+57")
embed.add_field(name="Crit Stats", value="+62")
embed.add_field(name="Found on: ", value="Darkovia Forest, Shadowsong Crypt")
await bot.say(embed=embed)
elif message in commondarkovianclothes:
embed = discord.Embed(title="Common Darkovian Clothes", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/hmdHZx/QAk7urn_1.png")
embed.add_field(name="Price", value="Dropped by Lord Anemis, Vampire Knight, Werewolf")
embed.add_field(name="Sellback", value="10 gold")
embed.add_field(name="Level", value="18")
embed.add_field(name="Health Stats", value="+181")
embed.add_field(name="Attack Stats", value="+70")
embed.add_field(name="Armor Stats", value="+126")
embed.add_field(name="Evasion Stats", value="+65")
embed.add_field(name="Crit Stats", value="+59")
embed.add_field(name="Found on: ", value="Darkhurst Town")
await bot.say(embed=embed)
elif message in commondarkoviandress:
embed = discord.Embed(title="Common Darkovian Dress", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/iaLEEx/p63t1_V0_1.png")
embed.add_field(name="Price", value="Dropped by Lord Anemis, Vampire Knight, Werewolf")
embed.add_field(name="Sellback", value="10 gold")
embed.add_field(name="Level", value="18")
embed.add_field(name="Health Stats", value="+173")
embed.add_field(name="Attack Stats", value="+77")
embed.add_field(name="Armor Stats", value="+135")
embed.add_field(name="Evasion Stats", value="+58")
embed.add_field(name="Crit Stats", value="+58")
embed.add_field(name="Found on: ", value="Darkhurst Town")
await bot.say(embed=embed)
elif message in crimsonbattlemagerobe:
embed = discord.Embed(title="Crimson Battle Mage Robe ", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/ezqxZx/VUU6w_SJ_1.png")
embed.add_field(name="Price", value="Craftable, Lava Core x2, Molten Ingot x1, Flame Runed Cloth x10, 2,000 Gold")
embed.add_field(name="Sellback", value="25 gold")
embed.add_field(name="Level", value="16")
embed.add_field(name="Health Stats", value="+159")
embed.add_field(name="Attack Stats", value="+63")
embed.add_field(name="Armor Stats", value="+107")
embed.add_field(name="Evasion Stats", value="+60")
embed.add_field(name="Crit Stats", value="+55")
embed.add_field(name="Found on: ", value=" Crimson Battle Mage Craft Shop - DragonSlayer Camp")
await bot.say(embed=embed)
elif message in crimsonmagerobes:
embed = discord.Embed(title="Crimson Mage Robes ", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/fYGknH/Mk3_Gcro_1.png")
embed.add_field(name="Price", value="Craftable, 100 Dragon Crystals, Burnt Cloth x10, Glowing Coals x5, Evil Tear x1, 300 gold")
embed.add_field(name="Sellback", value="10 gold")
embed.add_field(name="Level", value="6")
embed.add_field(name="Health Stats", value="+68")
embed.add_field(name="Attack Stats", value="+31")
embed.add_field(name="Armor Stats", value="+50")
embed.add_field(name="Evasion Stats", value="+21")
embed.add_field(name="Crit Stats", value="+29")
embed.add_field(name="Found on: ", value=" Balis' Craft Shop - Heartwood Forest")
await bot.say(embed=embed)
elif message in crustyinnkeepersclothes:
embed = discord.Embed(title="Crusty Innkeeper's Clothes", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/hx0pEx/90w1w_MH_1.png")
embed.add_field(name="Price", value="Dropped by Boogerling, Slime Lord")
embed.add_field(name="Sellback", value="10 gold")
embed.add_field(name="Level", value="11")
embed.add_field(name="Health Stats", value="+99")
embed.add_field(name="Attack Stats", value="+49")
embed.add_field(name="Armor Stats", value="+75")
embed.add_field(name="Evasion Stats", value="+32")
embed.add_field(name="Crit Stats", value="+41")
embed.add_field(name="Found on: ", value="Yulgar's Sinkhole")
await bot.say(embed=embed)
elif message in darkdefenderarmor:
embed = discord.Embed(title="Dark Defender Armor", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/nyABSH/WRfxz_RK_1.png")
embed.add_field(name="Price", value="Craftable, Defender Medal x200, Elite Defender Medals x5, 200 Gold")
embed.add_field(name="Sellback", value="20 gold")
embed.add_field(name="Level", value="1")
embed.add_field(name="Health Stats", value="N/A")
embed.add_field(name="Attack Stats", value="N/A")
embed.add_field(name="Armor Stats", value="N/A")
embed.add_field(name="Evasion Stats", value="N/A")
embed.add_field(name="Crit Stats", value="N/A")
embed.add_field(name="Found on: ", value=" Dark Defender Crafting - Battleon")
await bot.say(embed=embed)
elif message in davidscoat:
embed = discord.Embed(title="David's Coat", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/e0CNmc/TAGPpc_R_1.png")
embed.add_field(name="Price", value="Dropped by David")
embed.add_field(name="Sellback", value="0 gold")
embed.add_field(name="Level", value="18")
embed.add_field(name="Health Stats", value="+196")
embed.add_field(name="Attack Stats", value="+87")
embed.add_field(name="Armor Stats", value="+152")
embed.add_field(name="Evasion Stats", value="+66")
embed.add_field(name="Crit Stats", value="+66")
embed.add_field(name="Found on: ", value="Shadowsong Crypt")
await bot.say(embed=embed)
elif message in defenderguardianarmor:
embed = discord.Embed(title="Defender Gaurdian Armor", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/dybwex/n_MF7z_Lp_1.png")
embed.add_field(name="Price", value="Craftable, Defender Medal x25, Gaurdian Defender Medal x1, 30 gold")
embed.add_field(name="Sellback", value="12 gold")
embed.add_field(name="Level", value="1")
embed.add_field(name="Health Stats", value="N/A")
embed.add_field(name="Attack Stats", value="N/A")
embed.add_field(name="Armor Stats", value="N/A")
embed.add_field(name="Evasion Stats", value="N/A")
embed.add_field(name="Crit Stats", value="N/A")
embed.add_field(name="Found on: ", value="Defender Armor Craft Shop - Battleon")
await bot.say(embed=embed)
elif message in defenderknightarmor:
embed = discord.Embed(title="Defender Knight Armor", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/kunE1c/X4d_Qf6m_1.png")
embed.add_field(name="Price", value="Craftable, Defender Medal x25, 30 gold")
embed.add_field(name="Sellback", value="12 gold")
embed.add_field(name="Level", value="1")
embed.add_field(name="Health Stats", value="N/A")
embed.add_field(name="Attack Stats", value="N/A")
embed.add_field(name="Armor Stats", value="N/A")
embed.add_field(name="Evasion Stats", value="N/A")
embed.add_field(name="Crit Stats", value="N/A")
embed.add_field(name="Found on: ", value="Defender Armor Craft Shop - Battleon")
await bot.say(embed=embed)
elif message in defendermagerobes:
embed = discord.Embed(title="Defender Mage Robes", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/n3707H/M06_Q2_Ml_1.png")
embed.add_field(name="Price", value="Craftable, Defender Medal x25, 30 gold")
embed.add_field(name="Sellback", value="12 gold")
embed.add_field(name="Level", value="1")
embed.add_field(name="Health Stats", value="N/A")
embed.add_field(name="Attack Stats", value="N/A")
embed.add_field(name="Armor Stats", value="N/A")
embed.add_field(name="Evasion Stats", value="N/A")
embed.add_field(name="Crit Stats", value="N/A")
embed.add_field(name="Found on: ", value="Defender Armor Craft Shop - Battleon")
await bot.say(embed=embed)
elif message in defenderroguearmor:
embed = discord.Embed(title="Defender Rogue Armor", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/doBhMc/u_VFw_P7_U_1.png")
embed.add_field(name="Price", value="Craftable, Defender Medal x25, 30 gold")
embed.add_field(name="Sellback", value="12 gold")
embed.add_field(name="Level", value="1")
embed.add_field(name="Health Stats", value="N/A")
embed.add_field(name="Attack Stats", value="N/A")
embed.add_field(name="Armor Stats", value="N/A")
embed.add_field(name="Evasion Stats", value="N/A")
embed.add_field(name="Crit Stats", value="N/A")
embed.add_field(name="Found on: ", value="Defender Armor Craft Shop - Battleon")
await bot.say(embed=embed)
elif message in dragonberserkerarmor:
embed = discord.Embed(title="Dragon Berserker Armor", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/btkEZx/qdk_Nr_Qn_1.png")
embed.add_field(name="Price", value="Craftable, Dragon Trophy x3, Scale Slayer Armor, 5,000 gold")
embed.add_field(name="Sellback", value="10 gold")
embed.add_field(name="Level", value="20")
embed.add_field(name="Health Stats", value="+232")
embed.add_field(name="Attack Stats", value="+145")
embed.add_field(name="Armor Stats", value="+203")
embed.add_field(name="Evasion Stats", value="+87")
embed.add_field(name="Crit Stats", value="+87")
embed.add_field(name="Found on: ", value="Dragon Berserker - Mount Ashfall Camp")
await bot.say(embed=embed)
elif message in dragonchampionarmor:
embed = discord.Embed(title="Dragon Champion Armor", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/jKKmgc/VC0m25j_1.png")
embed.add_field(name="Price", value="Craftable, Dragon Trophy x4, Obsidian Ingot x20, 30 gold")
embed.add_field(name="Sellback", value="10 gold")
embed.add_field(name="Level", value="20")
embed.add_field(name="Health Stats", value="+231")
embed.add_field(name="Attack Stats", value="+103")
embed.add_field(name="Armor Stats", value="+179")
embed.add_field(name="Evasion Stats", value="+77")
embed.add_field(name="Crit Stats", value="+77")
embed.add_field(name="Found on: ", value="Dragon Champion - Mount Ashfall Camp")
await bot.say(embed=embed)
elif message in dragonstalkerflametabard:
embed = discord.Embed(title="Dragon Stalker Flame Tabard", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/gR6hMc/Zr_IQq_Z2_1.png")
embed.add_field(name="Price", value="Craftable, Obsidian Ingot x10, Flame Essence x1, Thick Drakimp Fur x10, 4,000 gold")
embed.add_field(name="Sellback", value="0 gold")
embed.add_field(name="Level", value="16")
embed.add_field(name="Health Stats", value="+169")
embed.add_field(name="Attack Stats", value="+53")
embed.add_field(name="Armor Stats", value="+118")
embed.add_field(name="Evasion Stats", value="+60")
embed.add_field(name="Crit Stats", value="+44")
embed.add_field(name="Found on: ", value="Dragon Stalker Craft Shop - DragonSlayer Camp")
await bot.say(embed=embed)
elif message in dragonstalkergoldtabard:
embed = discord.Embed(title="Dragon Stalker Gold Tabard", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/kepf7H/EGqcu_Ia_1.png")
embed.add_field(name="Price", value="Craftable, Obsidian Ingot x10, Flame Essence x1, Thick Drakimp Fur x10, 4,000 gold")
embed.add_field(name="Sellback", value="0 gold")
embed.add_field(name="Level", value="15")
embed.add_field(name="Health Stats", value="+144")
embed.add_field(name="Attack Stats", value="+78")
embed.add_field(name="Armor Stats", value="+108")
embed.add_field(name="Evasion Stats", value="+54")
embed.add_field(name="Crit Stats", value="+61")
embed.add_field(name="Found on: ", value="Dragon Stalker Craft Shop - DragonSlayer Camp")
await bot.say(embed=embed)
elif message in dragonstalkerskytabard:
embed = discord.Embed(title="Dragon Stalker Sky Tabard", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/gmBJSH/Dag6f9b_1.png")
embed.add_field(name="Price", value="Craftable, Obsidian Ingot x10, Flame Essence x1, Thick Drakimp Fur x10, 4,000 gold")
embed.add_field(name="Sellback", value="0 gold")
embed.add_field(name="Level", value="16")
embed.add_field(name="Health Stats", value="+133")
embed.add_field(name="Attack Stats", value="+55")
embed.add_field(name="Armor Stats", value="+117")
embed.add_field(name="Evasion Stats", value="+50")
embed.add_field(name="Crit Stats", value="+47")
embed.add_field(name="Found on: ", value="Dragon Stalker Craft Shop - DragonSlayer Camp")
await bot.say(embed=embed)
elif message in dragonslayerarmor:
embed = discord.Embed(title="DragonSlayer Armor", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/h1v9HH/j_SVU0_DH_1.png")
embed.add_field(name="Price", value="Reward from the DragonSlayer Equipment Quests")
embed.add_field(name="Sellback", value="0 gold")
embed.add_field(name="Level", value="1")
embed.add_field(name="Health Stats", value="N/A")
embed.add_field(name="Attack Stats", value="N/A")
embed.add_field(name="Armor Stats", value="N/A")
embed.add_field(name="Evasion Stats", value="N/A")
embed.add_field(name="Crit Stats", value="N/A")
embed.add_field(name="Found on: ", value="DragonSlayer Equipment - Mount Ashfall Camp")
await bot.say(embed=embed)
elif message in drakehunterflametabard:
embed = discord.Embed(title="Drake Hunter Flame Tabard", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/gqbVrc/Bea_BWI1_1.png")
embed.add_field(name="Price", value="200 Dragon Crystals, Craftable, Lava Hide x15, Obsidian x10, 4,000 gold ")
embed.add_field(name="Sellback", value="20 gold")
embed.add_field(name="Level", value="15")
embed.add_field(name="Health Stats", value="+136")
embed.add_field(name="Attack Stats", value="+69")
embed.add_field(name="Armor Stats", value="+111")
embed.add_field(name="Evasion Stats", value="+53")
embed.add_field(name="Crit Stats", value="+42")
embed.add_field(name="Found on: ", value="Drake Hunter Craft Shop - DragonSlayer Camp, Senna's Craft Shop - DragonSlayer Camp ")
await bot.say(embed=embed)
elif message in drakehuntergoldtabard:
embed = discord.Embed(title="Drake Hunter Gold Tabard", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/hNbS4x/pqg_A0_W6_1.png")
embed.add_field(name="Price", value="200 Dragon Crystals, Craftable, Lava Hide x15, Obsidian x10, 4,000 gold ")
embed.add_field(name="Sellback", value="20 gold")
embed.add_field(name="Level", value="15")
embed.add_field(name="Health Stats", value="+149")
embed.add_field(name="Attack Stats", value="+61")
embed.add_field(name="Armor Stats", value="+110")
embed.add_field(name="Evasion Stats", value="+59")
embed.add_field(name="Crit Stats", value="+36")
embed.add_field(name="Found on: ", value="Drake Hunter Craft Shop - DragonSlayer Camp, Senna's Craft Shop - DragonSlayer Camp ")
await bot.say(embed=embed)
elif message in drakehunterskytabard:
embed = discord.Embed(title="Drake Hunter Sky Tabard", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/iCvRxH/s_VRf_EVx_1.png")
embed.add_field(name="Price", value="200 Dragon Crystals, Craftable, Lava Hide x15, Obsidian x10, 4,000 gold ")
embed.add_field(name="Sellback", value="20 gold")
embed.add_field(name="Level", value="15")
embed.add_field(name="Health Stats", value="+138")
embed.add_field(name="Attack Stats", value="+66")
embed.add_field(name="Armor Stats", value="+101")
embed.add_field(name="Evasion Stats", value="+51")
embed.add_field(name="Crit Stats", value="+52")
embed.add_field(name="Found on: ", value="Drake Hunter Craft Shop - DragonSlayer Camp, Senna's Craft Shop - DragonSlayer Camp ")
await bot.say(embed=embed)
elif message in dreadhoodarmor:
embed = discord.Embed(title="Dread Hood Armor", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/mnBDBc/Ch0_JXF5_1.png")
embed.add_field(name="Price", value="Craftable, Darkovia Creature Sample x40, 2,000 gold ")
embed.add_field(name="Sellback", value="10 gold")
embed.add_field(name="Level", value="18")
embed.add_field(name="Health Stats", value="+161")
embed.add_field(name="Attack Stats", value="+101")
embed.add_field(name="Armor Stats", value="+137")
embed.add_field(name="Evasion Stats", value="+51")
embed.add_field(name="Crit Stats", value="+74")
embed.add_field(name="Found on: ", value=" Darkovia Forest Crafts - Darkovia Forest")
await bot.say(embed=embed)
elif message in drickenfeatheredrobe:
embed = discord.Embed(title="Dricken Feathered Robe", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/cH1Qe7/3_Zi_Hc_NJ_1.png")
embed.add_field(name="Price", value="Dropped by Mother Hen")
embed.add_field(name="Sellback", value="1 gold")
embed.add_field(name="Level", value="1")
embed.add_field(name="Health Stats", value="N/A")
embed.add_field(name="Attack Stats", value="N/A")
embed.add_field(name="Armor Stats", value="N/A")
embed.add_field(name="Evasion Stats", value="N/A")
embed.add_field(name="Crit Stats", value="N/A")
embed.add_field(name="Found on: ", value="Dricken Cave")
await bot.say(embed=embed)
elif message in drickenscaledarmor:
embed = discord.Embed(title="Dricken Scaled Armor", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/jH0U6n/Vn_INQFK_1.png")
embed.add_field(name="Price", value="300 Dragon Crystals")
embed.add_field(name="Sellback", value="30 gold")
embed.add_field(name="Level", value="1")
embed.add_field(name="Health Stats", value="N/A")
embed.add_field(name="Attack Stats", value="N/A")
embed.add_field(name="Armor Stats", value="N/A")
embed.add_field(name="Evasion Stats", value="N/A")
embed.add_field(name="Crit Stats", value="N/A")
embed.add_field(name="Found on: ", value="Feathered Shop - Dricken Cave")
await bot.say(embed=embed)
elif message in duskhunterstunic:
embed = discord.Embed(title="Dust Hunter's Tunic", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/m2B8z7/GZuu_Zp_D_1.png")
embed.add_field(name="Price", value="9 gold")
embed.add_field(name="Sellback", value="1 gold")
embed.add_field(name="Level", value="2")
embed.add_field(name="Health Stats", value="+48")
embed.add_field(name="Attack Stats", value="+21")
embed.add_field(name="Armor Stats", value="+34")
embed.add_field(name="Evasion Stats", value="+17")
embed.add_field(name="Crit Stats", value="+18")
embed.add_field(name="Found on: ", value="Robina's Shop - Greenguard")
await bot.say(embed=embed)
elif message in dwarvenforemanarmor:
embed = discord.Embed(title="Dwarven Foreman Armor", color=0x00a0ea)
embed.set_image(url="https://image.ibb.co/jU8oz7/1_Wb_UVx7_1.png")
embed.add_field(name="Price", value="Craftable, Lava Core 1x, Dwarven Miner Armor 1x, Dwarven Iron Ingot 5x, 3,000 gold")
embed.add_field(name="Sellback", value="25 gold")
embed.add_field(name="Level", value="16")
embed.add_field(name="Health Stats", value="+144")
embed.add_field(name="Attack Stats", value="+78")
embed.add_field(name="Armor Stats", value="+177")
embed.add_field(name="Evasion Stats", value="+43")
embed.add_field(name="Crit Stats", value="+62")
embed.add_field(name="Found on: ", value="Dwarven Crafts - Magma Mines")
await bot.say(embed=embed)
else:
await bot.say("Fatal Error! :anger:Please re-try or check your grammar, if problem persists contact bot owner.")
@bot.command()
async def instructions():
await bot.say("Type wiki.\"category\" for a list of all items listed on the category")
await bot.say("For a list of categories use wiki.categories.")
await bot.say("Type wiki.item \"item name\" to search for an item")
@bot.command()
async def categories():
embed = discord.Embed(title="Categories", color=0x00a0ea)
embed.set_image(url="https://thumb.ibb.co/hheFjx/indice.png")
embed.add_field(name="=======", value="\"helms\", \"shoulders\", \"armors\", \"boots\", \"gloves\", \"belts\", \"capes\"")
await bot.say(embed=embed)
@bot.command()
async def echo(*, msg: str):
await bot.say(msg)
if __name__ == "__main__":
for extension in startup_extensions:
try:
bot.load_extension(extension)
except Exception as e:
exc = '{}: {}'.format(type(e).__name__, e)
print('Failed to load extension {}\n{}'.format(extension, exc))
shop_items = {
"Alpha Knight Armor", "Alpha knight armor", "alpha knight armor"
}
alphaknightboots = {
'Alpha Knight Boots', 'Alpha knight boots', 'alpha knight boots'
}
alphapirateboots = {
'Alpha Pirate Boots', 'Alpha pirate boots', 'alpha pirate boots'
}
ancientevilboots = {
'Ancient Evil Boots', 'Ancient evil boots', 'ancient evil boots'
}
ashbrandboots = {
'Ashbrand Boots', 'Ashbrand boots', 'ashbrand boots'
}
ashenplateboots = {
'Ashen Plate Boots', 'Ashen plate boots', 'ashen plate boots'
}
battleonmilitiaboots = {
'Battleon Militia Boots', 'Battleon militia boots', 'battleon militia boots'
}
betaberserkerboots = {
'Beta Berserker Boots', 'Beta berserker boots', 'beta berserker boots'
}
bloodknightboots = {
'BloodKnight Boots', 'Bloodknight boots', 'bloodknight boots'
}
campyboots = {
'Campy Boots', 'Campy boots', 'campy boots'
}
chewedzardscaleboots = {
'Chewed Zardscale Boots', 'Chewed zardscale boots', 'chewed zardscale boots'
}
chiropteranboots = {
'Chiropteran Boots', 'Chiropteran boots', 'chiropteran boots'
}
chronomancerboots = {
'Chronomancer Boots', 'Chronomancer boots', 'chronomancer boots'
}
crimsonbattlemageboots = {
'Crimson Battle Mage Boots', 'Crimson battle mage boots', 'crimson battle mage boots'
}
darkdefenderboots = {
'Dark Defender Boots', 'Dark defender boots', 'dark defender boots'
}
darkleatherboots = {
'Dark Leather Boots', 'Dark leather boots', 'dark leather boots'
}
defenderknightboots = {
'Defender Knight Boots', 'Defender knight boots', 'defender knight boots'
}
defendermageboots = {
'Defender Mage Boots', 'Defender mage boots', 'defender mage boots'
}
defenderrogueboots = {
'Defender Rogue Boots', 'Defender rogue boots', 'defender rogue boots'
}
dragonberserkerboots = {
'Dragon Berserker Boots', 'Dragon berserker boots', 'dragon berserker boots'
}
dragonchampiongreaves = {
'Dragon Champion Greaves', 'Dragon champion greaves', 'dragon champion greaves'
}
dragonstalkerboots = {
'Dragon Stalker Boots', 'Dragon stalker boots', 'dragon stalker boots'
}
dragonslayerboots = {
'DragonSlayer Boots', 'Dragonslayer boots', 'dragonslayer boots'
}
drakehunterboots = {
'Drake Hunter Boots', 'Drake hunter boots', 'drake hunter boots'
}
dreadhoodboots = {
'Dread Hood Boots', 'Dread hood boots', 'dread hood boots'
}
drickenarmoredboots = {
'Dricken Armored Boots', 'Dricken armored boots', 'dricken armored boots'
}
drickenleatherfeet = {
'Dricken Leather Feet', 'Dricken leather feet', 'dricken leather feet'
}
dwarvenforemanboots = {
'Dwarven Foreman Boots', 'Dwarven foreman boots', 'dwarven foreman boots'
}
dwarvenminerboots = {
'Dwarven Miner Boots', 'Dwarven miner boots', 'dwarven miner boots'
}
ebontalongreaves = {
'Ebon Talon Greaves', 'Ebon talon greaves', 'ebon talon greaves'
}
elitedragonchampiongreaves = {
'Elite Dragon Champion Greaves', 'Elite dragon champion greaves', 'elite dragon champion greaves'
}
elvenguardboots = {
'Elvenguard Boots', 'Elvenguard boots', 'elvenguard boots'
}
eternalchronomancerboots = {
'Eternal Chronomancer Boots', 'Eternal chronomancer boots', 'eternal chronomancer boots'
}
firemageboots = {
'Fire Mage Boots', 'Fire mage boots', 'fire mage boots'
}
firerogueboots = {
'Fire Rogue Boots', 'Fire rogue boots', 'fire rogue boots'
}
frostdefenderboots = {
'Frost Defender Boots', 'Frost defender boots', 'frost defender boots'
}
frostlornmageboots = {
'Frostlorn Mage Boots', 'Frostlorn mage boots', 'frostlorn mage boots'
}
frostlornrogueboots = {
'Frostlorn Rogue Boots', 'Frostlorn rogue boots', 'frostlorn rogue boots'
}
frostlornwarriorboots = {
'Frostlorn Warrior Boots', 'Frostlorn warrior boots', 'frostlorn warrior boots'
}
frostvalelfboots = {
'Frostval Elf Boots', 'Frostval elf boots', 'frostval elf boots'
}
furnaceknightboots = {
'Furnace Knight Boots', 'Furnace knight boots', 'furnace knight boots'
}
goldenboots = {
'Golden Boots', 'Golden boots', 'golden boots'
}
grampysleatherboots = {
'Grampy\'s Leather Boots', 'Grampy\'s leather boots', 'grampy\'s leather boots'
}
guardianboots = {
'Guardian Boots', 'Guardian boots', 'guardian boots'
}
guardiandragonboots = {
'Guardian Dragon Boots', 'Guardian dragon boots', 'guardian dragon boots'
}
holeywitchshoes = {
'Holey Witch Shoes', 'Holey witch shoes', 'holey witch shoes'
}
invisibleboots = {
'Invisible Boots', 'Invisible boots', 'invisible boots'
}
ironberserkerboots = {
'Iron Berserker Boots', 'Iron berserker boots', 'iron berserker boots'
}
keenalphapirateboots = {
'Keen Alpha Pirate Boots', 'Keen alpha pirate boots', 'keen alpha pirate boots'
}
kickstarterguardianboots = {
'KickStarter Guardian Boots', 'Kickstarter guardian boots', 'kickstarter guardian boots'
}
leatherboots = {
'Leather Boots', 'Leather boots', 'leather boots'
}
leatherpirateboots = {
'Leather Pirate Boots', 'Leather pirate boots', 'leather pirate boots'
}
legiongruntboots = {
'Legion Grunt Boots', 'Legion grunt boots', 'legion grunt boots'
}
legionzealotboots = {
'Legion Zealot Boots', 'Legion zealot boots', 'legion zealot boots'
}
mageshoes = {
'Mage Shoes', 'Mage shoes', 'mage shoes'
}
magmarranboots = {
'Magmarran Boots', 'Magmarran boots', 'magmarran boots'
}
navalcommanderboots = {
'Naval Commander Boots', 'Naval commander boots', 'naval commander boots'
}
nightguardboots = {
'Night Guard Boots', 'Night guard boots', 'night guard boots'
}
noblesboots = {
'Noble\'s Boots', 'Noble\'s boots', 'noble\'s boots'
}
orokuboots = {
'Oroku Boots', 'Oroku boots', 'oroku boots'
}
pebblarshellboots = {
'Pebblar Shell Boots', 'Pebblar shell boots', 'pebblar shell boots'
}
phoenixknightboots = {
'Phoenix Knight Boots', 'Phoenix knight boots', 'phoenix knight boots'
}
plutocratboots = {
'Plutocrat Boots', 'Plutocrat boots', 'plutocrat boots'
}
pumpkinlordboots = {
'Pumpkin Lord Boots', 'Pumpkin lord boots', 'pumpkin lord boots'
}
pumpkinmancerboots = {
'Pumpkinmancer Boots', 'Pumpkinmancer boots', 'pumpkinmancer boots'
}
redelfboots = {
'Red Elf Boots', 'Red elf boots', 'red elf boots'
}
redeyeboots = {
'Red-Eye Boots', 'Red-eye boots', 'red-eye boots'
}
runedelvenguardboots = {
'Runed Elvenguard Boots', 'Runed elvenguard boots', 'runed elvenguard boots'
}
santaboots = {
'Santa Boots', 'Santa boots', 'santa boots'
}
scaleslayergreaves = {
'Scale Slayer Greaves', 'Scale slayer greaves', 'scale slayer greaves'
}
scoundrelboots = {
'Scoundrel Boots', 'Scoundrel boots', 'scoundrel boots'
}
serpentfighterboots = {
'Serpent Fighter Boots', 'Serpent fighter boots', 'serpent fighter boots'
}
shadowleatherboots = {
'Shadow Leather Boots', 'Shadow leather boots', 'shadow leather boots'
}
shadowedbloodboots = {
'Shadowed Blood Boots', 'Shadowed blood boots', 'shadowed blood boots'
}
shadowedboots = {
'Shadowed Boots', 'Shadowed boots', 'shadowed boots'
}
shadowedplateboots = {
'Shadowed Plate Boots', 'Shadowed plate boots', 'shadowed plate boots'
}
shadowslayeresboots = {
'ShadowSlayer E\'s Boots', 'Shadowslayer E\'s boots', 'shadowslayer E\'s boots'
}
shadowslayerrsboots = {
'ShadowSlayer R\'s Boots', 'Shadowslayer R\'s boots', 'shadowslayer R\'s boots'
}
shradesboots = {