rustemon/encounters.rs
1//! Encounters endpoints group
2
3/// Methods by which the player might can encounter Pokémon in the wild, e.g., walking in tall grass.
4/// Check out [Bulbapedia](http:///bulbapedia.bulbagarden.net/wiki/Wild_Pokémon) for greater detail.
5pub mod encounter_method {
6 crate::endpoint!(crate::model::encounters::EncounterMethod; for "encounter-method");
7}
8
9/// Conditions which affect what pokemon might appear in the wild, e.g., day or night.
10pub mod encounter_condition {
11 crate::endpoint!(crate::model::encounters::EncounterCondition; for "encounter-condition");
12}
13
14/// Encounter condition values are the various states that an encounter condition can have,
15/// i.e., time of day can be either day or night.
16pub mod encounter_condition_value {
17 crate::endpoint!(crate::model::encounters::EncounterConditionValue; for "encounter-condition-value");
18}