├── Enemy_Rerandomizer ├── App.config ├── Enemy_Rerandomizer.Designer.cs ├── Enemy_Rerandomizer.cs ├── Enemy_Rerandomizer.csproj ├── Enemy_Rerandomizer.csproj.user ├── Enemy_Rerandomizer.resx ├── FE10FileExtract.cs ├── LZ77.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── firedragon.ico └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── Enemy_Rerandomizer.Enemy_Rerandomizer.resources │ ├── Enemy_Rerandomizer.Properties.Resources.resources │ ├── Enemy_Rerandomizer.csproj.AssemblyReference.cache │ ├── Enemy_Rerandomizer.csproj.CopyComplete │ ├── Enemy_Rerandomizer.csproj.CoreCompileInputs.cache │ ├── Enemy_Rerandomizer.csproj.FileListAbsolute.txt │ ├── Enemy_Rerandomizer.csproj.GenerateResource.cache │ ├── Enemy_Rerandomizer.exe │ └── Enemy_Rerandomizer.pdb ├── FE10 Challenges Patches and Hardmode Changes ├── App.config ├── FE10 Challenges Patches and Hardmode Changes.csproj ├── FE10FileExtract.cs ├── FE10_Challenge_Hardmode.Designer.cs ├── FE10_Challenge_Hardmode.cs ├── FE10_Challenge_Hardmode.resx ├── LZ77.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── darkaffinity.ico └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── FE10 Challenge Patches and Hardmode Changes.exe │ ├── FE10 Challenge Patches and Hardmode Changes.pdb │ ├── FE10 Challenges Patches and Hardmode Changes.csproj.AssemblyReference.cache │ ├── FE10 Challenges Patches and Hardmode Changes.csproj.CopyComplete │ ├── FE10 Challenges Patches and Hardmode Changes.csproj.CoreCompileInputs.cache │ ├── FE10 Challenges Patches and Hardmode Changes.csproj.FileListAbsolute.txt │ ├── FE10 Challenges Patches and Hardmode Changes.csproj.GenerateResource.cache │ ├── FE10_Challenges_Patche_and_Hardmode_Changes.Properties.Resources.resources │ ├── FE10_Challenges_Patches_and_Hardmode_Changes.Form1.resources │ └── TempPE │ └── Properties.Resources.Designer.cs.dll ├── FE10Randomizer ├── App.config ├── FE10FileExtract.cs ├── FE10Randomizer_v2.4.4.csproj ├── FE10Randomizer_v3.4.1.csproj ├── FE10Randomizer_v3.4.1.csproj.user ├── FE10Randomizer_v3.4.2.csproj ├── FE10Randomizer_v3.4.2.csproj.user ├── FE10disposExtractCompress.dll ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── LZ77.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Randomizer_Main.Designer.cs ├── Randomizer_Main.cs ├── Randomizer_Main.resx ├── Resources │ └── haar.PNG ├── bin │ └── Debug │ │ ├── Enemy_Rerandomizer.exe │ │ ├── Enemy_Rerandomizer.exe.config │ │ ├── Enemy_Rerandomizer.pdb │ │ ├── FE10 Challenge Patches and Hardmode Changes.exe │ │ ├── FE10 Challenge Patches and Hardmode Changes.exe.config │ │ ├── FE10 Challenge Patches and Hardmode Changes.pdb │ │ ├── FE10Randomizer_v3.0.0.exe │ │ ├── FE10Randomizer_v3.0.0.exe.config │ │ ├── FE10Randomizer_v3.0.0.pdb │ │ ├── FE10Randomizer_v3.0.2.exe │ │ ├── FE10Randomizer_v3.0.2.exe.config │ │ ├── FE10Randomizer_v3.0.2.pdb │ │ ├── FE10Randomizer_v3.2.2.exe │ │ ├── FE10Randomizer_v3.2.2.exe.config │ │ ├── FE10Randomizer_v3.2.2.pdb │ │ ├── FERandomizer_v3.3.0.exe │ │ ├── FERandomizer_v3.3.0.exe.config │ │ ├── FERandomizer_v3.3.0.pdb │ │ ├── FERandomizer_v3.4.1.exe │ │ ├── FERandomizer_v3.4.1.exe.config │ │ ├── FERandomizer_v3.4.1.pdb │ │ ├── FERandomizer_v3.4.2.exe │ │ ├── FERandomizer_v3.4.2.pdb │ │ ├── assets │ │ ├── CharBaseOrder.csv │ │ ├── CharacterInfo.csv │ │ ├── ClassInfo.csv │ │ ├── ClassPatch_AnimFiles.csv │ │ ├── ClassPatch_MJID.csv │ │ ├── ClassPatch_NewStats.csv │ │ ├── ClassPatch_VanillaClassChanges.csv │ │ ├── EnemyClassGrowths.csv │ │ ├── EventItemInfo.csv │ │ ├── FE10Anim.cms.decompressed_out │ │ ├── FE10Battle.cms.decompressed_out │ │ ├── JIDlist.txt │ │ ├── LM73ClassPatch.csv │ │ ├── LM73MagicPatch.csv │ │ ├── LM73WeaponPatch.csv │ │ ├── NewBases.csv │ │ ├── RandoRecruitData.csv │ │ ├── RecrEnemyGrowths.csv │ │ ├── StatBoosters.csv │ │ ├── animationList.csv │ │ ├── bexpdata.csv │ │ ├── bosslist.csv │ │ ├── chapterlist.txt │ │ ├── classSwap.csv │ │ ├── classpatch │ │ │ ├── RandoRecruitData.csv │ │ │ └── classSwap.csv │ │ ├── dropshopitems.csv │ │ ├── enemyPIDlist.txt │ │ ├── enemySkillList.csv │ │ ├── enemySkillList.txt │ │ ├── enemyweaponlist.csv │ │ ├── forgedata │ │ │ ├── barvert_b.cmp │ │ │ ├── baselard_b.cmp │ │ │ ├── beastkiller_b.cmp │ │ │ ├── blizzard_b.cmp │ │ │ ├── bolganone_b.cmp │ │ │ ├── braveaxe_b.cmp │ │ │ ├── bravebow_b.cmp │ │ │ ├── bravelance_b.cmp │ │ │ ├── bravesword_b.cmp │ │ │ ├── bronzeaxe_b.cmp │ │ │ ├── bronzebow_b.cmp │ │ │ ├── bronzedagger_b.cmp │ │ │ ├── bronzeknife_b.cmp │ │ │ ├── bronzelance_b.cmp │ │ │ ├── bronzesword_b.cmp │ │ │ ├── caladborg_b.cmp │ │ │ ├── chinonbow_b.cmp │ │ │ ├── delicatelance_b.cmp │ │ │ ├── delicatesword_b.cmp │ │ │ ├── dragonkiller_b.cmp │ │ │ ├── elfire_b.cmp │ │ │ ├── ellight_b.cmp │ │ │ ├── elthunder_b.cmp │ │ │ ├── elwind_b.cmp │ │ │ ├── enlilsword_b.cmp │ │ │ ├── fenrir_b.cmp │ │ │ ├── fire_b.cmp │ │ │ ├── gigafire_b.cmp │ │ │ ├── gigathunder_b.cmp │ │ │ ├── gigawind_b.cmp │ │ │ ├── hammer_b.cmp │ │ │ ├── handaxe_b.cmp │ │ │ ├── handspear_b.cmp │ │ │ ├── horsekiller_b.cmp │ │ │ ├── ironaxe_b.cmp │ │ │ ├── ironblade_b.cmp │ │ │ ├── ironbow_b.cmp │ │ │ ├── irondagger_b.cmp │ │ │ ├── ironknife_b.cmp │ │ │ ├── ironlance_b.cmp │ │ │ ├── ironlongbow_b.cmp │ │ │ ├── ironpoleaxe_b.cmp │ │ │ ├── ironspear_b.cmp │ │ │ ├── ironsword_b.cmp │ │ │ ├── kard_b.cmp │ │ │ ├── kareau_b.cmp │ │ │ ├── killeraxe_b.cmp │ │ │ ├── killerbow_b.cmp │ │ │ ├── killerlance_b.cmp │ │ │ ├── killsword_b.cmp │ │ │ ├── light_b.cmp │ │ │ ├── lofabow_b.cmp │ │ │ ├── lughnasad_b.cmp │ │ │ ├── meteor_b.cmp │ │ │ ├── peshkabz_b.cmp │ │ │ ├── poisonaxe_b.cmp │ │ │ ├── poisonbow_b.cmp │ │ │ ├── poisonlance_b.cmp │ │ │ ├── poisonsword_b.cmp │ │ │ ├── purge_b.cmp │ │ │ ├── resire_b.cmp │ │ │ ├── rexaura_b.cmp │ │ │ ├── rexbolt_b.cmp │ │ │ ├── rexcalibur_b.cmp │ │ │ ├── rexflame_b.cmp │ │ │ ├── shine_b.cmp │ │ │ ├── shortaxe_b.cmp │ │ │ ├── shortspear_b.cmp │ │ │ ├── silveraxe_b.cmp │ │ │ ├── silverblade_b.cmp │ │ │ ├── silverbow_b.cmp │ │ │ ├── silverdagger_b.cmp │ │ │ ├── silverknife_b.cmp │ │ │ ├── silverlance_b.cmp │ │ │ ├── silverlongbow_b.cmp │ │ │ ├── silverpoleaxe_b.cmp │ │ │ ├── silverspear_b.cmp │ │ │ ├── silversword_b.cmp │ │ │ ├── slenderspear_b.cmp │ │ │ ├── steelaxe_b.cmp │ │ │ ├── steelblade_b.cmp │ │ │ ├── steelbow_b.cmp │ │ │ ├── steeldagger_b.cmp │ │ │ ├── steelknife_b.cmp │ │ │ ├── steellance_b.cmp │ │ │ ├── steellongbow_b.cmp │ │ │ ├── steelpoleaxe_b.cmp │ │ │ ├── steelspear_b.cmp │ │ │ ├── steelsword_b.cmp │ │ │ ├── stiletto_b.cmp │ │ │ ├── stormsword_b.cmp │ │ │ ├── tarvos_b.cmp │ │ │ ├── thany_b.cmp │ │ │ ├── thoron_b.cmp │ │ │ ├── thunder_b.cmp │ │ │ ├── thunderstorm_b.cmp │ │ │ ├── tomahawk_b.cmp │ │ │ ├── tornado_b.cmp │ │ │ ├── uerine_b.cmp │ │ │ └── zanezphte_b.cmp │ │ ├── gamedata │ │ │ ├── FE10Anim.cms │ │ │ ├── FE10Anim.cms.decompressed │ │ │ ├── FE10Battle.cms │ │ │ ├── FE10Battle.cms.decompressed │ │ │ └── banner_en.tpl │ │ ├── images │ │ │ └── icons │ │ │ │ ├── icon.cms │ │ │ │ ├── icon_wide.cms │ │ │ │ └── temp │ │ ├── ironmanData.csv │ │ ├── itemlist.bin │ │ ├── logheader.txt │ │ ├── logpics │ │ │ ├── adept.png │ │ │ ├── aran.png │ │ │ ├── ashera.png │ │ │ ├── astrid.png │ │ │ ├── bastian.png │ │ │ ├── beastfoe.png │ │ │ ├── bio0.png │ │ │ ├── bio1.png │ │ │ ├── bio2.png │ │ │ ├── bio3.png │ │ │ ├── bio4.png │ │ │ ├── bio5.png │ │ │ ├── bio6.png │ │ │ ├── bio7.png │ │ │ ├── bio8.png │ │ │ ├── bio9.png │ │ │ ├── birdfoe.png │ │ │ ├── blackknight.png │ │ │ ├── blessing.png │ │ │ ├── bloodtide.png │ │ │ ├── blossom.png │ │ │ ├── boon.png │ │ │ ├── boyd.png │ │ │ ├── brom.png │ │ │ ├── caineghis.png │ │ │ ├── calill.png │ │ │ ├── cancel.png │ │ │ ├── celerity.png │ │ │ ├── corrosion.png │ │ │ ├── counter.png │ │ │ ├── danved.png │ │ │ ├── dark.png │ │ │ ├── daunt.png │ │ │ ├── dheginsea.png │ │ │ ├── disarm.png │ │ │ ├── discipline.png │ │ │ ├── dragonfoe.png │ │ │ ├── earth.png │ │ │ ├── edward.png │ │ │ ├── elincia.png │ │ │ ├── ena.png │ │ │ ├── fiona.png │ │ │ ├── fire.png │ │ │ ├── flourish.png │ │ │ ├── formshift.png │ │ │ ├── fortune.png │ │ │ ├── gamble.png │ │ │ ├── gareth.png │ │ │ ├── gatrie.png │ │ │ ├── geoffrey.png │ │ │ ├── giffca.png │ │ │ ├── glare.png │ │ │ ├── guard.png │ │ │ ├── haar.png │ │ │ ├── heather.png │ │ │ ├── heaven.png │ │ │ ├── hetzel.png │ │ │ ├── howl.png │ │ │ ├── ike.png │ │ │ ├── ilyana.png │ │ │ ├── imbue.png │ │ │ ├── insight.png │ │ │ ├── izuka.png │ │ │ ├── janaff.png │ │ │ ├── jarod.png │ │ │ ├── jill.png │ │ │ ├── kieran.png │ │ │ ├── kurthnaga.png │ │ │ ├── kyza.png │ │ │ ├── laura.png │ │ │ ├── leanne.png │ │ │ ├── lehran.png │ │ │ ├── lekain.png │ │ │ ├── leonardo.png │ │ │ ├── lethe.png │ │ │ ├── levail.png │ │ │ ├── light.png │ │ │ ├── lucia.png │ │ │ ├── ludveck.png │ │ │ ├── lyre.png │ │ │ ├── maelstrom.png │ │ │ ├── makalov.png │ │ │ ├── marcia.png │ │ │ ├── maurim.png │ │ │ ├── meg.png │ │ │ ├── mia.png │ │ │ ├── micaiah.png │ │ │ ├── miracle.png │ │ │ ├── mist.png │ │ │ ├── mordecai.png │ │ │ ├── naesala.png │ │ │ ├── nailah.png │ │ │ ├── nasir.png │ │ │ ├── nealuchi.png │ │ │ ├── nephenee.png │ │ │ ├── nighttide.png │ │ │ ├── nihil.png │ │ │ ├── nolan.png │ │ │ ├── nullify.png │ │ │ ├── numida.png │ │ │ ├── oliver.png │ │ │ ├── oscar.png │ │ │ ├── paragon.png │ │ │ ├── parity.png │ │ │ ├── pass.png │ │ │ ├── pavise.png │ │ │ ├── pelleas.png │ │ │ ├── provoke.png │ │ │ ├── quickclaw.png │ │ │ ├── rafiel.png │ │ │ ├── ranulf.png │ │ │ ├── renewal.png │ │ │ ├── renning.png │ │ │ ├── resolve.png │ │ │ ├── reyson.png │ │ │ ├── rhys.png │ │ │ ├── rolf.png │ │ │ ├── sacrifice.png │ │ │ ├── sanaki.png │ │ │ ├── savior.png │ │ │ ├── sephiran.png │ │ │ ├── septimus.png │ │ │ ├── shade.png │ │ │ ├── shinon.png │ │ │ ├── shriek.png │ │ │ ├── sigrun.png │ │ │ ├── skrimir.png │ │ │ ├── smite.png │ │ │ ├── soren.png │ │ │ ├── sothe.png │ │ │ ├── star.png │ │ │ ├── stefan.png │ │ │ ├── stillness.png │ │ │ ├── tanith.png │ │ │ ├── tauroneo.png │ │ │ ├── temp │ │ │ ├── thunder.png │ │ │ ├── tibarn.png │ │ │ ├── titania.png │ │ │ ├── tormod.png │ │ │ ├── ulki.png │ │ │ ├── valtome.png │ │ │ ├── vantage.png │ │ │ ├── vigilance.png │ │ │ ├── vika.png │ │ │ ├── volke.png │ │ │ ├── volug.png │ │ │ ├── water.png │ │ │ ├── whitepool.png │ │ │ ├── wildheart.png │ │ │ ├── wind.png │ │ │ ├── wrath.png │ │ │ ├── zelgius.png │ │ │ └── zihark.png │ │ ├── logscript.txt │ │ ├── newPromotionBonuses.csv │ │ ├── randomItemNames.txt │ │ ├── scriptdata │ │ │ ├── C0401.cmb │ │ │ ├── C0402.cmb │ │ │ ├── C0403.cmb │ │ │ ├── C0404.cmb │ │ │ ├── C0405.cmb │ │ │ └── C0407a.cmb │ │ ├── skillList.csv │ │ ├── skillList.txt │ │ ├── skillcaplist.txt │ │ ├── temp │ │ ├── vanillafiles │ │ │ └── place.holder │ │ └── weaponlist.txt │ │ ├── documentation - Please read! │ │ ├── CHANGELOG.txt │ │ ├── ENEMY RE-RANDOMIZER INSTRUCTIONS.txt │ │ ├── HARDMODE CHANGES INSTRUCTIONS.txt │ │ ├── PossibleEnemyWeapons.xlsx │ │ ├── README.htm │ │ └── images │ │ │ ├── adjgrowthrange.png │ │ │ ├── growthrange.png │ │ │ ├── growthsettings.PNG │ │ │ ├── hplckbases.png │ │ │ ├── ironsword.png │ │ │ ├── lethe.PNG │ │ │ ├── randbases.png │ │ │ ├── randironsword.png │ │ │ ├── shufflebases.png │ │ │ ├── shufflegrowths.png │ │ │ ├── vanillagrowths.png │ │ │ ├── weapsettings.PNG │ │ │ └── weights.PNG │ │ ├── settings.ini │ │ └── settings │ │ └── testsettings.ini ├── fire_emblem_icon_n82_icon.ico └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── FE10Randomizer_v0.1.csproj.AssemblyReference.cache │ ├── FE10Randomizer_v0.1.csproj.FileListAbsolute.txt │ ├── FE10Randomizer_v0.1.csproj.GenerateResource.cache │ ├── FE10Randomizer_v0.1.csprojAssemblyReference.cache │ ├── FE10Randomizer_v0.1.exe │ ├── FE10Randomizer_v0.1.pdb │ ├── FE10Randomizer_v0._1.Form1.resources │ ├── FE10Randomizer_v0._1.Properties.Resources.resources │ ├── FE10Randomizer_v0._1.Randomizer_Main.resources │ ├── FE10Randomizer_v2.4.4.csproj.AssemblyReference.cache │ ├── FE10Randomizer_v2.4.4.csproj.CoreCompileInputs.cache │ ├── FE10Randomizer_v2.4.4.csproj.FileListAbsolute.txt │ ├── FE10Randomizer_v2.4.4.csproj.GenerateResource.cache │ ├── FE10Randomizer_v2.4.4.csproj.SuggestedBindingRedirects.cache │ ├── FE10Randomizer_v3.0.2.exe │ ├── FE10Randomizer_v3.0.2.pdb │ ├── FE10Randomizer_v3.2.2.exe │ ├── FE10Randomizer_v3.2.2.pdb │ ├── FE10Randomizer_v3.3.1.csproj.AssemblyReference.cache │ ├── FE10Randomizer_v3.3.1.csproj.CoreCompileInputs.cache │ ├── FE10Randomizer_v3.3.1.csproj.FileListAbsolute.txt │ ├── FE10Randomizer_v3.3.1.csproj.GenerateResource.cache │ ├── FE10Randomizer_v3.4.1.csproj.AssemblyReference.cache │ ├── FE10Randomizer_v3.4.1.csproj.CoreCompileInputs.cache │ ├── FE10Randomizer_v3.4.1.csproj.FileListAbsolute.txt │ ├── FE10Randomizer_v3.4.1.csproj.GenerateResource.cache │ ├── FE10Randomizer_v3.4.2.csproj.AssemblyReference.cache │ ├── FE10Randomizer_v3.4.2.csproj.CoreCompileInputs.cache │ ├── FE10Randomizer_v3.4.2.csproj.FileListAbsolute.txt │ ├── FE10Randomizer_v3.4.2.csproj.GenerateResource.cache │ ├── FE10Randomizer_v302.Properties.Resources.resources │ ├── FE10Randomizer_v330.Properties.Resources.resources │ ├── FE10Randomizer_v340.Properties.Resources.resources │ ├── FE10Randomizer_v341.Properties.Resources.resources │ ├── FE10Randomizer_v342.Properties.Resources.resources │ ├── FERandomizer_v3.3.0.exe │ ├── FERandomizer_v3.3.0.pdb │ ├── FERandomizer_v3.4.0.exe │ ├── FERandomizer_v3.4.0.pdb │ ├── FERandomizer_v3.4.1.exe │ ├── FERandomizer_v3.4.1.pdb │ ├── FERandomizer_v3.4.2.exe │ ├── FERandomizer_v3.4.2.pdb │ └── TempPE │ └── Properties.Resources.Designer.cs.dll └── README.md /Enemy_Rerandomizer/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Enemy_Rerandomizer/Enemy_Rerandomizer.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | en-US 11 | false 12 | 13 | -------------------------------------------------------------------------------- /Enemy_Rerandomizer/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace Enemy_Rerandomizer 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Enemy_Rerandomizer()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Enemy_Rerandomizer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Enemy_Rerandomizer")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Enemy_Rerandomizer")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("3d9199d6-a9d2-4571-b821-b6c683356cd6")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Enemy_Rerandomizer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | 12 | namespace Enemy_Rerandomizer.Properties 13 | { 14 | /// 15 | /// A strongly-typed resource class, for looking up localized strings, etc. 16 | /// 17 | // This class was auto-generated by the StronglyTypedResourceBuilder 18 | // class via a tool like ResGen or Visual Studio. 19 | // To add or remove a member, edit your .ResX file then rerun ResGen 20 | // with the /str option, or rebuild your VS project. 21 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 22 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 23 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 24 | internal class Resources 25 | { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() 33 | { 34 | } 35 | 36 | /// 37 | /// Returns the cached ResourceManager instance used by this class. 38 | /// 39 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 40 | internal static global::System.Resources.ResourceManager ResourceManager 41 | { 42 | get 43 | { 44 | if ((resourceMan == null)) 45 | { 46 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Enemy_Rerandomizer.Properties.Resources", typeof(Resources).Assembly); 47 | resourceMan = temp; 48 | } 49 | return resourceMan; 50 | } 51 | } 52 | 53 | /// 54 | /// Overrides the current thread's CurrentUICulture property for all 55 | /// resource lookups using this strongly typed resource class. 56 | /// 57 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 58 | internal static global::System.Globalization.CultureInfo Culture 59 | { 60 | get 61 | { 62 | return resourceCulture; 63 | } 64 | set 65 | { 66 | resourceCulture = value; 67 | } 68 | } 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /Enemy_Rerandomizer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | 12 | namespace Enemy_Rerandomizer.Properties 13 | { 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 17 | { 18 | 19 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 20 | 21 | public static Settings Default 22 | { 23 | get 24 | { 25 | return defaultInstance; 26 | } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Enemy_Rerandomizer/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Enemy_Rerandomizer/firedragon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/Enemy_Rerandomizer/firedragon.ico -------------------------------------------------------------------------------- /Enemy_Rerandomizer/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/Enemy_Rerandomizer/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Enemy_Rerandomizer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/Enemy_Rerandomizer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Enemy_Rerandomizer/obj/Debug/Enemy_Rerandomizer.Enemy_Rerandomizer.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/Enemy_Rerandomizer/obj/Debug/Enemy_Rerandomizer.Enemy_Rerandomizer.resources -------------------------------------------------------------------------------- /Enemy_Rerandomizer/obj/Debug/Enemy_Rerandomizer.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/Enemy_Rerandomizer/obj/Debug/Enemy_Rerandomizer.Properties.Resources.resources -------------------------------------------------------------------------------- /Enemy_Rerandomizer/obj/Debug/Enemy_Rerandomizer.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/Enemy_Rerandomizer/obj/Debug/Enemy_Rerandomizer.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Enemy_Rerandomizer/obj/Debug/Enemy_Rerandomizer.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/Enemy_Rerandomizer/obj/Debug/Enemy_Rerandomizer.csproj.CopyComplete -------------------------------------------------------------------------------- /Enemy_Rerandomizer/obj/Debug/Enemy_Rerandomizer.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4a037f3a3132343d6c1fe85585ea651b3440852c 2 | -------------------------------------------------------------------------------- /Enemy_Rerandomizer/obj/Debug/Enemy_Rerandomizer.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\josia\Documents\FE10 Projects\Enemy_Rerandomizer\obj\Debug\Enemy_Rerandomizer.csproj.AssemblyReference.cache 2 | C:\Users\josia\Documents\FE10 Projects\Enemy_Rerandomizer\obj\Debug\Enemy_Rerandomizer.Enemy_Rerandomizer.resources 3 | C:\Users\josia\Documents\FE10 Projects\Enemy_Rerandomizer\obj\Debug\Enemy_Rerandomizer.Properties.Resources.resources 4 | C:\Users\josia\Documents\FE10 Projects\Enemy_Rerandomizer\obj\Debug\Enemy_Rerandomizer.csproj.GenerateResource.cache 5 | C:\Users\josia\Documents\FE10 Projects\Enemy_Rerandomizer\obj\Debug\Enemy_Rerandomizer.csproj.CoreCompileInputs.cache 6 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\FE10Randomizer\bin\Debug\Enemy_Rerandomizer.exe.config 7 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\FE10Randomizer\bin\Debug\Enemy_Rerandomizer.exe 8 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\FE10Randomizer\bin\Debug\Enemy_Rerandomizer.pdb 9 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\Enemy_Rerandomizer\obj\Debug\Enemy_Rerandomizer.csproj.AssemblyReference.cache 10 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\Enemy_Rerandomizer\obj\Debug\Enemy_Rerandomizer.Enemy_Rerandomizer.resources 11 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\Enemy_Rerandomizer\obj\Debug\Enemy_Rerandomizer.Properties.Resources.resources 12 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\Enemy_Rerandomizer\obj\Debug\Enemy_Rerandomizer.csproj.GenerateResource.cache 13 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\Enemy_Rerandomizer\obj\Debug\Enemy_Rerandomizer.csproj.CoreCompileInputs.cache 14 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\Enemy_Rerandomizer\obj\Debug\Enemy_Rerandomizer.csproj.CopyComplete 15 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\Enemy_Rerandomizer\obj\Debug\Enemy_Rerandomizer.exe 16 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\Enemy_Rerandomizer\obj\Debug\Enemy_Rerandomizer.pdb 17 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\bin\Debug\Enemy_Rerandomizer.exe.config 18 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\bin\Debug\Enemy_Rerandomizer.exe 19 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\bin\Debug\Enemy_Rerandomizer.pdb 20 | -------------------------------------------------------------------------------- /Enemy_Rerandomizer/obj/Debug/Enemy_Rerandomizer.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/Enemy_Rerandomizer/obj/Debug/Enemy_Rerandomizer.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Enemy_Rerandomizer/obj/Debug/Enemy_Rerandomizer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/Enemy_Rerandomizer/obj/Debug/Enemy_Rerandomizer.exe -------------------------------------------------------------------------------- /Enemy_Rerandomizer/obj/Debug/Enemy_Rerandomizer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/Enemy_Rerandomizer/obj/Debug/Enemy_Rerandomizer.pdb -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace FE10_Challenges_Patches_and_Hardmode_Changes 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("FE10 Challenges Patches and Hardmode Changes")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("FE10 Challenges Patches and Hardmode Changes")] 13 | [assembly: AssemblyCopyright("Copyright © 2022")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("677dd8e1-bdf9-4684-9ce0-7733fb3d237e")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace FE10_Challenges_Patche_and_Hardmode_Changes.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("FE10_Challenges_Patche_and_Hardmode_Changes.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace FE10_Challenges_Patche_and_Hardmode_Changes.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/darkaffinity.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10 Challenges Patches and Hardmode Changes/darkaffinity.ico -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10 Challenges Patches and Hardmode Changes/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/obj/Debug/FE10 Challenge Patches and Hardmode Changes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10 Challenges Patches and Hardmode Changes/obj/Debug/FE10 Challenge Patches and Hardmode Changes.exe -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/obj/Debug/FE10 Challenge Patches and Hardmode Changes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10 Challenges Patches and Hardmode Changes/obj/Debug/FE10 Challenge Patches and Hardmode Changes.pdb -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/obj/Debug/FE10 Challenges Patches and Hardmode Changes.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10 Challenges Patches and Hardmode Changes/obj/Debug/FE10 Challenges Patches and Hardmode Changes.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/obj/Debug/FE10 Challenges Patches and Hardmode Changes.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10 Challenges Patches and Hardmode Changes/obj/Debug/FE10 Challenges Patches and Hardmode Changes.csproj.CopyComplete -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/obj/Debug/FE10 Challenges Patches and Hardmode Changes.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 24e27f00b74ac19c69d529ba56e79cd7f6603d99 2 | -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/obj/Debug/FE10 Challenges Patches and Hardmode Changes.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\bin\Debug\FE10 Challenge Patches and Hardmode Changes.exe.config 2 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\bin\Debug\FE10 Challenge Patches and Hardmode Changes.exe 3 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\bin\Debug\FE10 Challenge Patches and Hardmode Changes.pdb 4 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10 Challenges Patches and Hardmode Changes\obj\Debug\FE10 Challenges Patches and Hardmode Changes.csproj.AssemblyReference.cache 5 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10 Challenges Patches and Hardmode Changes\obj\Debug\FE10_Challenges_Patches_and_Hardmode_Changes.Form1.resources 6 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10 Challenges Patches and Hardmode Changes\obj\Debug\FE10_Challenges_Patche_and_Hardmode_Changes.Properties.Resources.resources 7 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10 Challenges Patches and Hardmode Changes\obj\Debug\FE10 Challenges Patches and Hardmode Changes.csproj.GenerateResource.cache 8 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10 Challenges Patches and Hardmode Changes\obj\Debug\FE10 Challenges Patches and Hardmode Changes.csproj.CoreCompileInputs.cache 9 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10 Challenges Patches and Hardmode Changes\obj\Debug\FE10 Challenges Patches and Hardmode Changes.csproj.CopyComplete 10 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10 Challenges Patches and Hardmode Changes\obj\Debug\FE10 Challenge Patches and Hardmode Changes.exe 11 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10 Challenges Patches and Hardmode Changes\obj\Debug\FE10 Challenge Patches and Hardmode Changes.pdb 12 | -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/obj/Debug/FE10 Challenges Patches and Hardmode Changes.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10 Challenges Patches and Hardmode Changes/obj/Debug/FE10 Challenges Patches and Hardmode Changes.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/obj/Debug/FE10_Challenges_Patche_and_Hardmode_Changes.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10 Challenges Patches and Hardmode Changes/obj/Debug/FE10_Challenges_Patche_and_Hardmode_Changes.Properties.Resources.resources -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/obj/Debug/FE10_Challenges_Patches_and_Hardmode_Changes.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10 Challenges Patches and Hardmode Changes/obj/Debug/FE10_Challenges_Patches_and_Hardmode_Changes.Form1.resources -------------------------------------------------------------------------------- /FE10 Challenges Patches and Hardmode Changes/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10 Challenges Patches and Hardmode Changes/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /FE10Randomizer/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FE10Randomizer/FE10Randomizer_v3.4.1.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | en-US 11 | false 12 | 13 | -------------------------------------------------------------------------------- /FE10Randomizer/FE10Randomizer_v3.4.2.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | en-US 11 | false 12 | 13 | -------------------------------------------------------------------------------- /FE10Randomizer/FE10disposExtractCompress.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/FE10disposExtractCompress.dll -------------------------------------------------------------------------------- /FE10Randomizer/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace FE10Randomizer_v0._1 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Randomizer_Main()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /FE10Randomizer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("FE10Randomizer_v3.4.1")] 9 | [assembly: AssemblyDescription("Randomizer for Fire Emblem: Radiant Dawn")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("LordMewtwo73")] 12 | [assembly: AssemblyProduct("FE10Randomizer_v3.4.1")] 13 | [assembly: AssemblyCopyright("Copyright © 2020")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("c176c03f-d44c-4f5c-8ea0-778ec0a309e4")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("3.4.1.1")] 36 | [assembly: AssemblyFileVersion("3.4.1.1")] 37 | -------------------------------------------------------------------------------- /FE10Randomizer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace FE10Randomizer_v342.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("FE10Randomizer_v342.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | 63 | /// 64 | /// Looks up a localized resource of type System.Drawing.Bitmap. 65 | /// 66 | internal static System.Drawing.Bitmap haar { 67 | get { 68 | object obj = ResourceManager.GetObject("haar", resourceCulture); 69 | return ((System.Drawing.Bitmap)(obj)); 70 | } 71 | } 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /FE10Randomizer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace FE10Randomizer_v342.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /FE10Randomizer/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /FE10Randomizer/Resources/haar.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/Resources/haar.PNG -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/Enemy_Rerandomizer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/Enemy_Rerandomizer.exe -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/Enemy_Rerandomizer.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/Enemy_Rerandomizer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/Enemy_Rerandomizer.pdb -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FE10 Challenge Patches and Hardmode Changes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/FE10 Challenge Patches and Hardmode Changes.exe -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FE10 Challenge Patches and Hardmode Changes.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FE10 Challenge Patches and Hardmode Changes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/FE10 Challenge Patches and Hardmode Changes.pdb -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FE10Randomizer_v3.0.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/FE10Randomizer_v3.0.0.exe -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FE10Randomizer_v3.0.0.exe.config: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FE10Randomizer_v3.0.0.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/FE10Randomizer_v3.0.0.pdb -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FE10Randomizer_v3.0.2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/FE10Randomizer_v3.0.2.exe -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FE10Randomizer_v3.0.2.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FE10Randomizer_v3.0.2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/FE10Randomizer_v3.0.2.pdb -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FE10Randomizer_v3.2.2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/FE10Randomizer_v3.2.2.exe -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FE10Randomizer_v3.2.2.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FE10Randomizer_v3.2.2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/FE10Randomizer_v3.2.2.pdb -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FERandomizer_v3.3.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/FERandomizer_v3.3.0.exe -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FERandomizer_v3.3.0.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FERandomizer_v3.3.0.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/FERandomizer_v3.3.0.pdb -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FERandomizer_v3.4.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/FERandomizer_v3.4.1.exe -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FERandomizer_v3.4.1.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FERandomizer_v3.4.1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/FERandomizer_v3.4.1.pdb -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FERandomizer_v3.4.2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/FERandomizer_v3.4.2.exe -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/FERandomizer_v3.4.2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/FERandomizer_v3.4.2.pdb -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/CharBaseOrder.csv: -------------------------------------------------------------------------------- 1 | Name,BaseLoc,str,mag,skl,spd,def,res 2 | micaiah,5885,0,1,2,3,4,5 3 | edward,701,0,4,1,2,3,5 4 | leonardo,7325,5,3,1,2,4,0 5 | nolan,4733,3,5,0,4,1,2 6 | laura,7613,2,0,1,4,5,3 7 | sothe,2045,3,4,0,5,1,2 8 | ilyana,413,4,0,2,1,5,3 9 | aran,5117,2,4,0,3,1,5 10 | meg,6173,0,3,1,2,5,4 11 | volug,1181,2,3,1,0,4,5 12 | jill,2813,2,5,1,0,3,4 13 | tauroneo,3485,1,0,2,4,5,3 14 | zihark,3773,0,4,1,2,5,3 15 | fiona,5213,4,0,3,2,5,1 16 | tormod,4157,1,4,2,0,3,5 17 | maurim,6077,0,5,1,4,2,3 18 | vika,4925,2,3,0,1,4,5 19 | nailah,4445,0,5,1,2,3,4 20 | elincia,797,5,3,4,0,1,2 21 | marcia,5693,0,3,5,4,1,2 22 | nealuchi,4349,3,4,5,0,1,2 23 | haar,4829,3,5,0,1,2,4 24 | brom,3677,2,3,4,0,1,5 25 | nephenee,4637,3,4,2,0,5,1 26 | heather,5309,3,4,1,0,5,2 27 | lucia,7229,5,2,0,4,3,1 28 | mordecai,6269,1,5,2,3,0,4 29 | lethe,7421,5,2,0,3,4,1 30 | geoffrey,2717,1,3,0,4,5,2 31 | kieran,1853,2,4,0,1,3,5 32 | astrid,3005,3,1,2,4,5,0 33 | makalov,5789,2,3,0,1,4,5 34 | danved,509,3,2,0,1,4,5 35 | calill,1469,5,2,0,3,4,1 36 | ike,125,3,5,0,1,2,4 37 | titania,3869,0,2,1,3,4,5 38 | soren,3101,4,2,0,3,5,1 39 | mist,5981,5,1,3,0,4,2 40 | rolf,6557,2,3,0,1,4,5 41 | boyd,5597,0,5,1,3,2,4 42 | oscar,989,2,4,0,1,5,3 43 | shinon,2525,4,5,0,1,2,3 44 | gatrie,1373,0,5,3,1,2,4 45 | rhys,1661,4,0,2,3,5,1 46 | mia,7709,3,4,0,1,2,5 47 | ranulf,6653,1,5,0,3,2,4 48 | kyza,1565,5,2,1,0,3,4 49 | lyre,6941,5,0,1,3,4,2 50 | janaff,6365,0,5,1,3,2,4 51 | ulki,605,2,5,3,0,1,4 52 | sigrun,2237,3,1,4,5,2,0 53 | tanith,3581,0,2,4,5,3,1 54 | skrimir,2909,0,5,1,2,3,4 55 | naesala,4541,0,5,2,1,4,3 56 | sanaki,2141,3,0,4,5,2,1 57 | tibarn,3965,0,5,2,1,3,4 58 | pelleas,5501,5,0,3,1,4,2 59 | stefan,3389,3,5,1,0,4,2 60 | oliver,1085,0,1,4,5,2,3 61 | bastian,6461,0,1,3,5,4,2 62 | volke,5021,3,5,0,1,2,4 63 | caineghis,1277,0,5,1,3,2,4 64 | giffca,2621,2,5,0,1,3,4 65 | kurthnaga,1757,2,4,5,0,3,1 66 | ena,317,5,1,3,2,4,0 67 | renning,7517,3,2,1,4,5,0 68 | nasir,4253,5,0,2,3,4,1 69 | gareth,1949,1,3,4,5,0,2 70 | lehran,893,5,0,1,2,4,3 71 | rafiel,6749,4,2,1,5,3,0 72 | leanne,6845,5,0,2,3,4,1 73 | reyson,7037,4,2,1,3,5,0 74 | jarod,27773,0,5,3,4,1,2 75 | ludveck,28253,0,3,4,5,1,2 76 | septimus,29021,0,3,4,5,1,2 77 | valtome,29597,5,1,3,2,4,0 78 | numida,29693,4,1,2,3,5,0 79 | izuka,221,4,1,2,5,3,0 80 | hetzel,5405,1,0,3,5,4,2 81 | levail,7997,0,5,2,3,1,4 82 | lekain,7133,0,1,2,5,3,4 83 | zelgius,3293,0,5,1,3,2,4 84 | dheginsea,4061,1,3,4,5,2,0 85 | sephiran,3197,5,0,1,2,4,3 86 | blackknight,2333,1,2,0,3,4,5 87 | ashera,25661,3,2,4,5,1,0 88 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/ClassPatch_MJID.csv: -------------------------------------------------------------------------------- 1 | name,class copying from 2 | JID_BEASTTRIBE_W,MJID_WOLF 3 | JID_BLACKDRAGON,MJID_DRAGONKING 4 | JID_BLACKDRAGON_KU,MJID_DRAGONPRINCE 5 | JID_CAT,MJID_BEASTTRIBE_C 6 | JID_CROW,MJID_BIRDTRIBE_C 7 | JID_CROW_NA,MJID_KINGCROW 8 | JID_EGRET,MJID_PRINCEEGRET 9 | JID_EGRET_LE,MJID_PRINCESSEGRET 10 | JID_EGRET_RA,MJID_PRINCEEGRET_RA 11 | JID_HAWK,MJID_BIRDTRIBE_H 12 | JID_HAWK_TI,MJID_KINGHAWK 13 | JID_LION,MJID_BEASTTRIBE_L 14 | JID_LION_CA,MJID_KINGLION 15 | JID_LION_GI,MJID_KINGLION_GI 16 | JID_QUEENWOLF,MJID_WOLF_F 17 | JID_REDDRAGON,MJID_DRAGONTRIBE_R 18 | JID_TIGER,MJID_BEASTTRIBE_T 19 | JID_WHITEDRAGON,MJID_DRAGONTRIBE_W 20 | JID_CAT_F,MJID_BEASTTRIBE_C/F 21 | JID_CROW_F,MJID_BIRDTRIBE_C/F 22 | JID_REDDRAGON_F,MJID_DRAGONTRIBE_R/F 23 | JID_BEASTTRIBE_W,MH_J_WOLF 24 | JID_DRAGONKING,MH_J_BLACKDRAGON 25 | JID_DRAGONPRINCE,MH_J_BLACKDRAGON_KU 26 | JID_BEASTTRIBE_C,MH_J_CAT 27 | JID_BIRDTRIBE_C,MH_J_CROW 28 | JID_KINGCROW,MH_J_CROW_NA 29 | JID_PRINCEEGRET,MH_J_EGRET 30 | JID_PRINCESSEGRET,MH_J_EGRET_LE 31 | JID_PRINCEEGRET_RA,MH_J_EGRET_RA 32 | JID_BIRDTRIBE_H,MH_J_HAWK 33 | JID_KINGHAWK,MH_J_HAWK_TI 34 | JID_BEASTTRIBE_L,MH_J_LION 35 | JID_KINGLION,MH_J_LION_CA 36 | JID_KINGLION_GI,MH_J_LION_GI 37 | JID_QUEENWOLF,MH_J_WOLF_F 38 | JID_DRAGONTRIBE_R,MH_J_REDDRAGON 39 | JID_BEASTTRIBE_T,MH_J_TIGER 40 | JID_DRAGONTRIBE_W,MH_J_WHITEDRAGON 41 | JID_BEASTTRIBE_C/F,MH_J_CAT_F 42 | JID_BIRDTRIBE_C/F,MH_J_CROW_F 43 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/ClassPatch_VanillaClassChanges.csv: -------------------------------------------------------------------------------- 1 | Character Name,Character ID,New JID,new weapon 1,new weapon 2,new weapon 3,item 1 2 | Laura,4,JID_PRIEST,,,, 3 | Jill,10,JID_DRAGONKNIGHT_F,IID_WORM,IID_WORM,, 4 | Zihark,12,JID_SWORDMASTER_F,,,, 5 | Fiona,13,JID_LANCEKNIGHT_F,IID_THUNDER,IID_THUNDER,, 6 | Nephenee,23,JID_HALBERDIER_F,IID_STEELSPEAR,IID_LIGHT,, 7 | Lucia,25,JID_SWORDMASTER,,,, 8 | Kieran,29,JID_GREATKNIGHT_F,IID_STEELPOLEAXE,IID_ELFIRE,, 9 | Calill,33,JID_FIRESAGE_F,IID_ELFIRE,IID_METEOR,IID_LIVE, 10 | Titania,35,JID_GREATKNIGHT,,,, 11 | Oscar,40,JID_GLORYKNIGHT_F,IID_STEELLANCE,IID_ELTHUNDER,, 12 | Rhys,43,JID_BISHOP_F,IID_ELLIGHT,IID_RELIVE,IID_STEELAXE, 13 | Mia,44,JID_SWORDMASTER,,,, 14 | Stefan,57,JID_SWORDESCHATOS_F,,,, 15 | Oliver,58,JID_SAINT_F,IID_RESIRE,IID_KILLERAXE,, 16 | Bastian,59,JID_ARCHSAGE_T/F,IID_GIGATHUNDER,IID_ELFIRE,IID_ELWIND, 17 | Volke,60,JID_ASSASSIN,IID_PESHKABZ,IID_SILVERKNIFE,IID_KILLERBOW, 18 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/EnemyClassGrowths.csv: -------------------------------------------------------------------------------- 1 | JID_LIGHTMAGE,40,15,60,40,35,60,20,70 2 | JID_LIGHTSAGE,40,15,60,40,35,60,20,70 3 | JID_SHAMAN,40,15,60,40,35,60,20,70 4 | JID_GODDESS,50,50,50,50,50,50,50,50 5 | JID_DARKKNIGHT,75,55,10,50,15,55,45,15 6 | JID_SUMMONER,65,5,80,45,40,5,5,85 7 | JID_CHANCELLOR,70,10,75,25,25,60,15,60 8 | JID_BLACKDRAGON,95,60,15,20,25,50,25,50 9 | JID_DRAGONKING,95,60,15,20,25,50,25,50 10 | JID_SWORDESCHATOS,95,70,55,85,80,75,50,55 11 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/FE10Anim.cms.decompressed_out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/FE10Anim.cms.decompressed_out -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/FE10Battle.cms.decompressed_out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/FE10Battle.cms.decompressed_out -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/JIDlist.txt: -------------------------------------------------------------------------------- 1 | JID_BRAVE 2 | JID_VANGUARD 3 | JID_BLADE 4 | JID_SWORDMASTER 5 | JID_SWORDMASTER_F 6 | JID_SWORDMASTER_SP 7 | JID_SWORDESCHATOS 8 | JID_SWORDESCHATOS_F 9 | JID_SOLDIER 10 | JID_HALBERDIER 11 | JID_HALBERDIER_F 12 | JID_HALBERDIER_SP 13 | JID_HOLYLANCER 14 | JID_HOLYLANCER_F 15 | JID_FIGHTER 16 | JID_WARRIOR 17 | JID_WARRIOR_SP 18 | JID_AXBRAVE 19 | JID_ARCHER 20 | JID_SNIPER 21 | JID_SNIPER_SP 22 | JID_SAGITTARY 23 | JID_LANCEARMOR 24 | JID_AXARMOR 25 | JID_SWORDARMOR 26 | JID_SWORDARMOR_F 27 | JID_GLORYDUX 28 | JID_GREATDUX 29 | JID_BLADEDUX 30 | JID_BLADEDUX_F 31 | JID_GLORYDUX_SP 32 | JID_GREATDUX_SP 33 | JID_BLADEDUX_SP 34 | JID_MARSHAL_L 35 | JID_MARSHAL_A 36 | JID_MARSHAL_S/F 37 | JID_MARSHAL_Z 38 | JID_DARKKNIGHT 39 | JID_THIEF 40 | JID_ROGUE 41 | JID_ROGUE_F 42 | JID_ESPION 43 | JID_ESPION_F 44 | JID_ASSASSIN 45 | JID_BANDIT 46 | JID_FIREMAGE 47 | JID_THUNDERMAGE 48 | JID_THUNDERMAGE_F 49 | JID_WINDMAGE 50 | JID_LIGHTMAGE 51 | JID_FIRESAGE 52 | JID_FIRESAGE_F 53 | JID_THUNDERSAGE 54 | JID_THUNDERSAGE_F 55 | JID_WINDSAGE 56 | JID_LIGHTSAGE 57 | JID_DARKSAGE 58 | JID_FIRESAGE_SP 59 | JID_THUNDERSAGE_SP 60 | JID_WINDSAGE_SP 61 | JID_ARCHSAGE_F 62 | JID_ARCHSAGE_F/F 63 | JID_ARCHSAGE_T 64 | JID_ARCHSAGE_T/F 65 | JID_ARCHSAGE_W 66 | JID_SHAMAN 67 | JID_CAESER 68 | JID_CHANCELLOR 69 | JID_DRUID 70 | JID_DRUID_SP 71 | JID_SUMMONER 72 | JID_PRIEST 73 | JID_PRIEST_F 74 | JID_BISHOP 75 | JID_BISHOP_F 76 | JID_BISHOP_SP 77 | JID_SAINT 78 | JID_SAINT_F 79 | JID_SAINT_SP 80 | JID_CLERIC 81 | JID_VALKYRIA 82 | JID_SWORDKNIGHT 83 | JID_LANCEKNIGHT 84 | JID_LANCEKNIGHT_F 85 | JID_AXEKNIGHT 86 | JID_BOWKNIGHT 87 | JID_BLADEKNIGHT 88 | JID_GLORYKNIGHT 89 | JID_GLORYKNIGHT_F 90 | JID_GREATKNIGHT 91 | JID_GREATKNIGHT_F 92 | JID_ARROWKNIGHT 93 | JID_ARROWKNIGHT_F 94 | JID_BLADEKNIGHT_SP 95 | JID_GLORYKNIGHT_SP 96 | JID_GREATKNIGHT_SP 97 | JID_ARROWKNIGHT_SP 98 | JID_GOLDKNIGHT_S 99 | JID_GOLDKNIGHT_A 100 | JID_GOLDKNIGHT_A/F 101 | JID_SILVERKNIGHT_L 102 | JID_SILVERKNIGHT_L_F 103 | JID_SILVERKNIGHT_B 104 | JID_PEGASUSKNIGHT 105 | JID_FALCONKNIGHT 106 | JID_FALCONKNIGHT_SP 107 | JID_ENLILKNIGHT 108 | JID_QUEEN 109 | JID_DRAGONKNIGHT 110 | JID_DRAGONKNIGHT_F 111 | JID_DRAGONMASTER 112 | JID_DRAGONMASTER_F 113 | JID_DRAGONMASTER_SP 114 | JID_RLINDWURM 115 | JID_RLINDWURM_F 116 | JID_BEASTTRIBE_L 117 | JID_LION 118 | JID_KINGLION_GI 119 | JID_LION_GI 120 | JID_KINGLION 121 | JID_LION_CA 122 | JID_BEASTTRIBE_T 123 | JID_TIGER 124 | JID_BEASTTRIBE_C 125 | JID_CAT 126 | JID_BEASTTRIBE_C/F 127 | JID_CAT_F 128 | JID_BEASTTRIBE_W 129 | JID_WOLF 130 | JID_QUEENWOLF 131 | JID_WOLF_F 132 | JID_BIRDTRIBE_H 133 | JID_HAWK 134 | JID_KINGHAWK 135 | JID_HAWK_TI 136 | JID_BIRDTRIBE_C 137 | JID_CROW 138 | JID_BIRDTRIBE_C/F 139 | JID_CROW_F 140 | JID_KINGCROW 141 | JID_CROW_NA 142 | JID_PRINCEEGRET 143 | JID_EGRET 144 | JID_PRINCEEGRET_RA 145 | JID_EGRET_RA 146 | JID_PRINCESSEGRET 147 | JID_EGRET_LE 148 | JID_DRAGONTRIBE_R 149 | JID_REDDRAGON 150 | JID_DRAGONTRIBE_R/F 151 | JID_REDDRAGON_F 152 | JID_DRAGONTRIBE_W 153 | JID_WHITEDRAGON 154 | JID_DRAGONKING 155 | JID_BLACKDRAGON 156 | JID_DRAGONPRINCE 157 | JID_BLACKDRAGON_KU 158 | JID_SPIRIT_F 159 | JID_SPIRIT_S 160 | JID_SPIRIT_W 161 | JID_GODDESS_AURA 162 | JID_GODDESS 163 | JID_PILGRIM 164 | JID_VENDOR_GOODS 165 | JID_OLDMAN 166 | JID_CITIZEN 167 | JID_CITIZEN_F 168 | JID_CHILD 169 | JID_CHILD_F 170 | JID_HORSE 171 | JID_DEBUG -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/LM73MagicPatch.csv: -------------------------------------------------------------------------------- 1 | Name,new name,UNUSED,new descrip,UNUSED,Rank,Mt,Hit,Crit,Wt,Rng min,Rng max,Uses,Cost per Use,Attributes,Effectiveness,Bonuses,UNUSED,UNUSED 2 | IID_FIRE,,0,,0,E,6,80,5,3,1,2,50,17,,SFXC_BEAST,,0,0 3 | IID_ELFIRE,Smelt,8204,Mid-level fire magic.;Effective: #P036 #P038,46236,D,8,75,0,5,1,2,40,34,,SFXC_BEAST;SFXC_ARMOR,,8248,49436 4 | IID_GIGAFIRE,,0,,0,B,13,80,0,6,1,2,30,100,,SFXC_BEAST,,0,0 5 | IID_BOLGANONE,,0,Extremely powerful fire magic.;Effective: #P038,46380,S,16,60,5,8,1,2,20,225,,SFXC_BEAST,,0,49580 6 | IID_REXFLAME,,0,,0,*,17,90,5,12,1,2,50,350,,SFXC_BEAST,0;0;0;3;0;0;0;0;0;0;0;0,0,0 7 | IID_CYMBELINE,,0,,0,N,13,95,10,5,1,2,45,200,valuable;eqE,SFXC_BEAST,,0,0 8 | IID_METEOR,,0,,0,C,10,65,0,18,3,10,5,500,longfar,SFXC_BEAST,,0,0 9 | IID_THUNDER,,0,,0,E,4,85,10,4,1,2,50,15,,SFXC_DRAGON,,0,0 10 | IID_ELTHUNDER,Snipeshock,8272,Mid-level lightning magic with an extended;range. Effective: #P03A.,46804,D,6,80,15,6,2,3,40,30,,SFXC_DRAGON,,8316,50004 11 | IID_GIGATHUNDER,,0,,0,B,10,85,10,8,1,2,30,90,,SFXC_DRAGON,,0,0 12 | IID_THORON,,0,Extremely powerful lightning magic. It has an;exceptionally high chance of landing a critical hit.,46984,S,12,80,30,10,1,2,20,205,,SFXC_DRAGON,,0,50184 13 | IID_REXBOLT,,0,,0,*,15,100,20,13,1,2,50,325,,SFXC_DRAGON,0;0;0;0;0;0;3;0;0;0;0;0,0,0 14 | IID_THUNDERSTORM,,0,,0,C,8,70,5,19,3,8,5,450,longfar,SFXC_DRAGON,,0,0 15 | IID_WIND,,0,,0,E,5,100,0,2,2,3,50,13,,SFXC_FLY,,0,0 16 | IID_ELWIND,Tempest,8328,Mid-level wind magic. Brave.;Effective: #P037,47344,D,4,95,0,4,2,3,40,26,twice,SFXC_FLY,,8372,50560 17 | IID_GIGAWIND,,0,,0,B,11,90,0,5,2,3,30,80,,SFXC_FLY,,0,0 18 | IID_TORNADO, ,0,Extremely powerful wind magic.;Effective: #P037,47480,S,13,115,5,6,2,3,20,190,,SFXC_FLY,,0,50728 19 | IID_REXCALIBUR,,0,,0,*,16,100,10,11,2,3,50,300,,SFXC_FLY,0;0;0;0;3;0;0;0;0;0;0;0,0,0 20 | IID_BLIZZARD,,0,,0,C,9,80,0,17,3,12,5,400,longfar,SFXC_FLY,,0,0 21 | IID_LIGHT,,0,,0,E,4,100,5,1,1,2,50,16,,,,0,0 22 | IID_ELLIGHT,Cleanse,8384,Magic created by the senators of Begnion.;Effective against Laguz.,47780,D,6,95,5,3,1,2,40,32,,SFXC_ALIZE,,8428,51076 23 | IID_SHINE,Aura,8392,High-level light magic.;Effective: #P017,47860,B,9,90,10,5,1,2,35,95,,SFXC_MAGE,,8436,51156 24 | IID_RESIRE,,0,,0,S,8,85,0,7,1,2,20,210,resire,,,0,0 25 | IID_VALAURA,,0,Powerful light magic. Its wielder can;hit twice in a single turn.,48036,S,7,95,0,12,1,2,30,225,twice,,,0,0 26 | IID_REXAURA,,0,,0,*,15,110,5,11,1,2,50,310,,,0;0;0;0;0;5;0;0;0;0;0;0,0,0 27 | IID_PURGE,,0,,0,A,7,80,0,16,3,10,5,470,longfar,,,0,0 28 | IID_THANY,,0,,0,N,8,100,0,1,1,2,45,250,valuable;eqD,SFXC_ARMOR;SFXC_KNIGHT,,0,0 29 | IID_CREIDDYLED,,0,,0,N,11,100,15,15,1,2,0,0,valuable;eqF;infinity,,,0,0 30 | IID_WORM,,0,Low-level dark magic. Few spellcasters can master;the intricacies of these fell arts.,48488,E,10,75,0,8,1,2,50,20,,,,0,51784 31 | IID_KAREAU,Elluna,8464,High-level dark magic.;Effective: #P017,48576,C,12,70,5,10,1,2,35,70,,SFXC_MAGE,,8508,51872 32 | IID_UERINE,,0,,0,S,18,55,5,13,1,2,20,235,,,,0,0 33 | IID_BARVERT,,0,,0,*,20,80,10,15,1,2,50,375,,,0;0;0;0;0;0;0;3;0;0;0;0,0,0 34 | IID_FENRIR,,0,,0,A,12,60,0,20,3,10,5,525,longfar,,,0,0 35 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/LM73WeaponPatch.csv: -------------------------------------------------------------------------------- 1 | Name,Functions Like,new name,e_common name loc,new descrip,e_common descrip loc,Rank,Mt,Hit,Crit,Wt,Rng min,Rng max,Uses,Cost per Use,Attributes,Effectiveness,Bonuses,PAL_e_common name loc,PAL_e_common descrip loc 2 | IID_BRONZESWORD,,Longsword,7080,Effective: #P035,38836,C,9,85,0,14,1,1,20,55,,SFXC_KNIGHT,,7120,42040 3 | IID_POISONSWORD,axe,Noble Sword,7176,A sword designed to counter foes with lances. It;has a disadvantage vs others swords.,39420,B,11,90,0,12,1,1,25,80,,,,7216,42624 4 | IID_BRONZELANCE,,Heavy Spear,7356,Effective: #P036,40812,C,10,75,0,16,1,1,20,70,,SFXC_ARMOR,,7396,44008 5 | IID_POISONLANCE,sword,Noble Lance,7460,A lance designed to counter foes with axes. It has;a disadvantage vs other lances.,41360,B,12,80,0,14,1,1,25,80,,,,7500,44556 6 | IID_BRONZEAXE,,Dragon Axe,7552,Effective: #P03A,41988,C,13,65,5,19,1,1,20,80,,SFXC_DRAGON,,7592,45184 7 | IID_POISONAXE,lance,Noble Axe,7644,An axe designed to counter foes with swords. It;has a disadvantage vs other axes.,42532,B,14,70,0,17,1,1,25,80,,,,7688,45728 8 | IID_BRONZEBOW,,Laguz Bow,7740,Effective: #P034,43272,C,8,80,0,12,2,2,20,100,expandrange,SFXC_FLY;SFXC_ALIZE,,7784,46472 9 | IID_POISONBOW,light,Bright Bow,7836,A magic bow (#P012).;Effective: #P017,43816,B,15,85,0,13,2,2,35,120,expandrange,SFXC_FLY;SFXC_MAGE,,7880,47016 10 | IID_BRONZEKNIFE,dark,Vampiric Knife,8020,A magic knife (#P013).;Steals life from enemies.,45112,B,11,75,5,7,1,2,25,200,resire,,,8064,48312 11 | IID_BRONZEDAGGER,,Assassin Dagger,8076,Effective: #P008#P009#P00A#P00B#P00C#P017,45436,C,6,60,10,9,1,1,20,95,,SFXC_HUMAN,,8120,48636 12 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/RandoRecruitData.csv: -------------------------------------------------------------------------------- 1 | PID,Class Tree Name,Class Number a,b,c,d,level 2 | micaiah,lightmage,54,55,56,56,1 3 | edward,myrm,0,1,2,2,4 4 | leonardo,archer,35,36,37,37,4 5 | nolan,fighter,23,24,25,25,9 6 | laura,priest,57,58,59,59,1 7 | sothe,thief,41,42,43,43,1 8 | ilyana,thdrmage,48,49,50,50,12 9 | aran,soldier,11,12,13,13,7 10 | meg,swdarmor,8,9,10,10,3 11 | volug,wolf,90,90,100,90,15 12 | jill,dracoknight,32,33,34,34,14 13 | tauroneo,lncarmor,17,18,19,19,14 14 | zihark,myrm,0,1,2,2,3 15 | fiona,lncknight,14,15,16,16,9 16 | tormod,firemage,45,46,47,47,5 17 | maurim,tiger,88,88,999,88,19 18 | vika,raven,92,92,102,92,13 19 | nailah,wolfqueen,90,90,100,90,33 20 | elincia,queen,999,999,67,67,1 21 | marcia,pegknight,20,21,22,22,5 22 | nealuchi,raven,92,92,102,92,22 23 | haar,dracoknight,32,33,34,34,11 24 | brom,axarmor,29,30,31,31,2 25 | nephenee,soldier,11,12,13,13,1 26 | heather,thief,41,42,43,43,7 27 | lucia,myrm,0,1,2,2,14 28 | mordecai,tiger,88,88,999,88,16 29 | lethe,cat,89,89,999,89,21 30 | geoffrey,lncknight,14,15,16,16,15 31 | keiran,axknight,26,27,28,28,11 32 | astrid,bowknight,38,39,40,40,2 33 | makalov,swdknight,5,6,7,7,7 34 | danved,soldier,11,12,13,13,9 35 | calill,firemage,45,46,47,47,6 36 | ike,hero,999,3,4,4,11 37 | titania,axknight,26,27,28,28,16 38 | soren,windmage,51,52,53,53,20 39 | mist,cleric,999,64,65,65,1 40 | rolf,archer,35,36,37,37,1 41 | boyd,fighter,23,24,25,25,8 42 | oscar,lncknight,14,15,16,16,12 43 | shinon,archer,35,36,37,37,13 44 | gatrie,lncarmor,17,18,19,19,10 45 | rhys,priest,57,58,59,59,3 46 | mia,myrm,0,1,2,2,7 47 | ranulf,cat,89,89,999,89,26 48 | kyza,tiger,88,88,999,88,18 49 | lyre,cat,89,89,999,89,17 50 | janaff,hawk,91,91,101,91,29 51 | ulki,hawk,91,91,101,91,28 52 | sigrun,pegknight,20,21,22,22,18 53 | tanith,pegknight,20,21,22,22,16 54 | skrimir,lion,999,87,99,87,25 55 | naesala,ravenking,92,92,102,92,27 56 | sanaki,empress,999,999,68,68,1 57 | tibarn,hawkking,91,91,101,91,31 58 | pelleas,darksage,999,60,61,61,12 59 | stefan,myrm,0,1,2,2,8 60 | oliver,priest,57,58,59,59,8 61 | bastian,windmage,51,52,53,53,10 62 | volke,assassin,999,999,44,44,13 63 | caineghis,lionking,999,87,99,87,36 64 | giffca,lion,999,87,99,87,36 65 | kurthnaga,blackdrag,999,98,103,98,20 66 | ena,reddrag,999,96,103,96,22 67 | renning,swdknight,5,6,7,7,16 68 | nasir,whitedrag,999,97,999,97,34 69 | gareth,reddrag,999,96,103,96,31 70 | lehran,chancellor,999,999,66,66,20 71 | rafiel,heron,93,93,999,999,12 72 | leanne,heron,94,94,999,999,5 73 | reyson,heron,95,95,999,999,15 74 | jarod,soldier,11,12,13,13,4 75 | ludveck,axarmor,29,30,31,31,11 76 | septimus,lncarmor,17,18,19,19,15 77 | valtome,priest,57,58,59,59,14 78 | numida,priest,57,58,59,59,14 79 | izuka,druid,999,62,63,63,13 80 | hetzel,priest,57,58,59,59,14 81 | levail,soldier,11,12,13,13,16 82 | lekain,priest,57,58,59,59,16 83 | zelgius,swdarmor,8,9,10,10,20 84 | dheginsea,blackdrag,999,98,103,98,40 85 | sephiran,chancellor,999,999,66,66,20 86 | blackknight,blackknight,999,999,124,124,20 87 | ashera,goddess,999,999,128,128,20 88 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/RecrEnemyGrowths.csv: -------------------------------------------------------------------------------- 1 | PID,growths->hp,str,mag,skl,spd,lck,def,res 2 | PID_ERLAN,60,0,70,40,30,75,15,55 3 | PID_JELD,55,35,35,30,30,50,55,20 4 | PID_RUDBECK,60,40,45,25,25,40,50,50 5 | PID_NOSE,55,40,25,30,25,40,50,20 6 | PID_VALTELOME,40,15,60,25,35,65,10,70 7 | PID_NUMIDA,45,25,50,30,30,65,20,55 8 | PID_IZCA,65,5,80,45,40,5,5,85 9 | PID_HETZEL,50,15,55,30,40,50,15,55 10 | PID_RUBALE,70,60,25,40,30,40,45,25 11 | PID_LEKAIN,50,15,60,30,40,55,15,65 12 | PID_ZELGIUS,60,40,15,50,45,55,30,20 13 | PID_DHEGINHANSEA,95,60,15,20,25,50,25,50 14 | PID_CEPHERAN,70,10,75,25,25,60,15,60 15 | PID_DARKKNIGHT_0,75,55,10,50,15,55,45,15 16 | PID_ASTARTE,50,50,50,50,50,50,50,50 -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/StatBoosters.csv: -------------------------------------------------------------------------------- 1 | Name,Location,Use text NTSC,Use text PAL,Desc NTSC,Desc PAL 2 | Seraph Robe,78040,16336,16436,52152,55452 3 | Energy Drop,78108,16352,16452,52188,55488 4 | Spirit Dust,78176,16372,16472,52228,55528 5 | Secret Book,78244,16388,16488,52264,55564 6 | Speedwing,78312,16404,16504,52300,55600 7 | Ashera Icon,78380,16424,16524,52336,55636 8 | Dragonshield,78448,16440,16540,52372,55672 9 | Talisman,78516,16460,16560,52412,55712 10 | Boots,78584,16480,16580,52452,55752 11 | Statue Frag,78652,16496,16596,52492,55792 12 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/bexpdata.csv: -------------------------------------------------------------------------------- 1 | file,Achieve_CLEAR_BONUS,pointer_loc 2 | C0101.cmb,2614,6917 3 | C0102.cmb,5393,17073 4 | C0103.cmb,2358,6481 5 | C0104.cmb,2699,7955 6 | C0105.cmb,3510,9607 7 | C0106.cmb,3963,11159 8 | C0107.cmb,5039,16455 9 | C0108.cmb,4368,13263 10 | C0109.cmb,5872,19775 11 | C0110.cmb,2799,6883 12 | C0111.cmb,7341,33359 13 | C0201.cmb,3747,10007 14 | C0202.cmb,3103,9011 15 | C0203.cmb,3637,10575 16 | C0204.cmb,3433,9171 17 | C0205.cmb,5251,13043 18 | C0301.cmb,3819,10439 19 | C0302.cmb,2976,7479 20 | C0303.cmb,3458,8347 21 | C0304.cmb,4004,13055 22 | C0305.cmb,4014,10879 23 | C0306.cmb,2588,6291 24 | C0307.cmb,4310,11107 25 | C0308.cmb,5507,14555 26 | C0309.cmb,3848,14231 27 | C0310.cmb,2894,10267 28 | C0311.cmb,4312,12299 29 | C0312.cmb,3390,8607 30 | C0313.cmb,5760,17739 31 | C0314.cmb,6719,21483 32 | C0315.cmb,9273,29143 33 | C0401.cmb,5970,16303 34 | C0402.cmb,3023,8467 35 | C0403.cmb,3091,8279 36 | C0404.cmb,4048,10659 37 | C0405.cmb,4219,11095 38 | C0406.cmb,5015,12679 39 | C0407a.cmb,7454,20939 40 | C0407b.cmb,5640,21139 41 | C0407c.cmb,6098,19299 42 | C0407d.cmb,5640,22571 43 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/bosslist.csv: -------------------------------------------------------------------------------- 1 | PID_PUGO,101 2 | PID_ISAIYA,102 3 | PID_ZAITAN,103 4 | PID_BONARD,104 5 | PID_HELL,105 6 | PID_DEATH,105 7 | PID_WAZECACA,106 8 | PID_LABERTHON,107 9 | PID_DZUR,108 10 | PID_RADMIM,109 11 | PID_JELD,110 12 | PID_JELD,111 13 | PID_ZEFFREN,201 14 | PID_YEARDLEY,202 15 | PID_MARJO,203 16 | PID_TASHJORIA,204 17 | PID_RUDBECK,205 18 | PID_SIDIAU,301 19 | PID_ROMMITANA,302 20 | PID_ITOTS,303 21 | PID_BEJONA,304 22 | PID_KAZISA,305 23 | PID_LOMBROSO,306 24 | PID_NOSE,309 25 | PID_RAO,310 26 | PID_SERGEI,311 27 | PID_GORAN,312 28 | PID_YUMA,401 29 | PID_CAHITALENO,402 30 | PID_VALTELOME,403 31 | PID_NUMIDA,404 32 | PID_IZCA,406 33 | PID_HETZEL,407a 34 | PID_LEKAIN,407a 35 | PID_RUBALE,407b 36 | PID_CEPHERAN,407d 37 | PID_DARKKNIGHT,407b 38 | PID_DHEGINHANSEA,407c 39 | PID_ASTARTE,407e 40 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/chapterlist.txt: -------------------------------------------------------------------------------- 1 | 101 2 | 102 3 | 103 4 | 104 5 | 105 6 | 106 7 | 107 8 | 108 9 | 109 10 | 110 11 | 111 12 | 201 13 | 202 14 | 203 15 | 204 16 | 205 17 | 301 18 | 302 19 | 303 20 | 304 21 | 305 22 | 306 23 | 307 24 | 308 25 | 309 26 | 310 27 | 311 28 | 312 29 | 313 30 | 314 31 | 315 32 | 401 33 | 402 34 | 403 35 | 404 36 | 405 37 | 406 38 | 407a 39 | 407b 40 | 407c 41 | 407d 42 | 407e 43 | emap407c 44 | emap407d -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/classSwap.csv: -------------------------------------------------------------------------------- 1 | Class Tree Name,Class Number a,b,c,d,race 2 | lightmage,54,55,56,56,B 3 | myrm,0,1,2,2,B 4 | archer,35,36,37,37,B 5 | fighter,23,24,25,26,B 6 | priest,57,58,59,59,B 7 | thief,41,42,43,43,B 8 | thdrmage,48,49,50,50,B 9 | soldier,11,12,13,13,B 10 | swdarmor,8,9,10,10,B 11 | wolf,90,90,100,90,L 12 | dracoknight,32,33,34,34,B 13 | lncarmor,17,18,19,19,B 14 | myrm,0,1,2,2,B 15 | lncknight,14,15,16,16,B 16 | firemage,45,46,47,47,B 17 | tiger,88,88,999,88,L 18 | raven,92,92,102,92,L 19 | wolfqueen,90,90,100,90,L 20 | queen,999,999,67,67,B 21 | pegknight,20,21,22,22,B 22 | raven,92,92,102,92,L 23 | dracoknight,32,33,34,34,B 24 | axarmor,29,30,31,31,B 25 | soldier,11,12,13,13,B 26 | thief,41,42,43,43,B 27 | myrm,0,1,2,2,B 28 | tiger,88,88,999,88,L 29 | cat,89,89,999,89,L 30 | lncknight,14,15,16,16,B 31 | axknight,26,27,28,28,B 32 | bowknight,38,39,40,40,B 33 | swdknight,5,6,7,7,B 34 | soldier,11,12,13,13,B 35 | firemage,45,46,47,47,B 36 | hero,999,3,4,4,B 37 | axknight,26,27,28,28,B 38 | windmage,51,52,53,53,B 39 | cleric,999,64,65,65,B 40 | archer,35,36,37,37,B 41 | fighter,23,24,25,25,B 42 | lncknight,14,15,16,16,B 43 | archer,35,36,37,37,B 44 | lncarmor,17,18,19,19,B 45 | priest,57,58,59,59,B 46 | myrm,0,1,2,2,B 47 | cat,89,89,999,89,L 48 | tiger,88,88,999,88,L 49 | cat,89,89,999,89,L 50 | hawk,91,91,101,91,L 51 | hawk,91,91,101,91,L 52 | pegknight,20,21,22,22,B 53 | pegknight,20,21,22,22,B 54 | lion,999,87,99,87,L 55 | ravenking,92,92,102,92,L 56 | empress,999,999,68,68,B 57 | hawkking,91,91,101,91,L 58 | darksage,999,60,61,61,B 59 | myrm,0,1,2,2,B 60 | priest,57,58,59,59,B 61 | windmage,51,52,53,53,B 62 | assassin,999,999,44,44,B 63 | lionking,999,87,99,87,L 64 | lion,999,87,99,87,L 65 | blackdrag,999,98,103,98,L 66 | reddrag,999,96,103,96,L 67 | swdknight,5,6,7,7,B 68 | whitedrag,999,97,103,97,L 69 | reddrag,999,96,103,96,L 70 | chancellor,999,999,66,66,B 71 | heron,93,93,999,999,L 72 | heron,94,94,999,999,L 73 | heron,95,95,999,999,L 74 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/classpatch/RandoRecruitData.csv: -------------------------------------------------------------------------------- 1 | PID,Class Tree Name,Class Number a,b,c,d,level 2 | micaiah,lightmage,54,55,56,56,1 3 | edward,myrm,0,1,2,2,4 4 | leonardo,archer,35,36,37,37,4 5 | nolan,fighter,23,24,25,25,9 6 | laura,priest,57,58,59,59,1 7 | sothe,trickster,41,73,74,74,1 8 | ilyana,thdrmage,48,49,50,50,12 9 | aran,soldier,11,12,13,13,7 10 | meg,swdarmor,8,9,10,10,3 11 | volug,wolf,90,90,100,90,15 12 | jill,maligknight,82,83,84,84,14 13 | tauroneo,lncarmor,17,18,19,19,14 14 | zihark,dreadfighter,999,69,70,70,3 15 | fiona,thdrknight,77,78,79,79,9 16 | tormod,firemage,45,46,47,47,5 17 | maurim,tiger,88,88,999,88,19 18 | vika,raven,92,92,102,92,13 19 | nailah,wolfqueen,90,90,100,90,33 20 | elincia,queen,999,999,67,67,1 21 | marcia,pegknight,20,21,22,22,5 22 | nealuchi,raven,92,92,102,92,22 23 | haar,dracoknight,32,33,34,34,11 24 | brom,axarmor,29,30,31,31,2 25 | nephenee,lancer,999,71,72,72,1 26 | heather,thief,999,42,43,43,7 27 | lucia,myrm,0,1,2,2,14 28 | mordecai,tiger,88,88,999,88,16 29 | lethe,cat,89,89,999,89,21 30 | geoffrey,lncknight,14,15,16,16,15 31 | keiran,firepal,999,80,81,81,11 32 | astrid,bowknight,38,39,40,40,2 33 | makalov,swdknight,5,6,7,7,7 34 | danved,soldier,11,12,13,13,9 35 | calill,enchantress,999,75,76,76,6 36 | ike,hero,999,3,4,4,11 37 | titania,axknight,26,27,28,28,16 38 | soren,windmage,51,52,53,53,20 39 | mist,cleric,999,64,65,65,1 40 | rolf,archer,35,36,37,37,1 41 | boyd,fighter,23,24,25,25,8 42 | oscar,thdrknight,77,78,79,79,12 43 | shinon,archer,35,36,37,37,13 44 | gatrie,lncarmor,17,18,19,19,10 45 | rhys,warmonk,999,85,86,86,3 46 | mia,myrm,0,1,2,2,7 47 | ranulf,cat,89,89,999,89,26 48 | kyza,tiger,88,88,999,88,18 49 | lyre,cat,89,89,999,89,17 50 | janaff,hawk,91,91,101,91,29 51 | ulki,hawk,91,91,101,91,28 52 | sigrun,pegknight,20,21,22,22,18 53 | tanith,pegknight,20,21,22,22,16 54 | skrimir,lion,999,87,99,87,25 55 | naesala,ravenking,92,92,102,92,27 56 | sanaki,empress,999,999,68,68,1 57 | tibarn,hawkking,91,91,101,91,31 58 | pelleas,darksage,999,60,61,61,12 59 | stefan,dreadfighter,999,69,70,70,8 60 | oliver,warmonk,999,85,86,86,8 61 | bastian,thdrmage,48,49,50,50,10 62 | volke,assassin,999,999,44,44,13 63 | caineghis,lionking,999,87,99,87,36 64 | giffca,lion,999,87,99,87,36 65 | kurthnaga,blackdrag,98,98,103,98,20 66 | ena,reddrag,96,96,103,96,22 67 | renning,swdknight,5,6,7,7,16 68 | nasir,whitedrag,97,97,999,97,34 69 | gareth,reddrag,96,96,103,96,31 70 | lehran,chancellor,999,999,66,66,20 71 | rafiel,heron,93,93,999,999,12 72 | leanne,heron,94,94,999,999,5 73 | reyson,heron,95,95,999,999,15 74 | jarod,soldier,11,12,13,13,4 75 | ludveck,axarmor,29,30,31,31,11 76 | septimus,lncarmor,17,18,19,19,15 77 | valtome,priest,57,58,59,59,14 78 | numida,priest,57,58,59,59,14 79 | izuka,druid,0,62,63,63,13 80 | hetzel,priest,57,58,59,59,14 81 | levail,soldier,11,12,13,13,16 82 | lekain,priest,57,58,59,59,16 83 | zelgius,swdarmor,8,9,10,10,20 84 | dheginsea,blackdrag,98,98,103,98,40 85 | sephiran,chancellor,999,999,66,66,20 86 | blackknight,blackknight,999,999,999,999,20 87 | ashera,goddess,999,999,999,999,20 88 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/classpatch/classSwap.csv: -------------------------------------------------------------------------------- 1 | Class Tree Name,Class Number a,b,c,d,race 2 | lightmage,54,55,56,56,B 3 | myrm,0,1,2,2,B 4 | archer,35,36,37,37,B 5 | fighter,23,24,25,26,B 6 | priest,57,58,59,59,B 7 | trickster,41,73,74,74,B 8 | thdrmage,48,49,50,50,B 9 | soldier,11,12,13,13,B 10 | swdarmor,8,9,10,10,B 11 | wolf,90,90,100,90,L 12 | maligknight,82,83,84,84,B 13 | lncarmor,17,18,19,19,B 14 | dreadfighter,999,69,70,70,B 15 | thdrknight,77,78,79,79,B 16 | firemage,45,46,47,47,B 17 | tiger,88,88,999,88,L 18 | raven,92,92,102,92,L 19 | wolfqueen,90,90,100,90,L 20 | queen,999,999,67,67,B 21 | pegknight,20,21,22,22,B 22 | raven,92,92,102,92,L 23 | dracoknight,32,33,34,34,B 24 | axarmor,29,30,31,31,B 25 | lancer,999,71,72,72,B 26 | thief,999,42,43,43,B 27 | myrm,0,1,2,2,B 28 | tiger,88,88,999,88,L 29 | cat,89,89,999,89,L 30 | lncknight,14,15,16,16,B 31 | firepal,999,80,81,81,B 32 | bowknight,38,39,40,40,B 33 | swdknight,5,6,7,7,B 34 | soldier,11,12,13,13,B 35 | enchantress,999,75,76,76,B 36 | hero,999,3,4,4,B 37 | axknight,26,27,28,28,B 38 | windmage,51,52,53,53,B 39 | cleric,999,64,65,65,B 40 | archer,35,36,37,37,B 41 | fighter,23,24,25,25,B 42 | thdrknight,77,78,79,79,B 43 | archer,35,36,37,37,B 44 | lncarmor,17,18,19,19,B 45 | warmonk,999,85,86,86,B 46 | myrm,0,1,2,2,B 47 | cat,89,89,999,89,L 48 | tiger,88,88,999,88,L 49 | cat,89,89,999,89,L 50 | hawk,91,91,101,91,L 51 | hawk,91,91,101,91,L 52 | pegknight,20,21,22,22,B 53 | pegknight,20,21,22,22,B 54 | lion,999,87,99,87,L 55 | ravenking,92,92,102,92,L 56 | empress,999,999,68,68,B 57 | hawkking,91,91,101,91,L 58 | darksage,999,60,61,61,B 59 | dreadfighter,999,69,70,70,B 60 | warmonk,999,85,86,86,B 61 | thdrmage,48,49,50,50,B 62 | assassin,999,999,44,44,B 63 | lionking,999,87,99,87,L 64 | lion,999,87,99,87,L 65 | blackdrag,999,98,103,98,L 66 | reddrag,999,96,103,96,L 67 | swdknight,5,6,7,7,B 68 | whitedrag,999,97,103,97,L 69 | reddrag,999,96,103,96,L 70 | chancellor,999,999,66,66,B 71 | heron,93,93,999,999,L 72 | heron,94,94,999,999,L 73 | heron,95,95,999,999,L 74 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/enemySkillList.csv: -------------------------------------------------------------------------------- 1 | GLARE,SID_EVILEYE 2 | INSIGHT,SID_INSIGHT 3 | BLESSING,SID_BLESSING 4 | VIGILANCE,SID_VIGILANCE 5 | ADEPT,SID_ADEPT 6 | BEASTFOE,SID_BEASTBUSTER 7 | BIRDFOE,SID_BIRDBUSTER 8 | BLOODTIDE,SID_REDWAVE 9 | BOON,SID_BOON 10 | CANCEL,SID_CANCEL 11 | CELERITY,SID_CELERITY 12 | CORROSION,SID_CORROSION 13 | COUNTER,SID_COUNTER 14 | DAUNT,SID_DAUNT 15 | DISARM,SID_RELEASE 16 | DRAGONFOE,SID_DRAGONBUSTER 17 | FORTUNE,SID_LUCKY 18 | HOWL,SID_HOWL 19 | IMBUE,SID_CURE 20 | MAELSTROM,SID_VORTEX 21 | MIRACLE,SID_MIRACLE 22 | NIGHTTIDE,SID_BLACKWAVE 23 | NIHIL,SID_NIHIL 24 | NULLIFY,SID_EXPERT 25 | PASS,SID_THROUGH 26 | PAVISE,SID_PAVIS 27 | QUICKCLAW,SID_SONIC 28 | RENEWAL,SID_RENEWAL 29 | RESOLVE,SID_RESOLVE 30 | SHRIEK,SID_CALL 31 | VANTAGE,SID_VANTAGE 32 | WHITEPOOL,SID_WHITEWAVE 33 | WRATH,SID_WRATH -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/enemySkillList.txt: -------------------------------------------------------------------------------- 1 | 003 085 026 GLARE 2 | 003 086 049 INSIGHT 3 | 003 083 012 BLESSING 4 | 003 088 132 VIGILANCE 5 | 003 082 108 ADEPT 6 | 003 082 223 BEASTFOE 7 | 003 082 239 BIRDFOE 8 | 003 087 117 BLOODTIDE 9 | 003 083 037 BOON 10 | 003 083 064 CANCEL 11 | 003 083 085 CELERITY 12 | 003 083 123 CORROSION 13 | 003 083 137 COUNTER 14 | 003 084 006 DAUNT 15 | 003 087 129 DISARM 16 | 003 084 044 DRAGONFOE 17 | 003 086 165 FORTUNE 18 | 003 086 027 HOWL 19 | 003 083 236 IMBUE 20 | 003 088 165 MAELSTROM 21 | 003 087 010 MIRACLE 22 | 003 082 254 NIGHTTIDE 23 | 003 087 022 NIHIL 24 | 003 085 057 NULLIFY 25 | 003 088 068 PASS 26 | 003 087 081 PAVISE 27 | 003 088 002 QUICKCLAW 28 | 003 087 141 RENEWAL 29 | 003 087 153 RESOLVE 30 | 003 083 055 SHRIEK 31 | 003 088 120 VANTAGE 32 | 003 088 211 WHITEPOOL 33 | 003 088 225 WRATH -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/barvert_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/barvert_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/baselard_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/baselard_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/beastkiller_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/beastkiller_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/blizzard_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/blizzard_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/bolganone_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/bolganone_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/braveaxe_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/braveaxe_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/bravebow_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/bravebow_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/bravelance_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/bravelance_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/bravesword_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/bravesword_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/bronzeaxe_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/bronzeaxe_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/bronzebow_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/bronzebow_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/bronzedagger_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/bronzedagger_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/bronzeknife_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/bronzeknife_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/bronzelance_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/bronzelance_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/bronzesword_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/bronzesword_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/caladborg_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/caladborg_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/chinonbow_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/chinonbow_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/delicatelance_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/delicatelance_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/delicatesword_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/delicatesword_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/dragonkiller_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/dragonkiller_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/elfire_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/elfire_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/ellight_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/ellight_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/elthunder_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/elthunder_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/elwind_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/elwind_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/enlilsword_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/enlilsword_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/fenrir_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/fenrir_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/fire_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/fire_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/gigafire_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/gigafire_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/gigathunder_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/gigathunder_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/gigawind_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/gigawind_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/hammer_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/hammer_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/handaxe_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/handaxe_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/handspear_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/handspear_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/horsekiller_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/horsekiller_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/ironaxe_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/ironaxe_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/ironblade_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/ironblade_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/ironbow_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/ironbow_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/irondagger_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/irondagger_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/ironknife_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/ironknife_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/ironlance_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/ironlance_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/ironlongbow_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/ironlongbow_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/ironpoleaxe_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/ironpoleaxe_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/ironspear_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/ironspear_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/ironsword_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/ironsword_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/kard_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/kard_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/kareau_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/kareau_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/killeraxe_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/killeraxe_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/killerbow_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/killerbow_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/killerlance_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/killerlance_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/killsword_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/killsword_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/light_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/light_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/lofabow_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/lofabow_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/lughnasad_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/lughnasad_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/meteor_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/meteor_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/peshkabz_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/peshkabz_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/poisonaxe_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/poisonaxe_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/poisonbow_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/poisonbow_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/poisonlance_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/poisonlance_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/poisonsword_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/poisonsword_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/purge_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/purge_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/resire_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/resire_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/rexaura_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/rexaura_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/rexbolt_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/rexbolt_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/rexcalibur_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/rexcalibur_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/rexflame_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/rexflame_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/shine_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/shine_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/shortaxe_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/shortaxe_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/shortspear_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/shortspear_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/silveraxe_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/silveraxe_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/silverblade_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/silverblade_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/silverbow_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/silverbow_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/silverdagger_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/silverdagger_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/silverknife_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/silverknife_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/silverlance_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/silverlance_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/silverlongbow_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/silverlongbow_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/silverpoleaxe_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/silverpoleaxe_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/silverspear_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/silverspear_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/silversword_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/silversword_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/slenderspear_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/slenderspear_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/steelaxe_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/steelaxe_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/steelblade_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/steelblade_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/steelbow_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/steelbow_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/steeldagger_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/steeldagger_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/steelknife_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/steelknife_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/steellance_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/steellance_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/steellongbow_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/steellongbow_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/steelpoleaxe_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/steelpoleaxe_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/steelspear_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/steelspear_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/steelsword_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/steelsword_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/stiletto_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/stiletto_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/stormsword_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/stormsword_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/tarvos_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/tarvos_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/thany_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/thany_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/thoron_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/thoron_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/thunder_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/thunder_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/thunderstorm_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/thunderstorm_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/tomahawk_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/tomahawk_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/tornado_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/tornado_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/uerine_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/uerine_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/forgedata/zanezphte_b.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/forgedata/zanezphte_b.cmp -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/gamedata/FE10Anim.cms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/gamedata/FE10Anim.cms -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/gamedata/FE10Anim.cms.decompressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/gamedata/FE10Anim.cms.decompressed -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/gamedata/FE10Battle.cms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/gamedata/FE10Battle.cms -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/gamedata/FE10Battle.cms.decompressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/gamedata/FE10Battle.cms.decompressed -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/gamedata/banner_en.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/gamedata/banner_en.tpl -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/images/icons/icon.cms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/images/icons/icon.cms -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/images/icons/icon_wide.cms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/images/icons/icon_wide.cms -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/images/icons/temp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/ironmanData.csv: -------------------------------------------------------------------------------- 1 | C0101.cmb,6172 2 | C0101.cmb,6220 3 | C0102.cmb,14008 4 | C0102.cmb,14056 5 | C0102.cmb,14104 6 | C0103.cmb,5896 7 | C0103.cmb,5944 8 | C0103.cmb,5992 9 | C0103.cmb,6040 10 | C0104.cmb,7244 11 | C0104.cmb,7292 12 | C0104.cmb,7340 13 | C0104.cmb,7388 14 | C0104.cmb,7436 15 | C0104.cmb,7484 16 | C0104.cmb,7609 17 | C0105.cmb,9040 18 | C0106.cmb,10476 19 | C0106.cmb,10524 20 | C0106.cmb,10572 21 | C0106.cmb,10620 22 | C0106.cmb,10668 23 | C0107.cmb,13816 24 | C0107.cmb,13864 25 | C0107.cmb,13912 26 | C0107.cmb,13960 27 | C0108.cmb,12772 28 | C0108.cmb,12820 29 | C0108.cmb,12868 30 | C0108.cmb,12916 31 | C0109.cmb,19064 32 | C0109.cmb,19112 33 | C0110.cmb,6624 34 | C0111.cmb,32076 35 | C0111.cmb,32124 36 | C0111.cmb,32172 37 | C0201.cmb,9536 38 | C0201.cmb,9584 39 | C0202.cmb,8396 40 | C0202.cmb,8444 41 | C0203.cmb,9804 42 | C0203.cmb,9852 43 | C0204.cmb,8380 44 | C0307.cmb,10748 45 | C0308.cmb,11596 46 | C0309.cmb,13620 47 | C0311.cmb,11668 48 | C0312.cmb,8156 49 | C0312.cmb,8204 50 | C0312.cmb,8252 51 | C0313.cmb,16484 52 | C0313.cmb,16532 53 | C0314.cmb,20936 54 | C0314.cmb,20984 55 | C0315.cmb,22036 56 | C0315.cmb,22084 57 | C0401.cmb,15476 58 | C0401.cmb,15524 59 | C0403.cmb,7636 60 | C0404.cmb,9288 61 | C0404.cmb,9336 62 | C0406.cmb,11768 63 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/itemlist.bin: -------------------------------------------------------------------------------- 1 | IID_DELSATESWORDIID_BROSESWORDIID_IRNSWORDIID_STESSWORDIID_SILSRSWORDIID_IRBLLADEIID_STBLBLADEIID_SIBLRBLADEIID_POISNSWORDIID_BRASSWORDIID_KILSWORDIID_DRAKNKILLERIID_WATOIID_CALABORGIID_WNDSWORDIID_STORSWORDIID_ENLISWORDIID_VAGUKATTIIID_DELLATELANCEIID_BROLELANCEIID_IRNLANCEIID_STELLANCEIID_SILLRLANCEIID_IRSPPEARIID_STSPSPEARIID_SISPRSPEARIID_POILNLANCEIID_BRALLANCEIID_KILLRLANCEIID_HORSKILLERIID_JAVEPEARIID_SHSPSPEARIID_SLENERSPEARIID_ZANEPHTEIID_BROAEAXEIID_IRNAXEIID_STEAAXEIID_SILARAXEIID_IRPAOLEAXEIID_STPAPOLEAXEIID_SIPARPOLEAXEIID_POIANAXEIID_BRAAAXEIID_KILARAXEIID_HAMRRIID_HANDXEIID_SHORAXEIID_TOMAAWKIID_TARVSIID_URVAIID_BROBEBOWIID_IRNBOWIID_STEBBOWIID_SILBRBOWIID_IRLBONGBOWIID_STLBLONGBOWIID_SVLBRLONGBOWIID_POIBNBOWIID_KILBRBOWIID_BRABBOWIID_LOFAOWIID_CHINNBOWIID_LUGHASADIID_VALFECHEIID_BOWGNIID_CROSBOWIID_TAKHHIID_AQQAIID_ARBAESTIID_LONGRCHIID_IRBARCHIID_KLBARARCHIID_IRBARIID_BROKEKNIFEIID_IRNKNIFEIID_STEKKNIFEIID_SILKRKNIFEIID_BRODEDAGGERIID_IRNDAGGERIID_STEDDAGGERIID_SILDRDAGGERIID_KARDIID_STILTTOIID_BEASKILLERIID_PESHABZIID_BASEARDIID_FIREIID_ELFIEIID_GIGFIREIID_BOLGNONEIID_REXFAMEIID_METERIID_THUNERIID_ELTHNDERIID_GIGTHUNDERIID_THORNIID_REXBLTIID_BOLTERSTORMIID_WINDIID_ELWIDIID_GIGWINDIID_TORNDOIID_REXCLIBURIID_BLIZARDIID_LIGHIID_ELLIHTIID_SHINIID_RESIEIID_VALARAIID_REXARAIID_PURGIID_THANIID_WORMIID_KAREUIID_UERIEIID_BARVRTIID_FENRRIID_LIVEIID_RELIEIID_RECOERIID_REBLWIID_RESEVEIID_RESTIID_SILECEIID_ELSIENCEIID_SLEEIID_ELSLEPIID_RESCEIID_REWAPIID_TORCIID_HAMMRNEIID_UNLOKIID_MSHILDIID_MATRNAIID_GODRSSRODIID_ANGEROBEIID_ENERYDROPIID_SPIRTPOWDERIID_SECRTBOOKIID_SPEEWINGIID_GODDSSICONIID_DRAGNSHIELDIID_TALIMANIID_BOOTIID_STATESPALLIID_MASPRCROWNIID_MASTRCROWNIID_SATOISIGNIID_HERBIID_VULNRARYIID_CONCCTIONIID_ELIXRIID_OLIVIID_HOLYATERIID_DETODRUGIID_PANAIID_JACKIGHTIID_MARTALARTIID_WHITGEMIID_BLUEEMIID_REDGMIID_SPECERCARDIID_DEATCARDIID_ANASASISCARDIID_SHNBBARRIERIID_HOWLIID_CALLIID_SONIIID_VORTXIID_HALFEASTIID_BLESINGIID_BOONIID_REDWVEIID_WHTWWAVEIID_BLACWAVEIID_SHADIID_HIDEIID_CORRSIONIID_RELESEIID_BATTEWISEIID_MIRALEIID_RESOVEIID_WRATIID_CANCLIID_ADEPIID_COUNERIID_VANTGEIID_WARMPIID_MERCIID_THROGHIID_NIHIIID_LUCKIID_EXPETIID_PROVKEIID_DAUNIID_PARAONIID_RENEALIID_CUREIID_BLOSOMIID_CELEITYIID_SAVIRIID_GUARIID_PAVIIID_BEABBUSTERIID_BIRDUSTERIID_DRABNBUSTERIID_PARIYIID_GAMBEIID_SMITIID_CHANESTONEIID_CHAGEGEMIID_COINIID_WHITGEMIID_BLUEEMIID_REDGMIID_WHITGEMIID_BLUEEMIID_REDGMIID_ALONIID_CYMBIID_TROO -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logheader.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 66 | 67 | 68 | 69 |

FE10 Randomizer Output Log

-------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/adept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/adept.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/aran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/aran.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/ashera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/ashera.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/astrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/astrid.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/bastian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/bastian.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/beastfoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/beastfoe.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/bio0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/bio0.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/bio1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/bio1.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/bio2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/bio2.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/bio3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/bio3.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/bio4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/bio4.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/bio5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/bio5.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/bio6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/bio6.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/bio7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/bio7.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/bio8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/bio8.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/bio9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/bio9.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/birdfoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/birdfoe.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/blackknight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/blackknight.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/blessing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/blessing.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/bloodtide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/bloodtide.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/blossom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/blossom.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/boon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/boon.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/boyd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/boyd.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/brom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/brom.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/caineghis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/caineghis.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/calill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/calill.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/cancel.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/celerity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/celerity.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/corrosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/corrosion.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/counter.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/danved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/danved.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/dark.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/daunt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/daunt.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/dheginsea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/dheginsea.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/disarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/disarm.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/discipline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/discipline.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/dragonfoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/dragonfoe.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/earth.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/edward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/edward.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/elincia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/elincia.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/ena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/ena.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/fiona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/fiona.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/fire.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/flourish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/flourish.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/formshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/formshift.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/fortune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/fortune.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/gamble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/gamble.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/gareth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/gareth.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/gatrie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/gatrie.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/geoffrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/geoffrey.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/giffca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/giffca.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/glare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/glare.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/guard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/guard.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/haar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/haar.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/heather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/heather.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/heaven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/heaven.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/hetzel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/hetzel.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/howl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/howl.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/ike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/ike.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/ilyana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/ilyana.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/imbue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/imbue.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/insight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/insight.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/izuka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/izuka.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/janaff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/janaff.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/jarod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/jarod.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/jill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/jill.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/kieran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/kieran.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/kurthnaga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/kurthnaga.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/kyza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/kyza.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/laura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/laura.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/leanne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/leanne.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/lehran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/lehran.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/lekain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/lekain.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/leonardo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/leonardo.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/lethe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/lethe.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/levail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/levail.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/light.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/lucia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/lucia.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/ludveck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/ludveck.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/lyre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/lyre.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/maelstrom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/maelstrom.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/makalov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/makalov.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/marcia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/marcia.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/maurim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/maurim.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/meg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/meg.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/mia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/mia.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/micaiah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/micaiah.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/miracle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/miracle.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/mist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/mist.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/mordecai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/mordecai.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/naesala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/naesala.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/nailah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/nailah.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/nasir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/nasir.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/nealuchi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/nealuchi.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/nephenee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/nephenee.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/nighttide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/nighttide.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/nihil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/nihil.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/nolan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/nolan.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/nullify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/nullify.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/numida.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/numida.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/oliver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/oliver.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/oscar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/oscar.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/paragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/paragon.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/parity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/parity.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/pass.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/pavise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/pavise.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/pelleas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/pelleas.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/provoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/provoke.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/quickclaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/quickclaw.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/rafiel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/rafiel.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/ranulf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/ranulf.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/renewal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/renewal.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/renning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/renning.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/resolve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/resolve.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/reyson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/reyson.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/rhys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/rhys.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/rolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/rolf.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/sacrifice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/sacrifice.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/sanaki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/sanaki.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/savior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/savior.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/sephiran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/sephiran.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/septimus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/septimus.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/shade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/shade.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/shinon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/shinon.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/shriek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/shriek.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/sigrun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/sigrun.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/skrimir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/skrimir.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/smite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/smite.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/soren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/soren.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/sothe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/sothe.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/star.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/stefan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/stefan.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/stillness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/stillness.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/tanith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/tanith.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/tauroneo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/tauroneo.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/temp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/thunder.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/tibarn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/tibarn.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/titania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/titania.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/tormod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/tormod.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/ulki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/ulki.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/valtome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/valtome.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/vantage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/vantage.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/vigilance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/vigilance.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/vika.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/vika.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/volke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/volke.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/volug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/volug.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/water.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/whitepool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/whitepool.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/wildheart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/wildheart.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/wind.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/wrath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/wrath.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/zelgius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/zelgius.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logpics/zihark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/logpics/zihark.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/logscript.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/newPromotionBonuses.csv: -------------------------------------------------------------------------------- 1 | Name,JID,hp,atk,mag,skl,spd,lck,def,res 2 | Hero,JID_HERO,2,1,2,1,1,0,1,2 3 | Assassin,JID_ASSASSIN,4,2,4,2,2,0,2,4 4 | Darksage,JID_DARKSAGE,2,2,1,1,1,0,2,1 5 | Empress,JID_CAESER,4,5,2,2,2,0,5,2 6 | Chancellor,JID_CHANCELLOR,4,4,2,2,2,0,4,2 7 | Druid,JID_DRUID,1,2,2,1,1,0,2,1 8 | Cleric,JID_CLERIC,1,2,2,1,1,0,2,1 9 | Queen,JID_QUEEN,4,4,4,2,2,0,3,3 10 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/randomItemNames.txt: -------------------------------------------------------------------------------- 1 | SLIMSWORD 2 | BRONZESWORD 3 | IRONSWORD 4 | STEELSWORD 5 | SILVERSWORD 6 | IRONBLADE 7 | STEELBLADE 8 | SILVERBLADE 9 | VENINEDGE 10 | BRAVESWORD 11 | KILLINGEDGE 12 | WYRMSLAYER 13 | WODAO 14 | CALADBOLG 15 | WINDSWORD 16 | STORMSWORD 17 | TEMPESTBLADE 18 | VAGUEKATTI 19 | SLIMLANCE 20 | BRONZELANCE 21 | IRONLANCE 22 | STEELLANCE 23 | SILVERLANCE 24 | IRONGREATLANCE 25 | STEELGREATLANCE 26 | SILVERGREATLANCE 27 | VENINLANCE 28 | BRAVELANCE 29 | KILLERLANCE 30 | HORSESLAYER 31 | JAVELIN 32 | SHORTSPEAR 33 | SPEAR 34 | WISHBLADE 35 | BRONZEAXE 36 | IRONAXE 37 | STEELAXE 38 | SILVERAXE 39 | IRONPOLEAXE 40 | STEELPOLEAXE 41 | SILVERPOLEAXE 42 | VENINAXE 43 | BRAVEAXE 44 | KILLERAXE 45 | HAMMER 46 | HANDAXE 47 | SHORTAXE 48 | TOMAHAWK 49 | TARVOS 50 | URVAN 51 | BRONZEBOW 52 | IRONBOW 53 | STEELBOW 54 | SILVERBOW 55 | IRONLONGBOW 56 | STEELLONGBOW 57 | SILVERLONGBOW 58 | VENINBOW 59 | KILLERBOW 60 | BRAVEBOW 61 | ROLFSBOW 62 | SILENCER 63 | LUGHNASADH 64 | DOUBLEBOW 65 | BOWGUN 66 | CROSSBOW 67 | TAKHSH 68 | AQQAR 69 | ARBALEST 70 | BALLISTA 71 | IRONBALLISTA 72 | KILLERBALLISTA 73 | IRONBALLISTA 74 | BRONZEKNIFE 75 | IRONKNIFE 76 | STEELKNIFE 77 | SILVERKNIFE 78 | BRONZEDAGGER 79 | IRONDAGGER 80 | STEELDAGGER 81 | SILVERDAGGER 82 | KARD 83 | STILETTO 84 | BEASTKILLER 85 | PESHKATZ 86 | BASELARD 87 | FIRE 88 | ELFIRE 89 | ARCFIRE 90 | BOLGANONE 91 | REXFLAME 92 | METEOR 93 | THUNDER 94 | ELTHUNDER 95 | ARCTHUNDER 96 | THORON 97 | REXBOLT 98 | BOLTING 99 | WIND 100 | ELWIND 101 | ARCWIND 102 | TORNADO 103 | REXCALIBUR 104 | BLIZZARD 105 | LIGHT 106 | ELLIGHT 107 | SHINE 108 | NOSFERATU 109 | VALAURA 110 | REXAURA 111 | PURGE 112 | THANI 113 | WORM 114 | CARREAU 115 | VERRINE 116 | BALBERITH 117 | FENRIR 118 | HEAL 119 | MEND 120 | RECOVER 121 | PHYSIC 122 | FORTIFY 123 | RESTORE 124 | SILENCE 125 | ELSILENCE 126 | SLEEP 127 | ELSLEEP 128 | RESCUE 129 | REWARP 130 | TORCHSTAFF 131 | HAMMERNE 132 | UNLOCK 133 | WARD 134 | MATRONA 135 | ASHERASTAFF 136 | SERAPHROBE 137 | ENERGYDROP 138 | SPIRITDUST 139 | SECRETBOOK 140 | SPEEDWING 141 | ASHERAICON 142 | DRAGONSHIELD 143 | TALISMAN 144 | BOOTS 145 | STATUEFRAG 146 | MASTERSEAL 147 | MASTERCROWN 148 | SATORISIGN 149 | HERB 150 | VULNERARY 151 | CONCOCTION 152 | ELIXIR 153 | OLIVIGRASS 154 | PUREWATER 155 | ANTITOXIN 156 | PANACEA 157 | TORCH 158 | ARMSSCROLL 159 | WHITEGEM 160 | BLUEGEM 161 | REDGEM 162 | SPECTRECARD 163 | REAPERCARD 164 | DAEMONCARD 165 | SHINEBARRIER 166 | HOWL 167 | SHRIEK 168 | QUICKCLAW 169 | MAELSTROM 170 | HALFBEAST 171 | SKYBOON 172 | EARTHBOUNTY 173 | BLOODTIDE 174 | WHITEPOOL 175 | NIGHTTIDE 176 | SHADE 177 | STILLNESS 178 | CORROSION 179 | RELEASE 180 | DISCIPLINE 181 | MIRACLE 182 | RESOLVE 183 | WRATH 184 | CANCEL 185 | ADEPT 186 | COUNTER 187 | VANTAGE 188 | FLOURISH 189 | MERCY 190 | PASS 191 | NIHIL 192 | FORTUNE 193 | NULLIFY 194 | PROVOKE 195 | DAUNT 196 | PARAGON 197 | RENEWAL 198 | IMBUE 199 | BLOSSOM 200 | CELERITY 201 | SAVIOR 202 | GUARD 203 | PAVIS 204 | BEASTFOE 205 | BIRDFOE 206 | DRAGONFOE 207 | PARITY 208 | GAMBLE 209 | SMITE 210 | LAGUZSTONE 211 | LAGUZGEM 212 | COIN 213 | WHITEGEM 214 | BLUEGEM 215 | REDGEM 216 | WHITEGEM 217 | BLUEGEM 218 | REDGEM 219 | ETTARD 220 | CYMBELINE 221 | FORMSHIFT -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/scriptdata/C0401.cmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/scriptdata/C0401.cmb -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/scriptdata/C0402.cmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/scriptdata/C0402.cmb -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/scriptdata/C0403.cmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/scriptdata/C0403.cmb -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/scriptdata/C0404.cmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/scriptdata/C0404.cmb -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/scriptdata/C0405.cmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/scriptdata/C0405.cmb -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/scriptdata/C0407a.cmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/assets/scriptdata/C0407a.cmb -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/skillList.csv: -------------------------------------------------------------------------------- 1 | GLARE,SID_EVILEYE 2 | INSIGHT,SID_INSIGHT 3 | BLESSING,SID_BLESSING 4 | SACRIFICE,SID_HEALINGHAND 5 | VIGILANCE,SID_VIGILANCE 6 | ADEPT,SID_ADEPT 7 | BEASTFOE,SID_BEASTBUSTER 8 | BIRDFOE,SID_BIRDBUSTER 9 | BLOODTIDE,SID_REDWAVE 10 | BLOSSOM,SID_BLOSSOM 11 | BOON,SID_BOON 12 | CANCEL,SID_CANCEL 13 | CELERITY,SID_CELERITY 14 | CORROSION,SID_CORROSION 15 | COUNTER,SID_COUNTER 16 | DAUNT,SID_DAUNT 17 | DISARM,SID_RELEASE 18 | DISCIPLINE,SID_BATTLEWISE 19 | DRAGONFOE,SID_DRAGONBUSTER 20 | FLOURISH,SID_WARMUP 21 | FORTUNE,SID_LUCKY 22 | GAMBLE,SID_GAMBLE 23 | GUARD,SID_GUARD 24 | HOWL,SID_HOWL 25 | IMBUE,SID_CURE 26 | MAELSTROM,SID_VORTEX 27 | MIRACLE,SID_MIRACLE 28 | NIGHTTIDE,SID_BLACKWAVE 29 | NIHIL,SID_NIHIL 30 | NULLIFY,SID_EXPERT 31 | PARAGON,SID_PARAGON 32 | PARITY,SID_PARITY 33 | PASS,SID_THROUGH 34 | PAVISE,SID_PAVIS 35 | PROVOKE,SID_PROVOKE 36 | QUICKCLAW,SID_SONIC 37 | RENEWAL,SID_RENEWAL 38 | RESOLVE,SID_RESOLVE 39 | SAVIOR,SID_SAVIOR 40 | SHADE,SID_SHADE 41 | SHRIEK,SID_CALL 42 | SMITE,SID_SMITE 43 | STILLNESS,SID_HIDE 44 | VANTAGE,SID_VANTAGE 45 | WHITEPOOL,SID_WHITEWAVE 46 | WRATH,SID_WRATH 47 | WILDHEART,SID_HALFBEAST 48 | FORMSHIFT,SID_KING 49 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/skillList.txt: -------------------------------------------------------------------------------- 1 | 003 085 026 GLARE 2 | 003 086 049 INSIGHT 3 | 003 083 012 BLESSING 4 | 003 085 226 SACRIFICE 5 | 003 088 132 VIGILANCE 6 | 003 082 108 ADEPT 7 | 003 082 223 BEASTFOE 8 | 003 082 239 BIRDFOE 9 | 003 087 117 BLOODTIDE 10 | 003 083 025 BLOSSOM 11 | 003 083 037 BOON 12 | 003 083 064 CANCEL 13 | 003 083 085 CELERITY 14 | 003 083 123 CORROSION 15 | 003 083 137 COUNTER 16 | 003 084 006 DAUNT 17 | 003 087 129 DISARM 18 | 003 082 208 DISCIPLINE 19 | 003 084 044 DRAGONFOE 20 | 003 088 176 FLOURISH 21 | 003 086 165 FORTUNE 22 | 003 085 158 GAMBLE 23 | 003 085 182 GUARD 24 | 003 086 027 HOWL 25 | 003 083 236 IMBUE 26 | 003 088 165 MAELSTROM 27 | 003 087 010 MIRACLE 28 | 003 082 254 NIGHTTIDE 29 | 003 087 022 NIHIL 30 | 003 085 057 NULLIFY 31 | 003 087 058 PARAGON 32 | 003 087 070 PARITY 33 | 003 088 068 PASS 34 | 003 087 081 PAVISE 35 | 003 087 091 PROVOKE 36 | 003 088 002 QUICKCLAW 37 | 003 087 141 RENEWAL 38 | 003 087 153 RESOLVE 39 | 003 087 174 SAVIOR 40 | 003 087 198 SHADE 41 | 003 083 055 SHRIEK 42 | 003 087 228 SMITE 43 | 003 085 251 STILLNESS 44 | 003 088 120 VANTAGE 45 | 003 088 211 WHITEPOOL 46 | 003 088 225 WRATH 47 | 003 085 192 WILDHEART 48 | 003 086 101 FORMSHIFT -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/skillcaplist.txt: -------------------------------------------------------------------------------- 1 | SID_ADEPT 2 | SID_AETHER 3 | SID_ASTRA 4 | SID_BANE 5 | SID_BEASTBUSTER 6 | SID_BIRDBUSTER 7 | SID_BLESSING 8 | SID_REDWAVE 9 | SID_BLOSSOM 10 | SID_BOON 11 | SID_CANCEL 12 | SID_CANTO 13 | SID_CELERITY 14 | SID_COLOSSUS 15 | SID_AURORAL 16 | SID_CORROSION 17 | SID_COUNTER 18 | SID_DAUNT 19 | SID_DEADEYE 20 | SID_RELEASE 21 | SID_BATTLEWISE 22 | SID_DRAGONBUSTER 23 | SID_LUNA2 24 | SID_FLARE 25 | SID_WARMUP 26 | SID_KING 27 | SID_EXPERT 28 | SID_GAMBLE 29 | SID_EVILEYE 30 | SID_GUARD 31 | SID_HALFBEAST 32 | SID_HOWL 33 | SID_CURE 34 | SID_CRUSH 35 | SID_INSIGHT 36 | SID_DISPLEASURE 37 | SID_LETHALITY 38 | SID_LUNA 39 | SID_VORTEX 40 | SID_MANTLE 41 | SID_MERCY 42 | SID_MIRACLE 43 | SID_BLACKWAVE 44 | SID_NIHIL 45 | SID_LUCKY 46 | SID_PARAGON 47 | SID_PARITY 48 | SID_THROUGH 49 | SID_PAVIS 50 | SID_PROVOKE 51 | SID_SERENITY 52 | SID_RENEWAL 53 | SID_RESOLVE 54 | SID_ROAR 55 | SID_HEALINGHAND 56 | SID_CALL 57 | SID_SAVIOR 58 | SID_SHADE 59 | SID_TACKLE 60 | SID_SONIC 61 | SID_SMASH 62 | SID_SMITE 63 | SID_SOL 64 | SID_HIDE 65 | SID_STUN 66 | SID_TEMPEST 67 | SID_VANTAGE 68 | SID_VIGILANCE 69 | SID_WHITEWAVE 70 | SID_WRATH -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/temp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/vanillafiles/place.holder: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/assets/weaponlist.txt: -------------------------------------------------------------------------------- 1 | IID_DELICATESWORD 2 | IID_BRONZESWORD 3 | IID_IRONSWORD 4 | IID_STEELSWORD 5 | IID_SILVERSWORD 6 | IID_IRONBLADE 7 | IID_STEELBLADE 8 | IID_SILVERBLADE 9 | IID_POISONSWORD 10 | IID_BRAVESWORD 11 | IID_KILLSWORD 12 | IID_DRAGONKILLER 13 | IID_WATOU 14 | IID_CALADBORG 15 | IID_WINDSWORD 16 | IID_STORMSWORD 17 | IID_ENLILSWORD 18 | IID_VAGUEKATTI 19 | IID_FLORETE 20 | IID_ETTARD 21 | IID_RAGNELL 22 | IID_ALONDITE 23 | IID_AMITE 24 | IID_DELICATELANCE 25 | IID_BRONZELANCE 26 | IID_IRONLANCE 27 | IID_STEELLANCE 28 | IID_SILVERLANCE 29 | IID_IRONSPEAR 30 | IID_STEELSPEAR 31 | IID_SILVERSPEAR 32 | IID_POISONLANCE 33 | IID_BRAVELANCE 34 | IID_KILLERLANCE 35 | IID_HORSEKILLER 36 | IID_HANDSPEAR 37 | IID_SHORTSPEAR 38 | IID_SLENDERSPEAR 39 | IID_ZANEZPHTE 40 | IID_BRONZEAXE 41 | IID_IRONAXE 42 | IID_STEELAXE 43 | IID_SILVERAXE 44 | IID_IRONPOLEAXE 45 | IID_STEELPOLEAXE 46 | IID_SILVERPOLEAXE 47 | IID_POISONAXE 48 | IID_BRAVEAXE 49 | IID_KILLERAXE 50 | IID_HAMMER 51 | IID_HANDAXE 52 | IID_SHORTAXE 53 | IID_TOMAHAWK 54 | IID_TARVOS 55 | IID_URVAN 56 | IID_BRONZEBOW 57 | IID_IRONBOW 58 | IID_STEELBOW 59 | IID_SILVERBOW 60 | IID_IRONLONGBOW 61 | IID_STEELLONGBOW 62 | IID_SILVERLONGBOW 63 | IID_POISONBOW 64 | IID_KILLERBOW 65 | IID_BRAVEBOW 66 | IID_LOFABOW 67 | IID_CHINONBOW 68 | IID_LUGHNASAD 69 | IID_VALFLECHE 70 | IID_BOWGUN 71 | IID_CROSSBOW 72 | IID_TAKHSH 73 | IID_AQQAR 74 | IID_ARBALEST 75 | IID_BRONZEKNIFE 76 | IID_IRONKNIFE 77 | IID_STEELKNIFE 78 | IID_SILVERKNIFE 79 | IID_BRONZEDAGGER 80 | IID_IRONDAGGER 81 | IID_STEELDAGGER 82 | IID_SILVERDAGGER 83 | IID_KARD 84 | IID_STILETTO 85 | IID_BEASTKILLER 86 | IID_PESHKABZ 87 | IID_BASELARD 88 | IID_FIRE 89 | IID_ELFIRE 90 | IID_GIGAFIRE 91 | IID_BOLGANONE 92 | IID_REXFLAME 93 | IID_CYMBELINE 94 | IID_THUNDER 95 | IID_ELTHUNDER 96 | IID_GIGATHUNDER 97 | IID_THORON 98 | IID_REXBOLT 99 | IID_WIND 100 | IID_ELWIND 101 | IID_GIGAWIND 102 | IID_TORNADO 103 | IID_REXCALIBUR 104 | IID_LIGHT 105 | IID_ELLIGHT 106 | IID_SHINE 107 | IID_RESIRE 108 | IID_VALAURA 109 | IID_REXAURA 110 | IID_THANY 111 | IID_CREIDDYLED 112 | IID_WORM 113 | IID_KAREAU 114 | IID_UERINE 115 | IID_BARVERT 116 | IID_FLUTTER 117 | IID_LIVE 118 | IID_RELIVE 119 | IID_RECOVER 120 | IID_REBLOW 121 | IID_RESERVE 122 | IID_REST 123 | IID_LONGARCH 124 | IID_IRONARCH 125 | IID_KILLERARCH 126 | IID_ONAGER 127 | IID_THUNDERSTORM 128 | IID_BLIZZARD 129 | IID_METEOR 130 | IID_PURGE 131 | IID_FENRIR 132 | IID_SILENCE 133 | IID_ELSILENCE 134 | IID_SLEEP 135 | IID_ELSLEEP 136 | IID_RESCUE 137 | IID_REWARP 138 | IID_TORCH 139 | IID_HAMMERNE 140 | IID_UNLOCK 141 | IID_MSHIELD 142 | IID_MATRONA 143 | IID_GODDESSROD 144 | IID_LIONFANG1 145 | IID_LIONFANG2 146 | IID_LIONFANG3 147 | IID_KINGFANG1 148 | IID_KINGFANG2 149 | IID_KINGFANG3 150 | IID_TIGERFANG1 151 | IID_TIGERFANG2 152 | IID_TIGERFANG3 153 | IID_NAIL1 154 | IID_NAIL2 155 | IID_NAIL3 156 | IID_WOLFFANG1 157 | IID_WOLFFANG2 158 | IID_WOLFFANG3 159 | IID_KINGFANG_W1 160 | IID_KINGFANG_W2 161 | IID_KINGFANG_W3 162 | IID_CLAW1 163 | IID_CLAW2 164 | IID_CLAW3 165 | IID_KINGCLAW1 166 | IID_KINGCLAW2 167 | IID_KINGCLAW3 168 | IID_BEAK1 169 | IID_BEAK2 170 | IID_BEAK3 171 | IID_KINGBEAK1 172 | IID_KINGBEAK2 173 | IID_KINGBEAK3 174 | IID_REDBREATH1 175 | IID_REDBREATH2 176 | IID_REDBREATH3 177 | IID_WHITEBREATH1 178 | IID_WHITEBREATH2 179 | IID_WHITEBREATH3 180 | IID_BLACKBREATH_K1 181 | IID_BLACKBREATH_K2 182 | IID_BLACKBREATH_K3 183 | IID_BLACKBREATH1 184 | IID_BLACKBREATH2 185 | IID_BLACKBREATH3 -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/documentation - Please read!/ENEMY RE-RANDOMIZER INSTRUCTIONS.txt: -------------------------------------------------------------------------------- 1 | ~~ THIS PROGRAM CAN ONLY BE USED ON A PREVIOUSLY-RANDOMIZED ISO 2 | 3 | This program is used to re-randomize enemies if you come across a chapter that is too 4 | difficult and possibly a softlock due to the new enemy classes. As this program can only 5 | be used after the randomizer, this document will assume that you have successfully used 6 | the FE10 Randomizer by LordMewtwo73. If you have not, do not use this program. 7 | 8 | 9 | ~~ HOW TO USE 10 | You will need the extracted randomized ISO from the randomizer, before it is built with 11 | WiiBaFu. If you deleted those folders after you built your ISO, you will need to extract 12 | the randomized ISO into its contents with WiiBaFu. I'm not putting instructions here 13 | because you should already know how to do that if you successfully used the randomizer. 14 | 15 | IMPORTANT: 16 | In order for this program to work, your save file cannot have previously loaded the map 17 | you want enemies to change. There are multiple places you can save in FE10, so here is a 18 | list of all of the save points and whether or not this program will successfully change 19 | the enemies on a chapter: 20 | SAVE FROM CLEARED PREVIOUS CHAPTER: yes 21 | SAVE AT BASE OF CURRENT CHAPTER: yes 22 | SAVE AT PREPARATIONS SCREEN OF CURRENT CHAPTER: no 23 | SAVE AT BASE AFTER RETURNING TO BASE FROM PREP SCREEN: no 24 | BATTLE SAVE: no 25 | 26 | Thus, it is recommended when playing with randomized enemies to always have a separate save 27 | file that exists BEFORE LEAVING THE BASE, just in case the chapter ends up being a softlock. 28 | /IMPORTANT 29 | 30 | After you open the program using the .exe file in the randomizer folder, you must select the 31 | DATA\files folder inside of the extracted ISO, just as you would with the complete 32 | randomizer program. 33 | 34 | Select your random enemy settings (you can choose same or different settings from your original 35 | settings, it does not matter) 36 | 37 | Click Randomize, buid the ISO again, and open up a save file specified in the list above. -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/documentation - Please read!/HARDMODE CHANGES INSTRUCTIONS.txt: -------------------------------------------------------------------------------- 1 | ~~ THIS PROGRAM CAN ONLY BE USED ON A CLEAN ISO 2 | 3 | This program is used to only make the "Make Hardmode Great Again" changes from the full 4 | randomizer program without having to deal with any of the possible bugs from the main 5 | program. It was popularized by youtuber Mekkah in his FE10 Hardmode playthrough with Bismix 6 | 7 | 8 | ~~ HOW TO USE 9 | Find an NTSC-U or PAL FE10 iso. I can't tell you where to find this, but the internet is 10 | your friend here. Once you have it, make sure it is a .iso file, not .nkit.iso or .wpf 11 | or anything else. 12 | 13 | Extract the contents of your iso into a directory using a program like WiiBaFu. If you 14 | have problems with WiiBaFu, and you're sure you have a .iso, check out the FAQ on the 15 | discord to see if the problem has been covered there. 16 | 17 | Open up the program by running the appropriate .exe file in your downloaded 18 | randomizer folder. 19 | 20 | After extracting with WiiBaFu, you should have a collection of folders 21 | that contain all of the data of your iso. Inside of the extracted folder, there 22 | will be a folder named "DATA", and then within that folder there should be a 23 | folder named "sys". Using the Load button on the program, select the file "main.dol" 24 | in the "sys" folder. EXAMPLE: after extracting my iso to my desktop, I would select 25 | the following file with the randomizer: C:\Users\LordMewtwo73\Desktop\Fire 26 | Emblem Radiant Dawn [RFEE01]\DATA\sys\main.dol 27 | 28 | Choose whatever settings you would like to modify. For more details on each setting, 29 | you can look at the README.htm found in the documentation folder of the randomizer. 30 | 31 | After it is completed, use WiiBaFu to rebuild your iso from the extracted contents. 32 | Once again, if you come across problems with WiiBaFu, check out the FAQ. 33 | 34 | Now you have a FE10 ISO with hardmode changes and nothing else! -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/documentation - Please read!/PossibleEnemyWeapons.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/documentation - Please read!/PossibleEnemyWeapons.xlsx -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/documentation - Please read!/images/adjgrowthrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/documentation - Please read!/images/adjgrowthrange.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/documentation - Please read!/images/growthrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/documentation - Please read!/images/growthrange.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/documentation - Please read!/images/growthsettings.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/documentation - Please read!/images/growthsettings.PNG -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/documentation - Please read!/images/hplckbases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/documentation - Please read!/images/hplckbases.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/documentation - Please read!/images/ironsword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/documentation - Please read!/images/ironsword.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/documentation - Please read!/images/lethe.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/documentation - Please read!/images/lethe.PNG -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/documentation - Please read!/images/randbases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/documentation - Please read!/images/randbases.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/documentation - Please read!/images/randironsword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/documentation - Please read!/images/randironsword.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/documentation - Please read!/images/shufflebases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/documentation - Please read!/images/shufflebases.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/documentation - Please read!/images/shufflegrowths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/documentation - Please read!/images/shufflegrowths.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/documentation - Please read!/images/vanillagrowths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/documentation - Please read!/images/vanillagrowths.png -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/documentation - Please read!/images/weapsettings.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/documentation - Please read!/images/weapsettings.PNG -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/documentation - Please read!/images/weights.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/bin/Debug/documentation - Please read!/images/weights.PNG -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/settings.ini: -------------------------------------------------------------------------------- 1 | 2.4.3,0,127,50,15,1,3,1,0,100,0,10,15,25,90,0,15,15,15,15,15,1,1,1,1,5,15,0,100,1,10,10,10,25,35,45,0,100,1,0,50,0,5,1,1,8,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,2,0,0,2,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False,True,False,False,False,False,False,False,False,False,True,False,False,True,True,True,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False,True,False,False,False,True,True,False,False,False,False,False,False,False,False,False,False,False,True,False,True,False,False,False,False,False,False,False,False,False,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False,True,False,False,False,False,False,False,False,False,False,False,0,34,0,1,17,25,False,False,False,True,False,False,False,True,False,False,False,False,False,True,False,False,False,False,False,False,False,True,False,False,False,True,False,False,False,False,False,False,False,True,False,False,False,False,False,True,False,False,False,False,False,True,False,False,1590823584 -------------------------------------------------------------------------------- /FE10Randomizer/bin/Debug/settings/testsettings.ini: -------------------------------------------------------------------------------- 1 | 3.0.0,0,127,50,15,1,0,10,0,100,0,10,20,25,100,0,15,15,15,15,15,1,1,1,1,5,15,0,100,1,10,5,10,30,40,50,0,100,1,0,50,0,1,1,1,8,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,0,0,0,2,1,0,False,False,False,False,False,True,False,False,True,False,False,False,False,False,True,False,False,False,False,True,False,True,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False,False,True,True,False,True,False,False,False,True,True,False,False,True,False,False,False,False,False,False,False,False,False,False,True,False,False,False,False,False,False,False,True,True,False,True,True,False,False,False,False,False,False,False,False,True,False,False,False,True,True,False,False,False,False,True,False,False,False,False,False,False,False,True,False,False,False,True,False,False,True,False,False,False,True,True,False,True,True,True,True,1,34,0,1,10,25,18,False,False,False,True,False,False,False,False,False,True,False,False,False,False,False,True,False,False,False,False,False,True,False,False,False,False,False,True,False,False,False,False,False,True,False,False,False,False,False,True,False,False,False,False,False,True,False,False,1146352730 2 | -------------------------------------------------------------------------------- /FE10Randomizer/fire_emblem_icon_n82_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/fire_emblem_icon_n82_icon.ico -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v0.1.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v0.1.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v0.1.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Josiah\Downloads\Fire Emblem - Radiant Dawn\FE10Randomizer_v0.1\FE10Randomizer_v0.1\bin\Debug\FE10Randomizer_v0.1.exe.config 2 | C:\Users\Josiah\Downloads\Fire Emblem - Radiant Dawn\FE10Randomizer_v0.1\FE10Randomizer_v0.1\bin\Debug\FE10Randomizer_v0.1.exe 3 | C:\Users\Josiah\Downloads\Fire Emblem - Radiant Dawn\FE10Randomizer_v0.1\FE10Randomizer_v0.1\bin\Debug\FE10Randomizer_v0.1.pdb 4 | C:\Users\Josiah\Downloads\Fire Emblem - Radiant Dawn\FE10Randomizer_v0.1\FE10Randomizer_v0.1\obj\Debug\FE10Randomizer_v0.1.csprojAssemblyReference.cache 5 | C:\Users\Josiah\Downloads\Fire Emblem - Radiant Dawn\FE10Randomizer_v0.1\FE10Randomizer_v0.1\obj\Debug\FE10Randomizer_v0._1.Form1.resources 6 | C:\Users\Josiah\Downloads\Fire Emblem - Radiant Dawn\FE10Randomizer_v0.1\FE10Randomizer_v0.1\obj\Debug\FE10Randomizer_v0._1.Properties.Resources.resources 7 | C:\Users\Josiah\Downloads\Fire Emblem - Radiant Dawn\FE10Randomizer_v0.1\FE10Randomizer_v0.1\obj\Debug\FE10Randomizer_v0.1.csproj.GenerateResource.cache 8 | C:\Users\Josiah\Downloads\Fire Emblem - Radiant Dawn\FE10Randomizer_v0.1\FE10Randomizer_v0.1\obj\Debug\FE10Randomizer_v0.1.exe 9 | C:\Users\Josiah\Downloads\Fire Emblem - Radiant Dawn\FE10Randomizer_v0.1\FE10Randomizer_v0.1\obj\Debug\FE10Randomizer_v0.1.pdb 10 | -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v0.1.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v0.1.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v0.1.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v0.1.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v0.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v0.1.exe -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v0.1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v0.1.pdb -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v0._1.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v0._1.Form1.resources -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v0._1.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v0._1.Properties.Resources.resources -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v0._1.Randomizer_Main.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v0._1.Randomizer_Main.resources -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v2.4.4.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v2.4.4.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v2.4.4.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4fcb3d6cb4666fe63443e756ddaf76cf15d7bce0 2 | -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v2.4.4.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v2.4.4.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v2.4.4.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v2.4.4.csproj.SuggestedBindingRedirects.cache -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v3.0.2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v3.0.2.exe -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v3.0.2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v3.0.2.pdb -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v3.2.2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v3.2.2.exe -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v3.2.2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v3.2.2.pdb -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v3.3.1.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v3.3.1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4fcb3d6cb4666fe63443e756ddaf76cf15d7bce0 2 | -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v3.3.1.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FE10Randomizer_v0._1.Randomizer_Main.resources 2 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FE10Randomizer_v3.3.1.csproj.GenerateResource.cache 3 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FE10Randomizer_v3.3.1.csproj.CoreCompileInputs.cache 4 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FE10Randomizer_v3.3.1.csproj.AssemblyReference.cache 5 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\bin\Debug\FERandomizer_v3.4.0.exe.config 6 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\bin\Debug\FERandomizer_v3.4.0.exe 7 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\bin\Debug\FERandomizer_v3.4.0.pdb 8 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FE10Randomizer_v340.Properties.Resources.resources 9 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FERandomizer_v3.4.0.exe 10 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FERandomizer_v3.4.0.pdb 11 | -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v3.3.1.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v3.3.1.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v3.4.1.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v3.4.1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4fcb3d6cb4666fe63443e756ddaf76cf15d7bce0 2 | -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v3.4.1.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\bin\Debug\FERandomizer_v3.4.1.exe.config 2 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\bin\Debug\FERandomizer_v3.4.1.exe 3 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\bin\Debug\FERandomizer_v3.4.1.pdb 4 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FE10Randomizer_v0._1.Randomizer_Main.resources 5 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FE10Randomizer_v341.Properties.Resources.resources 6 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FE10Randomizer_v3.4.1.csproj.GenerateResource.cache 7 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FE10Randomizer_v3.4.1.csproj.CoreCompileInputs.cache 8 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FERandomizer_v3.4.1.exe 9 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FERandomizer_v3.4.1.pdb 10 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FE10Randomizer_v3.4.1.csproj.AssemblyReference.cache 11 | -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v3.4.1.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v3.4.1.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v3.4.2.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v3.4.2.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v3.4.2.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4fcb3d6cb4666fe63443e756ddaf76cf15d7bce0 2 | -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v3.4.2.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\bin\Debug\FERandomizer_v3.4.2.exe.config 2 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\bin\Debug\FERandomizer_v3.4.2.exe 3 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\bin\Debug\FERandomizer_v3.4.2.pdb 4 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FE10Randomizer_v3.4.2.csproj.AssemblyReference.cache 5 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FE10Randomizer_v0._1.Randomizer_Main.resources 6 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FE10Randomizer_v342.Properties.Resources.resources 7 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FE10Randomizer_v3.4.2.csproj.GenerateResource.cache 8 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FE10Randomizer_v3.4.2.csproj.CoreCompileInputs.cache 9 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FERandomizer_v3.4.2.exe 10 | C:\Users\josia\Documents\FE10 Projects\FE10Randomizer\FE10Randomizer\obj\Debug\FERandomizer_v3.4.2.pdb 11 | -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v3.4.2.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v3.4.2.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v302.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v302.Properties.Resources.resources -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v330.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v330.Properties.Resources.resources -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v340.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v340.Properties.Resources.resources -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v341.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v341.Properties.Resources.resources -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FE10Randomizer_v342.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FE10Randomizer_v342.Properties.Resources.resources -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FERandomizer_v3.3.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FERandomizer_v3.3.0.exe -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FERandomizer_v3.3.0.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FERandomizer_v3.3.0.pdb -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FERandomizer_v3.4.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FERandomizer_v3.4.0.exe -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FERandomizer_v3.4.0.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FERandomizer_v3.4.0.pdb -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FERandomizer_v3.4.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FERandomizer_v3.4.1.exe -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FERandomizer_v3.4.1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FERandomizer_v3.4.1.pdb -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FERandomizer_v3.4.2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FERandomizer_v3.4.2.exe -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/FERandomizer_v3.4.2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/FERandomizer_v3.4.2.pdb -------------------------------------------------------------------------------- /FE10Randomizer/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LordMewtwo73/fe10-randomizer/8fe5eb3d112274d690735776a54578d480dffaec/FE10Randomizer/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LordMewtwo's Fire Emblem Radiant Dawn Randomizer 2 | This github is used to post the source code for the FE10 randomizer. If you are looking to download the randomizer and all of its 3 | assets, you can find that on the discord server (https://discord.gg/dKfhvFj). There you can also report bugs, ask me questions, 4 | and talk to other people using the randomizer. I have attempted to comment my code clearly, but if any questions arise, discord will 5 | be the easiest way to contact me. 6 | 7 | This program is written in C# using Microsoft Visual Studio. You can view the code in Form1.cs 8 | 9 | With this randomizer, you can: 10 | - Randomize class and starting items of all playable characters other than BK 11 | - Change recruitment order, including being able to play as a handful of enemy characters 12 | - Randomize or shuffle growth rates and set minimum growth rates 13 | - Change growths to 0% 14 | - Add back in the dumb changes made to Hardmode like removing weapon triangle and enemy ranges 15 | - Change stat caps 16 | - Randomize enemies and bosses 17 | - Power up enemies and give them random skills 18 | - Randomize shop, bargain, and forge items 19 | - Randomize event items 20 | - Randomize skills 21 | - New QoL and difficulty settings such as Ironman mode, Choose my Tower, no FoW, Horse Parkour, and more! 22 | - Randomize affinities, biorhythm, transformation gauges, movement, and so much more! 23 | 24 | 25 | 26 | --------------------------------------------------------------------------------