untamed/ITEMS.md

31 lines
673 B
Markdown
Raw Normal View History

2023-01-25 10:28:59 -07:00
## Items
2023-01-25 19:45:18 -07:00
Items are objects that creatures can use, consume, or wear. An item definition must had the following parts, with additional parts DBS.
### Type
An Item should have a type indicating its use, it is ether Equippable or Consumable. Currency is not considered an Item and is DBS.
2023-01-25 19:45:18 -07:00
### Description
A description of the item.
### Stats
Stats indicate what an item does. Each stat is optional unless indicated otherwise.
- Damage
- Defense
2023-01-25 19:45:18 -07:00
- Effect
- Magic Type
### Example Item
Robes of Intelligence
Type: Equippable
Description: This robe seems to exudes the wisdom of those who have worn it before.
2023-01-25 19:45:18 -07:00
Stats:
- Effect: +1 to Intelligence until unequipped
---