├── .gitignore ├── LICENSE ├── README.md ├── assets ├── rotogram-wide.png └── rotogram.png ├── requirements.txt ├── scripts └── update_pokemon.py └── src ├── chats.json ├── config.ini ├── const.py ├── data.py ├── datapage.py ├── evolutions.py ├── inline.py ├── main.py ├── markup.py ├── moves.py ├── pokemon.txt └── shiny.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/README.md -------------------------------------------------------------------------------- /assets/rotogram-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/assets/rotogram-wide.png -------------------------------------------------------------------------------- /assets/rotogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/assets/rotogram.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/update_pokemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/scripts/update_pokemon.py -------------------------------------------------------------------------------- /src/chats.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/src/config.ini -------------------------------------------------------------------------------- /src/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/src/const.py -------------------------------------------------------------------------------- /src/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/src/data.py -------------------------------------------------------------------------------- /src/datapage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/src/datapage.py -------------------------------------------------------------------------------- /src/evolutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/src/evolutions.py -------------------------------------------------------------------------------- /src/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/src/inline.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/src/main.py -------------------------------------------------------------------------------- /src/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/src/markup.py -------------------------------------------------------------------------------- /src/moves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/src/moves.py -------------------------------------------------------------------------------- /src/pokemon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/src/pokemon.txt -------------------------------------------------------------------------------- /src/shiny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alessiocelentano/rotogram/HEAD/src/shiny.py --------------------------------------------------------------------------------