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