Explorar el Código

Make kobolds a little less beefy

master
Noëlle hace 3 años
padre
commit
7d88a4bf50
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2
    2
      koboldgen.py

+ 2
- 2
koboldgen.py Ver fichero

@@ -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

Cargando…
Cancelar
Guardar