1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! Buff bindings & utilities.
//!
//! Buffs are temporary "effects" applied to agents.
//! Some buffs modify the attributes of the destination agent.
//! They can be positive like Boons, negative like Conditions or mixed.
//! Some buffs do not do anything themselves and are simply used to as markers to track cooldowns, mechanics etc.

mod apply;
mod attribute;
mod damage;
mod formula;
mod info;
mod initial;
mod remove;
mod stack;

pub use self::apply::*;
pub use self::attribute::*;
pub use self::damage::*;
pub use self::formula::*;
pub use self::info::*;
pub use self::initial::*;
pub use self::remove::*;
pub use self::stack::*;