WoW:ItemType: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(→‎Possible itemType returns: Mention that this list applies only to English client.)
No edit summary
Line 5: Line 5:
== Item Types and Item Sub Types ==
== Item Types and Item Sub Types ==
Every item in the game has an type and subtype of some kind.  No valid item will return nil for either of these values.
Every item in the game has an type and subtype of some kind.  No valid item will return nil for either of these values.
Be aware that the strings are localized on the clients.


=== Possible itemType returns ===
=== Possible itemType returns ===

Revision as of 13:44, 24 January 2007

API types

These are the possible 5th and 6th returns of GetItemInfo.

Item Types and Item Sub Types

Every item in the game has an type and subtype of some kind. No valid item will return nil for either of these values. Be aware that the strings are localized on the clients.

Possible itemType returns

"Armor", "Consumable", "Container", "Key", "Miscellaneous", "Reagent", "Recipe", "Projectile", "Quest", "Quiver", "Trade Goods", "Weapon" for English client. Generally it is same strings you see in auction search tab.

Sorted Types and Subtypes

Armor

Consumable

  • "Consumable"

Container

  • "Bag"
  • "Enchanting Bag"
  • "Engineering Bag" - (Will be implemented in the "The Burning Crusade").
  • "Herb Bag"
  • "Soul Bag"

Key

  • "Key"

Miscellaneous

  • "Junk"

Reagent

  • "Reagent"

Recipe

  • "Alchemy"
  • "Blacksmithing"
  • "Book"
  • "Cooking"
  • "Enchanting"
  • "Engineering"
  • "First Aid"
  • "Leatherworking"
  • "Tailoring"

Projectile

  • "Arrow"
  • "Bullet"

Quest

  • "Quest"

Quiver

  • "Ammo Pouch"
  • "Quiver"

Trade Goods

  • "Devices"
  • "Explosives"
  • "Parts"
  • "Trade Goods"

Weapon

  • "Bows"
  • "Crossbows"
  • "Daggers"
  • "Guns"
  • "Fishing Pole"
  • "Fist Weapons"
  • "Miscellaneous"
  • "One-Handed Axes"
  • "One-Handed Maces"
  • "One-Handed Swords"
  • "Polearms"
  • "Staves"
  • "Thrown"
  • "Two-Handed Axes"
  • "Two-Handed Maces"
  • "Two-Handed Swords"
  • "Wands"

Template:References