Struct game_library::SpellData
source · pub struct SpellData {Show 27 fields
pub internal_id: Option<String>,
pub name: String,
pub description: String,
pub long_description: String,
pub spell_tier: usize,
pub magic: MagicType,
pub cast_slot: CastSlot,
pub collision: SpellCollision,
pub cast_type: CastType,
pub cast_category: CastCategory,
pub icon_tileset: String,
pub icon_index: usize,
pub sprite_tileset: String,
pub sprite_index: usize,
pub cooldown: f32,
pub cast_time: f32,
pub mana_cost: usize,
pub range: f32,
pub speed: f32,
pub duration: f32,
pub damage: i32,
pub healing: i32,
pub radius: i32,
pub angle: i32,
pub buffs: Vec<StatEffect>,
pub debuffs: Vec<StatEffect>,
pub particles: Vec<SpellParticles>,
}
Expand description
Details about a spell.
Describes in detail how a spell works and how it should be displayed.
Fields§
§internal_id: Option<String>
The internal ID of the spell.
name: String
The name of the spell.
description: String
A short description of the spell.
long_description: String
A longer description of the spell.
spell_tier: usize
The tier of the spell (0-9 officially).
magic: MagicType
The type of magic the spell uses.
cast_slot: CastSlot
The slot the spell can be cast from.
collision: SpellCollision
The type of collision the spell has.
cast_type: CastType
The type of cast the spell has.
cast_category: CastCategory
How the spell is targeted
icon_tileset: String
The path to the icon for the spell (relative to the game’s asset directory).
icon_index: usize
The index of the spell’s icon in the tileset.
sprite_tileset: String
The path to the sprite tileset for the spell (relative to the game’s asset directory).
sprite_index: usize
The index of the spell’s sprite in the tileset.
cooldown: f32
The cooldown of the spell in seconds
cast_time: f32
The cast time of the spell in seconds
mana_cost: usize
The mana cost of the spell (mana is an integer value)
range: f32
The range of the spell in centimeters.
speed: f32
The speed of the spell in meters per second.
duration: f32
The duration of the spell in seconds.
damage: i32
The base damage of the spell, 0 if the spell does not deal damage.
healing: i32
The base healing of the spell, 0 if the spell does not heal.
radius: i32
Radius of the spell “detonation” in centimeters.
Spells which target the ground use this value to determine the radius of the area of effect.
Spells which are cone or line shaped use this value to determine the width of the cone or line.
angle: i32
The angle of the spell in degrees.
Spells which are cone shaped use this value to determine the angle of the cone.
buffs: Vec<StatEffect>
Buffs that the spell can apply to the caster or to the target.
debuffs: Vec<StatEffect>
Debuffs that the spell can apply to the caster or to the target.
particles: Vec<SpellParticles>
Particles that the spell can create.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for SpellData
impl<'de> Deserialize<'de> for SpellData
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl FromReflect for SpellDatawhere
Option<String>: FromReflect + TypePath,
String: FromReflect + TypePath,
usize: FromReflect + TypePath,
MagicType: FromReflect + TypePath,
CastSlot: FromReflect + TypePath,
SpellCollision: FromReflect + TypePath,
CastType: FromReflect + TypePath,
CastCategory: FromReflect + TypePath,
f32: FromReflect + TypePath,
i32: FromReflect + TypePath,
Vec<StatEffect>: FromReflect + TypePath,
Vec<SpellParticles>: FromReflect + TypePath,
impl FromReflect for SpellDatawhere
Option<String>: FromReflect + TypePath,
String: FromReflect + TypePath,
usize: FromReflect + TypePath,
MagicType: FromReflect + TypePath,
CastSlot: FromReflect + TypePath,
SpellCollision: FromReflect + TypePath,
CastType: FromReflect + TypePath,
CastCategory: FromReflect + TypePath,
f32: FromReflect + TypePath,
i32: FromReflect + TypePath,
Vec<StatEffect>: FromReflect + TypePath,
Vec<SpellParticles>: FromReflect + TypePath,
source§fn from_reflect(reflect: &dyn Reflect) -> Option<Self>
fn from_reflect(reflect: &dyn Reflect) -> Option<Self>
Self
from a reflected value.§fn take_from_reflect(
reflect: Box<dyn Reflect>
) -> Result<Self, Box<dyn Reflect>>
fn take_from_reflect( reflect: Box<dyn Reflect> ) -> Result<Self, Box<dyn Reflect>>
Self
using,
constructing the value using from_reflect
if that fails. Read moresource§impl GetTypeRegistration for SpellDatawhere
Option<String>: FromReflect + TypePath,
String: FromReflect + TypePath,
usize: FromReflect + TypePath,
MagicType: FromReflect + TypePath,
CastSlot: FromReflect + TypePath,
SpellCollision: FromReflect + TypePath,
CastType: FromReflect + TypePath,
CastCategory: FromReflect + TypePath,
f32: FromReflect + TypePath,
i32: FromReflect + TypePath,
Vec<StatEffect>: FromReflect + TypePath,
Vec<SpellParticles>: FromReflect + TypePath,
impl GetTypeRegistration for SpellDatawhere
Option<String>: FromReflect + TypePath,
String: FromReflect + TypePath,
usize: FromReflect + TypePath,
MagicType: FromReflect + TypePath,
CastSlot: FromReflect + TypePath,
SpellCollision: FromReflect + TypePath,
CastType: FromReflect + TypePath,
CastCategory: FromReflect + TypePath,
f32: FromReflect + TypePath,
i32: FromReflect + TypePath,
Vec<StatEffect>: FromReflect + TypePath,
Vec<SpellParticles>: FromReflect + TypePath,
fn get_type_registration() -> TypeRegistration
source§impl InternalId for SpellData
impl InternalId for SpellData
source§fn update_internal_id(&mut self)
fn update_internal_id(&mut self)
Update the spell’s internal ID.
source§fn get_internal_id(&self) -> String
fn get_internal_id(&self) -> String
Get the spell’s internal ID.
source§impl Reflect for SpellDatawhere
Option<String>: FromReflect + TypePath,
String: FromReflect + TypePath,
usize: FromReflect + TypePath,
MagicType: FromReflect + TypePath,
CastSlot: FromReflect + TypePath,
SpellCollision: FromReflect + TypePath,
CastType: FromReflect + TypePath,
CastCategory: FromReflect + TypePath,
f32: FromReflect + TypePath,
i32: FromReflect + TypePath,
Vec<StatEffect>: FromReflect + TypePath,
Vec<SpellParticles>: FromReflect + TypePath,
impl Reflect for SpellDatawhere
Option<String>: FromReflect + TypePath,
String: FromReflect + TypePath,
usize: FromReflect + TypePath,
MagicType: FromReflect + TypePath,
CastSlot: FromReflect + TypePath,
SpellCollision: FromReflect + TypePath,
CastType: FromReflect + TypePath,
CastCategory: FromReflect + TypePath,
f32: FromReflect + TypePath,
i32: FromReflect + TypePath,
Vec<StatEffect>: FromReflect + TypePath,
Vec<SpellParticles>: FromReflect + TypePath,
source§fn get_represented_type_info(&self) -> Option<&'static TypeInfo>
fn get_represented_type_info(&self) -> Option<&'static TypeInfo>
TypeInfo
] of the type represented by this value. Read moresource§fn as_any_mut(&mut self) -> &mut dyn Any
fn as_any_mut(&mut self) -> &mut dyn Any
&mut dyn Any
.source§fn into_reflect(self: Box<Self>) -> Box<dyn Reflect>
fn into_reflect(self: Box<Self>) -> Box<dyn Reflect>
source§fn as_reflect(&self) -> &dyn Reflect
fn as_reflect(&self) -> &dyn Reflect
source§fn as_reflect_mut(&mut self) -> &mut dyn Reflect
fn as_reflect_mut(&mut self) -> &mut dyn Reflect
source§fn clone_value(&self) -> Box<dyn Reflect>
fn clone_value(&self) -> Box<dyn Reflect>
Reflect
trait object. Read moresource§fn set(&mut self, value: Box<dyn Reflect>) -> Result<(), Box<dyn Reflect>>
fn set(&mut self, value: Box<dyn Reflect>) -> Result<(), Box<dyn Reflect>>
source§fn reflect_ref(&self) -> ReflectRef<'_>
fn reflect_ref(&self) -> ReflectRef<'_>
source§fn reflect_mut(&mut self) -> ReflectMut<'_>
fn reflect_mut(&mut self) -> ReflectMut<'_>
source§fn reflect_owned(self: Box<Self>) -> ReflectOwned
fn reflect_owned(self: Box<Self>) -> ReflectOwned
source§fn reflect_partial_eq(&self, value: &dyn Reflect) -> Option<bool>
fn reflect_partial_eq(&self, value: &dyn Reflect) -> Option<bool>
§fn type_name(&self) -> &str
fn type_name(&self) -> &str
§fn reflect_hash(&self) -> Option<u64>
fn reflect_hash(&self) -> Option<u64>
§fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error>
§fn serializable(&self) -> Option<Serializable<'_>>
fn serializable(&self) -> Option<Serializable<'_>>
§fn is_dynamic(&self) -> bool
fn is_dynamic(&self) -> bool
source§impl Struct for SpellDatawhere
Option<String>: FromReflect + TypePath,
String: FromReflect + TypePath,
usize: FromReflect + TypePath,
MagicType: FromReflect + TypePath,
CastSlot: FromReflect + TypePath,
SpellCollision: FromReflect + TypePath,
CastType: FromReflect + TypePath,
CastCategory: FromReflect + TypePath,
f32: FromReflect + TypePath,
i32: FromReflect + TypePath,
Vec<StatEffect>: FromReflect + TypePath,
Vec<SpellParticles>: FromReflect + TypePath,
impl Struct for SpellDatawhere
Option<String>: FromReflect + TypePath,
String: FromReflect + TypePath,
usize: FromReflect + TypePath,
MagicType: FromReflect + TypePath,
CastSlot: FromReflect + TypePath,
SpellCollision: FromReflect + TypePath,
CastType: FromReflect + TypePath,
CastCategory: FromReflect + TypePath,
f32: FromReflect + TypePath,
i32: FromReflect + TypePath,
Vec<StatEffect>: FromReflect + TypePath,
Vec<SpellParticles>: FromReflect + TypePath,
source§fn field(&self, name: &str) -> Option<&dyn Reflect>
fn field(&self, name: &str) -> Option<&dyn Reflect>
name
as a &dyn Reflect
.source§fn field_mut(&mut self, name: &str) -> Option<&mut dyn Reflect>
fn field_mut(&mut self, name: &str) -> Option<&mut dyn Reflect>
name
as a
&mut dyn Reflect
.source§fn field_at(&self, index: usize) -> Option<&dyn Reflect>
fn field_at(&self, index: usize) -> Option<&dyn Reflect>
index
as a
&dyn Reflect
.source§fn field_at_mut(&mut self, index: usize) -> Option<&mut dyn Reflect>
fn field_at_mut(&mut self, index: usize) -> Option<&mut dyn Reflect>
index
as a &mut dyn Reflect
.source§fn name_at(&self, index: usize) -> Option<&str>
fn name_at(&self, index: usize) -> Option<&str>
index
.source§fn iter_fields(&self) -> FieldIter<'_>
fn iter_fields(&self) -> FieldIter<'_>
source§fn clone_dynamic(&self) -> DynamicStruct
fn clone_dynamic(&self) -> DynamicStruct
DynamicStruct
].source§impl TypePath for SpellDatawhere
Option<String>: FromReflect + TypePath,
String: FromReflect + TypePath,
usize: FromReflect + TypePath,
MagicType: FromReflect + TypePath,
CastSlot: FromReflect + TypePath,
SpellCollision: FromReflect + TypePath,
CastType: FromReflect + TypePath,
CastCategory: FromReflect + TypePath,
f32: FromReflect + TypePath,
i32: FromReflect + TypePath,
Vec<StatEffect>: FromReflect + TypePath,
Vec<SpellParticles>: FromReflect + TypePath,
impl TypePath for SpellDatawhere
Option<String>: FromReflect + TypePath,
String: FromReflect + TypePath,
usize: FromReflect + TypePath,
MagicType: FromReflect + TypePath,
CastSlot: FromReflect + TypePath,
SpellCollision: FromReflect + TypePath,
CastType: FromReflect + TypePath,
CastCategory: FromReflect + TypePath,
f32: FromReflect + TypePath,
i32: FromReflect + TypePath,
Vec<StatEffect>: FromReflect + TypePath,
Vec<SpellParticles>: FromReflect + TypePath,
source§fn type_path() -> &'static str
fn type_path() -> &'static str
source§fn short_type_path() -> &'static str
fn short_type_path() -> &'static str
source§fn type_ident() -> Option<&'static str>
fn type_ident() -> Option<&'static str>
source§fn crate_name() -> Option<&'static str>
fn crate_name() -> Option<&'static str>
source§impl Typed for SpellDatawhere
Option<String>: FromReflect + TypePath,
String: FromReflect + TypePath,
usize: FromReflect + TypePath,
MagicType: FromReflect + TypePath,
CastSlot: FromReflect + TypePath,
SpellCollision: FromReflect + TypePath,
CastType: FromReflect + TypePath,
CastCategory: FromReflect + TypePath,
f32: FromReflect + TypePath,
i32: FromReflect + TypePath,
Vec<StatEffect>: FromReflect + TypePath,
Vec<SpellParticles>: FromReflect + TypePath,
impl Typed for SpellDatawhere
Option<String>: FromReflect + TypePath,
String: FromReflect + TypePath,
usize: FromReflect + TypePath,
MagicType: FromReflect + TypePath,
CastSlot: FromReflect + TypePath,
SpellCollision: FromReflect + TypePath,
CastType: FromReflect + TypePath,
CastCategory: FromReflect + TypePath,
f32: FromReflect + TypePath,
i32: FromReflect + TypePath,
Vec<StatEffect>: FromReflect + TypePath,
Vec<SpellParticles>: FromReflect + TypePath,
Auto Trait Implementations§
impl RefUnwindSafe for SpellData
impl Send for SpellData
impl Sync for SpellData
impl Unpin for SpellData
impl UnwindSafe for SpellData
Blanket Implementations§
§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
T
[ShaderType
] for self
. When used in [AsBindGroup
]
derives, it is safe to assume that all images in self
exist.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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> DynamicTypePath for Twhere
T: TypePath,
impl<T> DynamicTypePath for Twhere
T: TypePath,
§fn reflect_type_path(&self) -> &str
fn reflect_type_path(&self) -> &str
TypePath::type_path
].§fn reflect_short_type_path(&self) -> &str
fn reflect_short_type_path(&self) -> &str
TypePath::short_type_path
].§fn reflect_type_ident(&self) -> Option<&str>
fn reflect_type_ident(&self) -> Option<&str>
TypePath::type_ident
].§fn reflect_crate_name(&self) -> Option<&str>
fn reflect_crate_name(&self) -> Option<&str>
TypePath::crate_name
].§fn reflect_module_path(&self) -> Option<&str>
fn reflect_module_path(&self) -> Option<&str>
TypePath::module_path
].§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Self
using data from the given [World
].§impl<S> GetField for Swhere
S: Struct,
impl<S> GetField for Swhere
S: Struct,
§impl<T> GetPath for Twhere
T: Reflect + ?Sized,
impl<T> GetPath for Twhere
T: Reflect + ?Sized,
§fn reflect_path<'p>(
&self,
path: impl ReflectPath<'p>
) -> Result<&(dyn Reflect + 'static), ReflectPathError<'p>>
fn reflect_path<'p>( &self, path: impl ReflectPath<'p> ) -> Result<&(dyn Reflect + 'static), ReflectPathError<'p>>
path
. Read more§fn reflect_path_mut<'p>(
&mut self,
path: impl ReflectPath<'p>
) -> Result<&mut (dyn Reflect + 'static), ReflectPathError<'p>>
fn reflect_path_mut<'p>( &mut self, path: impl ReflectPath<'p> ) -> Result<&mut (dyn Reflect + 'static), ReflectPathError<'p>>
path
. Read more§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
ReadEndian::read_from_little_endian()
.source§impl<T> Serialize for T
impl<T> Serialize for T
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>
source§impl<T> Serialize for T
impl<T> Serialize for T
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>
fn do_erased_serialize( &self, serializer: &mut dyn Serializer ) -> Result<(), ErrorImpl>
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.