/* * api/Artifact.cpp, part of VCMI engine * * Authors: listed in file AUTHORS in main folder * * License: GNU General Public License v2.0 or later * Full text of license available in license.txt file, in main folder * */ #include "StdInc.h" #include "Artifact.h" #include "Registry.h" #include "../LuaStack.h" #include "../LuaCallWrapper.h" #include "../../../lib/bonuses/Bonus.h" #include "../../../lib/bonuses/IBonusBearer.h" VCMI_LIB_NAMESPACE_BEGIN namespace scripting { namespace api { VCMI_REGISTER_CORE_SCRIPT_API(ArtifactProxy, "Artifact"); const std::vector ArtifactProxy::REGISTER_CUSTOM = { {"getIconIndex", LuaMethodWrapper::invoke, false}, {"getIndex", LuaMethodWrapper::invoke, false}, {"getJsonKey", LuaMethodWrapper::invoke, false}, {"getName", LuaMethodWrapper::invoke, false}, {"getId", LuaMethodWrapper::getId), &EntityT::getId>::invoke, false}, {"getBonusBearer", LuaMethodWrapper::invoke, false}, {"getDescription", LuaMethodWrapper::invoke, false}, {"getEventText", LuaMethodWrapper::invoke, false}, {"isBig", LuaMethodWrapper::invoke, false}, {"isTradable", LuaMethodWrapper::invoke, false}, {"getPrice", LuaMethodWrapper::invoke, false}, }; } } VCMI_LIB_NAMESPACE_END