diff --git a/cogs/raid.py b/cogs/raid.py index a62b9be15..5473848b0 100644 --- a/cogs/raid.py +++ b/cogs/raid.py @@ -299,7 +299,7 @@ async def raiddefend(self, ctx, bandits: int, group: str = "I"): headers={"Authorization": self.bot.config.raidauth}, ) bandits = [ - {"hp": random.randint(100, 190), "id": i + 1} for i in range(bandits) + {"hp": random.randint(100, 120), "id": i + 1} for i in range(bandits) ] payout = sum(i["hp"] for i in bandits) await ctx.send( @@ -407,7 +407,7 @@ async def raiddefend(self, ctx, bandits: int, group: str = "I"): value=f"Is attacking the bandit and dealt `{target_data['damage']}` damage", ) else: - money = random.randint(1600, 2300) + money = random.randint(2000, 3400) await self.bot.pool.execute( 'UPDATE profile SET "money"="money"+$1 WHERE "user"=$2;', money,