8 lines
311 B
Python
8 lines
311 B
Python
# Game imports
|
|
from entities.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)
|
|
|