imreeciowy / wfrp-gen

WFRP2 character generator and players companion in Python3
MIT License
0 stars 0 forks source link

Being class - error in implementation #26

Closed imreeciowy closed 8 years ago

imreeciowy commented 8 years ago

errae humanum est

imreeciowy commented 8 years ago

crude race selector ;)

player = Being.Human() print(player.base_line_1)

class Being(): def init(self, base_line_1): self.base_line_1 = base_line_1 class Human(Being): base_line_1 = [20] * 8