This commit only updates the XCode project for the changes. A later commit each will update it for scons and MSVC. A few actual changes are mixed in: - Add a prefix header for a handful of common definitions - Moved current_cursor into the Cursor class as a static member - Removed the make_cursor_sword and make_cursor_watch functions - Include tests in the All target - Remove redundant -l flags for Common and Common-Party (since they're included in the Link phases anyway)
37 lines
514 B
C++
37 lines
514 B
C++
//
|
|
// alchemy.hpp
|
|
// BoE
|
|
//
|
|
// Created by Celtic Minstrel on 17-04-13.
|
|
//
|
|
//
|
|
|
|
#ifndef BoE_ALCHEMY_HPP
|
|
#define BoE_ALCHEMY_HPP
|
|
|
|
enum class eAlchemy {
|
|
NONE = -1,
|
|
CURE_WEAK = 0,
|
|
HEAL_WEAK = 1,
|
|
POISON_WEAK = 2,
|
|
SPEED_WEAK = 3,
|
|
POISON_MED = 4,
|
|
HEAL_MED = 5,
|
|
CURE_STRONG = 6,
|
|
SPEED_MED = 7,
|
|
GRAYMOLD = 8,
|
|
POWER_WEAK = 9,
|
|
CLARITY = 10,
|
|
POISON_STRONG = 11,
|
|
HEAL_STRONG = 12,
|
|
POISON_KILL = 13,
|
|
RESURRECT = 14,
|
|
POWER_MED = 15,
|
|
KNOWLEDGE = 16,
|
|
STRENGTH = 17,
|
|
BLISS = 18,
|
|
POWER_STRONG = 19,
|
|
};
|
|
|
|
#endif
|