pbStoreItem(item,qty=1)
#Adds an item directly to the Player's PC and kwatar is a dumb idiot
def pbDepositItemStorage(item, qty = 1)
if !$PokemonGlobal.pcItemStorage
$PokemonGlobal.pcItemStorage = PCItemStorage.new
end
storage = $PokemonGlobal.pcItemStorage
storage.add(item, qty)
end
pbDepositItemStorage(<ITEM NAME>, <NUMBER OF ITEMS>)