pub enum GoldenVariant {
Lucky,
Frenzy,
Buff,
}Expand description
A Golden Cuque variant. The on-screen marker color + label differ per
variant, but all are caught through the same path (mouse click on the
marker, or the g hotkey). See GameState::catch_golden for effects.
Variants§
Lucky
Instant flat reward: max(10, fps * 60s) cuques. No buff, no duration.
Frenzy
13-second ClickFrenzy buff: manual clicks produce x777 cuques.
Buff
60-second FingererBoost buff on a random owned fingerer: that
fingerer’s passive FPS is multiplied x7.
Implementations§
Source§impl GoldenVariant
impl GoldenVariant
Trait Implementations§
Source§impl Clone for GoldenVariant
impl Clone for GoldenVariant
Source§fn clone(&self) -> GoldenVariant
fn clone(&self) -> GoldenVariant
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GoldenVariant
impl Debug for GoldenVariant
Source§impl PartialEq for GoldenVariant
impl PartialEq for GoldenVariant
Source§fn eq(&self, other: &GoldenVariant) -> bool
fn eq(&self, other: &GoldenVariant) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for GoldenVariant
impl Eq for GoldenVariant
impl StructuralPartialEq for GoldenVariant
Auto Trait Implementations§
impl Freeze for GoldenVariant
impl RefUnwindSafe for GoldenVariant
impl Send for GoldenVariant
impl Sync for GoldenVariant
impl Unpin for GoldenVariant
impl UnsafeUnpin for GoldenVariant
impl UnwindSafe for GoldenVariant
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more