summaryrefslogtreecommitdiff
path: root/docs/items.txt
blob: 3ebccb1fdb40d0498459d8bc6d1933e07b65637a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
-------------------------------
THE MANA WORLD INVENTORY SYSTEM
-------------------------------

1. INTRODUCTION
2. DATABASE
3. EQUIPMENT


1. INTRODUCTION

The inventory system will be based client side on a database realized by an XML
document. The database will contain a list of all the items available ingame.


2. DATABASE

The XML document (name to be defined, suggested items.xml) will contain a list
of items. An item can have the following properties:

- id          (a positive integer uniquely identifying an item)
- image       (used if same images are used for different items)
- name
- description (a brief description shown in shops, or in the inventory)
- type        (weapon, food, armor, stone, and so on...)
- properties  (probably a series of flags)


3. EQUIPMENT

Every being will have a variable number of slots to equip items. For a player
we will have 6 slots: head, upper body, lower body, feet, left hand, right
hand.
To equip an item you should go to the inventory, select the desired item and push the "Equip"
button. To uneqip, push the "Unequip" button in the equipment window. Unequipped items should automatically go back in the inventory.