# =========================================================================
#
#  - items.txt -
#
# The item data is ordered as follows:
#
# Nme:<int item>:<char name>								N(a)me        max 30 chars
# Inv:<int width>:<int height>:<int value>					Inv(entory)   sets item uppickable
# Obs:<int x_min>:<int y_min>:<int z_min>:<int x_max>:<int y_max>:<int z_max>		Obs(tacle)    box
#
# Eqp:<int slot>										Eq(ui)p(able) sets item equipable
# Wpn:<int min_dam>:<int max_dam>:<int dam_type>:<int recovery>		W(ea)p(o)n    recovery in 1/100 seconds
# Amr:<int armor>:<int recovery_penalty>						A(r)m(o)r     recovery_panelty adds to recovery
# Atr:<int mod_chr>:<int mod_str>:<int mod_def>:<int mod_speed>...	Atr(ibutes)
#
# Use:<int duration>:<int add_health>:<int add_magic>:<int add_speed>.. Use(able)
#
# Des:<char description>								Des(cription) max 100 chars
#
# =========================================================================


#   1 - 100: Clothes (pants, pull-overs, socks, boots, ...)

Nme:1:Red woollen jersey
Inv:2:3:25
Eqp:3
Amr:2:0

Nme:2:Blue pair of trousers
Inv:2:3:50
Eqp:2
Amr:1:0

Nme:3:Small shoes
Inv:2:2:25
Eqp:4
Amr:1:0

Nme:4:Green bandeau
Inv:2:1:5
Eqp:8


# 101 - 200: Armour (helms, shields, gloves, breast plates, ...)

Nme:101:Full helm
Inv:2:2:200
Eqp:9
Amr:8:0

Nme:102:Small shield
Inv:2:2:150
Eqp:10
Amr:5:5

Nme:103:Leather gloves
Inv:2:2:50
Eqp:7
Amr:2:0


# 201 - 300: Weapons (swords, daggers, flails, axes, ...)

Nme:201:Golden sword
Inv:2:3:5000
Eqp:11
Wpn:5:15:0:50
Des:Designed by Georg, this is one of the most powerfull swords in the world ;-)


# 301 - 400: Magic items and garnets (rings, bracelets, necklages, ...)


# 401 - 500: Usable items (potions, scrolls, herbs, ...)

Nme:401:Red potion
Inv:1:1:7
Use:0:25:0:0
Des:A special brew of berries and bananas

Nme:402:Red apple
Inv:1:1:2
Use:0:10:0:0
Des:This apple looks delicious


# 501 - 600: Misc items (items used for quests, and anything else that doesn't belong in the other groups)


# 601 - 999: Decorations (trees, shrubbery, cart, house?, etc...)

Nme:601:Solid Statue
Obs:-7:-5:0:8:0:39
Des:Here stands a true hero.

Nme:602:Vase
Inv:4:6:325
Obs:-3:-4:0:3:1:20
Des:A handcrafted chineese vase.

Nme:603:Sign
Obs:-8:-3:0:8:1:16
Des:A standard issue, state of the art, signpost

Nme:604:Tree with large pixels
Obs:-13:-8:0:13:1:48
Des:This tree still needs to be converted from 320x200 to 640x480...

Nme:605:TA LLT
Obs:-14:-22:0:12:-1:52
Des:A nice light laser tower from Total Annihilation

Nme:606:Closed chest
Obs:-8:-8:0:8:0:10
Des:It contains... it's contents!

# END OF FILE