├── .gitignore ├── BlenderModels └── Pokemons │ └── EeveeEvolutions │ ├── Eevee │ ├── eevee.blend │ ├── eevee.blend1 │ ├── eevee.fbx │ ├── eeveeAttack.blend │ ├── eeveeAttack.blend1 │ ├── eeveeAttack.fbx │ ├── eeveeDefense.blend │ ├── eeveeDefense.blend1 │ ├── eeveeDefense.fbx │ ├── eeveeSpeed.blend │ ├── eeveeSpeed.blend1 │ └── eeveeSpeed.fbx │ ├── Flareon │ ├── FlareonAttack.fbx │ ├── FlareonBase.fbx │ ├── FlareonDefense.fbx │ └── FlareonSpeed.fbx │ ├── Jolteon │ ├── JolteonAttack.fbx │ ├── JolteonBase.fbx │ ├── JolteonDefense.fbx │ └── JolteonSpeed.fbx │ └── Vaporeon │ ├── VaporeonAttack.fbx │ ├── VaporeonBase.fbx │ ├── VaporeonDefense.fbx │ └── VaporeonSpeed.fbx ├── Concepts └── PokemonPlayer.drawio ├── PokeWars ├── .idea │ └── .idea.PokeWars │ │ └── .idea │ │ ├── .gitignore │ │ ├── indexLayout.xml │ │ ├── inspectionProfiles │ │ └── Project_Default.xml │ │ └── vcs.xml ├── .vsconfig ├── Config │ ├── DefaultEditor.ini │ ├── DefaultEditorSettings.ini │ ├── DefaultEngine.ini │ ├── DefaultGame.ini │ └── DefaultInput.ini ├── Content │ ├── Animations │ │ ├── Eevee │ │ │ ├── AttackMode │ │ │ │ ├── eeveeAttack_Anim_Attack1.uasset │ │ │ │ ├── eeveeAttack_Anim_Attack2.uasset │ │ │ │ ├── eeveeAttack_Anim_Attack3.uasset │ │ │ │ ├── eeveeAttack_Anim_Jump_002.uasset │ │ │ │ ├── eeveeAttack_Anim_indle1.uasset │ │ │ │ ├── eeveeAttack_Anim_indle2.uasset │ │ │ │ ├── eeveeAttack_Anim_indle3.uasset │ │ │ │ └── eeveeAttack_Anim_moving.uasset │ │ │ ├── BaseMode │ │ │ │ ├── ABP_Character.uasset │ │ │ │ ├── Attack │ │ │ │ │ ├── AM_eevee_Anim_Attack1_Montage.uasset │ │ │ │ │ ├── AM_eevee_Anim_Attack2_Montage.uasset │ │ │ │ │ ├── AM_eevee_Anim_Attack3_Montage.uasset │ │ │ │ │ ├── AM_eevee_Anim_Attack4_Montage.uasset │ │ │ │ │ ├── AM_eevee_Anim_Attack5_Montage.uasset │ │ │ │ │ ├── AnimNotify_ComboEnd.uasset │ │ │ │ │ ├── AnimNotify_ComboNext.uasset │ │ │ │ │ ├── eevee_Anim_Attack1.uasset │ │ │ │ │ ├── eevee_Anim_Attack2.uasset │ │ │ │ │ ├── eevee_Anim_Attack3.uasset │ │ │ │ │ ├── eevee_Anim_Attack4.uasset │ │ │ │ │ ├── eevee_Anim_Attack5.uasset │ │ │ │ │ └── eevee_Anim_Attack6.uasset │ │ │ │ ├── Hit_Reacts │ │ │ │ │ ├── HitReact_Left.uasset │ │ │ │ │ └── HitReact_Right.uasset │ │ │ │ ├── Lean │ │ │ │ │ ├── BS_Lean.uasset │ │ │ │ │ ├── eevee_Anim_MovingLLeft.uasset │ │ │ │ │ └── eevee_Anim_MovingLRight.uasset │ │ │ │ ├── Locomotion │ │ │ │ │ ├── BS_Locomotion.uasset │ │ │ │ │ ├── eevee_Anim_Falling.uasset │ │ │ │ │ ├── eevee_Anim_Jump.uasset │ │ │ │ │ ├── eevee_Anim_Land.uasset │ │ │ │ │ ├── eevee_Anim_Moving.uasset │ │ │ │ │ ├── eevee_Anim_MovingStop.uasset │ │ │ │ │ ├── eevee_Anim_Sprint.uasset │ │ │ │ │ ├── eevee_Anim_indle1.uasset │ │ │ │ │ ├── eevee_Anim_indle2.uasset │ │ │ │ │ └── eevee_Anim_indle3.uasset │ │ │ │ └── Sneaking │ │ │ │ │ ├── BS_Sneaking.uasset │ │ │ │ │ ├── eevee_Anim_Sneaking_Indle.uasset │ │ │ │ │ └── eevee_Anim_Sneaking_Moving.uasset │ │ │ ├── DefenseMode │ │ │ │ ├── eeveeDefense_Anim_Attack1.uasset │ │ │ │ ├── eeveeDefense_Anim_Attack2.uasset │ │ │ │ ├── eeveeDefense_Anim_Attack3.uasset │ │ │ │ ├── eeveeDefense_Anim_Jump_002.uasset │ │ │ │ ├── eeveeDefense_Anim_indle1.uasset │ │ │ │ ├── eeveeDefense_Anim_indle2.uasset │ │ │ │ ├── eeveeDefense_Anim_indle3.uasset │ │ │ │ └── eeveeDefense_Anim_moving.uasset │ │ │ └── SpeedMode │ │ │ │ ├── eeveeSpeed_Anim_Attack1.uasset │ │ │ │ ├── eeveeSpeed_Anim_Attack2.uasset │ │ │ │ ├── eeveeSpeed_Anim_Attack3.uasset │ │ │ │ ├── eeveeSpeed_Anim_Jump_002.uasset │ │ │ │ ├── eeveeSpeed_Anim_indle1.uasset │ │ │ │ ├── eeveeSpeed_Anim_indle2.uasset │ │ │ │ ├── eeveeSpeed_Anim_indle3.uasset │ │ │ │ └── eeveeSpeed_Anim_moving.uasset │ │ ├── EnemyAI │ │ │ ├── AB_Mob_Eevee_Walk.uasset │ │ │ ├── AM_Mob_Eevee.uasset │ │ │ └── BS_Mob_Eevee_Walk.uasset │ │ └── Player │ │ │ ├── AB_Eevee.uasset │ │ │ └── BS_Eevee.uasset │ ├── Assets │ │ ├── AbilitiesImages │ │ │ └── Jolteon │ │ │ │ ├── jaa1.uasset │ │ │ │ ├── jaa2.uasset │ │ │ │ ├── jaa3.uasset │ │ │ │ ├── jab1.uasset │ │ │ │ ├── jab2.uasset │ │ │ │ ├── jab3.uasset │ │ │ │ ├── jad1.uasset │ │ │ │ ├── jad2.uasset │ │ │ │ ├── jad3.uasset │ │ │ │ ├── jas1.uasset │ │ │ │ ├── jas2.uasset │ │ │ │ └── jas3.uasset │ │ ├── PokemonProfileImages │ │ │ ├── EeeveeProfileImage.uasset │ │ │ ├── FlareonAttackProfile.uasset │ │ │ ├── FlareonDefenseProfile.uasset │ │ │ ├── FlareonProfileImage.uasset │ │ │ ├── FlareonSpeedProfile.uasset │ │ │ ├── JolteonAttackProfile.uasset │ │ │ ├── JolteonDefenseProfile.uasset │ │ │ ├── JolteonProfileImage.uasset │ │ │ ├── JolteonSpeedProfile.uasset │ │ │ ├── VaporeonAttackProfile.uasset │ │ │ ├── VaporeonDefenseProfile.uasset │ │ │ ├── VaporeonProfileImage.uasset │ │ │ └── VaporeonSpeedProfile.uasset │ │ ├── Target │ │ │ ├── circle-41674.uasset │ │ │ └── circle-41674_Mat.uasset │ │ └── logo2DWithoutNameHighQuality.uasset │ ├── Characters │ │ ├── AbilitiesEffects │ │ │ └── BP_TestBolt.uasset │ │ ├── BPC_FilesManager.uasset │ │ ├── BPC_LevelSystem.uasset │ │ ├── BPC_PlayerStats.uasset │ │ ├── BPC_Pokemons.uasset │ │ ├── BPC_ProfileUIInfo.uasset │ │ ├── BPC_Stats.uasset │ │ ├── BPC_Target.uasset │ │ ├── CharacterMenuPlayer │ │ │ └── BP_CharactersMenuPlayer.uasset │ │ ├── EnemyAI │ │ │ ├── BPI_Attack.uasset │ │ │ ├── BP_EnemyAI.uasset │ │ │ ├── BP_Mob.uasset │ │ │ ├── BP_Mob1.uasset │ │ │ ├── BP_Mob_Eevee.uasset │ │ │ ├── BP_Mob_Flareon.uasset │ │ │ ├── BP_Mob_Jolteon.uasset │ │ │ ├── BP_Mob_Vaporeon.uasset │ │ │ └── InheritMob.uasset │ │ ├── Infos │ │ │ └── DamageInfo.uasset │ │ ├── LevelSystem.uasset │ │ ├── Player │ │ │ ├── BPC_AttackSystem.uasset │ │ │ ├── BPC_ModeSystem.uasset │ │ │ ├── BPC_PlayerStats.uasset │ │ │ ├── BP_Character.uasset │ │ │ ├── Input │ │ │ │ ├── Actions │ │ │ │ │ ├── IA_Attack.uasset │ │ │ │ │ ├── IA_Attack1.uasset │ │ │ │ │ ├── IA_Jump.uasset │ │ │ │ │ ├── IA_Look.uasset │ │ │ │ │ ├── IA_Move.uasset │ │ │ │ │ ├── IA_Sneaking.uasset │ │ │ │ │ ├── IA_Sprint.uasset │ │ │ │ │ └── IA_TargetClick.uasset │ │ │ │ ├── IMC_Main.uasset │ │ │ │ └── PlayerGameMode.uasset │ │ │ └── PlayerGameMode.uasset │ │ └── PokemonsSystem.uasset │ ├── Levels │ │ ├── CharacktersMenu.umap │ │ ├── CharactersMenu.umap │ │ ├── GameModes │ │ │ ├── CharacterMenuGameMode.uasset │ │ │ ├── MainMenuGameMode.uasset │ │ │ └── PlayerGameMode.uasset │ │ ├── MainMenu.umap │ │ ├── MainWorld.umap │ │ └── World.umap │ ├── Models │ │ ├── Eevee │ │ │ ├── Attack │ │ │ │ ├── eeveeAttack.uasset │ │ │ │ ├── eeveeAttack_PhysicsAsset.uasset │ │ │ │ └── eeveeAttack_Skeleton.uasset │ │ │ ├── Base │ │ │ │ ├── eevee.uasset │ │ │ │ ├── eevee_PhysicsAsset.uasset │ │ │ │ └── eevee_Skeleton.uasset │ │ │ ├── Defense │ │ │ │ ├── eeveeDefense.uasset │ │ │ │ ├── eeveeDefense_PhysicsAsset.uasset │ │ │ │ └── eeveeDefense_Skeleton.uasset │ │ │ ├── EeveeTmpMaterial.uasset │ │ │ └── Speed │ │ │ │ ├── eeveeSpeed.uasset │ │ │ │ ├── eeveeSpeed_PhysicsAsset.uasset │ │ │ │ └── eeveeSpeed_Skeleton.uasset │ │ ├── Flareon │ │ │ ├── Attack │ │ │ │ ├── Animations │ │ │ │ │ ├── FlareonAttack_Anim_Attack1.uasset │ │ │ │ │ ├── FlareonAttack_Anim_Attack2.uasset │ │ │ │ │ ├── FlareonAttack_Anim_Attack3.uasset │ │ │ │ │ ├── FlareonAttack_Anim_Jump_002.uasset │ │ │ │ │ ├── FlareonAttack_Anim_indle1.uasset │ │ │ │ │ ├── FlareonAttack_Anim_indle2.uasset │ │ │ │ │ ├── FlareonAttack_Anim_indle3.uasset │ │ │ │ │ └── FlareonAttack_Anim_moving.uasset │ │ │ │ ├── FlareonAttack.uasset │ │ │ │ ├── FlareonAttack_PhysicsAsset.uasset │ │ │ │ └── FlareonAttack_Skeleton.uasset │ │ │ ├── Base │ │ │ │ ├── Animations │ │ │ │ │ ├── FlareonBase_Anim_Attack1.uasset │ │ │ │ │ ├── FlareonBase_Anim_Attack2.uasset │ │ │ │ │ ├── FlareonBase_Anim_Attack3.uasset │ │ │ │ │ ├── FlareonBase_Anim_Jump_002.uasset │ │ │ │ │ ├── FlareonBase_Anim_indle1.uasset │ │ │ │ │ ├── FlareonBase_Anim_indle2.uasset │ │ │ │ │ ├── FlareonBase_Anim_indle3.uasset │ │ │ │ │ └── FlareonBase_Anim_moving.uasset │ │ │ │ ├── FlareonBase.uasset │ │ │ │ ├── FlareonBase_PhysicsAsset.uasset │ │ │ │ └── FlareonBase_Skeleton.uasset │ │ │ ├── Defense │ │ │ │ ├── Animations │ │ │ │ │ ├── FlareonDefense_Anim_Attack1.uasset │ │ │ │ │ ├── FlareonDefense_Anim_Attack2.uasset │ │ │ │ │ ├── FlareonDefense_Anim_Attack3.uasset │ │ │ │ │ ├── FlareonDefense_Anim_Jump_002.uasset │ │ │ │ │ ├── FlareonDefense_Anim_indle1.uasset │ │ │ │ │ ├── FlareonDefense_Anim_indle2.uasset │ │ │ │ │ ├── FlareonDefense_Anim_indle3.uasset │ │ │ │ │ └── FlareonDefense_Anim_moving.uasset │ │ │ │ ├── FlareonDefense.uasset │ │ │ │ ├── FlareonDefense_PhysicsAsset.uasset │ │ │ │ └── FlareonDefense_Skeleton.uasset │ │ │ ├── FlareonTmpMaterial.uasset │ │ │ └── Speed │ │ │ │ ├── Animations │ │ │ │ ├── FlareonSpeed_Anim_Attack1.uasset │ │ │ │ ├── FlareonSpeed_Anim_Attack2.uasset │ │ │ │ ├── FlareonSpeed_Anim_Attack3.uasset │ │ │ │ ├── FlareonSpeed_Anim_Jump_002.uasset │ │ │ │ ├── FlareonSpeed_Anim_indle1.uasset │ │ │ │ ├── FlareonSpeed_Anim_indle2.uasset │ │ │ │ ├── FlareonSpeed_Anim_indle3.uasset │ │ │ │ └── FlareonSpeed_Anim_moving.uasset │ │ │ │ ├── FlareonSpeed.uasset │ │ │ │ ├── FlareonSpeed_PhysicsAsset.uasset │ │ │ │ └── FlareonSpeed_Skeleton.uasset │ │ ├── Jolteon │ │ │ ├── Attack │ │ │ │ ├── Animations │ │ │ │ │ ├── JolteonAttack_Anim_Attack1.uasset │ │ │ │ │ ├── JolteonAttack_Anim_Attack2.uasset │ │ │ │ │ ├── JolteonAttack_Anim_Attack3.uasset │ │ │ │ │ ├── JolteonAttack_Anim_Jump_002.uasset │ │ │ │ │ ├── JolteonAttack_Anim_indle1.uasset │ │ │ │ │ ├── JolteonAttack_Anim_indle2.uasset │ │ │ │ │ ├── JolteonAttack_Anim_indle3.uasset │ │ │ │ │ └── JolteonAttack_Anim_moving.uasset │ │ │ │ ├── JolteonAttack.uasset │ │ │ │ ├── JolteonAttack_PhysicsAsset.uasset │ │ │ │ └── JolteonAttack_Skeleton.uasset │ │ │ ├── Base │ │ │ │ ├── Animations │ │ │ │ │ ├── JolteonBase_Anim_Attack1.uasset │ │ │ │ │ ├── JolteonBase_Anim_Attack2.uasset │ │ │ │ │ ├── JolteonBase_Anim_Attack3.uasset │ │ │ │ │ ├── JolteonBase_Anim_Jump_002.uasset │ │ │ │ │ ├── JolteonBase_Anim_indle1.uasset │ │ │ │ │ ├── JolteonBase_Anim_indle2.uasset │ │ │ │ │ ├── JolteonBase_Anim_indle3.uasset │ │ │ │ │ └── JolteonBase_Anim_moving.uasset │ │ │ │ ├── JolteonBase.uasset │ │ │ │ ├── JolteonBase_PhysicsAsset.uasset │ │ │ │ └── JolteonBase_Skeleton.uasset │ │ │ ├── Defense │ │ │ │ ├── Animations │ │ │ │ │ ├── JolteonDefense_Anim_Attack1.uasset │ │ │ │ │ ├── JolteonDefense_Anim_Attack2.uasset │ │ │ │ │ ├── JolteonDefense_Anim_Attack3.uasset │ │ │ │ │ ├── JolteonDefense_Anim_Jump_002.uasset │ │ │ │ │ ├── JolteonDefense_Anim_indle1.uasset │ │ │ │ │ ├── JolteonDefense_Anim_indle2.uasset │ │ │ │ │ ├── JolteonDefense_Anim_indle3.uasset │ │ │ │ │ └── JolteonDefense_Anim_moving.uasset │ │ │ │ ├── JolteonDefense.uasset │ │ │ │ ├── JolteonDefense_PhysicsAsset.uasset │ │ │ │ └── JolteonDefense_Skeleton.uasset │ │ │ ├── JolteonTmpMaterial.uasset │ │ │ └── Speed │ │ │ │ ├── Animations │ │ │ │ ├── JolteonSpeed_Anim_Attack1.uasset │ │ │ │ ├── JolteonSpeed_Anim_Attack2.uasset │ │ │ │ ├── JolteonSpeed_Anim_Attack3.uasset │ │ │ │ ├── JolteonSpeed_Anim_Jump_002.uasset │ │ │ │ ├── JolteonSpeed_Anim_indle1.uasset │ │ │ │ ├── JolteonSpeed_Anim_indle2.uasset │ │ │ │ ├── JolteonSpeed_Anim_indle3.uasset │ │ │ │ └── JolteonSpeed_Anim_moving.uasset │ │ │ │ ├── JolteonSpeed.uasset │ │ │ │ ├── JolteonSpeed_PhysicsAsset.uasset │ │ │ │ └── JolteonSpeed_Skeleton.uasset │ │ └── Vaporeon │ │ │ ├── Attack │ │ │ ├── Animations │ │ │ │ ├── VaporeonAttack_Anim_Attack1.uasset │ │ │ │ ├── VaporeonAttack_Anim_Attack2.uasset │ │ │ │ ├── VaporeonAttack_Anim_Attack3.uasset │ │ │ │ ├── VaporeonAttack_Anim_Jump_002.uasset │ │ │ │ ├── VaporeonAttack_Anim_indle1.uasset │ │ │ │ ├── VaporeonAttack_Anim_indle2.uasset │ │ │ │ ├── VaporeonAttack_Anim_indle3.uasset │ │ │ │ └── VaporeonAttack_Anim_moving.uasset │ │ │ ├── VaporeonAttack.uasset │ │ │ ├── VaporeonAttack_PhysicsAsset.uasset │ │ │ └── VaporeonAttack_Skeleton.uasset │ │ │ ├── Base │ │ │ ├── Animations │ │ │ │ ├── VaporeonBase_Anim_Attack1.uasset │ │ │ │ ├── VaporeonBase_Anim_Attack2.uasset │ │ │ │ ├── VaporeonBase_Anim_Attack3.uasset │ │ │ │ ├── VaporeonBase_Anim_Jump_002.uasset │ │ │ │ ├── VaporeonBase_Anim_indle1.uasset │ │ │ │ ├── VaporeonBase_Anim_indle2.uasset │ │ │ │ ├── VaporeonBase_Anim_indle3.uasset │ │ │ │ └── VaporeonBase_Anim_moving.uasset │ │ │ ├── VaporeonBase.uasset │ │ │ ├── VaporeonBase_PhysicsAsset.uasset │ │ │ └── VaporeonBase_Skeleton.uasset │ │ │ ├── Defense │ │ │ ├── Animations │ │ │ │ ├── VaporeonDefense_Anim_Attack1.uasset │ │ │ │ ├── VaporeonDefense_Anim_Attack2.uasset │ │ │ │ ├── VaporeonDefense_Anim_Attack3.uasset │ │ │ │ ├── VaporeonDefense_Anim_Jump_002.uasset │ │ │ │ ├── VaporeonDefense_Anim_indle1.uasset │ │ │ │ ├── VaporeonDefense_Anim_indle2.uasset │ │ │ │ ├── VaporeonDefense_Anim_indle3.uasset │ │ │ │ └── VaporeonDefense_Anim_moving.uasset │ │ │ ├── VaporeonDefense.uasset │ │ │ ├── VaporeonDefense_PhysicsAsset.uasset │ │ │ └── VaporeonDefense_Skeleton.uasset │ │ │ ├── Speed │ │ │ ├── Animations │ │ │ │ ├── VaporeonSpeed_Anim_Attack1.uasset │ │ │ │ ├── VaporeonSpeed_Anim_Attack2.uasset │ │ │ │ ├── VaporeonSpeed_Anim_Attack3.uasset │ │ │ │ ├── VaporeonSpeed_Anim_Jump_002.uasset │ │ │ │ ├── VaporeonSpeed_Anim_indle1.uasset │ │ │ │ ├── VaporeonSpeed_Anim_indle2.uasset │ │ │ │ ├── VaporeonSpeed_Anim_indle3.uasset │ │ │ │ └── VaporeonSpeed_Anim_moving.uasset │ │ │ ├── VaporeonSpeed.uasset │ │ │ ├── VaporeonSpeed_PhysicsAsset.uasset │ │ │ └── VaporeonSpeed_Skeleton.uasset │ │ │ └── VaporeonTmpMaterial.uasset │ ├── Structures │ │ ├── Enums │ │ │ ├── PlayErrorEnum.uasset │ │ │ ├── PokemonAbilityTypeEnum.uasset │ │ │ ├── PokemonEnum.uasset │ │ │ ├── PokemonModeEnum.uasset │ │ │ └── PokemonTypeEnum.uasset │ │ ├── Models │ │ │ ├── CharacterBaseInfo.uasset │ │ │ ├── CharacterBaseInfoJsonStructure.uasset │ │ │ ├── CharactersManager.uasset │ │ │ ├── CharactersManagerJsonStructure.uasset │ │ │ ├── PlayerInfo.uasset │ │ │ └── PlayerInfoJsonStructure.uasset │ │ └── Structures │ │ │ ├── BasicStats.uasset │ │ │ ├── LevelStats.uasset │ │ │ ├── Localization.uasset │ │ │ ├── ModeAttributes.uasset │ │ │ ├── ModeStats.uasset │ │ │ ├── Movement.uasset │ │ │ ├── PlayerAttributes.uasset │ │ │ ├── Pokemon.uasset │ │ │ ├── PokemonAbilitiesPerMode.uasset │ │ │ ├── PokemonAbility.uasset │ │ │ ├── PokemonCharacter.uasset │ │ │ ├── PokemonMeshes.uasset │ │ │ ├── PokemonPlayer.uasset │ │ │ ├── PokemonPlayerJsonModel.uasset │ │ │ └── ProfileImages.uasset │ └── UI │ │ ├── CharactersMenu │ │ ├── Components │ │ │ ├── WB_CharacterButtonPanel.uasset │ │ │ └── WB_ProfileButtonPanel.uasset │ │ ├── WBP_CharactersMenu.uasset │ │ └── WBP_NewCharacterMenu.uasset │ │ ├── GameWorld │ │ ├── Components │ │ │ ├── WB_AbilityButton.uasset │ │ │ ├── WB_Error.uasset │ │ │ ├── WB_Line.uasset │ │ │ └── WB_TalentBox.uasset │ │ ├── Skill.uasset │ │ ├── WB_HUD.uasset │ │ └── WB_Tree.uasset │ │ ├── MainMenu │ │ ├── Default__MainMenuGameMode_C_1.uasset │ │ ├── Default__WB_MainMenu_C.uasset │ │ ├── MainMenuGameMode.uasset │ │ ├── WBP_CharactersMenu.uasset │ │ ├── WBP_MainMenu.uasset │ │ ├── WBP_Options.uasset │ │ ├── WB_MainMenu.uasset │ │ ├── WB_MainMenu_C.uasset │ │ └── logo2DWithoutName.uasset │ │ ├── MainMenuGameMode.uasset │ │ └── WB_MainMenu.uasset ├── PokeWars.sln ├── PokeWars.uproject ├── Source │ ├── PokeWars.Target.cs │ ├── PokeWars │ │ ├── PokeWars.Build.cs │ │ ├── PokeWars.cpp │ │ └── PokeWars.h │ └── PokeWarsEditor.Target.cs └── UpgradeLog.htm ├── README.md └── readme ├── 3Base.jpg ├── 3BaseWithoutBackground.png ├── 3C1DB455-B7A6-4E68-A71A-2D59C5BB8055.png ├── Espeon.jpg ├── Flareon.jpg ├── Glaceon.jpg ├── Jolteon.jpg ├── Leafeon.jpg ├── Umbreon.jpg ├── Vaporeon.jpg ├── logo2D.png ├── logo2DWithoutName.png ├── logo2DWithoutNameHighQuality.png ├── logo3D.glb └── pokeWars.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | # Visual Studio 2015 user specific files 2 | .vs/ 3 | 4 | # Compiled Object files 5 | *.slo 6 | *.lo 7 | *.o 8 | 9 | 10 | # Precompiled Headers 11 | *.gch 12 | *.pch 13 | 14 | # Compiled Dynamic libraries 15 | *.so 16 | *.dylib 17 | *.dll 18 | 19 | # Fortran module files 20 | *.mod 21 | 22 | # Compiled Static libraries 23 | *.lai 24 | *.la 25 | *.a 26 | *.lib 27 | 28 | # Executables 29 | *.exe 30 | *.out 31 | *.app 32 | *.ipa 33 | 34 | # These project files can be generated by the engine 35 | *.xcodeproj 36 | *.xcworkspace 37 | *.sln 38 | *.suo 39 | *.opensdf 40 | *.sdf 41 | *.VC.db 42 | *.VC.opendb 43 | 44 | # Precompiled Assets 45 | **/SourceArt/**/*.png 46 | **/SourceArt/**/*.tga 47 | 48 | # Binary Files 49 | **/Binaries/* 50 | **/Plugins/*/Binaries/* 51 | 52 | # Builds 53 | **/Build/* 54 | 55 | # Whitelist PakBlacklist-.txt files 56 | !Build/*/ 57 | Build/*/** 58 | !Build/*/PakBlacklist*.txt 59 | 60 | # Don't ignore icon files in Build 61 | !Build/**/*.ico 62 | 63 | # Built data for maps 64 | *_BuiltData.uasset 65 | 66 | # Configuration files generated by the Editor 67 | **/Saved/* 68 | 69 | **/Binaries/* 70 | 71 | # Compiled source files for the engine to use 72 | **/Intermediate/* 73 | **/Plugins/*/Intermediate/* 74 | 75 | # Cache files for the editor to use 76 | **/DerivedDataCache/* 77 | 78 | 79 | #--- 80 | #Charackters 81 | PokeWars/Characters -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Eevee/eevee.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Eevee/eevee.blend -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Eevee/eevee.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Eevee/eevee.blend1 -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Eevee/eevee.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Eevee/eevee.fbx -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeAttack.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeAttack.blend -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeAttack.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeAttack.blend1 -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeAttack.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeAttack.fbx -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeDefense.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeDefense.blend -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeDefense.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeDefense.blend1 -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeDefense.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeDefense.fbx -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeSpeed.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeSpeed.blend -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeSpeed.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeSpeed.blend1 -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeSpeed.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Eevee/eeveeSpeed.fbx -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Flareon/FlareonAttack.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Flareon/FlareonAttack.fbx -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Flareon/FlareonBase.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Flareon/FlareonBase.fbx -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Flareon/FlareonDefense.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Flareon/FlareonDefense.fbx -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Flareon/FlareonSpeed.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Flareon/FlareonSpeed.fbx -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Jolteon/JolteonAttack.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Jolteon/JolteonAttack.fbx -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Jolteon/JolteonBase.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Jolteon/JolteonBase.fbx -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Jolteon/JolteonDefense.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Jolteon/JolteonDefense.fbx -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Jolteon/JolteonSpeed.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Jolteon/JolteonSpeed.fbx -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Vaporeon/VaporeonAttack.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Vaporeon/VaporeonAttack.fbx -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Vaporeon/VaporeonBase.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Vaporeon/VaporeonBase.fbx -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Vaporeon/VaporeonDefense.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Vaporeon/VaporeonDefense.fbx -------------------------------------------------------------------------------- /BlenderModels/Pokemons/EeveeEvolutions/Vaporeon/VaporeonSpeed.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/BlenderModels/Pokemons/EeveeEvolutions/Vaporeon/VaporeonSpeed.fbx -------------------------------------------------------------------------------- /Concepts/PokemonPlayer.drawio: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | -------------------------------------------------------------------------------- /PokeWars/.idea/.idea.PokeWars/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Rider ignored files 5 | /contentModel.xml 6 | /modules.xml 7 | /projectSettingsUpdater.xml 8 | /.idea.PokeWars.iml 9 | # Editor-based HTTP Client requests 10 | /httpRequests/ 11 | # Datasource local storage ignored files 12 | /dataSources/ 13 | /dataSources.local.xml 14 | -------------------------------------------------------------------------------- /PokeWars/.idea/.idea.PokeWars/.idea/indexLayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /PokeWars/.idea/.idea.PokeWars/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /PokeWars/.idea/.idea.PokeWars/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PokeWars/.vsconfig: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "components": [ 4 | "Microsoft.Net.Component.4.6.2.TargetingPack", 5 | "Microsoft.VisualStudio.Component.VC.14.36.17.6.x86.x64", 6 | "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", 7 | "Microsoft.VisualStudio.Component.Windows10SDK.22000", 8 | "Microsoft.VisualStudio.Workload.CoreEditor", 9 | "Microsoft.VisualStudio.Workload.ManagedDesktop", 10 | "Microsoft.VisualStudio.Workload.NativeDesktop", 11 | "Microsoft.VisualStudio.Workload.NativeGame" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /PokeWars/Config/DefaultEditor.ini: -------------------------------------------------------------------------------- 1 | [/Script/AdvancedPreviewScene.SharedProfiles] 2 | 3 | -------------------------------------------------------------------------------- /PokeWars/Config/DefaultEditorSettings.ini: -------------------------------------------------------------------------------- 1 | [/Script/SourceCodeAccess.SourceCodeAccessSettings] 2 | PreferredAccessor=VisualStudio2022 3 | 4 | -------------------------------------------------------------------------------- /PokeWars/Config/DefaultEngine.ini: -------------------------------------------------------------------------------- 1 | 2 | 3 | [/Script/EngineSettings.GameMapsSettings] 4 | GameDefaultMap=/Game/Content/Maps/TestLevel.TestLevel 5 | EditorStartupMap=/Game/Content/Maps/TestLevel.TestLevel 6 | 7 | [/Script/WindowsTargetPlatform.WindowsTargetSettings] 8 | DefaultGraphicsRHI=DefaultGraphicsRHI_DX12 9 | -D3D12TargetedShaderFormats=PCD3D_SM5 10 | +D3D12TargetedShaderFormats=PCD3D_SM6 11 | -D3D11TargetedShaderFormats=PCD3D_SM5 12 | +D3D11TargetedShaderFormats=PCD3D_SM5 13 | Compiler=Default 14 | AudioSampleRate=48000 15 | AudioCallbackBufferFrameSize=1024 16 | AudioNumBuffersToEnqueue=1 17 | AudioMaxChannels=0 18 | AudioNumSourceWorkers=4 19 | SpatializationPlugin= 20 | SourceDataOverridePlugin= 21 | ReverbPlugin= 22 | OcclusionPlugin= 23 | CompressionOverrides=(bOverrideCompressionTimes=False,DurationThreshold=5.000000,MaxNumRandomBranches=0,SoundCueQualityIndex=0) 24 | CacheSizeKB=65536 25 | MaxChunkSizeOverrideKB=0 26 | bResampleForDevice=False 27 | MaxSampleRate=48000.000000 28 | HighSampleRate=32000.000000 29 | MedSampleRate=24000.000000 30 | LowSampleRate=12000.000000 31 | MinSampleRate=8000.000000 32 | CompressionQualityModifier=1.000000 33 | AutoStreamingThreshold=0.000000 34 | SoundCueCookQualityIndex=-1 35 | 36 | [/Script/HardwareTargeting.HardwareTargetingSettings] 37 | TargetedHardwareClass=Desktop 38 | AppliedTargetedHardwareClass=Desktop 39 | DefaultGraphicsPerformance=Maximum 40 | AppliedDefaultGraphicsPerformance=Maximum 41 | 42 | [/Script/Engine.RendererSettings] 43 | r.GenerateMeshDistanceFields=True 44 | r.DynamicGlobalIlluminationMethod=1 45 | r.ReflectionMethod=1 46 | r.Shadow.Virtual.Enable=1 47 | r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange=True 48 | r.DefaultFeature.LocalExposure.HighlightContrastScale=0.8 49 | r.DefaultFeature.LocalExposure.ShadowContrastScale=0.8 50 | 51 | [/Script/WorldPartitionEditor.WorldPartitionEditorSettings] 52 | CommandletClass=Class'/Script/UnrealEd.WorldPartitionConvertCommandlet' 53 | 54 | [/Script/Engine.UserInterfaceSettings] 55 | bAuthorizeAutomaticWidgetVariableCreation=False 56 | FontDPIPreset=Standard 57 | FontDPI=72 58 | 59 | [/Script/Engine.Engine] 60 | +ActiveGameNameRedirects=(OldGameName="TP_Blank",NewGameName="/Script/PokeWars") 61 | +ActiveGameNameRedirects=(OldGameName="/Script/TP_Blank",NewGameName="/Script/PokeWars") 62 | 63 | [/Script/AndroidFileServerEditor.AndroidFileServerRuntimeSettings] 64 | bEnablePlugin=True 65 | bAllowNetworkConnection=True 66 | SecurityToken=6C1B2C6640DF25DEDE52B8BEFEADC4A5 67 | bIncludeInShipping=False 68 | bAllowExternalStartInShipping=False 69 | bCompileAFSProject=False 70 | bUseCompression=False 71 | bLogFiles=False 72 | bReportStats=False 73 | ConnectionType=USBOnly 74 | bUseManualIPAddress=False 75 | ManualIPAddress= 76 | 77 | -------------------------------------------------------------------------------- /PokeWars/Config/DefaultGame.ini: -------------------------------------------------------------------------------- 1 | 2 | [/Script/EngineSettings.GeneralProjectSettings] 3 | ProjectID=28F36A154A37510ECFF144BC797256D5 4 | 5 | [StartupActions] 6 | bAddPacks=True 7 | InsertPack=(PackSource="StarterContent.upack",PackName="StarterContent") 8 | -------------------------------------------------------------------------------- /PokeWars/Config/DefaultInput.ini: -------------------------------------------------------------------------------- 1 | [/Script/Engine.InputSettings] 2 | -AxisConfig=(AxisKeyName="Gamepad_LeftX",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f)) 3 | -AxisConfig=(AxisKeyName="Gamepad_LeftY",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f)) 4 | -AxisConfig=(AxisKeyName="Gamepad_RightX",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f)) 5 | -AxisConfig=(AxisKeyName="Gamepad_RightY",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f)) 6 | -AxisConfig=(AxisKeyName="MouseX",AxisProperties=(DeadZone=0.f,Exponent=1.f,Sensitivity=0.07f)) 7 | -AxisConfig=(AxisKeyName="MouseY",AxisProperties=(DeadZone=0.f,Exponent=1.f,Sensitivity=0.07f)) 8 | -AxisConfig=(AxisKeyName="Mouse2D",AxisProperties=(DeadZone=0.f,Exponent=1.f,Sensitivity=0.07f)) 9 | +AxisConfig=(AxisKeyName="Gamepad_LeftX",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 10 | +AxisConfig=(AxisKeyName="Gamepad_LeftY",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 11 | +AxisConfig=(AxisKeyName="Gamepad_RightX",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 12 | +AxisConfig=(AxisKeyName="Gamepad_RightY",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 13 | +AxisConfig=(AxisKeyName="MouseX",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False)) 14 | +AxisConfig=(AxisKeyName="MouseY",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False)) 15 | +AxisConfig=(AxisKeyName="Mouse2D",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False)) 16 | +AxisConfig=(AxisKeyName="MouseWheelAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 17 | +AxisConfig=(AxisKeyName="Gamepad_LeftTriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 18 | +AxisConfig=(AxisKeyName="Gamepad_RightTriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 19 | +AxisConfig=(AxisKeyName="Gamepad_Special_Left_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 20 | +AxisConfig=(AxisKeyName="Gamepad_Special_Left_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 21 | +AxisConfig=(AxisKeyName="Vive_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 22 | +AxisConfig=(AxisKeyName="Vive_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 23 | +AxisConfig=(AxisKeyName="Vive_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 24 | +AxisConfig=(AxisKeyName="Vive_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 25 | +AxisConfig=(AxisKeyName="Vive_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 26 | +AxisConfig=(AxisKeyName="Vive_Right_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 27 | +AxisConfig=(AxisKeyName="MixedReality_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 28 | +AxisConfig=(AxisKeyName="MixedReality_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 29 | +AxisConfig=(AxisKeyName="MixedReality_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 30 | +AxisConfig=(AxisKeyName="MixedReality_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 31 | +AxisConfig=(AxisKeyName="MixedReality_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 32 | +AxisConfig=(AxisKeyName="MixedReality_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 33 | +AxisConfig=(AxisKeyName="MixedReality_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 34 | +AxisConfig=(AxisKeyName="MixedReality_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 35 | +AxisConfig=(AxisKeyName="MixedReality_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 36 | +AxisConfig=(AxisKeyName="MixedReality_Right_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 37 | +AxisConfig=(AxisKeyName="OculusTouch_Left_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 38 | +AxisConfig=(AxisKeyName="OculusTouch_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 39 | +AxisConfig=(AxisKeyName="OculusTouch_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 40 | +AxisConfig=(AxisKeyName="OculusTouch_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 41 | +AxisConfig=(AxisKeyName="OculusTouch_Right_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 42 | +AxisConfig=(AxisKeyName="OculusTouch_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 43 | +AxisConfig=(AxisKeyName="OculusTouch_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 44 | +AxisConfig=(AxisKeyName="OculusTouch_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 45 | +AxisConfig=(AxisKeyName="ValveIndex_Left_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 46 | +AxisConfig=(AxisKeyName="ValveIndex_Left_Grip_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 47 | +AxisConfig=(AxisKeyName="ValveIndex_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 48 | +AxisConfig=(AxisKeyName="ValveIndex_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 49 | +AxisConfig=(AxisKeyName="ValveIndex_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 50 | +AxisConfig=(AxisKeyName="ValveIndex_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 51 | +AxisConfig=(AxisKeyName="ValveIndex_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 52 | +AxisConfig=(AxisKeyName="ValveIndex_Left_Trackpad_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 53 | +AxisConfig=(AxisKeyName="ValveIndex_Right_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 54 | +AxisConfig=(AxisKeyName="ValveIndex_Right_Grip_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 55 | +AxisConfig=(AxisKeyName="ValveIndex_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 56 | +AxisConfig=(AxisKeyName="ValveIndex_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 57 | +AxisConfig=(AxisKeyName="ValveIndex_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 58 | +AxisConfig=(AxisKeyName="ValveIndex_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 59 | +AxisConfig=(AxisKeyName="ValveIndex_Right_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 60 | +AxisConfig=(AxisKeyName="ValveIndex_Right_Trackpad_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 61 | bAltEnterTogglesFullscreen=True 62 | bF11TogglesFullscreen=True 63 | bUseMouseForTouch=False 64 | bEnableMouseSmoothing=True 65 | bEnableFOVScaling=True 66 | bCaptureMouseOnLaunch=True 67 | bEnableLegacyInputScales=True 68 | bEnableMotionControls=True 69 | bFilterInputByPlatformUser=False 70 | bEnableInputDeviceSubsystem=True 71 | bShouldFlushPressedKeysOnViewportFocusLost=True 72 | bEnableDynamicComponentInputBinding=True 73 | bAlwaysShowTouchInterface=False 74 | bShowConsoleOnFourFingerTap=True 75 | bEnableGestureRecognizer=False 76 | bUseAutocorrect=False 77 | DefaultViewportMouseCaptureMode=CapturePermanently_IncludingInitialMouseDown 78 | DefaultViewportMouseLockMode=LockOnCapture 79 | FOVScale=0.011110 80 | DoubleClickTime=0.200000 81 | +ActionMappings=(ActionName="FreeLook",bShift=False,bCtrl=False,bAlt=False,bCmd=False,Key=Tab) 82 | DefaultPlayerInputClass=/Script/EnhancedInput.EnhancedPlayerInput 83 | DefaultInputComponentClass=/Script/EnhancedInput.EnhancedInputComponent 84 | DefaultTouchInterface=/Engine/MobileResources/HUD/DefaultVirtualJoysticks.DefaultVirtualJoysticks 85 | -ConsoleKeys=Tilde 86 | +ConsoleKeys=Tilde 87 | +ConsoleKeys=Caret 88 | 89 | [EnhancedInputPlatformSettings_Windows EnhancedInputPlatformSettings] 90 | bShouldLogMappingContextRedirects=False 91 | 92 | -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/AttackMode/eeveeAttack_Anim_Attack1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/AttackMode/eeveeAttack_Anim_Attack1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/AttackMode/eeveeAttack_Anim_Attack2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/AttackMode/eeveeAttack_Anim_Attack2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/AttackMode/eeveeAttack_Anim_Attack3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/AttackMode/eeveeAttack_Anim_Attack3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/AttackMode/eeveeAttack_Anim_Jump_002.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/AttackMode/eeveeAttack_Anim_Jump_002.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/AttackMode/eeveeAttack_Anim_indle1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/AttackMode/eeveeAttack_Anim_indle1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/AttackMode/eeveeAttack_Anim_indle2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/AttackMode/eeveeAttack_Anim_indle2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/AttackMode/eeveeAttack_Anim_indle3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/AttackMode/eeveeAttack_Anim_indle3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/AttackMode/eeveeAttack_Anim_moving.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/AttackMode/eeveeAttack_Anim_moving.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/ABP_Character.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/ABP_Character.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Attack/AM_eevee_Anim_Attack1_Montage.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Attack/AM_eevee_Anim_Attack1_Montage.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Attack/AM_eevee_Anim_Attack2_Montage.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Attack/AM_eevee_Anim_Attack2_Montage.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Attack/AM_eevee_Anim_Attack3_Montage.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Attack/AM_eevee_Anim_Attack3_Montage.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Attack/AM_eevee_Anim_Attack4_Montage.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Attack/AM_eevee_Anim_Attack4_Montage.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Attack/AM_eevee_Anim_Attack5_Montage.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Attack/AM_eevee_Anim_Attack5_Montage.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Attack/AnimNotify_ComboEnd.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Attack/AnimNotify_ComboEnd.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Attack/AnimNotify_ComboNext.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Attack/AnimNotify_ComboNext.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Attack/eevee_Anim_Attack1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Attack/eevee_Anim_Attack1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Attack/eevee_Anim_Attack2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Attack/eevee_Anim_Attack2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Attack/eevee_Anim_Attack3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Attack/eevee_Anim_Attack3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Attack/eevee_Anim_Attack4.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Attack/eevee_Anim_Attack4.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Attack/eevee_Anim_Attack5.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Attack/eevee_Anim_Attack5.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Attack/eevee_Anim_Attack6.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Attack/eevee_Anim_Attack6.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Hit_Reacts/HitReact_Left.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Hit_Reacts/HitReact_Left.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Hit_Reacts/HitReact_Right.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Hit_Reacts/HitReact_Right.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Lean/BS_Lean.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Lean/BS_Lean.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Lean/eevee_Anim_MovingLLeft.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Lean/eevee_Anim_MovingLLeft.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Lean/eevee_Anim_MovingLRight.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Lean/eevee_Anim_MovingLRight.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/BS_Locomotion.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/BS_Locomotion.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_Falling.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_Falling.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_Jump.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_Jump.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_Land.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_Land.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_Moving.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_Moving.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_MovingStop.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_MovingStop.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_Sprint.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_Sprint.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_indle1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_indle1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_indle2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_indle2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_indle3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Locomotion/eevee_Anim_indle3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Sneaking/BS_Sneaking.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Sneaking/BS_Sneaking.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Sneaking/eevee_Anim_Sneaking_Indle.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Sneaking/eevee_Anim_Sneaking_Indle.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/BaseMode/Sneaking/eevee_Anim_Sneaking_Moving.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/BaseMode/Sneaking/eevee_Anim_Sneaking_Moving.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/DefenseMode/eeveeDefense_Anim_Attack1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/DefenseMode/eeveeDefense_Anim_Attack1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/DefenseMode/eeveeDefense_Anim_Attack2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/DefenseMode/eeveeDefense_Anim_Attack2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/DefenseMode/eeveeDefense_Anim_Attack3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/DefenseMode/eeveeDefense_Anim_Attack3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/DefenseMode/eeveeDefense_Anim_Jump_002.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/DefenseMode/eeveeDefense_Anim_Jump_002.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/DefenseMode/eeveeDefense_Anim_indle1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/DefenseMode/eeveeDefense_Anim_indle1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/DefenseMode/eeveeDefense_Anim_indle2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/DefenseMode/eeveeDefense_Anim_indle2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/DefenseMode/eeveeDefense_Anim_indle3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/DefenseMode/eeveeDefense_Anim_indle3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/DefenseMode/eeveeDefense_Anim_moving.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/DefenseMode/eeveeDefense_Anim_moving.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/SpeedMode/eeveeSpeed_Anim_Attack1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/SpeedMode/eeveeSpeed_Anim_Attack1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/SpeedMode/eeveeSpeed_Anim_Attack2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/SpeedMode/eeveeSpeed_Anim_Attack2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/SpeedMode/eeveeSpeed_Anim_Attack3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/SpeedMode/eeveeSpeed_Anim_Attack3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/SpeedMode/eeveeSpeed_Anim_Jump_002.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/SpeedMode/eeveeSpeed_Anim_Jump_002.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/SpeedMode/eeveeSpeed_Anim_indle1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/SpeedMode/eeveeSpeed_Anim_indle1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/SpeedMode/eeveeSpeed_Anim_indle2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/SpeedMode/eeveeSpeed_Anim_indle2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/SpeedMode/eeveeSpeed_Anim_indle3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/SpeedMode/eeveeSpeed_Anim_indle3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Eevee/SpeedMode/eeveeSpeed_Anim_moving.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Eevee/SpeedMode/eeveeSpeed_Anim_moving.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/EnemyAI/AB_Mob_Eevee_Walk.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/EnemyAI/AB_Mob_Eevee_Walk.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/EnemyAI/AM_Mob_Eevee.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/EnemyAI/AM_Mob_Eevee.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/EnemyAI/BS_Mob_Eevee_Walk.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/EnemyAI/BS_Mob_Eevee_Walk.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Player/AB_Eevee.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Player/AB_Eevee.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Animations/Player/BS_Eevee.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Animations/Player/BS_Eevee.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/AbilitiesImages/Jolteon/jaa1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/AbilitiesImages/Jolteon/jaa1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/AbilitiesImages/Jolteon/jaa2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/AbilitiesImages/Jolteon/jaa2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/AbilitiesImages/Jolteon/jaa3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/AbilitiesImages/Jolteon/jaa3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/AbilitiesImages/Jolteon/jab1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/AbilitiesImages/Jolteon/jab1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/AbilitiesImages/Jolteon/jab2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/AbilitiesImages/Jolteon/jab2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/AbilitiesImages/Jolteon/jab3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/AbilitiesImages/Jolteon/jab3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/AbilitiesImages/Jolteon/jad1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/AbilitiesImages/Jolteon/jad1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/AbilitiesImages/Jolteon/jad2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/AbilitiesImages/Jolteon/jad2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/AbilitiesImages/Jolteon/jad3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/AbilitiesImages/Jolteon/jad3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/AbilitiesImages/Jolteon/jas1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/AbilitiesImages/Jolteon/jas1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/AbilitiesImages/Jolteon/jas2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/AbilitiesImages/Jolteon/jas2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/AbilitiesImages/Jolteon/jas3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/AbilitiesImages/Jolteon/jas3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/PokemonProfileImages/EeeveeProfileImage.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/PokemonProfileImages/EeeveeProfileImage.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/PokemonProfileImages/FlareonAttackProfile.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/PokemonProfileImages/FlareonAttackProfile.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/PokemonProfileImages/FlareonDefenseProfile.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/PokemonProfileImages/FlareonDefenseProfile.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/PokemonProfileImages/FlareonProfileImage.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/PokemonProfileImages/FlareonProfileImage.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/PokemonProfileImages/FlareonSpeedProfile.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/PokemonProfileImages/FlareonSpeedProfile.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/PokemonProfileImages/JolteonAttackProfile.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/PokemonProfileImages/JolteonAttackProfile.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/PokemonProfileImages/JolteonDefenseProfile.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/PokemonProfileImages/JolteonDefenseProfile.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/PokemonProfileImages/JolteonProfileImage.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/PokemonProfileImages/JolteonProfileImage.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/PokemonProfileImages/JolteonSpeedProfile.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/PokemonProfileImages/JolteonSpeedProfile.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/PokemonProfileImages/VaporeonAttackProfile.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/PokemonProfileImages/VaporeonAttackProfile.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/PokemonProfileImages/VaporeonDefenseProfile.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/PokemonProfileImages/VaporeonDefenseProfile.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/PokemonProfileImages/VaporeonProfileImage.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/PokemonProfileImages/VaporeonProfileImage.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/PokemonProfileImages/VaporeonSpeedProfile.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/PokemonProfileImages/VaporeonSpeedProfile.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/Target/circle-41674.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/Target/circle-41674.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/Target/circle-41674_Mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/Target/circle-41674_Mat.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Assets/logo2DWithoutNameHighQuality.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Assets/logo2DWithoutNameHighQuality.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/AbilitiesEffects/BP_TestBolt.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/AbilitiesEffects/BP_TestBolt.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/BPC_FilesManager.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/BPC_FilesManager.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/BPC_LevelSystem.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/BPC_LevelSystem.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/BPC_PlayerStats.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/BPC_PlayerStats.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/BPC_Pokemons.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/BPC_Pokemons.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/BPC_ProfileUIInfo.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/BPC_ProfileUIInfo.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/BPC_Stats.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/BPC_Stats.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/BPC_Target.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/BPC_Target.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/CharacterMenuPlayer/BP_CharactersMenuPlayer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/CharacterMenuPlayer/BP_CharactersMenuPlayer.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/EnemyAI/BPI_Attack.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/EnemyAI/BPI_Attack.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/EnemyAI/BP_EnemyAI.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/EnemyAI/BP_EnemyAI.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/EnemyAI/BP_Mob.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/EnemyAI/BP_Mob.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/EnemyAI/BP_Mob1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/EnemyAI/BP_Mob1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/EnemyAI/BP_Mob_Eevee.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/EnemyAI/BP_Mob_Eevee.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/EnemyAI/BP_Mob_Flareon.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/EnemyAI/BP_Mob_Flareon.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/EnemyAI/BP_Mob_Jolteon.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/EnemyAI/BP_Mob_Jolteon.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/EnemyAI/BP_Mob_Vaporeon.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/EnemyAI/BP_Mob_Vaporeon.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/EnemyAI/InheritMob.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/EnemyAI/InheritMob.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/Infos/DamageInfo.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/Infos/DamageInfo.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/LevelSystem.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/LevelSystem.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/Player/BPC_AttackSystem.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/Player/BPC_AttackSystem.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/Player/BPC_ModeSystem.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/Player/BPC_ModeSystem.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/Player/BPC_PlayerStats.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/Player/BPC_PlayerStats.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/Player/BP_Character.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/Player/BP_Character.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/Player/Input/Actions/IA_Attack.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/Player/Input/Actions/IA_Attack.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/Player/Input/Actions/IA_Attack1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/Player/Input/Actions/IA_Attack1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/Player/Input/Actions/IA_Jump.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/Player/Input/Actions/IA_Jump.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/Player/Input/Actions/IA_Look.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/Player/Input/Actions/IA_Look.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/Player/Input/Actions/IA_Move.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/Player/Input/Actions/IA_Move.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/Player/Input/Actions/IA_Sneaking.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/Player/Input/Actions/IA_Sneaking.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/Player/Input/Actions/IA_Sprint.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/Player/Input/Actions/IA_Sprint.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/Player/Input/Actions/IA_TargetClick.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/Player/Input/Actions/IA_TargetClick.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/Player/Input/IMC_Main.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/Player/Input/IMC_Main.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/Player/Input/PlayerGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/Player/Input/PlayerGameMode.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/Player/PlayerGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/Player/PlayerGameMode.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Characters/PokemonsSystem.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Characters/PokemonsSystem.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Levels/CharacktersMenu.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Levels/CharacktersMenu.umap -------------------------------------------------------------------------------- /PokeWars/Content/Levels/CharactersMenu.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Levels/CharactersMenu.umap -------------------------------------------------------------------------------- /PokeWars/Content/Levels/GameModes/CharacterMenuGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Levels/GameModes/CharacterMenuGameMode.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Levels/GameModes/MainMenuGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Levels/GameModes/MainMenuGameMode.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Levels/GameModes/PlayerGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Levels/GameModes/PlayerGameMode.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Levels/MainMenu.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Levels/MainMenu.umap -------------------------------------------------------------------------------- /PokeWars/Content/Levels/MainWorld.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Levels/MainWorld.umap -------------------------------------------------------------------------------- /PokeWars/Content/Levels/World.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Levels/World.umap -------------------------------------------------------------------------------- /PokeWars/Content/Models/Eevee/Attack/eeveeAttack.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Eevee/Attack/eeveeAttack.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Eevee/Attack/eeveeAttack_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Eevee/Attack/eeveeAttack_PhysicsAsset.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Eevee/Attack/eeveeAttack_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Eevee/Attack/eeveeAttack_Skeleton.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Eevee/Base/eevee.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Eevee/Base/eevee.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Eevee/Base/eevee_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Eevee/Base/eevee_PhysicsAsset.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Eevee/Base/eevee_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Eevee/Base/eevee_Skeleton.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Eevee/Defense/eeveeDefense.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Eevee/Defense/eeveeDefense.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Eevee/Defense/eeveeDefense_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Eevee/Defense/eeveeDefense_PhysicsAsset.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Eevee/Defense/eeveeDefense_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Eevee/Defense/eeveeDefense_Skeleton.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Eevee/EeveeTmpMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Eevee/EeveeTmpMaterial.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Eevee/Speed/eeveeSpeed.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Eevee/Speed/eeveeSpeed.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Eevee/Speed/eeveeSpeed_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Eevee/Speed/eeveeSpeed_PhysicsAsset.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Eevee/Speed/eeveeSpeed_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Eevee/Speed/eeveeSpeed_Skeleton.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Attack/Animations/FlareonAttack_Anim_Attack1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Attack/Animations/FlareonAttack_Anim_Attack1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Attack/Animations/FlareonAttack_Anim_Attack2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Attack/Animations/FlareonAttack_Anim_Attack2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Attack/Animations/FlareonAttack_Anim_Attack3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Attack/Animations/FlareonAttack_Anim_Attack3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Attack/Animations/FlareonAttack_Anim_Jump_002.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Attack/Animations/FlareonAttack_Anim_Jump_002.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Attack/Animations/FlareonAttack_Anim_indle1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Attack/Animations/FlareonAttack_Anim_indle1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Attack/Animations/FlareonAttack_Anim_indle2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Attack/Animations/FlareonAttack_Anim_indle2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Attack/Animations/FlareonAttack_Anim_indle3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Attack/Animations/FlareonAttack_Anim_indle3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Attack/Animations/FlareonAttack_Anim_moving.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Attack/Animations/FlareonAttack_Anim_moving.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Attack/FlareonAttack.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Attack/FlareonAttack.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Attack/FlareonAttack_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Attack/FlareonAttack_PhysicsAsset.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Attack/FlareonAttack_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Attack/FlareonAttack_Skeleton.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Base/Animations/FlareonBase_Anim_Attack1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Base/Animations/FlareonBase_Anim_Attack1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Base/Animations/FlareonBase_Anim_Attack2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Base/Animations/FlareonBase_Anim_Attack2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Base/Animations/FlareonBase_Anim_Attack3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Base/Animations/FlareonBase_Anim_Attack3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Base/Animations/FlareonBase_Anim_Jump_002.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Base/Animations/FlareonBase_Anim_Jump_002.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Base/Animations/FlareonBase_Anim_indle1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Base/Animations/FlareonBase_Anim_indle1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Base/Animations/FlareonBase_Anim_indle2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Base/Animations/FlareonBase_Anim_indle2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Base/Animations/FlareonBase_Anim_indle3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Base/Animations/FlareonBase_Anim_indle3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Base/Animations/FlareonBase_Anim_moving.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Base/Animations/FlareonBase_Anim_moving.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Base/FlareonBase.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Base/FlareonBase.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Base/FlareonBase_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Base/FlareonBase_PhysicsAsset.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Base/FlareonBase_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Base/FlareonBase_Skeleton.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Defense/Animations/FlareonDefense_Anim_Attack1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Defense/Animations/FlareonDefense_Anim_Attack1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Defense/Animations/FlareonDefense_Anim_Attack2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Defense/Animations/FlareonDefense_Anim_Attack2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Defense/Animations/FlareonDefense_Anim_Attack3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Defense/Animations/FlareonDefense_Anim_Attack3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Defense/Animations/FlareonDefense_Anim_Jump_002.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Defense/Animations/FlareonDefense_Anim_Jump_002.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Defense/Animations/FlareonDefense_Anim_indle1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Defense/Animations/FlareonDefense_Anim_indle1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Defense/Animations/FlareonDefense_Anim_indle2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Defense/Animations/FlareonDefense_Anim_indle2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Defense/Animations/FlareonDefense_Anim_indle3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Defense/Animations/FlareonDefense_Anim_indle3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Defense/Animations/FlareonDefense_Anim_moving.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Defense/Animations/FlareonDefense_Anim_moving.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Defense/FlareonDefense.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Defense/FlareonDefense.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Defense/FlareonDefense_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Defense/FlareonDefense_PhysicsAsset.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Defense/FlareonDefense_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Defense/FlareonDefense_Skeleton.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/FlareonTmpMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/FlareonTmpMaterial.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Speed/Animations/FlareonSpeed_Anim_Attack1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Speed/Animations/FlareonSpeed_Anim_Attack1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Speed/Animations/FlareonSpeed_Anim_Attack2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Speed/Animations/FlareonSpeed_Anim_Attack2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Speed/Animations/FlareonSpeed_Anim_Attack3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Speed/Animations/FlareonSpeed_Anim_Attack3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Speed/Animations/FlareonSpeed_Anim_Jump_002.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Speed/Animations/FlareonSpeed_Anim_Jump_002.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Speed/Animations/FlareonSpeed_Anim_indle1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Speed/Animations/FlareonSpeed_Anim_indle1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Speed/Animations/FlareonSpeed_Anim_indle2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Speed/Animations/FlareonSpeed_Anim_indle2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Speed/Animations/FlareonSpeed_Anim_indle3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Speed/Animations/FlareonSpeed_Anim_indle3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Speed/Animations/FlareonSpeed_Anim_moving.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Speed/Animations/FlareonSpeed_Anim_moving.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Speed/FlareonSpeed.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Speed/FlareonSpeed.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Speed/FlareonSpeed_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Speed/FlareonSpeed_PhysicsAsset.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Flareon/Speed/FlareonSpeed_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Flareon/Speed/FlareonSpeed_Skeleton.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Attack/Animations/JolteonAttack_Anim_Attack1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Attack/Animations/JolteonAttack_Anim_Attack1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Attack/Animations/JolteonAttack_Anim_Attack2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Attack/Animations/JolteonAttack_Anim_Attack2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Attack/Animations/JolteonAttack_Anim_Attack3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Attack/Animations/JolteonAttack_Anim_Attack3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Attack/Animations/JolteonAttack_Anim_Jump_002.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Attack/Animations/JolteonAttack_Anim_Jump_002.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Attack/Animations/JolteonAttack_Anim_indle1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Attack/Animations/JolteonAttack_Anim_indle1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Attack/Animations/JolteonAttack_Anim_indle2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Attack/Animations/JolteonAttack_Anim_indle2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Attack/Animations/JolteonAttack_Anim_indle3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Attack/Animations/JolteonAttack_Anim_indle3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Attack/Animations/JolteonAttack_Anim_moving.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Attack/Animations/JolteonAttack_Anim_moving.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Attack/JolteonAttack.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Attack/JolteonAttack.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Attack/JolteonAttack_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Attack/JolteonAttack_PhysicsAsset.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Attack/JolteonAttack_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Attack/JolteonAttack_Skeleton.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Base/Animations/JolteonBase_Anim_Attack1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Base/Animations/JolteonBase_Anim_Attack1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Base/Animations/JolteonBase_Anim_Attack2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Base/Animations/JolteonBase_Anim_Attack2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Base/Animations/JolteonBase_Anim_Attack3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Base/Animations/JolteonBase_Anim_Attack3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Base/Animations/JolteonBase_Anim_Jump_002.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Base/Animations/JolteonBase_Anim_Jump_002.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Base/Animations/JolteonBase_Anim_indle1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Base/Animations/JolteonBase_Anim_indle1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Base/Animations/JolteonBase_Anim_indle2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Base/Animations/JolteonBase_Anim_indle2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Base/Animations/JolteonBase_Anim_indle3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Base/Animations/JolteonBase_Anim_indle3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Base/Animations/JolteonBase_Anim_moving.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Base/Animations/JolteonBase_Anim_moving.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Base/JolteonBase.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Base/JolteonBase.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Base/JolteonBase_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Base/JolteonBase_PhysicsAsset.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Base/JolteonBase_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Base/JolteonBase_Skeleton.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Defense/Animations/JolteonDefense_Anim_Attack1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Defense/Animations/JolteonDefense_Anim_Attack1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Defense/Animations/JolteonDefense_Anim_Attack2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Defense/Animations/JolteonDefense_Anim_Attack2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Defense/Animations/JolteonDefense_Anim_Attack3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Defense/Animations/JolteonDefense_Anim_Attack3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Defense/Animations/JolteonDefense_Anim_Jump_002.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Defense/Animations/JolteonDefense_Anim_Jump_002.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Defense/Animations/JolteonDefense_Anim_indle1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Defense/Animations/JolteonDefense_Anim_indle1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Defense/Animations/JolteonDefense_Anim_indle2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Defense/Animations/JolteonDefense_Anim_indle2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Defense/Animations/JolteonDefense_Anim_indle3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Defense/Animations/JolteonDefense_Anim_indle3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Defense/Animations/JolteonDefense_Anim_moving.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Defense/Animations/JolteonDefense_Anim_moving.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Defense/JolteonDefense.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Defense/JolteonDefense.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Defense/JolteonDefense_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Defense/JolteonDefense_PhysicsAsset.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Defense/JolteonDefense_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Defense/JolteonDefense_Skeleton.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/JolteonTmpMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/JolteonTmpMaterial.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Speed/Animations/JolteonSpeed_Anim_Attack1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Speed/Animations/JolteonSpeed_Anim_Attack1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Speed/Animations/JolteonSpeed_Anim_Attack2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Speed/Animations/JolteonSpeed_Anim_Attack2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Speed/Animations/JolteonSpeed_Anim_Attack3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Speed/Animations/JolteonSpeed_Anim_Attack3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Speed/Animations/JolteonSpeed_Anim_Jump_002.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Speed/Animations/JolteonSpeed_Anim_Jump_002.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Speed/Animations/JolteonSpeed_Anim_indle1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Speed/Animations/JolteonSpeed_Anim_indle1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Speed/Animations/JolteonSpeed_Anim_indle2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Speed/Animations/JolteonSpeed_Anim_indle2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Speed/Animations/JolteonSpeed_Anim_indle3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Speed/Animations/JolteonSpeed_Anim_indle3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Speed/Animations/JolteonSpeed_Anim_moving.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Speed/Animations/JolteonSpeed_Anim_moving.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Speed/JolteonSpeed.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Speed/JolteonSpeed.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Speed/JolteonSpeed_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Speed/JolteonSpeed_PhysicsAsset.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Jolteon/Speed/JolteonSpeed_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Jolteon/Speed/JolteonSpeed_Skeleton.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Attack/Animations/VaporeonAttack_Anim_Attack1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Attack/Animations/VaporeonAttack_Anim_Attack1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Attack/Animations/VaporeonAttack_Anim_Attack2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Attack/Animations/VaporeonAttack_Anim_Attack2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Attack/Animations/VaporeonAttack_Anim_Attack3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Attack/Animations/VaporeonAttack_Anim_Attack3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Attack/Animations/VaporeonAttack_Anim_Jump_002.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Attack/Animations/VaporeonAttack_Anim_Jump_002.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Attack/Animations/VaporeonAttack_Anim_indle1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Attack/Animations/VaporeonAttack_Anim_indle1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Attack/Animations/VaporeonAttack_Anim_indle2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Attack/Animations/VaporeonAttack_Anim_indle2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Attack/Animations/VaporeonAttack_Anim_indle3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Attack/Animations/VaporeonAttack_Anim_indle3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Attack/Animations/VaporeonAttack_Anim_moving.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Attack/Animations/VaporeonAttack_Anim_moving.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Attack/VaporeonAttack.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Attack/VaporeonAttack.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Attack/VaporeonAttack_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Attack/VaporeonAttack_PhysicsAsset.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Attack/VaporeonAttack_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Attack/VaporeonAttack_Skeleton.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Base/Animations/VaporeonBase_Anim_Attack1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Base/Animations/VaporeonBase_Anim_Attack1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Base/Animations/VaporeonBase_Anim_Attack2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Base/Animations/VaporeonBase_Anim_Attack2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Base/Animations/VaporeonBase_Anim_Attack3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Base/Animations/VaporeonBase_Anim_Attack3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Base/Animations/VaporeonBase_Anim_Jump_002.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Base/Animations/VaporeonBase_Anim_Jump_002.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Base/Animations/VaporeonBase_Anim_indle1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Base/Animations/VaporeonBase_Anim_indle1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Base/Animations/VaporeonBase_Anim_indle2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Base/Animations/VaporeonBase_Anim_indle2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Base/Animations/VaporeonBase_Anim_indle3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Base/Animations/VaporeonBase_Anim_indle3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Base/Animations/VaporeonBase_Anim_moving.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Base/Animations/VaporeonBase_Anim_moving.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Base/VaporeonBase.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Base/VaporeonBase.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Base/VaporeonBase_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Base/VaporeonBase_PhysicsAsset.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Base/VaporeonBase_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Base/VaporeonBase_Skeleton.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Defense/Animations/VaporeonDefense_Anim_Attack1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Defense/Animations/VaporeonDefense_Anim_Attack1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Defense/Animations/VaporeonDefense_Anim_Attack2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Defense/Animations/VaporeonDefense_Anim_Attack2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Defense/Animations/VaporeonDefense_Anim_Attack3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Defense/Animations/VaporeonDefense_Anim_Attack3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Defense/Animations/VaporeonDefense_Anim_Jump_002.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Defense/Animations/VaporeonDefense_Anim_Jump_002.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Defense/Animations/VaporeonDefense_Anim_indle1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Defense/Animations/VaporeonDefense_Anim_indle1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Defense/Animations/VaporeonDefense_Anim_indle2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Defense/Animations/VaporeonDefense_Anim_indle2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Defense/Animations/VaporeonDefense_Anim_indle3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Defense/Animations/VaporeonDefense_Anim_indle3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Defense/Animations/VaporeonDefense_Anim_moving.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Defense/Animations/VaporeonDefense_Anim_moving.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Defense/VaporeonDefense.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Defense/VaporeonDefense.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Defense/VaporeonDefense_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Defense/VaporeonDefense_PhysicsAsset.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Defense/VaporeonDefense_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Defense/VaporeonDefense_Skeleton.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Speed/Animations/VaporeonSpeed_Anim_Attack1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Speed/Animations/VaporeonSpeed_Anim_Attack1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Speed/Animations/VaporeonSpeed_Anim_Attack2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Speed/Animations/VaporeonSpeed_Anim_Attack2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Speed/Animations/VaporeonSpeed_Anim_Attack3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Speed/Animations/VaporeonSpeed_Anim_Attack3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Speed/Animations/VaporeonSpeed_Anim_Jump_002.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Speed/Animations/VaporeonSpeed_Anim_Jump_002.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Speed/Animations/VaporeonSpeed_Anim_indle1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Speed/Animations/VaporeonSpeed_Anim_indle1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Speed/Animations/VaporeonSpeed_Anim_indle2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Speed/Animations/VaporeonSpeed_Anim_indle2.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Speed/Animations/VaporeonSpeed_Anim_indle3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Speed/Animations/VaporeonSpeed_Anim_indle3.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Speed/Animations/VaporeonSpeed_Anim_moving.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Speed/Animations/VaporeonSpeed_Anim_moving.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Speed/VaporeonSpeed.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Speed/VaporeonSpeed.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Speed/VaporeonSpeed_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Speed/VaporeonSpeed_PhysicsAsset.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/Speed/VaporeonSpeed_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/Speed/VaporeonSpeed_Skeleton.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Models/Vaporeon/VaporeonTmpMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Models/Vaporeon/VaporeonTmpMaterial.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Enums/PlayErrorEnum.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Enums/PlayErrorEnum.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Enums/PokemonAbilityTypeEnum.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Enums/PokemonAbilityTypeEnum.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Enums/PokemonEnum.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Enums/PokemonEnum.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Enums/PokemonModeEnum.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Enums/PokemonModeEnum.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Enums/PokemonTypeEnum.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Enums/PokemonTypeEnum.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Models/CharacterBaseInfo.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Models/CharacterBaseInfo.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Models/CharacterBaseInfoJsonStructure.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Models/CharacterBaseInfoJsonStructure.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Models/CharactersManager.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Models/CharactersManager.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Models/CharactersManagerJsonStructure.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Models/CharactersManagerJsonStructure.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Models/PlayerInfo.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Models/PlayerInfo.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Models/PlayerInfoJsonStructure.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Models/PlayerInfoJsonStructure.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Structures/BasicStats.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Structures/BasicStats.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Structures/LevelStats.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Structures/LevelStats.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Structures/Localization.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Structures/Localization.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Structures/ModeAttributes.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Structures/ModeAttributes.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Structures/ModeStats.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Structures/ModeStats.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Structures/Movement.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Structures/Movement.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Structures/PlayerAttributes.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Structures/PlayerAttributes.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Structures/Pokemon.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Structures/Pokemon.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Structures/PokemonAbilitiesPerMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Structures/PokemonAbilitiesPerMode.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Structures/PokemonAbility.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Structures/PokemonAbility.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Structures/PokemonCharacter.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Structures/PokemonCharacter.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Structures/PokemonMeshes.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Structures/PokemonMeshes.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Structures/PokemonPlayer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Structures/PokemonPlayer.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Structures/PokemonPlayerJsonModel.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Structures/PokemonPlayerJsonModel.uasset -------------------------------------------------------------------------------- /PokeWars/Content/Structures/Structures/ProfileImages.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/Structures/Structures/ProfileImages.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/CharactersMenu/Components/WB_CharacterButtonPanel.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/CharactersMenu/Components/WB_CharacterButtonPanel.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/CharactersMenu/Components/WB_ProfileButtonPanel.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/CharactersMenu/Components/WB_ProfileButtonPanel.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/CharactersMenu/WBP_CharactersMenu.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/CharactersMenu/WBP_CharactersMenu.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/CharactersMenu/WBP_NewCharacterMenu.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/CharactersMenu/WBP_NewCharacterMenu.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/GameWorld/Components/WB_AbilityButton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/GameWorld/Components/WB_AbilityButton.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/GameWorld/Components/WB_Error.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/GameWorld/Components/WB_Error.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/GameWorld/Components/WB_Line.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/GameWorld/Components/WB_Line.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/GameWorld/Components/WB_TalentBox.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/GameWorld/Components/WB_TalentBox.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/GameWorld/Skill.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/GameWorld/Skill.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/GameWorld/WB_HUD.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/GameWorld/WB_HUD.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/GameWorld/WB_Tree.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/GameWorld/WB_Tree.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/MainMenu/Default__MainMenuGameMode_C_1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/MainMenu/Default__MainMenuGameMode_C_1.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/MainMenu/Default__WB_MainMenu_C.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/MainMenu/Default__WB_MainMenu_C.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/MainMenu/MainMenuGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/MainMenu/MainMenuGameMode.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/MainMenu/WBP_CharactersMenu.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/MainMenu/WBP_CharactersMenu.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/MainMenu/WBP_MainMenu.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/MainMenu/WBP_MainMenu.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/MainMenu/WBP_Options.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/MainMenu/WBP_Options.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/MainMenu/WB_MainMenu.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/MainMenu/WB_MainMenu.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/MainMenu/WB_MainMenu_C.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/MainMenu/WB_MainMenu_C.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/MainMenu/logo2DWithoutName.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/MainMenu/logo2DWithoutName.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/MainMenuGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/MainMenuGameMode.uasset -------------------------------------------------------------------------------- /PokeWars/Content/UI/WB_MainMenu.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/PokeWars/Content/UI/WB_MainMenu.uasset -------------------------------------------------------------------------------- /PokeWars/PokeWars.uproject: -------------------------------------------------------------------------------- 1 | { 2 | "FileVersion": 3, 3 | "EngineAssociation": "5.3", 4 | "Category": "", 5 | "Description": "", 6 | "Modules": [ 7 | { 8 | "Name": "PokeWars", 9 | "Type": "Runtime", 10 | "LoadingPhase": "Default", 11 | "AdditionalDependencies": [ 12 | "Engine", 13 | "CoreUObject" 14 | ] 15 | } 16 | ], 17 | "Plugins": [ 18 | { 19 | "Name": "ModelingToolsEditorMode", 20 | "Enabled": false, 21 | "TargetAllowList": [ 22 | "Editor" 23 | ] 24 | }, 25 | { 26 | "Name": "MotionWarping", 27 | "Enabled": true 28 | }, 29 | { 30 | "Name": "JsonBlueprintUtilities", 31 | "Enabled": true 32 | }, 33 | { 34 | "Name": "LowEntryExtStdLib", 35 | "Enabled": true, 36 | "MarketplaceURL": "com.epicgames.launcher://ue/marketplace/content/846c2ad08f164f45b0335ecebf85361e" 37 | }, 38 | { 39 | "Name": "VaRest", 40 | "Enabled": true, 41 | "MarketplaceURL": "com.epicgames.launcher://ue/marketplace/content/e47be161e7a24e928560290abd5dcc4f" 42 | }, 43 | { 44 | "Name": "EasyJsonParser", 45 | "Enabled": true, 46 | "MarketplaceURL": "com.epicgames.launcher://ue/marketplace/content/22108e274b5d4e5ab92c0a7b961caf13" 47 | }, 48 | { 49 | "Name": "ReadAndWriteFile", 50 | "Enabled": true, 51 | "MarketplaceURL": "com.epicgames.launcher://ue/marketplace/product/74b9f3d768c845ad8282fd4aa0cef343" 52 | } 53 | ] 54 | } -------------------------------------------------------------------------------- /PokeWars/Source/PokeWars.Target.cs: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | using UnrealBuildTool; 4 | using System.Collections.Generic; 5 | 6 | public class PokeWarsTarget : TargetRules 7 | { 8 | public PokeWarsTarget(TargetInfo Target) : base(Target) 9 | { 10 | Type = TargetType.Game; 11 | DefaultBuildSettings = BuildSettingsVersion.V4; 12 | IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_3; 13 | ExtraModuleNames.Add("PokeWars"); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /PokeWars/Source/PokeWars/PokeWars.Build.cs: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | using UnrealBuildTool; 4 | 5 | public class PokeWars : ModuleRules 6 | { 7 | public PokeWars(ReadOnlyTargetRules Target) : base(Target) 8 | { 9 | PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs; 10 | 11 | PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore" }); 12 | PublicDependencyModuleNames.AddRange(new string[] { "EnhancedInput"}); 13 | 14 | PrivateDependencyModuleNames.AddRange(new string[] { }); 15 | 16 | // Uncomment if you are using Slate UI 17 | // PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" }); 18 | 19 | // Uncomment if you are using online features 20 | // PrivateDependencyModuleNames.Add("OnlineSubsystem"); 21 | 22 | // To include OnlineSubsystemSteam, add it to the plugins section in your uproject file with the Enabled attribute set to true 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /PokeWars/Source/PokeWars/PokeWars.cpp: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | #include "PokeWars.h" 4 | #include "Modules/ModuleManager.h" 5 | 6 | IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, PokeWars, "PokeWars" ); 7 | -------------------------------------------------------------------------------- /PokeWars/Source/PokeWars/PokeWars.h: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | #pragma once 4 | 5 | #include "CoreMinimal.h" 6 | 7 | -------------------------------------------------------------------------------- /PokeWars/Source/PokeWarsEditor.Target.cs: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | using UnrealBuildTool; 4 | using System.Collections.Generic; 5 | 6 | public class PokeWarsEditorTarget : TargetRules 7 | { 8 | public PokeWarsEditorTarget( TargetInfo Target) : base(Target) 9 | { 10 | Type = TargetType.Editor; 11 | DefaultBuildSettings = BuildSettingsVersion.V4; 12 | IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_3; 13 | ExtraModuleNames.Add("PokeWars"); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PokeWars / ポケモンウォーズ 2 |
3 | 4 | 5 | 6 |
7 | 8 | # Descritpion 9 | Before human's existing in Pokemon's world, every pokemon existing alone and fight to survive. 10 | The player takes on the role of a previously selected Pokemon. 11 | Player will encounter many dangers and diverse lands in the open world. 12 | Choose Pokemon can switch between 3 mode - attack, speed and defense. 13 | Every mode have special attributes with increase power attack, speed movemend and defense which will make the gameplay dynamic. 14 | 15 | # Inspiration 16 | The game was inspired by the photos below and I will base the game system on them. 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | --- 31 | 32 | ## How to run / Develop ? 33 | + Unreal Engine 5.3 - For develop game, with blueprints 34 | + Blender 4.0 - For models 35 | + Visual Studio / Rider to develop c++ scripts 36 | 37 | ## Planned features 38 | - [X] Main menu 39 | - [x] Characters menu 40 | - [X] Hp and gaining experience 41 | - [ ] Fighting 42 | - [ ] World with diverse lands 43 | - [ ] Mobs 44 | - [ ] Tree sklils - 3 panels for attack, defense and speed skills 45 | - [ ] First version - 3 pokemons : Jolteon, Flareon, Vaporeon 46 | 47 | ## Features in the future 48 | - [ ] Get Pokemon license 49 | - [ ] Lan 50 | - [ ] Bosses (PVE) 51 | 52 | ## Special's features: 53 | - [ ] Shrek mode - Speed mode (on a donkey) 54 | - [ ] Beaver mode - Defense mode can dam create 55 | 56 | --- 57 | 58 | https://100commitow.pl/ 59 | 60 | #100commitow 61 | 62 | --- 63 | ## Release 64 | First release soon 65 | 66 |
67 | 68 | 69 | 70 |
71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /readme/3Base.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/readme/3Base.jpg -------------------------------------------------------------------------------- /readme/3BaseWithoutBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/readme/3BaseWithoutBackground.png -------------------------------------------------------------------------------- /readme/3C1DB455-B7A6-4E68-A71A-2D59C5BB8055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/readme/3C1DB455-B7A6-4E68-A71A-2D59C5BB8055.png -------------------------------------------------------------------------------- /readme/Espeon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/readme/Espeon.jpg -------------------------------------------------------------------------------- /readme/Flareon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/readme/Flareon.jpg -------------------------------------------------------------------------------- /readme/Glaceon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/readme/Glaceon.jpg -------------------------------------------------------------------------------- /readme/Jolteon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/readme/Jolteon.jpg -------------------------------------------------------------------------------- /readme/Leafeon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/readme/Leafeon.jpg -------------------------------------------------------------------------------- /readme/Umbreon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/readme/Umbreon.jpg -------------------------------------------------------------------------------- /readme/Vaporeon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/readme/Vaporeon.jpg -------------------------------------------------------------------------------- /readme/logo2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/readme/logo2D.png -------------------------------------------------------------------------------- /readme/logo2DWithoutName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/readme/logo2DWithoutName.png -------------------------------------------------------------------------------- /readme/logo2DWithoutNameHighQuality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/readme/logo2DWithoutNameHighQuality.png -------------------------------------------------------------------------------- /readme/logo3D.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/readme/logo3D.glb -------------------------------------------------------------------------------- /readme/pokeWars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atholn/PokeWars/6830f0afc1f470b52fa491e63517ce8877f349da/readme/pokeWars.jpg --------------------------------------------------------------------------------