hdkv
/
i2_bot
Archived
1
Fork 0
This repository has been archived on 2022-11-04. You can view files and clone it, but cannot push or open issues/pull-requests.
i2_bot/lib/getters/gettersinterface/gettersinterface.go

25 lines
729 B
Go
Raw Normal View History

2017-10-13 00:31:12 +04:00
// i2_bot Instinct PokememBro Bot
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
package gettersinterface
import (
// local
"../../dbmapping"
)
2017-10-13 00:31:12 +04:00
type GettersInterface interface {
Init()
// Player
GetOrCreatePlayer(telegram_id int) (dbmapping.Player, bool)
2017-10-13 03:52:04 +04:00
GetPlayerByID(player_id int) (dbmapping.Player, bool)
// Profile
GetProfile(player_id int) (dbmapping.Profile, bool)
// Pokememes
GetPokememes() ([]dbmapping.PokememeFull, bool)
2017-10-13 03:52:04 +04:00
GetBestPokememes(player_id int) ([]dbmapping.PokememeFull, bool)
GetPokememeByID(pokememe_id string) (dbmapping.PokememeFull, bool)
2017-10-13 00:31:12 +04:00
// Possibilities
PossibilityRequiredPokeballs(location int, grade int, lvl int) (float64, int)
2017-10-13 00:31:12 +04:00
}