2022-03-13 13:16:28 +00:00
|
|
|
#ifndef PKMNLIB_PKMNITEMUSESCRIPT_HPP
|
|
|
|
#define PKMNLIB_PKMNITEMUSESCRIPT_HPP
|
|
|
|
|
|
|
|
#include <CreatureLib/Battling/ScriptHandling/ItemUseScript.hpp>
|
|
|
|
namespace PkmnLib::Battling {
|
|
|
|
class Pokemon;
|
|
|
|
|
|
|
|
class PkmnItemUseScript : public CreatureLib::Battling::ItemUseScript {
|
|
|
|
public:
|
2022-03-25 18:08:42 +00:00
|
|
|
virtual void ModifyPokeballCatchBonus(Pokemon* non_null pokemon, u8* non_null catchBonus) const {
|
2022-03-13 13:16:28 +00:00
|
|
|
(void)pokemon;
|
|
|
|
(void)catchBonus;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // PKMNLIB_PKMNITEMUSESCRIPT_HPP
|