// Any line that starts with a "//" will be ignored // Any line utilitizing an = operator must have a spaceon both sides // Parameter = Value works // Parameter=Value does not work // // Colors are defined as RGB values. They can be specified with just spaces // e.g. 255 0 128 // Main Settings // Defines the number of columns for display. Rows get calculated based on this // value and the number of displayed Pokémon pokemon_per_row = 11 // state_rightclick defines the Tracked (right-clicked) state // Default is Blue (0 0 255) // state_default defines the Unselected (default) state // Default is White (255 255 255) // state_leftclick defines the Selected (left-clicked) state // Default is Black (0 0 0) // state_doubleclick defines the Flagged (double left-clicked) state // Default is Red (255 0 0) state_rightclick = 0 0 255 state_default = 255 255 255 state_leftclick = 0 0 0 state_doubleclick = 255 0 0 // Counters // Counters are defined in blocks indicated by the counter_start and the // counter_end keywords. Any number of counters may be added. Each counter // takes up 4 columns and will always be forced to the bottom row. This means // your tracker will be at least as wide as the number of counters you have // regardless of your pokemon_per_row value. This may/will change in the // future // // A default counter will be added if no counter is specified // Black counter that says "Total" and counts Selected and Flagged Pokémon counter_start display_text = Total display_color = 0 0 0 counted_state = state_leftclick counted_state = state_doubleclick counter_end counter_start display_text = Expected display_color = 0 0 0 counted_state = state_leftclick counted_state = state_doubleclick counter_end // Pokémon Lists // Pokémon Lists are a way for you to customize what appears in the tracker, // and what is defaulted. You can specify all of the Pokémon that should be // removed, as well as the default state for each Pokémon. For each list, the // capitalization doesn't matter, but your spelling does. Anything listed // outside of the blocks will be ignored // // By default, all Pokémon will show up and everything will start in a Default // state // List out all Pokémon that should be removed from the counter in this list deleted_pokemon_start Mewtwo Mew Dragonite Dragonair Dartini Moltres Articuno Snorlax Kabuto Kabutops Omastar Porygon Jolteon Vaporeon Gyarados Pinsir Magmar Jynx Starmie Staryu Horsea Seadra Rhydon Hitmonchan Hitmonlee Kingler Krabby Gengar Haunter Cloyster Shellder Muk Dodrio Slowbro Slowpoke Golem Victreebell Weepinbell Bellsprout Machamp Alakazam Kadabra Poliwrath Poliwhirl Ninetales Vulpix Sandslash Sandshrew deleted_pokemon_end // List out all Pokémon that should start in a Tracked (right-clicked) state default_rightclick_start default_rightclick_end // List out all Pokémon that should start in a Selected (left-clicked) state default_leftclick_start default_leftclick_end // List out all Pokémon that should start in a Flagged (double-clicked) state default_doubleclick_start default_doubleclick_end