All Downloads are FREE. Search and download functionalities are using the official Maven repository.

POGOProtos.Inventory.LootItem.proto Maven / Gradle / Ivy

syntax = "proto3";
package POGOProtos.Inventory;

import "POGOProtos/Inventory/Item/ItemId.proto";
import "POGOProtos/Enums/PokemonId.proto";
import "POGOProtos/Data/PokemonData.proto";

message LootItem {
	oneof Type {
		.POGOProtos.Inventory.Item.ItemId item = 1;
		bool stardust = 2;
		bool pokecoin = 3;
		.POGOProtos.Enums.PokemonId pokemon_candy = 4;
		int32 count = 5;
		bool experience = 6;
		.POGOProtos.Data.PokemonData pokemon_egg = 7;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy