Open gcallah opened 1 year ago
Class needs at least these methods:
__init__(name, char_type, init_location)
get_name()
pick_up()
move()
Class needs at least these methods:
__init__(name, char_type, init_location)
: creates character from character_type dictionary.get_name()
: e.g., 'Thor'pick_up()
: e.g., thor.pick_up('hammer'), 'hammer' gets added to list of objectsmove()
: e.g., thor.move(some_node), must set self.location = some_node