88 lines
1.6 KiB
C++
88 lines
1.6 KiB
C++
//
|
|
// Created by main on 22-10-22.
|
|
//
|
|
|
|
#ifndef FUGG_ITEMKIND3_H
|
|
#define FUGG_ITEMKIND3_H
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
namespace flyff {
|
|
enum class ItemKind3 : uint32_t {
|
|
// from https://api.flyff.com/#tag/item
|
|
// Removed identified subcategories
|
|
|
|
// "armorcolor"
|
|
// "axe"
|
|
// "balloon"
|
|
// "board"
|
|
// "book"
|
|
// "boots"
|
|
// "bow"
|
|
// "broom"
|
|
// "car"
|
|
// "cloak"
|
|
// "cloth"
|
|
// "drink"
|
|
// "earring"
|
|
// "elementcard"
|
|
// "event"
|
|
// "food"
|
|
// "gauntlet"
|
|
// "glove"
|
|
// "glow"
|
|
// "hat"
|
|
// "helmet"
|
|
// "inventorybag"
|
|
// "letter"
|
|
// "mask"
|
|
// "mineral"
|
|
// "necklace"
|
|
// "petfeed"
|
|
// "piercingcard"
|
|
// "piercingdice"
|
|
// "pill"
|
|
// "protectscroll"
|
|
// "randomscroll"
|
|
// "refresher"
|
|
// "ring"
|
|
// "shield"
|
|
// "shoes"
|
|
// "specialstone"
|
|
// "staff"
|
|
// "suit"
|
|
// "sword"
|
|
// "townblinkwing"
|
|
// "trans"
|
|
// "upgradedice"
|
|
// "wand"
|
|
// "wings"
|
|
// "yoyo"
|
|
// "gacha"
|
|
// "globalgacha"
|
|
// "giftbox"
|
|
// "ampexp"
|
|
// "upgradescroll"
|
|
// "awakescroll"
|
|
// "visualcloak"
|
|
// "gem"
|
|
// "piece"
|
|
// "ultimatedice"
|
|
// "selectblinkwing"
|
|
// "selectbox"
|
|
// "hoverbike"
|
|
// "guildbag"
|
|
// "raisedpet"
|
|
// "raisedpettransmute"
|
|
// "harvestglove"
|
|
Stick = 202,
|
|
Knuckle = 203,
|
|
|
|
Shield = 300,
|
|
};
|
|
};
|
|
|
|
|
|
#endif //FUGG_ITEMKIND3_H
|