Stepwise/source/entity_types.py
Kayne Ruse f831019148 Items can be picked up and stored in the inventory
When more than one item can be picked up, and options window is shown.

Stubs for "using" an item are in place.
2025-03-29 16:30:44 +11:00

34 lines
716 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 = 2, defense = 5),
)