Stepwise/source/entity_types.py
Kayne Ruse 5e52e166b1 Inventory is visible, and dropping items is enabled
Menu windows can be nested inside each other.
2025-03-30 21:37:48 +11:00

35 lines
788 B
Python

from entity import Entity
from ai import BaseAI, AggressiveWhenSeen
from stats import Stats
from inventory import Inventory
player = Entity(
char = "@",
color = (255, 255, 255),
name = "Player",
walkable = False,
ai_class = BaseAI, #TODO: remove this or dummy it out
stats = Stats(hp = 10, attack = 2, defense = 1),
inventory=Inventory(),
)
#gobbos
gobbo = Entity(
char = "g",
color = (30, 168, 41),
name = "Gobbo",
walkable = False,
ai_class = AggressiveWhenSeen,
stats = Stats(hp = 5, attack = 1, defense = 0),
)
gobbo_red = Entity(
char = "g",
color = (168, 41, 30),
name = "Red Gobbo",
walkable = False,
ai_class = AggressiveWhenSeen,
stats = Stats(hp = 5, attack = 1, defense = 0), #this guy can't catch a break
)
#TODO: healing potion, spawned in the map