diff --git a/game/core/item_templates/2_test.tres b/game/core/item_templates/2_test.tres index 8e02494..5827f1c 100644 --- a/game/core/item_templates/2_test.tres +++ b/game/core/item_templates/2_test.tres @@ -1,6 +1,6 @@ [gd_resource type="ItemTemplate" load_steps=4 format=2] -[ext_resource path="res://modules/entity_classes/naturalist/spells/13_aspect_of_bees_rank_1.tres" type="Spell" id=1] +[ext_resource path="res://entity_classes/naturalist/spells/13_aspect_of_bees_rank_1.tres" type="Spell" id=1] [ext_resource path="res://icons/3_iron_bar.tres" type="Texture" id=2] [ext_resource path="res://scripts/items/ItemTemplateGD.gd" type="Script" id=3] diff --git a/game/core/item_templates/3_chest_of_the_infinite_wisdom.tres b/game/core/item_templates/3_chest_of_the_infinite_wisdom.tres index 4bae633..39ebddf 100644 --- a/game/core/item_templates/3_chest_of_the_infinite_wisdom.tres +++ b/game/core/item_templates/3_chest_of_the_infinite_wisdom.tres @@ -2,7 +2,7 @@ [ext_resource path="res://icons/4_chest_of_the_infinite_wisdom.tres" type="Texture" id=2] [ext_resource path="res://scripts/items/ItemTemplateGD.gd" type="Script" id=3] -[ext_resource path="res://modules/entity_classes/naturalist/spells/14_amplify_pain_rank_1.tres" type="Spell" id=4] +[ext_resource path="res://entity_classes/naturalist/spells/14_amplify_pain_rank_1.tres" type="Spell" id=4] [resource] resource_name = "Chest of the Infinite Wisdom" diff --git a/game/entity_classes/elementalist/2_elementalist.tres b/game/entity_classes/elementalist/2_elementalist.tres new file mode 100644 index 0000000..98153f0 --- /dev/null +++ b/game/entity_classes/elementalist/2_elementalist.tres @@ -0,0 +1,27 @@ +[gd_resource type="EntityClassData" load_steps=51 format=2] + +[ext_resource path="res://scripts/entities/EntityClassDataGD.gd" type="Script" id=1] +[ext_resource path="res://entity_classes/elementalist/character_specs/2_elementalist_fire.tres" type="CharacterSpec" id=2] +[ext_resource path="res://entity_classes/elementalist/character_specs/3_elementalist_water.tres" type="CharacterSpec" id=3] +[ext_resource path="res://entity_classes/elementalist/character_specs/4_elementalist_ice.tres" type="CharacterSpec" id=4] +[ext_resource path="res://entity_classes/elementalist/spells/34_cold.tres" type="Spell" id=5] +[ext_resource path="res://entity_classes/elementalist/spells/32_heat.tres" type="Spell" id=6] +[ext_resource path="res://entity_classes/elementalist/spells/33_normal.tres" type="Spell" id=7] + +[sub_resource type="SimpleLevelStatData" id=1] +agility = 4 +strength = 5 +stamina = 5 +intellect = 3 +spirit = 5 + +[resource] +resource_name = "Elementalist" +id = 2 +text_name = "Elementalist" +stat_data = SubResource( 43 ) +playstyle_type = 2 +specs = [ ExtResource( 2 ), ExtResource( 3 ), ExtResource( 4 ) ] +spells = [ ExtResource( 6 ), ExtResource( 7 ), ExtResource( 5 ) ] +start_spells = [ ExtResource( 7 ) ] +script = ExtResource( 1 ) diff --git a/game/modules/entity_classes/elementalist/character_specs/2_elementalist_fire.tres b/game/entity_classes/elementalist/character_specs/2_elementalist_fire.tres similarity index 100% rename from game/modules/entity_classes/elementalist/character_specs/2_elementalist_fire.tres rename to game/entity_classes/elementalist/character_specs/2_elementalist_fire.tres diff --git a/game/modules/entity_classes/elementalist/character_specs/3_elementalist_water.tres b/game/entity_classes/elementalist/character_specs/3_elementalist_water.tres similarity index 100% rename from game/modules/entity_classes/elementalist/character_specs/3_elementalist_water.tres rename to game/entity_classes/elementalist/character_specs/3_elementalist_water.tres diff --git a/game/modules/entity_classes/elementalist/character_specs/4_elementalist_ice.tres b/game/entity_classes/elementalist/character_specs/4_elementalist_ice.tres similarity index 100% rename from game/modules/entity_classes/elementalist/character_specs/4_elementalist_ice.tres rename to game/entity_classes/elementalist/character_specs/4_elementalist_ice.tres diff --git a/game/modules/entity_classes/elementalist/spells/31_overload.tres b/game/entity_classes/elementalist/spells/31_overload.tres similarity index 73% rename from game/modules/entity_classes/elementalist/spells/31_overload.tres rename to game/entity_classes/elementalist/spells/31_overload.tres index d45c8b0..d4a146d 100644 --- a/game/modules/entity_classes/elementalist/spells/31_overload.tres +++ b/game/entity_classes/elementalist/spells/31_overload.tres @@ -1,10 +1,10 @@ [gd_resource type="Spell" load_steps=7 format=2] -[ext_resource path="res://modules/entity_classes/naturalist/icons/amplify_pain.tres" type="Texture" id=1] +[ext_resource path="res://entity_classes/naturalist/icons/amplify_pain.tres" type="Texture" id=1] [ext_resource path="res://scripts/resources/spell_effect_visual_basic.gd" type="Script" id=2] [ext_resource path="res://scripts/spells/amplify_pain.gd" type="Script" id=3] -[ext_resource path="res://modules/entity_classes/naturalist/spell_effects/nature2d/AmplifyPain.tscn" type="PackedScene" id=4] -[ext_resource path="res://modules/entity_classes/naturalist/spell_effects/nature2d/NatureCast.tscn" type="PackedScene" id=5] +[ext_resource path="res://entity_classes/naturalist/spell_effects/nature2d/AmplifyPain.tscn" type="PackedScene" id=4] +[ext_resource path="res://entity_classes/naturalist/spell_effects/nature2d/NatureCast.tscn" type="PackedScene" id=5] diff --git a/game/modules/entity_classes/elementalist/spells/32_heat.tres b/game/entity_classes/elementalist/spells/32_heat.tres similarity index 100% rename from game/modules/entity_classes/elementalist/spells/32_heat.tres rename to game/entity_classes/elementalist/spells/32_heat.tres diff --git a/game/modules/entity_classes/elementalist/spells/33_normal.tres b/game/entity_classes/elementalist/spells/33_normal.tres similarity index 100% rename from game/modules/entity_classes/elementalist/spells/33_normal.tres rename to game/entity_classes/elementalist/spells/33_normal.tres diff --git a/game/modules/entity_classes/elementalist/spells/34_cold.tres b/game/entity_classes/elementalist/spells/34_cold.tres similarity index 100% rename from game/modules/entity_classes/elementalist/spells/34_cold.tres rename to game/entity_classes/elementalist/spells/34_cold.tres diff --git a/game/entity_classes/naturalist/1_naturalist.tres b/game/entity_classes/naturalist/1_naturalist.tres new file mode 100644 index 0000000..23ba1e3 --- /dev/null +++ b/game/entity_classes/naturalist/1_naturalist.tres @@ -0,0 +1,43 @@ +[gd_resource type="EntityClassData" load_steps=28 format=2] + +[ext_resource path="res://entity_classes/naturalist/spells/16_close_wounds_rank_1.tres" type="Spell" id=1] +[ext_resource path="res://entity_classes/naturalist/spells/19_uproot_rank_1.tres" type="Spell" id=2] +[ext_resource path="res://entity_classes/naturalist/spells/11_aspect_of_wasps_rank_1.tres" type="Spell" id=3] +[ext_resource path="res://core/entity_resources/1_mana_resource.tres" type="EntityResource" id=4] +[ext_resource path="res://entity_classes/naturalist/spells/13_aspect_of_bees_rank_1.tres" type="Spell" id=5] +[ext_resource path="res://entity_classes/naturalist/specs/aspects.tres" type="CharacterSpec" id=6] +[ext_resource path="res://entity_classes/naturalist/spells/10_aspect_of_scorpions_rank_1.tres" type="Spell" id=7] +[ext_resource path="res://entity_classes/naturalist/specs/nature.tres" type="CharacterSpec" id=8] +[ext_resource path="res://scripts/ai/EntityAIGD.gd" type="Script" id=9] +[ext_resource path="res://entity_classes/naturalist/spells/17_ironbark_rank_1.tres" type="Spell" id=10] +[ext_resource path="res://entity_classes/naturalist/spells/24_attunement_rank_1.tres" type="Spell" id=11] +[ext_resource path="res://entity_classes/naturalist/spells/14_amplify_pain_rank_1.tres" type="Spell" id=12] +[ext_resource path="res://scripts/entities/EntityClassDataGD.gd" type="Script" id=13] +[ext_resource path="res://entity_classes/naturalist/spells/36_regrow.tres" type="Spell" id=14] +[ext_resource path="res://entity_classes/naturalist/spells/12_aspect_of_wolves_rank_1.tres" type="Spell" id=15] +[ext_resource path="res://entity_classes/naturalist/spells/26_rest.tres" type="Spell" id=16] +[ext_resource path="res://entity_classes/naturalist/spells/22_shield_of_barbs_rank_1.tres" type="Spell" id=17] +[ext_resource path="res://entity_classes/naturalist/spells/21_strength_of_nature_rank_1.tres" type="Spell" id=18] +[ext_resource path="res://entity_classes/naturalist/spells/20_root_rank_1.tres" type="Spell" id=19] +[ext_resource path="res://entity_classes/naturalist/spells/23_calm_rank_1.tres" type="Spell" id=20] +[ext_resource path="res://entity_classes/naturalist/spells/35_strike.tres" type="Spell" id=21] +[ext_resource path="res://entity_classes/naturalist/spells/25_inner_will.tres" type="Spell" id=22] +[ext_resource path="res://entity_classes/naturalist/spells/15_rejuvenation_rank_1.tres" type="Spell" id=23] +[ext_resource path="res://entity_classes/naturalist/spells/18_natures_swiftness_rank_1.tres" type="Spell" id=24] +[ext_resource path="res://entity_classes/naturalist/specs/melee.tres" type="CharacterSpec" id=25] +[ext_resource path="res://entity_classes/naturalist/stats/player_statdata.tres" type="StatData" id=26] + +[sub_resource type="EntityAI" id=1] +script = ExtResource( 9 ) + +[resource] +resource_name = "Naturalist" +id = 1 +text_name = "Naturalist" +stat_data = ExtResource( 26 ) +entity_resources = [ ExtResource( 4 ) ] +specs = [ ExtResource( 6 ), ExtResource( 25 ), ExtResource( 8 ) ] +spells = [ ExtResource( 7 ), ExtResource( 3 ), ExtResource( 15 ), ExtResource( 5 ), ExtResource( 12 ), ExtResource( 23 ), ExtResource( 1 ), ExtResource( 10 ), ExtResource( 24 ), ExtResource( 2 ), ExtResource( 19 ), ExtResource( 18 ), ExtResource( 17 ), ExtResource( 20 ), ExtResource( 11 ), ExtResource( 22 ), ExtResource( 16 ), ExtResource( 21 ), ExtResource( 14 ) ] +start_spells = [ ExtResource( 7 ), ExtResource( 21 ), ExtResource( 14 ) ] +ais = [ SubResource( 1 ) ] +script = ExtResource( 13 ) diff --git a/game/modules/entity_classes/naturalist/1_naturalist_vendor.tres b/game/entity_classes/naturalist/1_naturalist_vendor.tres similarity index 87% rename from game/modules/entity_classes/naturalist/1_naturalist_vendor.tres rename to game/entity_classes/naturalist/1_naturalist_vendor.tres index 1d5a666..49811b3 100644 --- a/game/modules/entity_classes/naturalist/1_naturalist_vendor.tres +++ b/game/entity_classes/naturalist/1_naturalist_vendor.tres @@ -2,7 +2,7 @@ [ext_resource path="res://core/item_templates/2_test.tres" type="ItemTemplate" id=1] [ext_resource path="res://core/item_templates/3_chest_of_the_infinite_wisdom.tres" type="ItemTemplate" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/stats/mob_statdata.tres" type="StatData" id=3] +[ext_resource path="res://entity_classes/naturalist/stats/mob_statdata.tres" type="StatData" id=3] [ext_resource path="res://scripts/entities/EntityClassDataGD.gd" type="Script" id=13] [sub_resource type="VendorItemDataEntry" id=1] diff --git a/game/modules/entity_classes/naturalist/aura_groups/1_aspect_of_scorpions.tres b/game/entity_classes/naturalist/aura_groups/1_aspect_of_scorpions.tres similarity index 100% rename from game/modules/entity_classes/naturalist/aura_groups/1_aspect_of_scorpions.tres rename to game/entity_classes/naturalist/aura_groups/1_aspect_of_scorpions.tres diff --git a/game/modules/entity_classes/naturalist/aura_groups/2_aspect_of_wasps.tres b/game/entity_classes/naturalist/aura_groups/2_aspect_of_wasps.tres similarity index 100% rename from game/modules/entity_classes/naturalist/aura_groups/2_aspect_of_wasps.tres rename to game/entity_classes/naturalist/aura_groups/2_aspect_of_wasps.tres diff --git a/game/modules/entity_classes/naturalist/aura_groups/3_aspect_of_wolves.tres b/game/entity_classes/naturalist/aura_groups/3_aspect_of_wolves.tres similarity index 100% rename from game/modules/entity_classes/naturalist/aura_groups/3_aspect_of_wolves.tres rename to game/entity_classes/naturalist/aura_groups/3_aspect_of_wolves.tres diff --git a/game/modules/entity_classes/naturalist/aura_groups/4_aspect_of_bees.tres b/game/entity_classes/naturalist/aura_groups/4_aspect_of_bees.tres similarity index 100% rename from game/modules/entity_classes/naturalist/aura_groups/4_aspect_of_bees.tres rename to game/entity_classes/naturalist/aura_groups/4_aspect_of_bees.tres diff --git a/game/modules/entity_classes/naturalist/effect_data/aspect_of_scorpions.tres b/game/entity_classes/naturalist/effect_data/aspect_of_scorpions.tres similarity index 65% rename from game/modules/entity_classes/naturalist/effect_data/aspect_of_scorpions.tres rename to game/entity_classes/naturalist/effect_data/aspect_of_scorpions.tres index 9d05767..e0d7e63 100644 --- a/game/modules/entity_classes/naturalist/effect_data/aspect_of_scorpions.tres +++ b/game/entity_classes/naturalist/effect_data/aspect_of_scorpions.tres @@ -1,8 +1,8 @@ [gd_resource type="SpellEffectVisual" load_steps=4 format=2] -[ext_resource path="res://modules/entity_classes/naturalist/spell_effects/nature2d/NatureCast.tscn" type="PackedScene" id=1] +[ext_resource path="res://entity_classes/naturalist/spell_effects/nature2d/NatureCast.tscn" type="PackedScene" id=1] [ext_resource path="res://scripts/resources/spell_effect_visual_basic.gd" type="Script" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/spell_effects/nature2d/AOSCastFinish.tscn" type="PackedScene" id=3] +[ext_resource path="res://entity_classes/naturalist/spell_effects/nature2d/AOSCastFinish.tscn" type="PackedScene" id=3] [resource] script = ExtResource( 2 ) diff --git a/game/modules/entity_classes/naturalist/effect_data/natures_swiftness.tres b/game/entity_classes/naturalist/effect_data/natures_swiftness.tres similarity index 74% rename from game/modules/entity_classes/naturalist/effect_data/natures_swiftness.tres rename to game/entity_classes/naturalist/effect_data/natures_swiftness.tres index 1712626..65650f9 100644 --- a/game/modules/entity_classes/naturalist/effect_data/natures_swiftness.tres +++ b/game/entity_classes/naturalist/effect_data/natures_swiftness.tres @@ -1,7 +1,7 @@ [gd_resource type="SpellEffectVisual" load_steps=3 format=2] [ext_resource path="res://scripts/resources/spell_effect_visual_basic.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/spell_effects/nature2d/NautreSwiftness.tscn" type="PackedScene" id=2] +[ext_resource path="res://entity_classes/naturalist/spell_effects/nature2d/NautreSwiftness.tscn" type="PackedScene" id=2] [resource] script = ExtResource( 1 ) diff --git a/game/modules/entity_classes/naturalist/entities/1_naturalist.tres b/game/entity_classes/naturalist/entities/1_naturalist.tres similarity index 80% rename from game/modules/entity_classes/naturalist/entities/1_naturalist.tres rename to game/entity_classes/naturalist/entities/1_naturalist.tres index b23fa52..07c146b 100644 --- a/game/modules/entity_classes/naturalist/entities/1_naturalist.tres +++ b/game/entity_classes/naturalist/entities/1_naturalist.tres @@ -1,6 +1,6 @@ [gd_resource type="EntityData" load_steps=4 format=2] -[ext_resource path="res://modules/entity_classes/naturalist/1_naturalist.tres" type="EntityClassData" id=2] +[ext_resource path="res://entity_classes/naturalist/1_naturalist.tres" type="EntityClassData" id=2] [ext_resource path="res://modules/species/Human/species_human.tres" type="EntitySpeciesData" id=3] [ext_resource path="res://scripts/entities/EntityDataGD.gd" type="Script" id=4] diff --git a/game/modules/entity_classes/naturalist/entities/2_naturalist_mob.tres b/game/entity_classes/naturalist/entities/2_naturalist_mob.tres similarity index 75% rename from game/modules/entity_classes/naturalist/entities/2_naturalist_mob.tres rename to game/entity_classes/naturalist/entities/2_naturalist_mob.tres index af0990c..42ac220 100644 --- a/game/modules/entity_classes/naturalist/entities/2_naturalist_mob.tres +++ b/game/entity_classes/naturalist/entities/2_naturalist_mob.tres @@ -1,6 +1,6 @@ [gd_resource type="EntityData" load_steps=4 format=2] -[ext_resource path="res://modules/entity_classes/naturalist/1_naturalist.tres" type="EntityClassData" id=2] +[ext_resource path="res://entity_classes/naturalist/1_naturalist.tres" type="EntityClassData" id=2] [ext_resource path="res://scripts/entities/EntityDataGD.gd" type="Script" id=3] [sub_resource type="LootDataBase" id=1] diff --git a/game/modules/entity_classes/naturalist/entities/3_naturalist_trainer.tres b/game/entity_classes/naturalist/entities/3_naturalist_trainer.tres similarity index 80% rename from game/modules/entity_classes/naturalist/entities/3_naturalist_trainer.tres rename to game/entity_classes/naturalist/entities/3_naturalist_trainer.tres index afef3e6..3b419b4 100644 --- a/game/modules/entity_classes/naturalist/entities/3_naturalist_trainer.tres +++ b/game/entity_classes/naturalist/entities/3_naturalist_trainer.tres @@ -2,7 +2,7 @@ [ext_resource path="res://scripts/entities/EntityDataGD.gd" type="Script" id=1] [ext_resource path="res://modules/species/Human/species_human.tres" type="EntitySpeciesData" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/1_naturalist.tres" type="EntityClassData" id=3] +[ext_resource path="res://entity_classes/naturalist/1_naturalist.tres" type="EntityClassData" id=3] [resource] resource_name = "Naturalist Trainer" diff --git a/game/modules/entity_classes/naturalist/entities/4_naturalist_vendor.tres b/game/entity_classes/naturalist/entities/4_naturalist_vendor.tres similarity index 79% rename from game/modules/entity_classes/naturalist/entities/4_naturalist_vendor.tres rename to game/entity_classes/naturalist/entities/4_naturalist_vendor.tres index faba387..f958964 100644 --- a/game/modules/entity_classes/naturalist/entities/4_naturalist_vendor.tres +++ b/game/entity_classes/naturalist/entities/4_naturalist_vendor.tres @@ -2,7 +2,7 @@ [ext_resource path="res://scripts/entities/EntityDataGD.gd" type="Script" id=1] [ext_resource path="res://modules/species/Human/species_human.tres" type="EntitySpeciesData" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/1_naturalist_vendor.tres" type="EntityClassData" id=3] +[ext_resource path="res://entity_classes/naturalist/1_naturalist_vendor.tres" type="EntityClassData" id=3] [resource] resource_name = "Naturalist Vendor" diff --git a/game/modules/entity_classes/naturalist/game_module.tres b/game/entity_classes/naturalist/game_module.tres similarity index 66% rename from game/modules/entity_classes/naturalist/game_module.tres rename to game/entity_classes/naturalist/game_module.tres index 5923e92..5ded54f 100644 --- a/game/modules/entity_classes/naturalist/game_module.tres +++ b/game/entity_classes/naturalist/game_module.tres @@ -1,7 +1,7 @@ [gd_resource type="Resource" load_steps=3 format=2] [ext_resource path="res://scripts/game_modules/GameModule.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/resource_db.tres" type="ESSResourceDBStatic" id=2] +[ext_resource path="res://entity_classes/naturalist/resource_db.tres" type="ESSResourceDBStatic" id=2] [resource] script = ExtResource( 1 ) diff --git a/game/modules/entity_classes/naturalist/icons/amplify_pain.tres b/game/entity_classes/naturalist/icons/amplify_pain.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/amplify_pain.tres rename to game/entity_classes/naturalist/icons/amplify_pain.tres diff --git a/game/modules/entity_classes/naturalist/icons/aspect_of_bees.tres b/game/entity_classes/naturalist/icons/aspect_of_bees.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/aspect_of_bees.tres rename to game/entity_classes/naturalist/icons/aspect_of_bees.tres diff --git a/game/modules/entity_classes/naturalist/icons/aspect_of_scorpions.tres b/game/entity_classes/naturalist/icons/aspect_of_scorpions.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/aspect_of_scorpions.tres rename to game/entity_classes/naturalist/icons/aspect_of_scorpions.tres diff --git a/game/modules/entity_classes/naturalist/icons/aspect_of_wasps.tres b/game/entity_classes/naturalist/icons/aspect_of_wasps.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/aspect_of_wasps.tres rename to game/entity_classes/naturalist/icons/aspect_of_wasps.tres diff --git a/game/modules/entity_classes/naturalist/icons/aspect_of_wolves.tres b/game/entity_classes/naturalist/icons/aspect_of_wolves.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/aspect_of_wolves.tres rename to game/entity_classes/naturalist/icons/aspect_of_wolves.tres diff --git a/game/modules/entity_classes/naturalist/icons/attunement.tres b/game/entity_classes/naturalist/icons/attunement.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/attunement.tres rename to game/entity_classes/naturalist/icons/attunement.tres diff --git a/game/modules/entity_classes/naturalist/icons/calm.tres b/game/entity_classes/naturalist/icons/calm.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/calm.tres rename to game/entity_classes/naturalist/icons/calm.tres diff --git a/game/modules/entity_classes/naturalist/icons/close_wounds.tres b/game/entity_classes/naturalist/icons/close_wounds.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/close_wounds.tres rename to game/entity_classes/naturalist/icons/close_wounds.tres diff --git a/game/modules/entity_classes/naturalist/icons/first_aid.tres b/game/entity_classes/naturalist/icons/first_aid.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/first_aid.tres rename to game/entity_classes/naturalist/icons/first_aid.tres diff --git a/game/modules/entity_classes/naturalist/icons/inner_will.tres b/game/entity_classes/naturalist/icons/inner_will.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/inner_will.tres rename to game/entity_classes/naturalist/icons/inner_will.tres diff --git a/game/modules/entity_classes/naturalist/icons/ironbark.tres b/game/entity_classes/naturalist/icons/ironbark.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/ironbark.tres rename to game/entity_classes/naturalist/icons/ironbark.tres diff --git a/game/modules/entity_classes/naturalist/icons/natures_swiftness.tres b/game/entity_classes/naturalist/icons/natures_swiftness.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/natures_swiftness.tres rename to game/entity_classes/naturalist/icons/natures_swiftness.tres diff --git a/game/modules/entity_classes/naturalist/icons/regenerate.tres b/game/entity_classes/naturalist/icons/regenerate.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/regenerate.tres rename to game/entity_classes/naturalist/icons/regenerate.tres diff --git a/game/modules/entity_classes/naturalist/icons/rejuvenation.tres b/game/entity_classes/naturalist/icons/rejuvenation.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/rejuvenation.tres rename to game/entity_classes/naturalist/icons/rejuvenation.tres diff --git a/game/modules/entity_classes/naturalist/icons/root.tres b/game/entity_classes/naturalist/icons/root.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/root.tres rename to game/entity_classes/naturalist/icons/root.tres diff --git a/game/modules/entity_classes/naturalist/icons/shield_of_barbs.tres b/game/entity_classes/naturalist/icons/shield_of_barbs.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/shield_of_barbs.tres rename to game/entity_classes/naturalist/icons/shield_of_barbs.tres diff --git a/game/modules/entity_classes/naturalist/icons/strength_of_nature.tres b/game/entity_classes/naturalist/icons/strength_of_nature.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/strength_of_nature.tres rename to game/entity_classes/naturalist/icons/strength_of_nature.tres diff --git a/game/modules/entity_classes/naturalist/icons/test.tres b/game/entity_classes/naturalist/icons/test.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/test.tres rename to game/entity_classes/naturalist/icons/test.tres diff --git a/game/modules/entity_classes/naturalist/icons/uproot.tres b/game/entity_classes/naturalist/icons/uproot.tres similarity index 100% rename from game/modules/entity_classes/naturalist/icons/uproot.tres rename to game/entity_classes/naturalist/icons/uproot.tres diff --git a/game/entity_classes/naturalist/resource_db.tres b/game/entity_classes/naturalist/resource_db.tres new file mode 100644 index 0000000..92dc6fe --- /dev/null +++ b/game/entity_classes/naturalist/resource_db.tres @@ -0,0 +1,44 @@ +[gd_resource type="ESSResourceDBStatic" load_steps=39 format=2] + +[ext_resource path="res://entity_classes/naturalist/spells/16_close_wounds_rank_1.tres" type="Spell" id=1] +[ext_resource path="res://entity_classes/naturalist/specs/nature/talent_regrow_r2.tres" type="Spell" id=2] +[ext_resource path="res://entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r3.tres" type="Spell" id=3] +[ext_resource path="res://entity_classes/naturalist/spells/19_uproot_rank_1.tres" type="Spell" id=4] +[ext_resource path="res://entity_classes/naturalist/spells/11_aspect_of_wasps_rank_1.tres" type="Spell" id=5] +[ext_resource path="res://entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r1.tres" type="Spell" id=6] +[ext_resource path="res://entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r2.tres" type="Spell" id=7] +[ext_resource path="res://entity_classes/naturalist/specs/nature/talent_regrow_r3.tres" type="Spell" id=8] +[ext_resource path="res://entity_classes/naturalist/spells/13_aspect_of_bees_rank_1.tres" type="Spell" id=9] +[ext_resource path="res://entity_classes/naturalist/specs/melee/talent_strike_r1.tres" type="Spell" id=10] +[ext_resource path="res://entity_classes/naturalist/spells/10_aspect_of_scorpions_rank_1.tres" type="Spell" id=11] +[ext_resource path="res://entity_classes/naturalist/specs/melee/talent_strike_r2.tres" type="Spell" id=12] +[ext_resource path="res://entity_classes/naturalist/spells/17_ironbark_rank_1.tres" type="Spell" id=13] +[ext_resource path="res://entity_classes/naturalist/spells/24_attunement_rank_1.tres" type="Spell" id=14] +[ext_resource path="res://entity_classes/naturalist/specs/melee/talent_strike_r4.tres" type="Spell" id=15] +[ext_resource path="res://entity_classes/naturalist/specs/melee/talent_strike_r5.tres" type="Spell" id=16] +[ext_resource path="res://entity_classes/naturalist/specs/melee/talent_strike_r3.tres" type="Spell" id=17] +[ext_resource path="res://entity_classes/naturalist/spells/27_aspect_of_scorpions.tres" type="Spell" id=18] +[ext_resource path="res://entity_classes/naturalist/spells/29_aspect_of_wolves.tres" type="Spell" id=19] +[ext_resource path="res://entity_classes/naturalist/spells/28_aspectofwasps.tres" type="Spell" id=20] +[ext_resource path="res://entity_classes/naturalist/specs/nature/talent_regrow_r1.tres" type="Spell" id=21] +[ext_resource path="res://entity_classes/naturalist/spells/30_aspect_of_bees.tres" type="Spell" id=22] +[ext_resource path="res://entity_classes/naturalist/spells/14_amplify_pain_rank_1.tres" type="Spell" id=23] +[ext_resource path="res://entity_classes/naturalist/spells/12_aspect_of_wolves_rank_1.tres" type="Spell" id=25] +[ext_resource path="res://entity_classes/naturalist/spells/26_rest.tres" type="Spell" id=26] +[ext_resource path="res://entity_classes/naturalist/spells/22_shield_of_barbs_rank_1.tres" type="Spell" id=27] +[ext_resource path="res://entity_classes/naturalist/spells/21_strength_of_nature_rank_1.tres" type="Spell" id=28] +[ext_resource path="res://entity_classes/naturalist/spells/20_root_rank_1.tres" type="Spell" id=30] +[ext_resource path="res://entity_classes/naturalist/spells/23_calm_rank_1.tres" type="Spell" id=31] +[ext_resource path="res://entity_classes/naturalist/spells/25_inner_will.tres" type="Spell" id=32] +[ext_resource path="res://entity_classes/naturalist/spells/15_rejuvenation_rank_1.tres" type="Spell" id=33] +[ext_resource path="res://entity_classes/naturalist/spells/18_natures_swiftness_rank_1.tres" type="Spell" id=34] +[ext_resource path="res://entity_classes/naturalist/entities/1_naturalist.tres" type="EntityData" id=35] +[ext_resource path="res://entity_classes/naturalist/entities/2_naturalist_mob.tres" type="EntityData" id=36] +[ext_resource path="res://entity_classes/naturalist/spells/35_strike.tres" type="Spell" id=37] +[ext_resource path="res://entity_classes/naturalist/spells/36_regrow.tres" type="Spell" id=38] +[ext_resource path="res://entity_classes/naturalist/entities/3_naturalist_trainer.tres" type="EntityData" id=50] +[ext_resource path="res://entity_classes/naturalist/entities/4_naturalist_vendor.tres" type="EntityData" id=51] + +[resource] +entity_datas = [ ExtResource( 36 ), ExtResource( 35 ), ExtResource( 50 ), ExtResource( 51 ) ] +spells = [ ExtResource( 11 ), ExtResource( 5 ), ExtResource( 25 ), ExtResource( 9 ), ExtResource( 23 ), ExtResource( 33 ), ExtResource( 1 ), ExtResource( 13 ), ExtResource( 34 ), ExtResource( 4 ), ExtResource( 30 ), ExtResource( 28 ), ExtResource( 27 ), ExtResource( 31 ), ExtResource( 14 ), ExtResource( 32 ), ExtResource( 26 ), ExtResource( 18 ), ExtResource( 20 ), ExtResource( 19 ), ExtResource( 22 ), ExtResource( 37 ), ExtResource( 38 ), ExtResource( 6 ), ExtResource( 7 ), ExtResource( 3 ), ExtResource( 10 ), ExtResource( 12 ), ExtResource( 17 ), ExtResource( 15 ), ExtResource( 16 ), ExtResource( 2 ), ExtResource( 8 ), ExtResource( 21 ) ] diff --git a/game/entity_classes/naturalist/specs/aspects.tres b/game/entity_classes/naturalist/specs/aspects.tres new file mode 100644 index 0000000..362e807 --- /dev/null +++ b/game/entity_classes/naturalist/specs/aspects.tres @@ -0,0 +1,16 @@ +[gd_resource type="CharacterSpec" load_steps=4 format=2] + +[ext_resource path="res://entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r1.tres" type="Spell" id=4] +[ext_resource path="res://entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r3.tres" type="Spell" id=5] +[ext_resource path="res://entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r2.tres" type="Spell" id=6] + +[resource] +resource_name = "Aspects" +text_name = "Aspects" +num_rows = 2 +row_0/size = 1 +row_0/column_0/size = 3 +row_0/column_0/entry_0 = ExtResource( 4 ) +row_0/column_0/entry_1 = ExtResource( 6 ) +row_0/column_0/entry_2 = ExtResource( 5 ) +row_1/size = 0 diff --git a/game/modules/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r1.tres b/game/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r1.tres similarity index 81% rename from game/modules/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r1.tres rename to game/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r1.tres index 3e7696c..290df6e 100644 --- a/game/modules/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r1.tres +++ b/game/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r1.tres @@ -1,7 +1,7 @@ [gd_resource type="Spell" load_steps=3 format=2] [ext_resource path="res://scripts/auras/CastTimeReductionAura.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/icons/aspect_of_scorpions.tres" type="Texture" id=2] +[ext_resource path="res://entity_classes/naturalist/icons/aspect_of_scorpions.tres" type="Texture" id=2] [resource] resource_name = "Improved Asperct of Scorpions" diff --git a/game/modules/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r2.tres b/game/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r2.tres similarity index 81% rename from game/modules/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r2.tres rename to game/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r2.tres index 5f4aee4..cbfac2a 100644 --- a/game/modules/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r2.tres +++ b/game/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r2.tres @@ -1,7 +1,7 @@ [gd_resource type="Spell" load_steps=3 format=2] [ext_resource path="res://scripts/auras/CastTimeReductionAura.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/icons/aspect_of_scorpions.tres" type="Texture" id=2] +[ext_resource path="res://entity_classes/naturalist/icons/aspect_of_scorpions.tres" type="Texture" id=2] [resource] resource_name = "Improved Asperct of Scorpions" diff --git a/game/modules/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r3.tres b/game/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r3.tres similarity index 81% rename from game/modules/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r3.tres rename to game/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r3.tres index 65e5e6e..925b15a 100644 --- a/game/modules/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r3.tres +++ b/game/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r3.tres @@ -1,7 +1,7 @@ [gd_resource type="Spell" load_steps=3 format=2] [ext_resource path="res://scripts/auras/CastTimeReductionAura.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/icons/aspect_of_scorpions.tres" type="Texture" id=2] +[ext_resource path="res://entity_classes/naturalist/icons/aspect_of_scorpions.tres" type="Texture" id=2] [resource] resource_name = "Improved Asperct of Scorpions" diff --git a/game/entity_classes/naturalist/specs/melee.tres b/game/entity_classes/naturalist/specs/melee.tres new file mode 100644 index 0000000..ce80ef5 --- /dev/null +++ b/game/entity_classes/naturalist/specs/melee.tres @@ -0,0 +1,19 @@ +[gd_resource type="CharacterSpec" load_steps=6 format=2] + +[ext_resource path="res://entity_classes/naturalist/specs/melee/talent_strike_r1.tres" type="Spell" id=1] +[ext_resource path="res://entity_classes/naturalist/specs/melee/talent_strike_r5.tres" type="Spell" id=2] +[ext_resource path="res://entity_classes/naturalist/specs/melee/talent_strike_r4.tres" type="Spell" id=3] +[ext_resource path="res://entity_classes/naturalist/specs/melee/talent_strike_r3.tres" type="Spell" id=4] +[ext_resource path="res://entity_classes/naturalist/specs/melee/talent_strike_r2.tres" type="Spell" id=5] + +[resource] +resource_name = "Melee" +text_name = "Melee" +num_rows = 1 +row_0/size = 1 +row_0/column_0/size = 5 +row_0/column_0/entry_0 = ExtResource( 1 ) +row_0/column_0/entry_1 = ExtResource( 5 ) +row_0/column_0/entry_2 = ExtResource( 4 ) +row_0/column_0/entry_3 = ExtResource( 3 ) +row_0/column_0/entry_4 = ExtResource( 2 ) diff --git a/game/modules/entity_classes/naturalist/specs/melee/talent_strike_r1.tres b/game/entity_classes/naturalist/specs/melee/talent_strike_r1.tres similarity index 80% rename from game/modules/entity_classes/naturalist/specs/melee/talent_strike_r1.tres rename to game/entity_classes/naturalist/specs/melee/talent_strike_r1.tres index fad51bf..72808a0 100644 --- a/game/modules/entity_classes/naturalist/specs/melee/talent_strike_r1.tres +++ b/game/entity_classes/naturalist/specs/melee/talent_strike_r1.tres @@ -1,7 +1,7 @@ [gd_resource type="Spell" load_steps=3 format=2] [ext_resource path="res://scripts/auras/SpellDamageModAura.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/icons/amplify_pain.tres" type="Texture" id=2] +[ext_resource path="res://entity_classes/naturalist/icons/amplify_pain.tres" type="Texture" id=2] [resource] resource_name = "Improved Strike" diff --git a/game/modules/entity_classes/naturalist/specs/melee/talent_strike_r2.tres b/game/entity_classes/naturalist/specs/melee/talent_strike_r2.tres similarity index 80% rename from game/modules/entity_classes/naturalist/specs/melee/talent_strike_r2.tres rename to game/entity_classes/naturalist/specs/melee/talent_strike_r2.tres index dc8a8ba..34fab9a 100644 --- a/game/modules/entity_classes/naturalist/specs/melee/talent_strike_r2.tres +++ b/game/entity_classes/naturalist/specs/melee/talent_strike_r2.tres @@ -1,7 +1,7 @@ [gd_resource type="Spell" load_steps=3 format=2] [ext_resource path="res://scripts/auras/SpellDamageModAura.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/icons/amplify_pain.tres" type="Texture" id=2] +[ext_resource path="res://entity_classes/naturalist/icons/amplify_pain.tres" type="Texture" id=2] [resource] resource_name = "Improved Strike" diff --git a/game/modules/entity_classes/naturalist/specs/melee/talent_strike_r3.tres b/game/entity_classes/naturalist/specs/melee/talent_strike_r3.tres similarity index 80% rename from game/modules/entity_classes/naturalist/specs/melee/talent_strike_r3.tres rename to game/entity_classes/naturalist/specs/melee/talent_strike_r3.tres index c98b9f5..6ec3f3b 100644 --- a/game/modules/entity_classes/naturalist/specs/melee/talent_strike_r3.tres +++ b/game/entity_classes/naturalist/specs/melee/talent_strike_r3.tres @@ -1,7 +1,7 @@ [gd_resource type="Spell" load_steps=3 format=2] [ext_resource path="res://scripts/auras/SpellDamageModAura.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/icons/amplify_pain.tres" type="Texture" id=2] +[ext_resource path="res://entity_classes/naturalist/icons/amplify_pain.tres" type="Texture" id=2] [resource] resource_name = "Improved Strike" diff --git a/game/modules/entity_classes/naturalist/specs/melee/talent_strike_r4.tres b/game/entity_classes/naturalist/specs/melee/talent_strike_r4.tres similarity index 80% rename from game/modules/entity_classes/naturalist/specs/melee/talent_strike_r4.tres rename to game/entity_classes/naturalist/specs/melee/talent_strike_r4.tres index 51fe4aa..1e3b793 100644 --- a/game/modules/entity_classes/naturalist/specs/melee/talent_strike_r4.tres +++ b/game/entity_classes/naturalist/specs/melee/talent_strike_r4.tres @@ -1,7 +1,7 @@ [gd_resource type="Spell" load_steps=3 format=2] [ext_resource path="res://scripts/auras/SpellDamageModAura.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/icons/amplify_pain.tres" type="Texture" id=2] +[ext_resource path="res://entity_classes/naturalist/icons/amplify_pain.tres" type="Texture" id=2] [resource] resource_name = "Improved Strike" diff --git a/game/modules/entity_classes/naturalist/specs/melee/talent_strike_r5.tres b/game/entity_classes/naturalist/specs/melee/talent_strike_r5.tres similarity index 80% rename from game/modules/entity_classes/naturalist/specs/melee/talent_strike_r5.tres rename to game/entity_classes/naturalist/specs/melee/talent_strike_r5.tres index 5b49876..2b2c10f 100644 --- a/game/modules/entity_classes/naturalist/specs/melee/talent_strike_r5.tres +++ b/game/entity_classes/naturalist/specs/melee/talent_strike_r5.tres @@ -1,7 +1,7 @@ [gd_resource type="Spell" load_steps=3 format=2] [ext_resource path="res://scripts/auras/SpellDamageModAura.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/icons/amplify_pain.tres" type="Texture" id=2] +[ext_resource path="res://entity_classes/naturalist/icons/amplify_pain.tres" type="Texture" id=2] [resource] resource_name = "Improved Strike" diff --git a/game/entity_classes/naturalist/specs/nature.tres b/game/entity_classes/naturalist/specs/nature.tres new file mode 100644 index 0000000..0a5d6a8 --- /dev/null +++ b/game/entity_classes/naturalist/specs/nature.tres @@ -0,0 +1,15 @@ +[gd_resource type="CharacterSpec" load_steps=4 format=2] + +[ext_resource path="res://entity_classes/naturalist/specs/nature/talent_regrow_r3.tres" type="Spell" id=1] +[ext_resource path="res://entity_classes/naturalist/specs/nature/talent_regrow_r1.tres" type="Spell" id=2] +[ext_resource path="res://entity_classes/naturalist/specs/nature/talent_regrow_r2.tres" type="Spell" id=3] + +[resource] +resource_name = "Nature" +text_name = "Nature" +num_rows = 1 +row_0/size = 1 +row_0/column_0/size = 3 +row_0/column_0/entry_0 = ExtResource( 2 ) +row_0/column_0/entry_1 = ExtResource( 3 ) +row_0/column_0/entry_2 = ExtResource( 1 ) diff --git a/game/modules/entity_classes/naturalist/specs/nature/talent_regrow_r1.tres b/game/entity_classes/naturalist/specs/nature/talent_regrow_r1.tres similarity index 82% rename from game/modules/entity_classes/naturalist/specs/nature/talent_regrow_r1.tres rename to game/entity_classes/naturalist/specs/nature/talent_regrow_r1.tres index 0f75882..3e022c9 100644 --- a/game/modules/entity_classes/naturalist/specs/nature/talent_regrow_r1.tres +++ b/game/entity_classes/naturalist/specs/nature/talent_regrow_r1.tres @@ -1,6 +1,6 @@ [gd_resource type="Spell" load_steps=3 format=2] -[ext_resource path="res://modules/entity_classes/naturalist/icons/root.tres" type="Texture" id=1] +[ext_resource path="res://entity_classes/naturalist/icons/root.tres" type="Texture" id=1] [ext_resource path="res://scripts/auras/CastTimeReductionAura.gd" type="Script" id=2] [resource] diff --git a/game/modules/entity_classes/naturalist/specs/nature/talent_regrow_r2.tres b/game/entity_classes/naturalist/specs/nature/talent_regrow_r2.tres similarity index 82% rename from game/modules/entity_classes/naturalist/specs/nature/talent_regrow_r2.tres rename to game/entity_classes/naturalist/specs/nature/talent_regrow_r2.tres index e8f09ef..dff5667 100644 --- a/game/modules/entity_classes/naturalist/specs/nature/talent_regrow_r2.tres +++ b/game/entity_classes/naturalist/specs/nature/talent_regrow_r2.tres @@ -1,6 +1,6 @@ [gd_resource type="Spell" load_steps=3 format=2] -[ext_resource path="res://modules/entity_classes/naturalist/icons/root.tres" type="Texture" id=1] +[ext_resource path="res://entity_classes/naturalist/icons/root.tres" type="Texture" id=1] [ext_resource path="res://scripts/auras/CastTimeReductionAura.gd" type="Script" id=2] [resource] diff --git a/game/modules/entity_classes/naturalist/specs/nature/talent_regrow_r3.tres b/game/entity_classes/naturalist/specs/nature/talent_regrow_r3.tres similarity index 82% rename from game/modules/entity_classes/naturalist/specs/nature/talent_regrow_r3.tres rename to game/entity_classes/naturalist/specs/nature/talent_regrow_r3.tres index 8034cd8..aaae36e 100644 --- a/game/modules/entity_classes/naturalist/specs/nature/talent_regrow_r3.tres +++ b/game/entity_classes/naturalist/specs/nature/talent_regrow_r3.tres @@ -1,6 +1,6 @@ [gd_resource type="Spell" load_steps=3 format=2] -[ext_resource path="res://modules/entity_classes/naturalist/icons/root.tres" type="Texture" id=1] +[ext_resource path="res://entity_classes/naturalist/icons/root.tres" type="Texture" id=1] [ext_resource path="res://scripts/auras/CastTimeReductionAura.gd" type="Script" id=2] [resource] diff --git a/game/modules/entity_classes/naturalist/spell_effects/nature2d/AOSCastFinish.tscn b/game/entity_classes/naturalist/spell_effects/nature2d/AOSCastFinish.tscn similarity index 100% rename from game/modules/entity_classes/naturalist/spell_effects/nature2d/AOSCastFinish.tscn rename to game/entity_classes/naturalist/spell_effects/nature2d/AOSCastFinish.tscn diff --git a/game/modules/entity_classes/naturalist/spell_effects/nature2d/AmplifyPain.tscn b/game/entity_classes/naturalist/spell_effects/nature2d/AmplifyPain.tscn similarity index 100% rename from game/modules/entity_classes/naturalist/spell_effects/nature2d/AmplifyPain.tscn rename to game/entity_classes/naturalist/spell_effects/nature2d/AmplifyPain.tscn diff --git a/game/modules/entity_classes/naturalist/spell_effects/nature2d/NatureCast.tscn b/game/entity_classes/naturalist/spell_effects/nature2d/NatureCast.tscn similarity index 82% rename from game/modules/entity_classes/naturalist/spell_effects/nature2d/NatureCast.tscn rename to game/entity_classes/naturalist/spell_effects/nature2d/NatureCast.tscn index 8812ae3..9628b9f 100644 --- a/game/modules/entity_classes/naturalist/spell_effects/nature2d/NatureCast.tscn +++ b/game/entity_classes/naturalist/spell_effects/nature2d/NatureCast.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=2 format=2] -[ext_resource path="res://modules/entity_classes/naturalist/spell_effects/textures/big_glow.png" type="Texture" id=1] +[ext_resource path="res://entity_classes/naturalist/spell_effects/textures/big_glow.png" type="Texture" id=1] [node name="NatureCast" type="CPUParticles2D"] preprocess = 0.8 diff --git a/game/modules/entity_classes/naturalist/spell_effects/nature2d/NautreSwiftness.tscn b/game/entity_classes/naturalist/spell_effects/nature2d/NautreSwiftness.tscn similarity index 100% rename from game/modules/entity_classes/naturalist/spell_effects/nature2d/NautreSwiftness.tscn rename to game/entity_classes/naturalist/spell_effects/nature2d/NautreSwiftness.tscn diff --git a/game/modules/entity_classes/naturalist/spell_effects/textures/arrows.png b/game/entity_classes/naturalist/spell_effects/textures/arrows.png similarity index 100% rename from game/modules/entity_classes/naturalist/spell_effects/textures/arrows.png rename to game/entity_classes/naturalist/spell_effects/textures/arrows.png diff --git a/game/modules/entity_classes/naturalist/spell_effects/textures/arrows.png.import b/game/entity_classes/naturalist/spell_effects/textures/arrows.png.import similarity index 68% rename from game/modules/entity_classes/naturalist/spell_effects/textures/arrows.png.import rename to game/entity_classes/naturalist/spell_effects/textures/arrows.png.import index 5e26c8b..a766465 100644 --- a/game/modules/entity_classes/naturalist/spell_effects/textures/arrows.png.import +++ b/game/entity_classes/naturalist/spell_effects/textures/arrows.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/arrows.png-03e1173efc34a2c2f5ac82b362e0eda3.stex" +path="res://.import/arrows.png-e9fcabceaecfeef437d8561040ab497f.stex" metadata={ "vram_texture": false } [deps] -source_file="res://modules/entity_classes/naturalist/spell_effects/textures/arrows.png" -dest_files=[ "res://.import/arrows.png-03e1173efc34a2c2f5ac82b362e0eda3.stex" ] +source_file="res://entity_classes/naturalist/spell_effects/textures/arrows.png" +dest_files=[ "res://.import/arrows.png-e9fcabceaecfeef437d8561040ab497f.stex" ] [params] diff --git a/game/modules/entity_classes/naturalist/spell_effects/textures/big_glow.png b/game/entity_classes/naturalist/spell_effects/textures/big_glow.png similarity index 100% rename from game/modules/entity_classes/naturalist/spell_effects/textures/big_glow.png rename to game/entity_classes/naturalist/spell_effects/textures/big_glow.png diff --git a/game/modules/entity_classes/naturalist/spell_effects/textures/big_glow.png.import b/game/entity_classes/naturalist/spell_effects/textures/big_glow.png.import similarity index 67% rename from game/modules/entity_classes/naturalist/spell_effects/textures/big_glow.png.import rename to game/entity_classes/naturalist/spell_effects/textures/big_glow.png.import index c4e1721..a71a983 100644 --- a/game/modules/entity_classes/naturalist/spell_effects/textures/big_glow.png.import +++ b/game/entity_classes/naturalist/spell_effects/textures/big_glow.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/big_glow.png-df97a9764c4514dfeedfecf176820312.stex" +path="res://.import/big_glow.png-e15c8c81838208c0d12b4b7597759cfd.stex" metadata={ "vram_texture": false } [deps] -source_file="res://modules/entity_classes/naturalist/spell_effects/textures/big_glow.png" -dest_files=[ "res://.import/big_glow.png-df97a9764c4514dfeedfecf176820312.stex" ] +source_file="res://entity_classes/naturalist/spell_effects/textures/big_glow.png" +dest_files=[ "res://.import/big_glow.png-e15c8c81838208c0d12b4b7597759cfd.stex" ] [params] diff --git a/game/modules/entity_classes/naturalist/spell_effects/textures/main_texture.png b/game/entity_classes/naturalist/spell_effects/textures/main_texture.png similarity index 100% rename from game/modules/entity_classes/naturalist/spell_effects/textures/main_texture.png rename to game/entity_classes/naturalist/spell_effects/textures/main_texture.png diff --git a/game/modules/entity_classes/naturalist/spell_effects/textures/main_texture.png.import b/game/entity_classes/naturalist/spell_effects/textures/main_texture.png.import similarity index 66% rename from game/modules/entity_classes/naturalist/spell_effects/textures/main_texture.png.import rename to game/entity_classes/naturalist/spell_effects/textures/main_texture.png.import index 98a81ee..5813545 100644 --- a/game/modules/entity_classes/naturalist/spell_effects/textures/main_texture.png.import +++ b/game/entity_classes/naturalist/spell_effects/textures/main_texture.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/main_texture.png-6116655823a3509ea26ac46bc3689bc0.stex" +path="res://.import/main_texture.png-b2a25dfef5937dbfb451b08d60fdf475.stex" metadata={ "vram_texture": false } [deps] -source_file="res://modules/entity_classes/naturalist/spell_effects/textures/main_texture.png" -dest_files=[ "res://.import/main_texture.png-6116655823a3509ea26ac46bc3689bc0.stex" ] +source_file="res://entity_classes/naturalist/spell_effects/textures/main_texture.png" +dest_files=[ "res://.import/main_texture.png-b2a25dfef5937dbfb451b08d60fdf475.stex" ] [params] diff --git a/game/modules/entity_classes/naturalist/spell_effects/textures/small_star.png b/game/entity_classes/naturalist/spell_effects/textures/small_star.png similarity index 100% rename from game/modules/entity_classes/naturalist/spell_effects/textures/small_star.png rename to game/entity_classes/naturalist/spell_effects/textures/small_star.png diff --git a/game/modules/entity_classes/naturalist/spell_effects/textures/small_star.png.import b/game/entity_classes/naturalist/spell_effects/textures/small_star.png.import similarity index 66% rename from game/modules/entity_classes/naturalist/spell_effects/textures/small_star.png.import rename to game/entity_classes/naturalist/spell_effects/textures/small_star.png.import index f1cb2fd..2b0cb43 100644 --- a/game/modules/entity_classes/naturalist/spell_effects/textures/small_star.png.import +++ b/game/entity_classes/naturalist/spell_effects/textures/small_star.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/small_star.png-2aeece93bc0331c8ad7b3682bfb322d2.stex" +path="res://.import/small_star.png-ea0eea8dc52ff5592b057b09d5f2020d.stex" metadata={ "vram_texture": false } [deps] -source_file="res://modules/entity_classes/naturalist/spell_effects/textures/small_star.png" -dest_files=[ "res://.import/small_star.png-2aeece93bc0331c8ad7b3682bfb322d2.stex" ] +source_file="res://entity_classes/naturalist/spell_effects/textures/small_star.png" +dest_files=[ "res://.import/small_star.png-ea0eea8dc52ff5592b057b09d5f2020d.stex" ] [params] diff --git a/game/modules/entity_classes/naturalist/spell_effects/textures/star.png b/game/entity_classes/naturalist/spell_effects/textures/star.png similarity index 100% rename from game/modules/entity_classes/naturalist/spell_effects/textures/star.png rename to game/entity_classes/naturalist/spell_effects/textures/star.png diff --git a/game/modules/entity_classes/naturalist/spell_effects/textures/star.png.import b/game/entity_classes/naturalist/spell_effects/textures/star.png.import similarity index 68% rename from game/modules/entity_classes/naturalist/spell_effects/textures/star.png.import rename to game/entity_classes/naturalist/spell_effects/textures/star.png.import index edcd6df..1c9a707 100644 --- a/game/modules/entity_classes/naturalist/spell_effects/textures/star.png.import +++ b/game/entity_classes/naturalist/spell_effects/textures/star.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/star.png-f0edde12a69ecac5a6b2138bcc202fd5.stex" +path="res://.import/star.png-c183c5ae10449ab52d3c3f5e9ce2bfee.stex" metadata={ "vram_texture": false } [deps] -source_file="res://modules/entity_classes/naturalist/spell_effects/textures/star.png" -dest_files=[ "res://.import/star.png-f0edde12a69ecac5a6b2138bcc202fd5.stex" ] +source_file="res://entity_classes/naturalist/spell_effects/textures/star.png" +dest_files=[ "res://.import/star.png-c183c5ae10449ab52d3c3f5e9ce2bfee.stex" ] [params] diff --git a/game/modules/entity_classes/naturalist/spells/10_aspect_of_scorpions_rank_1.tres b/game/entity_classes/naturalist/spells/10_aspect_of_scorpions_rank_1.tres similarity index 75% rename from game/modules/entity_classes/naturalist/spells/10_aspect_of_scorpions_rank_1.tres rename to game/entity_classes/naturalist/spells/10_aspect_of_scorpions_rank_1.tres index bd89088..bf4f618 100644 --- a/game/modules/entity_classes/naturalist/spells/10_aspect_of_scorpions_rank_1.tres +++ b/game/entity_classes/naturalist/spells/10_aspect_of_scorpions_rank_1.tres @@ -1,10 +1,10 @@ [gd_resource type="Spell" load_steps=7 format=2] [ext_resource path="res://core/entity_resources/1_mana_resource.tres" type="EntityResource" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/effect_data/aspect_of_scorpions.tres" type="SpellEffectVisual" id=3] +[ext_resource path="res://entity_classes/naturalist/effect_data/aspect_of_scorpions.tres" type="SpellEffectVisual" id=3] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=4] -[ext_resource path="res://modules/entity_classes/naturalist/icons/aspect_of_scorpions.tres" type="Texture" id=5] -[ext_resource path="res://modules/entity_classes/naturalist/aura_groups/1_aspect_of_scorpions.tres" type="AuraGroup" id=6] +[ext_resource path="res://entity_classes/naturalist/icons/aspect_of_scorpions.tres" type="Texture" id=5] +[ext_resource path="res://entity_classes/naturalist/aura_groups/1_aspect_of_scorpions.tres" type="AuraGroup" id=6] [sub_resource type="EntityResourceCostDataResource" id=1] cost = 34 diff --git a/game/modules/entity_classes/naturalist/spells/11_aspect_of_wasps_rank_1.tres b/game/entity_classes/naturalist/spells/11_aspect_of_wasps_rank_1.tres similarity index 77% rename from game/modules/entity_classes/naturalist/spells/11_aspect_of_wasps_rank_1.tres rename to game/entity_classes/naturalist/spells/11_aspect_of_wasps_rank_1.tres index a67198e..a10e920 100644 --- a/game/modules/entity_classes/naturalist/spells/11_aspect_of_wasps_rank_1.tres +++ b/game/entity_classes/naturalist/spells/11_aspect_of_wasps_rank_1.tres @@ -1,8 +1,8 @@ [gd_resource type="Spell" load_steps=4 format=2] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/icons/aspect_of_wasps.tres" type="Texture" id=3] -[ext_resource path="res://modules/entity_classes/naturalist/aura_groups/2_aspect_of_wasps.tres" type="AuraGroup" id=4] +[ext_resource path="res://entity_classes/naturalist/icons/aspect_of_wasps.tres" type="Texture" id=3] +[ext_resource path="res://entity_classes/naturalist/aura_groups/2_aspect_of_wasps.tres" type="AuraGroup" id=4] [resource] resource_name = "Aspect of Wasps" diff --git a/game/modules/entity_classes/naturalist/spells/12_aspect_of_wolves_rank_1.tres b/game/entity_classes/naturalist/spells/12_aspect_of_wolves_rank_1.tres similarity index 88% rename from game/modules/entity_classes/naturalist/spells/12_aspect_of_wolves_rank_1.tres rename to game/entity_classes/naturalist/spells/12_aspect_of_wolves_rank_1.tres index 0c190f7..f504d95 100644 --- a/game/modules/entity_classes/naturalist/spells/12_aspect_of_wolves_rank_1.tres +++ b/game/entity_classes/naturalist/spells/12_aspect_of_wolves_rank_1.tres @@ -2,7 +2,7 @@ [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=1] [ext_resource path="res://icons/Naturalist/AspectOfScorpions.png" type="Texture" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/aura_groups/3_aspect_of_wolves.tres" type="AuraGroup" id=4] +[ext_resource path="res://entity_classes/naturalist/aura_groups/3_aspect_of_wolves.tres" type="AuraGroup" id=4] [resource] resource_name = "Aspect of Wolves" diff --git a/game/modules/entity_classes/naturalist/spells/13_aspect_of_bees_rank_1.tres b/game/entity_classes/naturalist/spells/13_aspect_of_bees_rank_1.tres similarity index 79% rename from game/modules/entity_classes/naturalist/spells/13_aspect_of_bees_rank_1.tres rename to game/entity_classes/naturalist/spells/13_aspect_of_bees_rank_1.tres index 4bf65f8..0269248 100644 --- a/game/modules/entity_classes/naturalist/spells/13_aspect_of_bees_rank_1.tres +++ b/game/entity_classes/naturalist/spells/13_aspect_of_bees_rank_1.tres @@ -1,8 +1,8 @@ [gd_resource type="Spell" load_steps=4 format=2] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/icons/aspect_of_bees.tres" type="Texture" id=3] -[ext_resource path="res://modules/entity_classes/naturalist/aura_groups/4_aspect_of_bees.tres" type="AuraGroup" id=4] +[ext_resource path="res://entity_classes/naturalist/icons/aspect_of_bees.tres" type="Texture" id=3] +[ext_resource path="res://entity_classes/naturalist/aura_groups/4_aspect_of_bees.tres" type="AuraGroup" id=4] [resource] resource_name = "Aspect of Bees" diff --git a/game/modules/entity_classes/naturalist/spells/14_amplify_pain_rank_1.tres b/game/entity_classes/naturalist/spells/14_amplify_pain_rank_1.tres similarity index 77% rename from game/modules/entity_classes/naturalist/spells/14_amplify_pain_rank_1.tres rename to game/entity_classes/naturalist/spells/14_amplify_pain_rank_1.tres index f90625c..f9d69c6 100644 --- a/game/modules/entity_classes/naturalist/spells/14_amplify_pain_rank_1.tres +++ b/game/entity_classes/naturalist/spells/14_amplify_pain_rank_1.tres @@ -1,10 +1,10 @@ [gd_resource type="Spell" load_steps=7 format=2] -[ext_resource path="res://modules/entity_classes/naturalist/spell_effects/nature2d/NatureCast.tscn" type="PackedScene" id=1] +[ext_resource path="res://entity_classes/naturalist/spell_effects/nature2d/NatureCast.tscn" type="PackedScene" id=1] [ext_resource path="res://scripts/resources/spell_effect_visual_basic.gd" type="Script" id=2] [ext_resource path="res://scripts/spells/amplify_pain.gd" type="Script" id=3] -[ext_resource path="res://modules/entity_classes/naturalist/icons/amplify_pain.tres" type="Texture" id=4] -[ext_resource path="res://modules/entity_classes/naturalist/spell_effects/nature2d/AmplifyPain.tscn" type="PackedScene" id=5] +[ext_resource path="res://entity_classes/naturalist/icons/amplify_pain.tres" type="Texture" id=4] +[ext_resource path="res://entity_classes/naturalist/spell_effects/nature2d/AmplifyPain.tscn" type="PackedScene" id=5] [sub_resource type="SpellEffectVisual" id=1] script = ExtResource( 2 ) diff --git a/game/modules/entity_classes/naturalist/spells/15_rejuvenation_rank_1.tres b/game/entity_classes/naturalist/spells/15_rejuvenation_rank_1.tres similarity index 81% rename from game/modules/entity_classes/naturalist/spells/15_rejuvenation_rank_1.tres rename to game/entity_classes/naturalist/spells/15_rejuvenation_rank_1.tres index d57e9ea..5e494a9 100644 --- a/game/modules/entity_classes/naturalist/spells/15_rejuvenation_rank_1.tres +++ b/game/entity_classes/naturalist/spells/15_rejuvenation_rank_1.tres @@ -1,7 +1,7 @@ [gd_resource type="Spell" load_steps=3 format=2] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/icons/rejuvenation.tres" type="Texture" id=3] +[ext_resource path="res://entity_classes/naturalist/icons/rejuvenation.tres" type="Texture" id=3] [resource] resource_name = "Rejuvenation" diff --git a/game/modules/entity_classes/naturalist/spells/16_close_wounds_rank_1.tres b/game/entity_classes/naturalist/spells/16_close_wounds_rank_1.tres similarity index 86% rename from game/modules/entity_classes/naturalist/spells/16_close_wounds_rank_1.tres rename to game/entity_classes/naturalist/spells/16_close_wounds_rank_1.tres index c6617df..34ba8ed 100644 --- a/game/modules/entity_classes/naturalist/spells/16_close_wounds_rank_1.tres +++ b/game/entity_classes/naturalist/spells/16_close_wounds_rank_1.tres @@ -1,7 +1,7 @@ [gd_resource type="Spell" load_steps=3 format=2] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/icons/close_wounds.tres" type="Texture" id=3] +[ext_resource path="res://entity_classes/naturalist/icons/close_wounds.tres" type="Texture" id=3] [resource] resource_name = "Close Wounds" diff --git a/game/modules/entity_classes/naturalist/spells/17_ironbark_rank_1.tres b/game/entity_classes/naturalist/spells/17_ironbark_rank_1.tres similarity index 86% rename from game/modules/entity_classes/naturalist/spells/17_ironbark_rank_1.tres rename to game/entity_classes/naturalist/spells/17_ironbark_rank_1.tres index c05bf40..a8c641c 100644 --- a/game/modules/entity_classes/naturalist/spells/17_ironbark_rank_1.tres +++ b/game/entity_classes/naturalist/spells/17_ironbark_rank_1.tres @@ -1,6 +1,6 @@ [gd_resource type="Spell" load_steps=3 format=2] -[ext_resource path="res://modules/entity_classes/naturalist/icons/ironbark.tres" type="Texture" id=2] +[ext_resource path="res://entity_classes/naturalist/icons/ironbark.tres" type="Texture" id=2] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=3] [resource] diff --git a/game/modules/entity_classes/naturalist/spells/18_natures_swiftness_rank_1.tres b/game/entity_classes/naturalist/spells/18_natures_swiftness_rank_1.tres similarity index 87% rename from game/modules/entity_classes/naturalist/spells/18_natures_swiftness_rank_1.tres rename to game/entity_classes/naturalist/spells/18_natures_swiftness_rank_1.tres index b623a29..75e96ec 100644 --- a/game/modules/entity_classes/naturalist/spells/18_natures_swiftness_rank_1.tres +++ b/game/entity_classes/naturalist/spells/18_natures_swiftness_rank_1.tres @@ -1,7 +1,7 @@ [gd_resource type="Spell" load_steps=3 format=2] [ext_resource path="res://scripts/auras/SpeedModAura.gd" type="Script" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/icons/natures_swiftness.tres" type="Texture" id=3] +[ext_resource path="res://entity_classes/naturalist/icons/natures_swiftness.tres" type="Texture" id=3] [resource] resource_name = "Nature's Swiftness" diff --git a/game/modules/entity_classes/naturalist/spells/19_uproot_rank_1.tres b/game/entity_classes/naturalist/spells/19_uproot_rank_1.tres similarity index 84% rename from game/modules/entity_classes/naturalist/spells/19_uproot_rank_1.tres rename to game/entity_classes/naturalist/spells/19_uproot_rank_1.tres index 59a0b62..1824c0a 100644 --- a/game/modules/entity_classes/naturalist/spells/19_uproot_rank_1.tres +++ b/game/entity_classes/naturalist/spells/19_uproot_rank_1.tres @@ -1,7 +1,7 @@ [gd_resource type="Spell" load_steps=3 format=2] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/icons/uproot.tres" type="Texture" id=2] +[ext_resource path="res://entity_classes/naturalist/icons/uproot.tres" type="Texture" id=2] [resource] resource_name = "Uproot" diff --git a/game/modules/entity_classes/naturalist/spells/20_root_rank_1.tres b/game/entity_classes/naturalist/spells/20_root_rank_1.tres similarity index 83% rename from game/modules/entity_classes/naturalist/spells/20_root_rank_1.tres rename to game/entity_classes/naturalist/spells/20_root_rank_1.tres index 4f11240..bc3e29d 100644 --- a/game/modules/entity_classes/naturalist/spells/20_root_rank_1.tres +++ b/game/entity_classes/naturalist/spells/20_root_rank_1.tres @@ -1,7 +1,7 @@ [gd_resource type="Spell" load_steps=3 format=2] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/icons/root.tres" type="Texture" id=3] +[ext_resource path="res://entity_classes/naturalist/icons/root.tres" type="Texture" id=3] [resource] resource_name = "Root" diff --git a/game/modules/entity_classes/naturalist/spells/21_strength_of_nature_rank_1.tres b/game/entity_classes/naturalist/spells/21_strength_of_nature_rank_1.tres similarity index 77% rename from game/modules/entity_classes/naturalist/spells/21_strength_of_nature_rank_1.tres rename to game/entity_classes/naturalist/spells/21_strength_of_nature_rank_1.tres index e452806..360cf79 100644 --- a/game/modules/entity_classes/naturalist/spells/21_strength_of_nature_rank_1.tres +++ b/game/entity_classes/naturalist/spells/21_strength_of_nature_rank_1.tres @@ -1,8 +1,8 @@ [gd_resource type="Spell" load_steps=4 format=2] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/icons/strength_of_nature.tres" type="Texture" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/aura_groups/1_aspect_of_scorpions.tres" type="AuraGroup" id=3] +[ext_resource path="res://entity_classes/naturalist/icons/strength_of_nature.tres" type="Texture" id=2] +[ext_resource path="res://entity_classes/naturalist/aura_groups/1_aspect_of_scorpions.tres" type="AuraGroup" id=3] [resource] resource_name = "Strength of Nature" diff --git a/game/modules/entity_classes/naturalist/spells/22_shield_of_barbs_rank_1.tres b/game/entity_classes/naturalist/spells/22_shield_of_barbs_rank_1.tres similarity index 78% rename from game/modules/entity_classes/naturalist/spells/22_shield_of_barbs_rank_1.tres rename to game/entity_classes/naturalist/spells/22_shield_of_barbs_rank_1.tres index 2e42089..2145aab 100644 --- a/game/modules/entity_classes/naturalist/spells/22_shield_of_barbs_rank_1.tres +++ b/game/entity_classes/naturalist/spells/22_shield_of_barbs_rank_1.tres @@ -1,8 +1,8 @@ [gd_resource type="Spell" load_steps=4 format=2] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/icons/shield_of_barbs.tres" type="Texture" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/aura_groups/2_aspect_of_wasps.tres" type="AuraGroup" id=3] +[ext_resource path="res://entity_classes/naturalist/icons/shield_of_barbs.tres" type="Texture" id=2] +[ext_resource path="res://entity_classes/naturalist/aura_groups/2_aspect_of_wasps.tres" type="AuraGroup" id=3] [resource] resource_name = "Shield of Barbs" diff --git a/game/modules/entity_classes/naturalist/spells/23_calm_rank_1.tres b/game/entity_classes/naturalist/spells/23_calm_rank_1.tres similarity index 82% rename from game/modules/entity_classes/naturalist/spells/23_calm_rank_1.tres rename to game/entity_classes/naturalist/spells/23_calm_rank_1.tres index 038b3a5..1c9cebc 100644 --- a/game/modules/entity_classes/naturalist/spells/23_calm_rank_1.tres +++ b/game/entity_classes/naturalist/spells/23_calm_rank_1.tres @@ -1,7 +1,7 @@ [gd_resource type="Spell" load_steps=3 format=2] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/icons/calm.tres" type="Texture" id=2] +[ext_resource path="res://entity_classes/naturalist/icons/calm.tres" type="Texture" id=2] [resource] resource_name = "Calm" diff --git a/game/modules/entity_classes/naturalist/spells/24_attunement_rank_1.tres b/game/entity_classes/naturalist/spells/24_attunement_rank_1.tres similarity index 82% rename from game/modules/entity_classes/naturalist/spells/24_attunement_rank_1.tres rename to game/entity_classes/naturalist/spells/24_attunement_rank_1.tres index df9cd94..b42fc50 100644 --- a/game/modules/entity_classes/naturalist/spells/24_attunement_rank_1.tres +++ b/game/entity_classes/naturalist/spells/24_attunement_rank_1.tres @@ -1,6 +1,6 @@ [gd_resource type="Spell" load_steps=3 format=2] -[ext_resource path="res://modules/entity_classes/naturalist/icons/attunement.tres" type="Texture" id=1] +[ext_resource path="res://entity_classes/naturalist/icons/attunement.tres" type="Texture" id=1] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=2] [resource] diff --git a/game/modules/entity_classes/naturalist/spells/25_inner_will.tres b/game/entity_classes/naturalist/spells/25_inner_will.tres similarity index 84% rename from game/modules/entity_classes/naturalist/spells/25_inner_will.tres rename to game/entity_classes/naturalist/spells/25_inner_will.tres index 96475fb..4c4af5f 100644 --- a/game/modules/entity_classes/naturalist/spells/25_inner_will.tres +++ b/game/entity_classes/naturalist/spells/25_inner_will.tres @@ -1,7 +1,7 @@ [gd_resource type="Spell" load_steps=3 format=2] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/icons/inner_will.tres" type="Texture" id=2] +[ext_resource path="res://entity_classes/naturalist/icons/inner_will.tres" type="Texture" id=2] [resource] resource_name = "Inner Will" diff --git a/game/modules/entity_classes/naturalist/spells/26_rest.tres b/game/entity_classes/naturalist/spells/26_rest.tres similarity index 80% rename from game/modules/entity_classes/naturalist/spells/26_rest.tres rename to game/entity_classes/naturalist/spells/26_rest.tres index f4a317f..4710dc8 100644 --- a/game/modules/entity_classes/naturalist/spells/26_rest.tres +++ b/game/entity_classes/naturalist/spells/26_rest.tres @@ -1,6 +1,6 @@ [gd_resource type="Spell" load_steps=3 format=2] -[ext_resource path="res://modules/entity_classes/naturalist/icons/regenerate.tres" type="Texture" id=1] +[ext_resource path="res://entity_classes/naturalist/icons/regenerate.tres" type="Texture" id=1] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=2] [resource] diff --git a/game/modules/entity_classes/naturalist/spells/27_aspect_of_scorpions.tres b/game/entity_classes/naturalist/spells/27_aspect_of_scorpions.tres similarity index 70% rename from game/modules/entity_classes/naturalist/spells/27_aspect_of_scorpions.tres rename to game/entity_classes/naturalist/spells/27_aspect_of_scorpions.tres index bd609c7..e46a96b 100644 --- a/game/modules/entity_classes/naturalist/spells/27_aspect_of_scorpions.tres +++ b/game/entity_classes/naturalist/spells/27_aspect_of_scorpions.tres @@ -1,8 +1,8 @@ [gd_resource type="Spell" load_steps=4 format=2] -[ext_resource path="res://modules/entity_classes/naturalist/icons/aspect_of_scorpions.tres" type="Texture" id=1] +[ext_resource path="res://entity_classes/naturalist/icons/aspect_of_scorpions.tres" type="Texture" id=1] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/effect_data/aspect_of_scorpions.tres" type="SpellEffectVisual" id=4] +[ext_resource path="res://entity_classes/naturalist/effect_data/aspect_of_scorpions.tres" type="SpellEffectVisual" id=4] [resource] resource_name = "Aspect of Scorpions" diff --git a/game/modules/entity_classes/naturalist/spells/28_aspectofwasps.tres b/game/entity_classes/naturalist/spells/28_aspectofwasps.tres similarity index 81% rename from game/modules/entity_classes/naturalist/spells/28_aspectofwasps.tres rename to game/entity_classes/naturalist/spells/28_aspectofwasps.tres index 4afb7ae..6ccf634 100644 --- a/game/modules/entity_classes/naturalist/spells/28_aspectofwasps.tres +++ b/game/entity_classes/naturalist/spells/28_aspectofwasps.tres @@ -1,7 +1,7 @@ [gd_resource type="Spell" load_steps=3 format=2] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/icons/aspect_of_wasps.tres" type="Texture" id=3] +[ext_resource path="res://entity_classes/naturalist/icons/aspect_of_wasps.tres" type="Texture" id=3] [resource] resource_name = "Aspect of Wasps" diff --git a/game/modules/entity_classes/naturalist/spells/29_aspect_of_wolves.tres b/game/entity_classes/naturalist/spells/29_aspect_of_wolves.tres similarity index 78% rename from game/modules/entity_classes/naturalist/spells/29_aspect_of_wolves.tres rename to game/entity_classes/naturalist/spells/29_aspect_of_wolves.tres index f57edde..6317a43 100644 --- a/game/modules/entity_classes/naturalist/spells/29_aspect_of_wolves.tres +++ b/game/entity_classes/naturalist/spells/29_aspect_of_wolves.tres @@ -1,8 +1,8 @@ [gd_resource type="Spell" load_steps=4 format=2] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/icons/aspect_of_wolves.tres" type="Texture" id=3] -[ext_resource path="res://modules/entity_classes/naturalist/aura_groups/3_aspect_of_wolves.tres" type="AuraGroup" id=4] +[ext_resource path="res://entity_classes/naturalist/icons/aspect_of_wolves.tres" type="Texture" id=3] +[ext_resource path="res://entity_classes/naturalist/aura_groups/3_aspect_of_wolves.tres" type="AuraGroup" id=4] [resource] resource_name = "Aspect of Wolves" diff --git a/game/modules/entity_classes/naturalist/spells/30_aspect_of_bees.tres b/game/entity_classes/naturalist/spells/30_aspect_of_bees.tres similarity index 78% rename from game/modules/entity_classes/naturalist/spells/30_aspect_of_bees.tres rename to game/entity_classes/naturalist/spells/30_aspect_of_bees.tres index a572102..8239930 100644 --- a/game/modules/entity_classes/naturalist/spells/30_aspect_of_bees.tres +++ b/game/entity_classes/naturalist/spells/30_aspect_of_bees.tres @@ -1,8 +1,8 @@ [gd_resource type="Spell" load_steps=4 format=2] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/icons/aspect_of_bees.tres" type="Texture" id=3] -[ext_resource path="res://modules/entity_classes/naturalist/aura_groups/4_aspect_of_bees.tres" type="AuraGroup" id=4] +[ext_resource path="res://entity_classes/naturalist/icons/aspect_of_bees.tres" type="Texture" id=3] +[ext_resource path="res://entity_classes/naturalist/aura_groups/4_aspect_of_bees.tres" type="AuraGroup" id=4] [resource] resource_name = "Aspect of Bees" diff --git a/game/modules/entity_classes/naturalist/spells/35_strike.tres b/game/entity_classes/naturalist/spells/35_strike.tres similarity index 76% rename from game/modules/entity_classes/naturalist/spells/35_strike.tres rename to game/entity_classes/naturalist/spells/35_strike.tres index e4ee4ea..bd82285 100644 --- a/game/modules/entity_classes/naturalist/spells/35_strike.tres +++ b/game/entity_classes/naturalist/spells/35_strike.tres @@ -1,10 +1,10 @@ [gd_resource type="Spell" load_steps=7 format=2] [ext_resource path="res://scripts/resources/spell_effect_visual_basic.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/spell_effects/nature2d/AmplifyPain.tscn" type="PackedScene" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/spell_effects/nature2d/NatureCast.tscn" type="PackedScene" id=3] +[ext_resource path="res://entity_classes/naturalist/spell_effects/nature2d/AmplifyPain.tscn" type="PackedScene" id=2] +[ext_resource path="res://entity_classes/naturalist/spell_effects/nature2d/NatureCast.tscn" type="PackedScene" id=3] [ext_resource path="res://scripts/spells/amplify_pain.gd" type="Script" id=4] -[ext_resource path="res://modules/entity_classes/naturalist/icons/amplify_pain.tres" type="Texture" id=5] +[ext_resource path="res://entity_classes/naturalist/icons/amplify_pain.tres" type="Texture" id=5] [sub_resource type="SpellEffectVisual" id=1] script = ExtResource( 1 ) diff --git a/game/modules/entity_classes/naturalist/spells/36_regrow.tres b/game/entity_classes/naturalist/spells/36_regrow.tres similarity index 88% rename from game/modules/entity_classes/naturalist/spells/36_regrow.tres rename to game/entity_classes/naturalist/spells/36_regrow.tres index e903f91..6175a18 100644 --- a/game/modules/entity_classes/naturalist/spells/36_regrow.tres +++ b/game/entity_classes/naturalist/spells/36_regrow.tres @@ -2,7 +2,7 @@ [ext_resource path="res://core/entity_resources/1_mana_resource.tres" type="EntityResource" id=1] [ext_resource path="res://scripts/spells/gd_spell_script.gd" type="Script" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/icons/root.tres" type="Texture" id=3] +[ext_resource path="res://entity_classes/naturalist/icons/root.tres" type="Texture" id=3] [sub_resource type="EntityResourceCostDataResource" id=1] cost = 90 diff --git a/game/modules/entity_classes/naturalist/stats/mob_statdata.tres b/game/entity_classes/naturalist/stats/mob_statdata.tres similarity index 100% rename from game/modules/entity_classes/naturalist/stats/mob_statdata.tres rename to game/entity_classes/naturalist/stats/mob_statdata.tres diff --git a/game/modules/entity_classes/naturalist/stats/player_statdata.tres b/game/entity_classes/naturalist/stats/player_statdata.tres similarity index 100% rename from game/modules/entity_classes/naturalist/stats/player_statdata.tres rename to game/entity_classes/naturalist/stats/player_statdata.tres diff --git a/game/modules/entity_classes/elementalist/2_elementalist.tres b/game/modules/entity_classes/elementalist/2_elementalist.tres deleted file mode 100644 index 00fd6be..0000000 --- a/game/modules/entity_classes/elementalist/2_elementalist.tres +++ /dev/null @@ -1,27 +0,0 @@ -[gd_resource type="EntityClassData" load_steps=51 format=2] - -[ext_resource path="res://scripts/entities/EntityClassDataGD.gd" type="Script" id=1] -[ext_resource path="res://modules/entity_classes/elementalist/character_specs/2_elementalist_fire.tres" type="CharacterSpec" id=2] -[ext_resource path="res://modules/entity_classes/elementalist/character_specs/3_elementalist_water.tres" type="CharacterSpec" id=3] -[ext_resource path="res://modules/entity_classes/elementalist/character_specs/4_elementalist_ice.tres" type="CharacterSpec" id=4] -[ext_resource path="res://modules/entity_classes/elementalist/spells/34_cold.tres" type="Spell" id=5] -[ext_resource path="res://modules/entity_classes/elementalist/spells/32_heat.tres" type="Spell" id=6] -[ext_resource path="res://modules/entity_classes/elementalist/spells/33_normal.tres" type="Spell" id=7] - -[sub_resource type="SimpleLevelStatData" id=1] -agility = 4 -strength = 5 -stamina = 5 -intellect = 3 -spirit = 5 - -[resource] -resource_name = "Elementalist" -id = 2 -text_name = "Elementalist" -stat_data = SubResource( 43 ) -playstyle_type = 2 -specs = [ ExtResource( 2 ), ExtResource( 3 ), ExtResource( 4 ) ] -spells = [ ExtResource( 6 ), ExtResource( 7 ), ExtResource( 5 ) ] -start_spells = [ ExtResource( 7 ) ] -script = ExtResource( 1 ) diff --git a/game/modules/entity_classes/naturalist/1_naturalist.tres b/game/modules/entity_classes/naturalist/1_naturalist.tres deleted file mode 100644 index c8292f9..0000000 --- a/game/modules/entity_classes/naturalist/1_naturalist.tres +++ /dev/null @@ -1,43 +0,0 @@ -[gd_resource type="EntityClassData" load_steps=28 format=2] - -[ext_resource path="res://modules/entity_classes/naturalist/spells/16_close_wounds_rank_1.tres" type="Spell" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/spells/19_uproot_rank_1.tres" type="Spell" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/spells/11_aspect_of_wasps_rank_1.tres" type="Spell" id=3] -[ext_resource path="res://core/entity_resources/1_mana_resource.tres" type="EntityResource" id=4] -[ext_resource path="res://modules/entity_classes/naturalist/spells/13_aspect_of_bees_rank_1.tres" type="Spell" id=5] -[ext_resource path="res://modules/entity_classes/naturalist/specs/aspects.tres" type="CharacterSpec" id=6] -[ext_resource path="res://modules/entity_classes/naturalist/spells/10_aspect_of_scorpions_rank_1.tres" type="Spell" id=7] -[ext_resource path="res://modules/entity_classes/naturalist/specs/nature.tres" type="CharacterSpec" id=8] -[ext_resource path="res://scripts/ai/EntityAIGD.gd" type="Script" id=9] -[ext_resource path="res://modules/entity_classes/naturalist/spells/17_ironbark_rank_1.tres" type="Spell" id=10] -[ext_resource path="res://modules/entity_classes/naturalist/spells/24_attunement_rank_1.tres" type="Spell" id=11] -[ext_resource path="res://modules/entity_classes/naturalist/spells/14_amplify_pain_rank_1.tres" type="Spell" id=12] -[ext_resource path="res://scripts/entities/EntityClassDataGD.gd" type="Script" id=13] -[ext_resource path="res://modules/entity_classes/naturalist/spells/36_regrow.tres" type="Spell" id=14] -[ext_resource path="res://modules/entity_classes/naturalist/spells/12_aspect_of_wolves_rank_1.tres" type="Spell" id=15] -[ext_resource path="res://modules/entity_classes/naturalist/spells/26_rest.tres" type="Spell" id=16] -[ext_resource path="res://modules/entity_classes/naturalist/spells/22_shield_of_barbs_rank_1.tres" type="Spell" id=17] -[ext_resource path="res://modules/entity_classes/naturalist/spells/21_strength_of_nature_rank_1.tres" type="Spell" id=18] -[ext_resource path="res://modules/entity_classes/naturalist/spells/20_root_rank_1.tres" type="Spell" id=19] -[ext_resource path="res://modules/entity_classes/naturalist/spells/23_calm_rank_1.tres" type="Spell" id=20] -[ext_resource path="res://modules/entity_classes/naturalist/spells/35_strike.tres" type="Spell" id=21] -[ext_resource path="res://modules/entity_classes/naturalist/spells/25_inner_will.tres" type="Spell" id=22] -[ext_resource path="res://modules/entity_classes/naturalist/spells/15_rejuvenation_rank_1.tres" type="Spell" id=23] -[ext_resource path="res://modules/entity_classes/naturalist/spells/18_natures_swiftness_rank_1.tres" type="Spell" id=24] -[ext_resource path="res://modules/entity_classes/naturalist/specs/melee.tres" type="CharacterSpec" id=25] -[ext_resource path="res://modules/entity_classes/naturalist/stats/player_statdata.tres" type="StatData" id=26] - -[sub_resource type="EntityAI" id=1] -script = ExtResource( 9 ) - -[resource] -resource_name = "Naturalist" -id = 1 -text_name = "Naturalist" -stat_data = ExtResource( 26 ) -entity_resources = [ ExtResource( 4 ) ] -specs = [ ExtResource( 6 ), ExtResource( 25 ), ExtResource( 8 ) ] -spells = [ ExtResource( 7 ), ExtResource( 3 ), ExtResource( 15 ), ExtResource( 5 ), ExtResource( 12 ), ExtResource( 23 ), ExtResource( 1 ), ExtResource( 10 ), ExtResource( 24 ), ExtResource( 2 ), ExtResource( 19 ), ExtResource( 18 ), ExtResource( 17 ), ExtResource( 20 ), ExtResource( 11 ), ExtResource( 22 ), ExtResource( 16 ), ExtResource( 21 ), ExtResource( 14 ) ] -start_spells = [ ExtResource( 7 ), ExtResource( 21 ), ExtResource( 14 ) ] -ais = [ SubResource( 1 ) ] -script = ExtResource( 13 ) diff --git a/game/modules/entity_classes/naturalist/resource_db.tres b/game/modules/entity_classes/naturalist/resource_db.tres deleted file mode 100644 index d8e30f8..0000000 --- a/game/modules/entity_classes/naturalist/resource_db.tres +++ /dev/null @@ -1,44 +0,0 @@ -[gd_resource type="ESSResourceDBStatic" load_steps=39 format=2] - -[ext_resource path="res://modules/entity_classes/naturalist/spells/16_close_wounds_rank_1.tres" type="Spell" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/specs/nature/talent_regrow_r2.tres" type="Spell" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r3.tres" type="Spell" id=3] -[ext_resource path="res://modules/entity_classes/naturalist/spells/19_uproot_rank_1.tres" type="Spell" id=4] -[ext_resource path="res://modules/entity_classes/naturalist/spells/11_aspect_of_wasps_rank_1.tres" type="Spell" id=5] -[ext_resource path="res://modules/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r1.tres" type="Spell" id=6] -[ext_resource path="res://modules/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r2.tres" type="Spell" id=7] -[ext_resource path="res://modules/entity_classes/naturalist/specs/nature/talent_regrow_r3.tres" type="Spell" id=8] -[ext_resource path="res://modules/entity_classes/naturalist/spells/13_aspect_of_bees_rank_1.tres" type="Spell" id=9] -[ext_resource path="res://modules/entity_classes/naturalist/specs/melee/talent_strike_r1.tres" type="Spell" id=10] -[ext_resource path="res://modules/entity_classes/naturalist/spells/10_aspect_of_scorpions_rank_1.tres" type="Spell" id=11] -[ext_resource path="res://modules/entity_classes/naturalist/specs/melee/talent_strike_r2.tres" type="Spell" id=12] -[ext_resource path="res://modules/entity_classes/naturalist/spells/17_ironbark_rank_1.tres" type="Spell" id=13] -[ext_resource path="res://modules/entity_classes/naturalist/spells/24_attunement_rank_1.tres" type="Spell" id=14] -[ext_resource path="res://modules/entity_classes/naturalist/specs/melee/talent_strike_r4.tres" type="Spell" id=15] -[ext_resource path="res://modules/entity_classes/naturalist/specs/melee/talent_strike_r5.tres" type="Spell" id=16] -[ext_resource path="res://modules/entity_classes/naturalist/specs/melee/talent_strike_r3.tres" type="Spell" id=17] -[ext_resource path="res://modules/entity_classes/naturalist/spells/27_aspect_of_scorpions.tres" type="Spell" id=18] -[ext_resource path="res://modules/entity_classes/naturalist/spells/29_aspect_of_wolves.tres" type="Spell" id=19] -[ext_resource path="res://modules/entity_classes/naturalist/spells/28_aspectofwasps.tres" type="Spell" id=20] -[ext_resource path="res://modules/entity_classes/naturalist/specs/nature/talent_regrow_r1.tres" type="Spell" id=21] -[ext_resource path="res://modules/entity_classes/naturalist/spells/30_aspect_of_bees.tres" type="Spell" id=22] -[ext_resource path="res://modules/entity_classes/naturalist/spells/14_amplify_pain_rank_1.tres" type="Spell" id=23] -[ext_resource path="res://modules/entity_classes/naturalist/spells/12_aspect_of_wolves_rank_1.tres" type="Spell" id=25] -[ext_resource path="res://modules/entity_classes/naturalist/spells/26_rest.tres" type="Spell" id=26] -[ext_resource path="res://modules/entity_classes/naturalist/spells/22_shield_of_barbs_rank_1.tres" type="Spell" id=27] -[ext_resource path="res://modules/entity_classes/naturalist/spells/21_strength_of_nature_rank_1.tres" type="Spell" id=28] -[ext_resource path="res://modules/entity_classes/naturalist/spells/20_root_rank_1.tres" type="Spell" id=30] -[ext_resource path="res://modules/entity_classes/naturalist/spells/23_calm_rank_1.tres" type="Spell" id=31] -[ext_resource path="res://modules/entity_classes/naturalist/spells/25_inner_will.tres" type="Spell" id=32] -[ext_resource path="res://modules/entity_classes/naturalist/spells/15_rejuvenation_rank_1.tres" type="Spell" id=33] -[ext_resource path="res://modules/entity_classes/naturalist/spells/18_natures_swiftness_rank_1.tres" type="Spell" id=34] -[ext_resource path="res://modules/entity_classes/naturalist/entities/1_naturalist.tres" type="EntityData" id=35] -[ext_resource path="res://modules/entity_classes/naturalist/entities/2_naturalist_mob.tres" type="EntityData" id=36] -[ext_resource path="res://modules/entity_classes/naturalist/spells/35_strike.tres" type="Spell" id=37] -[ext_resource path="res://modules/entity_classes/naturalist/spells/36_regrow.tres" type="Spell" id=38] -[ext_resource path="res://modules/entity_classes/naturalist/entities/3_naturalist_trainer.tres" type="EntityData" id=50] -[ext_resource path="res://modules/entity_classes/naturalist/entities/4_naturalist_vendor.tres" type="EntityData" id=51] - -[resource] -entity_datas = [ ExtResource( 36 ), ExtResource( 35 ), ExtResource( 50 ), ExtResource( 51 ) ] -spells = [ ExtResource( 11 ), ExtResource( 5 ), ExtResource( 25 ), ExtResource( 9 ), ExtResource( 23 ), ExtResource( 33 ), ExtResource( 1 ), ExtResource( 13 ), ExtResource( 34 ), ExtResource( 4 ), ExtResource( 30 ), ExtResource( 28 ), ExtResource( 27 ), ExtResource( 31 ), ExtResource( 14 ), ExtResource( 32 ), ExtResource( 26 ), ExtResource( 18 ), ExtResource( 20 ), ExtResource( 19 ), ExtResource( 22 ), ExtResource( 37 ), ExtResource( 38 ), ExtResource( 6 ), ExtResource( 7 ), ExtResource( 3 ), ExtResource( 10 ), ExtResource( 12 ), ExtResource( 17 ), ExtResource( 15 ), ExtResource( 16 ), ExtResource( 2 ), ExtResource( 8 ), ExtResource( 21 ) ] diff --git a/game/modules/entity_classes/naturalist/specs/aspects.tres b/game/modules/entity_classes/naturalist/specs/aspects.tres deleted file mode 100644 index cb57907..0000000 --- a/game/modules/entity_classes/naturalist/specs/aspects.tres +++ /dev/null @@ -1,16 +0,0 @@ -[gd_resource type="CharacterSpec" load_steps=4 format=2] - -[ext_resource path="res://modules/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r1.tres" type="Spell" id=4] -[ext_resource path="res://modules/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r3.tres" type="Spell" id=5] -[ext_resource path="res://modules/entity_classes/naturalist/specs/aspects/talent_aspect_of_scorpions_r2.tres" type="Spell" id=6] - -[resource] -resource_name = "Aspects" -text_name = "Aspects" -num_rows = 2 -row_0/size = 1 -row_0/column_0/size = 3 -row_0/column_0/entry_0 = ExtResource( 4 ) -row_0/column_0/entry_1 = ExtResource( 6 ) -row_0/column_0/entry_2 = ExtResource( 5 ) -row_1/size = 0 diff --git a/game/modules/entity_classes/naturalist/specs/melee.tres b/game/modules/entity_classes/naturalist/specs/melee.tres deleted file mode 100644 index a071277..0000000 --- a/game/modules/entity_classes/naturalist/specs/melee.tres +++ /dev/null @@ -1,19 +0,0 @@ -[gd_resource type="CharacterSpec" load_steps=6 format=2] - -[ext_resource path="res://modules/entity_classes/naturalist/specs/melee/talent_strike_r1.tres" type="Spell" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/specs/melee/talent_strike_r5.tres" type="Spell" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/specs/melee/talent_strike_r4.tres" type="Spell" id=3] -[ext_resource path="res://modules/entity_classes/naturalist/specs/melee/talent_strike_r3.tres" type="Spell" id=4] -[ext_resource path="res://modules/entity_classes/naturalist/specs/melee/talent_strike_r2.tres" type="Spell" id=5] - -[resource] -resource_name = "Melee" -text_name = "Melee" -num_rows = 1 -row_0/size = 1 -row_0/column_0/size = 5 -row_0/column_0/entry_0 = ExtResource( 1 ) -row_0/column_0/entry_1 = ExtResource( 5 ) -row_0/column_0/entry_2 = ExtResource( 4 ) -row_0/column_0/entry_3 = ExtResource( 3 ) -row_0/column_0/entry_4 = ExtResource( 2 ) diff --git a/game/modules/entity_classes/naturalist/specs/nature.tres b/game/modules/entity_classes/naturalist/specs/nature.tres deleted file mode 100644 index 45f5139..0000000 --- a/game/modules/entity_classes/naturalist/specs/nature.tres +++ /dev/null @@ -1,15 +0,0 @@ -[gd_resource type="CharacterSpec" load_steps=4 format=2] - -[ext_resource path="res://modules/entity_classes/naturalist/specs/nature/talent_regrow_r3.tres" type="Spell" id=1] -[ext_resource path="res://modules/entity_classes/naturalist/specs/nature/talent_regrow_r1.tres" type="Spell" id=2] -[ext_resource path="res://modules/entity_classes/naturalist/specs/nature/talent_regrow_r2.tres" type="Spell" id=3] - -[resource] -resource_name = "Nature" -text_name = "Nature" -num_rows = 1 -row_0/size = 1 -row_0/column_0/size = 3 -row_0/column_0/entry_0 = ExtResource( 2 ) -row_0/column_0/entry_1 = ExtResource( 3 ) -row_0/column_0/entry_2 = ExtResource( 1 )