Difference between revisions of "Inventory"

From RogueBasin
Jump to navigation Jump to search
m
m
 
Line 7: Line 7:
It is also possible for characters other than the player (aka "[[monster]]s") to have inventories. In some cases these are merely items carried, but usually the implementation of monster inventories is done in order to have monsters use items.
It is also possible for characters other than the player (aka "[[monster]]s") to have inventories. In some cases these are merely items carried, but usually the implementation of monster inventories is done in order to have monsters use items.


[[Category:Articles]]
[[Category:Concepts]]

Latest revision as of 06:35, 22 March 2009

Most roguelikes allow the player to have an inventory of items to use at his/her convenience. The way the inventory works differs quite a lot between different games.

The inventory is in most roguelikes represented as a list of items, sometimes categorized by item type. Some roguelikes limit the inventory to a specific number of items while others limit the inventory to a specific weight or volume of items carried (based on the character's strength).

In some games there is no difference between the player's inventory and the wielded/worn equipment while others have one list for the inventory and one for the equipment.

It is also possible for characters other than the player (aka "monsters") to have inventories. In some cases these are merely items carried, but usually the implementation of monster inventories is done in order to have monsters use items.