Browse Source

Make kobolds a little less beefy

master
Noëlle 3 years ago
parent
commit
7d88a4bf50
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      koboldgen.py

+ 2
- 2
koboldgen.py View File

@@ -167,10 +167,10 @@ class Character:
if stats[slt] > 2 and r.randint(0,stats[slt]-2) != 1: continue
stats[slt] += 1
tgl = True
stats[3] = stats[3] + 2
stats[3] = stats[3] + 1
if stats[3] > 6:
stats[3] = 6
stats[2] = stats[2] + 2
stats[2] = stats[2] + 1
if stats[2] > 6:
stats[2] = 6
self.stats = stats

Loading…
Cancel
Save