Skip to content

Select a pokemon and it displays the strengths and weaknesses of each type.

Notifications You must be signed in to change notification settings

DonKaramazov/PokeTypes

Repository files navigation

PokeTypes

Select a pokemon and it displays the strengths and weaknesses of each type. Is only valid from the sixth generation.

Technical

Coded in c# 7 with VS Community 17 .Net Framework 4.5.2

Inspired by the builder pattern which creates easily the types :


PokemonType fairy = new PokeBuilder(Element.FAIRY)
                .VulnerableTo(Element.STEEL, Element.POISON)
                .ResistantTo(Element.FIGHTING, Element.BUG, Element.DARK)
                .ImmuneTo(Element.DRAGON)
                .Build();

Preview

Capture

About

Select a pokemon and it displays the strengths and weaknesses of each type.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages