Skip to content
This repository has been archived by the owner on Aug 23, 2024. It is now read-only.

Commit

Permalink
Bandit Raid.
Browse files Browse the repository at this point in the history
A small rebalance.
  • Loading branch information
SMar7-Fox authored Aug 14, 2019
1 parent 8977230 commit 9fb3c63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cogs/raid.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 9fb3c63

Please sign in to comment.