You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ifamount<=0: returnawaitctx.reply("You can't open 0 or below lootboxes! Don't be stupid.", hidden=True)
646
+
iflootboxnotintypes: returnawaitctx.reply(f"wtf is {lootbox}?", hidden=True)
647
+
ie=shopitem.keys()
648
+
normal_loot= [
649
+
random.randint(10000, 25000),
650
+
random.choice(list(ie)),
651
+
random.choice(list(ie))
652
+
]
653
+
large_loot= [
654
+
random.randint(50000, 75000),
655
+
random.choice(list(ie)),
656
+
random.choice(list(ie)),
657
+
random.choice(list(ie))
658
+
]
659
+
special_loot= [
660
+
random.randint(100000, 500000),
661
+
random.choice(list(ie)),
662
+
random.choice(list(ie)),
663
+
random.choice(list(ie)),
664
+
random.choice(list(ie)),
665
+
random.choice(list(ie))
666
+
]
667
+
localembed=discord.Embed(title="You opened a lootbox!", description=f"The amazing rewards of your {lootbox} lootbox behold you...", color=discord.Color.gold())
0 commit comments