Implement held item scripts
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-02-19 14:04:43 +01:00
parent c0bdc73606
commit f7c881b4e7
12 changed files with 34 additions and 12 deletions

View File

@@ -78,6 +78,6 @@ PkmnLib::Library::ItemLibrary* TestLibrary::BuildItemLibrary() {
auto lib = new PkmnLib::Library::ItemLibrary();
lib->Insert("testItem"_cnc.GetHash(),
new PkmnLib::Library::Item("testItem"_cnc, CreatureLib::Library::ItemCategory::MiscItem,
CreatureLib::Library::BattleItemCategory::None, 0, nullptr, {}, 0));
CreatureLib::Library::BattleItemCategory::None, 0, nullptr, nullptr, {}, 0));
return lib;
}