6 lines
348 B
Python
6 lines
348 B
Python
from entity import Entity
|
|
|
|
class NPC(Entity):
|
|
def __init__(self, name, strength, dexterity, intelligence, wisdom, charisma, hp, armor, speed, ):
|
|
super().__init__(name, strength, dexterity, intelligence, wisdom, charisma, hp, armor, speed)
|