├── .gitignore ├── LICENSE ├── README.md ├── SCsub ├── config.py ├── config.pyc ├── data ├── atlases │ ├── character_atlas.cpp │ ├── character_atlas.h │ ├── character_atlas_entry.cpp │ └── character_atlas_entry.h ├── auras │ ├── aura_group.cpp │ └── aura_group.h ├── items │ ├── craft_recipe.cpp │ ├── craft_recipe.h │ ├── craft_recipe_helper.cpp │ ├── craft_recipe_helper.h │ ├── equipment_data.cpp │ ├── equipment_data.h │ ├── item_instance.cpp │ ├── item_instance.h │ ├── item_template.cpp │ ├── item_template.h │ ├── model_visual.cpp │ ├── model_visual.h │ ├── model_visual_entry.cpp │ └── model_visual_entry.h ├── loot │ ├── loot_data_base.cpp │ └── loot_data_base.h ├── species │ ├── entity_species_data.cpp │ ├── entity_species_data.h │ ├── species_instance.cpp │ ├── species_instance.h │ ├── species_model_data.cpp │ └── species_model_data.h └── spells │ ├── spell.cpp │ ├── spell.h │ ├── spell_cooldown_manipulation_data.cpp │ ├── spell_cooldown_manipulation_data.h │ ├── spell_effect_visual.cpp │ ├── spell_effect_visual.h │ ├── spell_effect_visual_simple.cpp │ └── spell_effect_visual_simple.h ├── database ├── ess_resource_db.cpp ├── ess_resource_db.h ├── ess_resource_db_folders.cpp ├── ess_resource_db_folders.h ├── ess_resource_db_map.cpp ├── ess_resource_db_map.h ├── ess_resource_db_static.cpp └── ess_resource_db_static.h ├── defines.h ├── doc_classes ├── AIFormation.xml ├── ActionBarButtonEntry.xml ├── ActionBarEntry.xml ├── ActionBarProfile.xml ├── AuraApplyInfo.xml ├── AuraData.xml ├── AuraGroup.xml ├── Bag.xml ├── CharacterAtlas.xml ├── CharacterAtlasEntry.xml ├── CharacterBones.xml ├── CharacterSkeleton2D.xml ├── CharacterSkeleton3D.xml ├── CharacterSpec.xml ├── ClassProfile.xml ├── ComplexLevelStatData.xml ├── CraftRecipe.xml ├── CraftRecipeHelper.xml ├── ESDragAndDrop.xml ├── ESS.xml ├── ESSEntitySpawner.xml ├── ESSMaterialCache.xml ├── ESSMaterialCachePCM.xml ├── ESSResourceDB.xml ├── ESSResourceDBFolders.xml ├── ESSResourceDBMap.xml ├── ESSResourceDBStatic.xml ├── Entity.xml ├── EntityAI.xml ├── EntityClassData.xml ├── EntityCreateInfo.xml ├── EntityData.xml ├── EntityDataContainer.xml ├── EntityEnums.xml ├── EntityResource.xml ├── EntityResourceCostData.xml ├── EntityResourceCostDataHealth.xml ├── EntityResourceCostDataResource.xml ├── EntityResourceHealth.xml ├── EntityResourceSpeed.xml ├── EntitySkill.xml ├── EntitySkillData.xml ├── EntitySpeciesData.xml ├── EquipmentData.xml ├── InputProfile.xml ├── InputProfileModifier.xml ├── InputProfileModifierEntry.xml ├── ItemContainerData.xml ├── ItemContainerDataEntry.xml ├── ItemEnums.xml ├── ItemInstance.xml ├── ItemTemplate.xml ├── LevelStatData.xml ├── LootDataBase.xml ├── ModelVisual.xml ├── ModelVisualEntry.xml ├── PlayerProfile.xml ├── ProfileManager.xml ├── PropDataEntity.xml ├── SimpleLevelStatData.xml ├── SkeletonModelEntry.xml ├── SpeciesInstance.xml ├── SpeciesModelData.xml ├── Spell.xml ├── SpellCastInfo.xml ├── SpellCooldownManipulationData.xml ├── SpellDamageInfo.xml ├── SpellEffectVisual.xml ├── SpellEffectVisualSimple.xml ├── SpellEnums.xml ├── SpellFollowProjectile3D.xml ├── SpellHealInfo.xml ├── StatData.xml ├── VendorItemData.xml └── VendorItemDataEntry.xml ├── drag_and_drop ├── es_drag_and_drop.cpp └── es_drag_and_drop.h ├── editor ├── ess_editor_plugin.cpp └── ess_editor_plugin.h ├── entities ├── ai │ ├── entity_ai.cpp │ └── entity_ai.h ├── auras │ ├── aura_data.cpp │ └── aura_data.h ├── data │ ├── character_spec.cpp │ ├── character_spec.h │ ├── entity_class_data.cpp │ ├── entity_class_data.h │ ├── entity_data.cpp │ ├── entity_data.h │ ├── entity_data_container.cpp │ ├── entity_data_container.h │ ├── item_container_data.cpp │ ├── item_container_data.h │ ├── item_container_data_entry.cpp │ ├── item_container_data_entry.h │ ├── vendor_item_data.cpp │ ├── vendor_item_data.h │ ├── vendor_item_data_entry.cpp │ └── vendor_item_data_entry.h ├── entity.cpp ├── entity.h ├── resources │ ├── entity_resource.cpp │ ├── entity_resource.h │ ├── entity_resource_cost_data.cpp │ ├── entity_resource_cost_data.h │ ├── entity_resource_cost_data_health.cpp │ ├── entity_resource_cost_data_health.h │ ├── entity_resource_cost_data_resource.cpp │ ├── entity_resource_cost_data_resource.h │ ├── entity_resource_health.cpp │ ├── entity_resource_health.h │ ├── entity_resource_speed.cpp │ └── entity_resource_speed.h ├── skills │ ├── entity_skill.cpp │ ├── entity_skill.h │ ├── entity_skill_data.cpp │ └── entity_skill_data.h └── stats │ ├── complex_level_stat_data.cpp │ ├── complex_level_stat_data.h │ ├── level_stat_data.cpp │ ├── level_stat_data.h │ ├── simple_level_stat_data.cpp │ ├── simple_level_stat_data.h │ ├── stat_data.cpp │ └── stat_data.h ├── entity_enums.cpp ├── entity_enums.h ├── formations ├── ai_formation.cpp └── ai_formation.h ├── infos ├── aura_infos.cpp ├── aura_infos.h ├── spell_cast_info.cpp └── spell_cast_info.h ├── inventory ├── bag.cpp ├── bag.h ├── grid_bag.cpp ├── grid_bag.h ├── inventory.cpp ├── inventory.h ├── normal_bag.cpp └── normal_bag.h ├── item_enums.cpp ├── item_enums.h ├── material_cache ├── ess_material_cache.cpp ├── ess_material_cache.h ├── ess_material_cache_pcm.cpp └── ess_material_cache_pcm.h ├── pipelines ├── spell_damage_info.cpp ├── spell_damage_info.h ├── spell_heal_info.cpp └── spell_heal_info.h ├── profiles ├── actionbar │ ├── action_bar_button_entry.cpp │ ├── action_bar_button_entry.h │ ├── action_bar_entry.cpp │ ├── action_bar_entry.h │ ├── action_bar_profile.cpp │ └── action_bar_profile.h ├── class_profile.cpp ├── class_profile.h ├── input │ ├── input_profile.cpp │ ├── input_profile.h │ ├── input_profile_modifier.cpp │ ├── input_profile_modifier.h │ ├── input_profile_modifier_entry.cpp │ └── input_profile_modifier_entry.h ├── player_profile.cpp └── player_profile.h ├── projectiles └── 3d │ ├── spell_follow_projectile_3d.cpp │ └── spell_follow_projectile_3d.h ├── props ├── prop_data_entity.cpp └── prop_data_entity.h ├── register_types.cpp ├── register_types.h ├── singletons ├── ess.cpp ├── ess.h ├── profile_manager.cpp └── profile_manager.h ├── skeleton ├── character_bones.cpp ├── character_bones.h ├── character_skeleton_2d.cpp ├── character_skeleton_2d.h ├── character_skeleton_3d.cpp ├── character_skeleton_3d.h ├── entity_skeleton_data.cpp ├── entity_skeleton_data.h ├── skeleton_model_entry.cpp └── skeleton_model_entry.h ├── spawners ├── ess_entity_spawner.cpp └── ess_entity_spawner.h ├── spell_enums.cpp ├── spell_enums.h └── utility ├── entity_create_info.cpp └── entity_create_info.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/README.md -------------------------------------------------------------------------------- /SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/SCsub -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/config.py -------------------------------------------------------------------------------- /config.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/config.pyc -------------------------------------------------------------------------------- /data/atlases/character_atlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/atlases/character_atlas.cpp -------------------------------------------------------------------------------- /data/atlases/character_atlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/atlases/character_atlas.h -------------------------------------------------------------------------------- /data/atlases/character_atlas_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/atlases/character_atlas_entry.cpp -------------------------------------------------------------------------------- /data/atlases/character_atlas_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/atlases/character_atlas_entry.h -------------------------------------------------------------------------------- /data/auras/aura_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/auras/aura_group.cpp -------------------------------------------------------------------------------- /data/auras/aura_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/auras/aura_group.h -------------------------------------------------------------------------------- /data/items/craft_recipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/items/craft_recipe.cpp -------------------------------------------------------------------------------- /data/items/craft_recipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/items/craft_recipe.h -------------------------------------------------------------------------------- /data/items/craft_recipe_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/items/craft_recipe_helper.cpp -------------------------------------------------------------------------------- /data/items/craft_recipe_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/items/craft_recipe_helper.h -------------------------------------------------------------------------------- /data/items/equipment_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/items/equipment_data.cpp -------------------------------------------------------------------------------- /data/items/equipment_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/items/equipment_data.h -------------------------------------------------------------------------------- /data/items/item_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/items/item_instance.cpp -------------------------------------------------------------------------------- /data/items/item_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/items/item_instance.h -------------------------------------------------------------------------------- /data/items/item_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/items/item_template.cpp -------------------------------------------------------------------------------- /data/items/item_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/items/item_template.h -------------------------------------------------------------------------------- /data/items/model_visual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/items/model_visual.cpp -------------------------------------------------------------------------------- /data/items/model_visual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/items/model_visual.h -------------------------------------------------------------------------------- /data/items/model_visual_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/items/model_visual_entry.cpp -------------------------------------------------------------------------------- /data/items/model_visual_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/items/model_visual_entry.h -------------------------------------------------------------------------------- /data/loot/loot_data_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/loot/loot_data_base.cpp -------------------------------------------------------------------------------- /data/loot/loot_data_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/loot/loot_data_base.h -------------------------------------------------------------------------------- /data/species/entity_species_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/species/entity_species_data.cpp -------------------------------------------------------------------------------- /data/species/entity_species_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/species/entity_species_data.h -------------------------------------------------------------------------------- /data/species/species_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/species/species_instance.cpp -------------------------------------------------------------------------------- /data/species/species_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/species/species_instance.h -------------------------------------------------------------------------------- /data/species/species_model_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/species/species_model_data.cpp -------------------------------------------------------------------------------- /data/species/species_model_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/species/species_model_data.h -------------------------------------------------------------------------------- /data/spells/spell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/spells/spell.cpp -------------------------------------------------------------------------------- /data/spells/spell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/spells/spell.h -------------------------------------------------------------------------------- /data/spells/spell_cooldown_manipulation_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/spells/spell_cooldown_manipulation_data.cpp -------------------------------------------------------------------------------- /data/spells/spell_cooldown_manipulation_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/spells/spell_cooldown_manipulation_data.h -------------------------------------------------------------------------------- /data/spells/spell_effect_visual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/spells/spell_effect_visual.cpp -------------------------------------------------------------------------------- /data/spells/spell_effect_visual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/spells/spell_effect_visual.h -------------------------------------------------------------------------------- /data/spells/spell_effect_visual_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/spells/spell_effect_visual_simple.cpp -------------------------------------------------------------------------------- /data/spells/spell_effect_visual_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/data/spells/spell_effect_visual_simple.h -------------------------------------------------------------------------------- /database/ess_resource_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/database/ess_resource_db.cpp -------------------------------------------------------------------------------- /database/ess_resource_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/database/ess_resource_db.h -------------------------------------------------------------------------------- /database/ess_resource_db_folders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/database/ess_resource_db_folders.cpp -------------------------------------------------------------------------------- /database/ess_resource_db_folders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/database/ess_resource_db_folders.h -------------------------------------------------------------------------------- /database/ess_resource_db_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/database/ess_resource_db_map.cpp -------------------------------------------------------------------------------- /database/ess_resource_db_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/database/ess_resource_db_map.h -------------------------------------------------------------------------------- /database/ess_resource_db_static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/database/ess_resource_db_static.cpp -------------------------------------------------------------------------------- /database/ess_resource_db_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/database/ess_resource_db_static.h -------------------------------------------------------------------------------- /defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/defines.h -------------------------------------------------------------------------------- /doc_classes/AIFormation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/AIFormation.xml -------------------------------------------------------------------------------- /doc_classes/ActionBarButtonEntry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ActionBarButtonEntry.xml -------------------------------------------------------------------------------- /doc_classes/ActionBarEntry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ActionBarEntry.xml -------------------------------------------------------------------------------- /doc_classes/ActionBarProfile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ActionBarProfile.xml -------------------------------------------------------------------------------- /doc_classes/AuraApplyInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/AuraApplyInfo.xml -------------------------------------------------------------------------------- /doc_classes/AuraData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/AuraData.xml -------------------------------------------------------------------------------- /doc_classes/AuraGroup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/AuraGroup.xml -------------------------------------------------------------------------------- /doc_classes/Bag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/Bag.xml -------------------------------------------------------------------------------- /doc_classes/CharacterAtlas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/CharacterAtlas.xml -------------------------------------------------------------------------------- /doc_classes/CharacterAtlasEntry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/CharacterAtlasEntry.xml -------------------------------------------------------------------------------- /doc_classes/CharacterBones.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/CharacterBones.xml -------------------------------------------------------------------------------- /doc_classes/CharacterSkeleton2D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/CharacterSkeleton2D.xml -------------------------------------------------------------------------------- /doc_classes/CharacterSkeleton3D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/CharacterSkeleton3D.xml -------------------------------------------------------------------------------- /doc_classes/CharacterSpec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/CharacterSpec.xml -------------------------------------------------------------------------------- /doc_classes/ClassProfile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ClassProfile.xml -------------------------------------------------------------------------------- /doc_classes/ComplexLevelStatData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ComplexLevelStatData.xml -------------------------------------------------------------------------------- /doc_classes/CraftRecipe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/CraftRecipe.xml -------------------------------------------------------------------------------- /doc_classes/CraftRecipeHelper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/CraftRecipeHelper.xml -------------------------------------------------------------------------------- /doc_classes/ESDragAndDrop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ESDragAndDrop.xml -------------------------------------------------------------------------------- /doc_classes/ESS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ESS.xml -------------------------------------------------------------------------------- /doc_classes/ESSEntitySpawner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ESSEntitySpawner.xml -------------------------------------------------------------------------------- /doc_classes/ESSMaterialCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ESSMaterialCache.xml -------------------------------------------------------------------------------- /doc_classes/ESSMaterialCachePCM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ESSMaterialCachePCM.xml -------------------------------------------------------------------------------- /doc_classes/ESSResourceDB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ESSResourceDB.xml -------------------------------------------------------------------------------- /doc_classes/ESSResourceDBFolders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ESSResourceDBFolders.xml -------------------------------------------------------------------------------- /doc_classes/ESSResourceDBMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ESSResourceDBMap.xml -------------------------------------------------------------------------------- /doc_classes/ESSResourceDBStatic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ESSResourceDBStatic.xml -------------------------------------------------------------------------------- /doc_classes/Entity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/Entity.xml -------------------------------------------------------------------------------- /doc_classes/EntityAI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/EntityAI.xml -------------------------------------------------------------------------------- /doc_classes/EntityClassData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/EntityClassData.xml -------------------------------------------------------------------------------- /doc_classes/EntityCreateInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/EntityCreateInfo.xml -------------------------------------------------------------------------------- /doc_classes/EntityData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/EntityData.xml -------------------------------------------------------------------------------- /doc_classes/EntityDataContainer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/EntityDataContainer.xml -------------------------------------------------------------------------------- /doc_classes/EntityEnums.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/EntityEnums.xml -------------------------------------------------------------------------------- /doc_classes/EntityResource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/EntityResource.xml -------------------------------------------------------------------------------- /doc_classes/EntityResourceCostData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/EntityResourceCostData.xml -------------------------------------------------------------------------------- /doc_classes/EntityResourceCostDataHealth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/EntityResourceCostDataHealth.xml -------------------------------------------------------------------------------- /doc_classes/EntityResourceCostDataResource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/EntityResourceCostDataResource.xml -------------------------------------------------------------------------------- /doc_classes/EntityResourceHealth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/EntityResourceHealth.xml -------------------------------------------------------------------------------- /doc_classes/EntityResourceSpeed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/EntityResourceSpeed.xml -------------------------------------------------------------------------------- /doc_classes/EntitySkill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/EntitySkill.xml -------------------------------------------------------------------------------- /doc_classes/EntitySkillData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/EntitySkillData.xml -------------------------------------------------------------------------------- /doc_classes/EntitySpeciesData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/EntitySpeciesData.xml -------------------------------------------------------------------------------- /doc_classes/EquipmentData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/EquipmentData.xml -------------------------------------------------------------------------------- /doc_classes/InputProfile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/InputProfile.xml -------------------------------------------------------------------------------- /doc_classes/InputProfileModifier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/InputProfileModifier.xml -------------------------------------------------------------------------------- /doc_classes/InputProfileModifierEntry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/InputProfileModifierEntry.xml -------------------------------------------------------------------------------- /doc_classes/ItemContainerData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ItemContainerData.xml -------------------------------------------------------------------------------- /doc_classes/ItemContainerDataEntry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ItemContainerDataEntry.xml -------------------------------------------------------------------------------- /doc_classes/ItemEnums.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ItemEnums.xml -------------------------------------------------------------------------------- /doc_classes/ItemInstance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ItemInstance.xml -------------------------------------------------------------------------------- /doc_classes/ItemTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ItemTemplate.xml -------------------------------------------------------------------------------- /doc_classes/LevelStatData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/LevelStatData.xml -------------------------------------------------------------------------------- /doc_classes/LootDataBase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/LootDataBase.xml -------------------------------------------------------------------------------- /doc_classes/ModelVisual.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ModelVisual.xml -------------------------------------------------------------------------------- /doc_classes/ModelVisualEntry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ModelVisualEntry.xml -------------------------------------------------------------------------------- /doc_classes/PlayerProfile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/PlayerProfile.xml -------------------------------------------------------------------------------- /doc_classes/ProfileManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/ProfileManager.xml -------------------------------------------------------------------------------- /doc_classes/PropDataEntity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/PropDataEntity.xml -------------------------------------------------------------------------------- /doc_classes/SimpleLevelStatData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/SimpleLevelStatData.xml -------------------------------------------------------------------------------- /doc_classes/SkeletonModelEntry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/SkeletonModelEntry.xml -------------------------------------------------------------------------------- /doc_classes/SpeciesInstance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/SpeciesInstance.xml -------------------------------------------------------------------------------- /doc_classes/SpeciesModelData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/SpeciesModelData.xml -------------------------------------------------------------------------------- /doc_classes/Spell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/Spell.xml -------------------------------------------------------------------------------- /doc_classes/SpellCastInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/SpellCastInfo.xml -------------------------------------------------------------------------------- /doc_classes/SpellCooldownManipulationData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/SpellCooldownManipulationData.xml -------------------------------------------------------------------------------- /doc_classes/SpellDamageInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/SpellDamageInfo.xml -------------------------------------------------------------------------------- /doc_classes/SpellEffectVisual.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/SpellEffectVisual.xml -------------------------------------------------------------------------------- /doc_classes/SpellEffectVisualSimple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/SpellEffectVisualSimple.xml -------------------------------------------------------------------------------- /doc_classes/SpellEnums.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/SpellEnums.xml -------------------------------------------------------------------------------- /doc_classes/SpellFollowProjectile3D.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/SpellFollowProjectile3D.xml -------------------------------------------------------------------------------- /doc_classes/SpellHealInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/SpellHealInfo.xml -------------------------------------------------------------------------------- /doc_classes/StatData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/StatData.xml -------------------------------------------------------------------------------- /doc_classes/VendorItemData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/VendorItemData.xml -------------------------------------------------------------------------------- /doc_classes/VendorItemDataEntry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/doc_classes/VendorItemDataEntry.xml -------------------------------------------------------------------------------- /drag_and_drop/es_drag_and_drop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/drag_and_drop/es_drag_and_drop.cpp -------------------------------------------------------------------------------- /drag_and_drop/es_drag_and_drop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/drag_and_drop/es_drag_and_drop.h -------------------------------------------------------------------------------- /editor/ess_editor_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/editor/ess_editor_plugin.cpp -------------------------------------------------------------------------------- /editor/ess_editor_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/editor/ess_editor_plugin.h -------------------------------------------------------------------------------- /entities/ai/entity_ai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/ai/entity_ai.cpp -------------------------------------------------------------------------------- /entities/ai/entity_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/ai/entity_ai.h -------------------------------------------------------------------------------- /entities/auras/aura_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/auras/aura_data.cpp -------------------------------------------------------------------------------- /entities/auras/aura_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/auras/aura_data.h -------------------------------------------------------------------------------- /entities/data/character_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/data/character_spec.cpp -------------------------------------------------------------------------------- /entities/data/character_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/data/character_spec.h -------------------------------------------------------------------------------- /entities/data/entity_class_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/data/entity_class_data.cpp -------------------------------------------------------------------------------- /entities/data/entity_class_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/data/entity_class_data.h -------------------------------------------------------------------------------- /entities/data/entity_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/data/entity_data.cpp -------------------------------------------------------------------------------- /entities/data/entity_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/data/entity_data.h -------------------------------------------------------------------------------- /entities/data/entity_data_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/data/entity_data_container.cpp -------------------------------------------------------------------------------- /entities/data/entity_data_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/data/entity_data_container.h -------------------------------------------------------------------------------- /entities/data/item_container_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/data/item_container_data.cpp -------------------------------------------------------------------------------- /entities/data/item_container_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/data/item_container_data.h -------------------------------------------------------------------------------- /entities/data/item_container_data_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/data/item_container_data_entry.cpp -------------------------------------------------------------------------------- /entities/data/item_container_data_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/data/item_container_data_entry.h -------------------------------------------------------------------------------- /entities/data/vendor_item_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/data/vendor_item_data.cpp -------------------------------------------------------------------------------- /entities/data/vendor_item_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/data/vendor_item_data.h -------------------------------------------------------------------------------- /entities/data/vendor_item_data_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/data/vendor_item_data_entry.cpp -------------------------------------------------------------------------------- /entities/data/vendor_item_data_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/data/vendor_item_data_entry.h -------------------------------------------------------------------------------- /entities/entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/entity.cpp -------------------------------------------------------------------------------- /entities/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/entity.h -------------------------------------------------------------------------------- /entities/resources/entity_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/resources/entity_resource.cpp -------------------------------------------------------------------------------- /entities/resources/entity_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/resources/entity_resource.h -------------------------------------------------------------------------------- /entities/resources/entity_resource_cost_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/resources/entity_resource_cost_data.cpp -------------------------------------------------------------------------------- /entities/resources/entity_resource_cost_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/resources/entity_resource_cost_data.h -------------------------------------------------------------------------------- /entities/resources/entity_resource_cost_data_health.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/resources/entity_resource_cost_data_health.cpp -------------------------------------------------------------------------------- /entities/resources/entity_resource_cost_data_health.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/resources/entity_resource_cost_data_health.h -------------------------------------------------------------------------------- /entities/resources/entity_resource_cost_data_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/resources/entity_resource_cost_data_resource.cpp -------------------------------------------------------------------------------- /entities/resources/entity_resource_cost_data_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/resources/entity_resource_cost_data_resource.h -------------------------------------------------------------------------------- /entities/resources/entity_resource_health.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/resources/entity_resource_health.cpp -------------------------------------------------------------------------------- /entities/resources/entity_resource_health.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/resources/entity_resource_health.h -------------------------------------------------------------------------------- /entities/resources/entity_resource_speed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/resources/entity_resource_speed.cpp -------------------------------------------------------------------------------- /entities/resources/entity_resource_speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/resources/entity_resource_speed.h -------------------------------------------------------------------------------- /entities/skills/entity_skill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/skills/entity_skill.cpp -------------------------------------------------------------------------------- /entities/skills/entity_skill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/skills/entity_skill.h -------------------------------------------------------------------------------- /entities/skills/entity_skill_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/skills/entity_skill_data.cpp -------------------------------------------------------------------------------- /entities/skills/entity_skill_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/skills/entity_skill_data.h -------------------------------------------------------------------------------- /entities/stats/complex_level_stat_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/stats/complex_level_stat_data.cpp -------------------------------------------------------------------------------- /entities/stats/complex_level_stat_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/stats/complex_level_stat_data.h -------------------------------------------------------------------------------- /entities/stats/level_stat_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/stats/level_stat_data.cpp -------------------------------------------------------------------------------- /entities/stats/level_stat_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/stats/level_stat_data.h -------------------------------------------------------------------------------- /entities/stats/simple_level_stat_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/stats/simple_level_stat_data.cpp -------------------------------------------------------------------------------- /entities/stats/simple_level_stat_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/stats/simple_level_stat_data.h -------------------------------------------------------------------------------- /entities/stats/stat_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/stats/stat_data.cpp -------------------------------------------------------------------------------- /entities/stats/stat_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entities/stats/stat_data.h -------------------------------------------------------------------------------- /entity_enums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entity_enums.cpp -------------------------------------------------------------------------------- /entity_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/entity_enums.h -------------------------------------------------------------------------------- /formations/ai_formation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/formations/ai_formation.cpp -------------------------------------------------------------------------------- /formations/ai_formation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/formations/ai_formation.h -------------------------------------------------------------------------------- /infos/aura_infos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/infos/aura_infos.cpp -------------------------------------------------------------------------------- /infos/aura_infos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/infos/aura_infos.h -------------------------------------------------------------------------------- /infos/spell_cast_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/infos/spell_cast_info.cpp -------------------------------------------------------------------------------- /infos/spell_cast_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/infos/spell_cast_info.h -------------------------------------------------------------------------------- /inventory/bag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/inventory/bag.cpp -------------------------------------------------------------------------------- /inventory/bag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/inventory/bag.h -------------------------------------------------------------------------------- /inventory/grid_bag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/inventory/grid_bag.cpp -------------------------------------------------------------------------------- /inventory/grid_bag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/inventory/grid_bag.h -------------------------------------------------------------------------------- /inventory/inventory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/inventory/inventory.cpp -------------------------------------------------------------------------------- /inventory/inventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/inventory/inventory.h -------------------------------------------------------------------------------- /inventory/normal_bag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/inventory/normal_bag.cpp -------------------------------------------------------------------------------- /inventory/normal_bag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/inventory/normal_bag.h -------------------------------------------------------------------------------- /item_enums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/item_enums.cpp -------------------------------------------------------------------------------- /item_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/item_enums.h -------------------------------------------------------------------------------- /material_cache/ess_material_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/material_cache/ess_material_cache.cpp -------------------------------------------------------------------------------- /material_cache/ess_material_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/material_cache/ess_material_cache.h -------------------------------------------------------------------------------- /material_cache/ess_material_cache_pcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/material_cache/ess_material_cache_pcm.cpp -------------------------------------------------------------------------------- /material_cache/ess_material_cache_pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/material_cache/ess_material_cache_pcm.h -------------------------------------------------------------------------------- /pipelines/spell_damage_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/pipelines/spell_damage_info.cpp -------------------------------------------------------------------------------- /pipelines/spell_damage_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/pipelines/spell_damage_info.h -------------------------------------------------------------------------------- /pipelines/spell_heal_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/pipelines/spell_heal_info.cpp -------------------------------------------------------------------------------- /pipelines/spell_heal_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/pipelines/spell_heal_info.h -------------------------------------------------------------------------------- /profiles/actionbar/action_bar_button_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/profiles/actionbar/action_bar_button_entry.cpp -------------------------------------------------------------------------------- /profiles/actionbar/action_bar_button_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/profiles/actionbar/action_bar_button_entry.h -------------------------------------------------------------------------------- /profiles/actionbar/action_bar_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/profiles/actionbar/action_bar_entry.cpp -------------------------------------------------------------------------------- /profiles/actionbar/action_bar_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/profiles/actionbar/action_bar_entry.h -------------------------------------------------------------------------------- /profiles/actionbar/action_bar_profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/profiles/actionbar/action_bar_profile.cpp -------------------------------------------------------------------------------- /profiles/actionbar/action_bar_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/profiles/actionbar/action_bar_profile.h -------------------------------------------------------------------------------- /profiles/class_profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/profiles/class_profile.cpp -------------------------------------------------------------------------------- /profiles/class_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/profiles/class_profile.h -------------------------------------------------------------------------------- /profiles/input/input_profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/profiles/input/input_profile.cpp -------------------------------------------------------------------------------- /profiles/input/input_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/profiles/input/input_profile.h -------------------------------------------------------------------------------- /profiles/input/input_profile_modifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/profiles/input/input_profile_modifier.cpp -------------------------------------------------------------------------------- /profiles/input/input_profile_modifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/profiles/input/input_profile_modifier.h -------------------------------------------------------------------------------- /profiles/input/input_profile_modifier_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/profiles/input/input_profile_modifier_entry.cpp -------------------------------------------------------------------------------- /profiles/input/input_profile_modifier_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/profiles/input/input_profile_modifier_entry.h -------------------------------------------------------------------------------- /profiles/player_profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/profiles/player_profile.cpp -------------------------------------------------------------------------------- /profiles/player_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/profiles/player_profile.h -------------------------------------------------------------------------------- /projectiles/3d/spell_follow_projectile_3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/projectiles/3d/spell_follow_projectile_3d.cpp -------------------------------------------------------------------------------- /projectiles/3d/spell_follow_projectile_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/projectiles/3d/spell_follow_projectile_3d.h -------------------------------------------------------------------------------- /props/prop_data_entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/props/prop_data_entity.cpp -------------------------------------------------------------------------------- /props/prop_data_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/props/prop_data_entity.h -------------------------------------------------------------------------------- /register_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/register_types.cpp -------------------------------------------------------------------------------- /register_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/register_types.h -------------------------------------------------------------------------------- /singletons/ess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/singletons/ess.cpp -------------------------------------------------------------------------------- /singletons/ess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/singletons/ess.h -------------------------------------------------------------------------------- /singletons/profile_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/singletons/profile_manager.cpp -------------------------------------------------------------------------------- /singletons/profile_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/singletons/profile_manager.h -------------------------------------------------------------------------------- /skeleton/character_bones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/skeleton/character_bones.cpp -------------------------------------------------------------------------------- /skeleton/character_bones.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/skeleton/character_bones.h -------------------------------------------------------------------------------- /skeleton/character_skeleton_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/skeleton/character_skeleton_2d.cpp -------------------------------------------------------------------------------- /skeleton/character_skeleton_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/skeleton/character_skeleton_2d.h -------------------------------------------------------------------------------- /skeleton/character_skeleton_3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/skeleton/character_skeleton_3d.cpp -------------------------------------------------------------------------------- /skeleton/character_skeleton_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/skeleton/character_skeleton_3d.h -------------------------------------------------------------------------------- /skeleton/entity_skeleton_data.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skeleton/entity_skeleton_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/skeleton/entity_skeleton_data.h -------------------------------------------------------------------------------- /skeleton/skeleton_model_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/skeleton/skeleton_model_entry.cpp -------------------------------------------------------------------------------- /skeleton/skeleton_model_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/skeleton/skeleton_model_entry.h -------------------------------------------------------------------------------- /spawners/ess_entity_spawner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/spawners/ess_entity_spawner.cpp -------------------------------------------------------------------------------- /spawners/ess_entity_spawner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/spawners/ess_entity_spawner.h -------------------------------------------------------------------------------- /spell_enums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/spell_enums.cpp -------------------------------------------------------------------------------- /spell_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/spell_enums.h -------------------------------------------------------------------------------- /utility/entity_create_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/utility/entity_create_info.cpp -------------------------------------------------------------------------------- /utility/entity_create_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Relintai/entity_spell_system/HEAD/utility/entity_create_info.h --------------------------------------------------------------------------------