mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 19:19:55 +00:00
32 lines
431 B
C++
32 lines
431 B
C++
#ifndef _ESM_ALCH_H
|
|
#define _ESM_ALCH_H
|
|
|
|
#include "esm_reader.hpp"
|
|
#include "defs.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
/*
|
|
* Alchemy item (potions)
|
|
*/
|
|
|
|
struct Potion
|
|
{
|
|
struct ALDTstruct
|
|
{
|
|
float weight;
|
|
int value;
|
|
int autoCalc;
|
|
};
|
|
ALDTstruct data;
|
|
|
|
std::string name, model, icon, script;
|
|
EffectList effects;
|
|
|
|
std::string mId;
|
|
|
|
void load(ESMReader &esm, const std::string& id);
|
|
};
|
|
}
|
|
#endif
|