Skip to content

Instantly share code, notes, and snippets.

@aryasurya21
Created December 12, 2020 05:36
Show Gist options
  • Save aryasurya21/0280ae1e488e23b15322796294f58a85 to your computer and use it in GitHub Desktop.
Save aryasurya21/0280ae1e488e23b15322796294f58a85 to your computer and use it in GitHub Desktop.
private var pokemons = mutableListOf<PokemonModel>(
PokemonModel(
"Pikachu",
"https://images-na.ssl-images-amazon.com/images/I/61iWqqcq%2BKL._AC_SL1500_.jpg"
),
PokemonModel(
"Bulbasaur",
"https://cdn.bulbagarden.net/upload/2/21/001Bulbasaur.png"
),
PokemonModel(
"Charizard",
"https://assets.pokemon.com/assets/cms2/img/pokedex/full/006_f3.png"
),
PokemonModel(
"Palkia",
"https://static.pokemonpets.com/images/monsters-images-800-800/2484-Shiny-Palkia.png"
),
PokemonModel(
"Dialga",
"https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/37268c81-dce3-44a4-9064-5001138eb2d9/dcxcjba-23a81684-da35-409f-ad07-53d7ca4c5f92.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOiIsImlzcyI6InVybjphcHA6Iiwib2JqIjpbW3sicGF0aCI6IlwvZlwvMzcyNjhjODEtZGNlMy00NGE0LTkwNjQtNTAwMTEzOGViMmQ5XC9kY3hjamJhLTIzYTgxNjg0LWRhMzUtNDA5Zi1hZDA3LTUzZDdjYTRjNWY5Mi5wbmcifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6ZmlsZS5kb3dubG9hZCJdfQ.V98zx0wbNO8iY5MSDPBGtaA7azpkgcc3wpjGJWplzgA"
),
PokemonModel(
"Giratina",
"https://gamepress.gg/pokemongo/sites/pokemongo/files/2018-02/487Giratina-Altered.png"
),
PokemonModel(
"Latias",
"https://i.pinimg.com/originals/cd/82/aa/cd82aa5463914621836178cf722777e8.png"
),
PokemonModel(
"Latios",
"https://cdn.bulbagarden.net/upload/thumb/5/52/381Latios.png/1200px-381Latios.png"
),
PokemonModel(
"Snorlax",
"https://miro.medium.com/max/1936/1*3vmrvcM-fZzHAmksjf7kAg.png"
),
PokemonModel(
"Hehe",
"https://pngimage.net/wp-content/uploads/2018/06/%D0%B4%D0%B6%D0%B5%D1%80%D1%80%D0%B8-%D0%BC%D0%B5%D0%BC-png-.png"
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment