underworld_core 0.6.3

Small library to either play a game or assist in generating rooms
Documentation
mod character_item;
mod consumable;
mod consumable_effect;
mod descriptor;
mod fixture_item;
mod item;
mod item_type;
mod location_descriptor;
mod location_tag;
mod throwable;
mod throwable_effect;

pub use character_item::{CharacterItem, CharacterItemView};
pub use consumable::{Consumable, ConsumableView};
pub use consumable_effect::{
    ConsumableEffect, ConsumableEffectName, ConsumableEffectNameIter, HealingEffect,
    LearnSpellEffect,
};
pub use descriptor::{Descriptor, DescriptorIter};
pub use fixture_item::{FixtureItem, FixtureItemView};
pub use item::{Item, ItemView};
pub use item_type::{ItemType, ItemTypeIter};
pub use location_descriptor::{LocationDescriptor, LocationDescriptorIter};
pub use location_tag::{
    location_tags_for_item_type, packed_tags_for_item_type, ready_tag_for_item_type, LocationTag,
    LocationTagIter,
};
pub use throwable::{Throwable, ThrowableView};
pub use throwable_effect::{OilSplashEffect, ThrowableEffect, ThrowableEffectName};