├── .gitignore ├── FogMod ├── AnnotationData.cs ├── App.config ├── EventConfig.cs ├── FogMod.csproj ├── GameDataWriter.cs ├── GameDataWriter3.cs ├── GenerateConfig.cs ├── Graph.cs ├── GraphChecker.cs ├── GraphConnector.cs ├── ItemReader.cs ├── LICENSE ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── MainForm3.Designer.cs ├── MainForm3.cs ├── MainForm3.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Randomizer.cs ├── RandomizerOptions.cs ├── Util.cs ├── foggate.ico └── packages.config ├── README.md ├── README.txt ├── dist ├── DS1 │ ├── Layouts │ │ ├── GAME_AREA_PARAM_ST.xml │ │ ├── ITEMLOT_PARAM_ST.xml │ │ ├── NPC_PARAM_ST.xml │ │ └── SP_EFFECT_PARAM_ST.xml │ ├── event │ │ ├── common.emevd │ │ ├── m10_00_00_00.emevd │ │ ├── m10_01_00_00.emevd │ │ ├── m10_02_00_00.emevd │ │ ├── m11_00_00_00.emevd │ │ ├── m12_00_00_00.emevd │ │ ├── m12_01_00_00.emevd │ │ ├── m13_00_00_00.emevd │ │ ├── m13_01_00_00.emevd │ │ ├── m13_02_00_00.emevd │ │ ├── m14_00_00_00.emevd │ │ ├── m14_01_00_00.emevd │ │ ├── m15_00_00_00.emevd │ │ ├── m15_01_00_00.emevd │ │ ├── m16_00_00_00.emevd │ │ ├── m17_00_00_00.emevd │ │ ├── m18_00_00_00.emevd │ │ └── m18_01_00_00.emevd │ ├── map │ │ └── MapStudio │ │ │ ├── m10_00_00_00.msb │ │ │ ├── m10_01_00_00.msb │ │ │ ├── m10_02_00_00.msb │ │ │ ├── m11_00_00_00.msb │ │ │ ├── m12_00_00_00.msb │ │ │ ├── m12_00_00_01.msb │ │ │ ├── m12_01_00_00.msb │ │ │ ├── m13_00_00_00.msb │ │ │ ├── m13_01_00_00.msb │ │ │ ├── m13_02_00_00.msb │ │ │ ├── m14_00_00_00.msb │ │ │ ├── m14_01_00_00.msb │ │ │ ├── m15_00_00_00.msb │ │ │ ├── m15_01_00_00.msb │ │ │ ├── m16_00_00_00.msb │ │ │ ├── m17_00_00_00.msb │ │ │ ├── m18_00_00_00.msb │ │ │ └── m18_01_00_00.msb │ ├── msg │ │ └── ENGLISH │ │ │ └── menu.msgbnd │ ├── param │ │ └── GameParam │ │ │ └── GameParam.parambnd │ └── script │ │ └── talk │ │ ├── m10_00_00_00.talkesdbnd │ │ ├── m10_01_00_00.talkesdbnd │ │ ├── m10_02_00_00.talkesdbnd │ │ ├── m11_00_00_00.talkesdbnd │ │ ├── m12_00_00_00.talkesdbnd │ │ ├── m12_01_00_00.talkesdbnd │ │ ├── m13_00_00_00.talkesdbnd │ │ ├── m13_01_00_00.talkesdbnd │ │ ├── m13_02_00_00.talkesdbnd │ │ ├── m14_00_00_00.talkesdbnd │ │ ├── m14_01_00_00.talkesdbnd │ │ ├── m15_00_00_00.talkesdbnd │ │ ├── m15_01_00_00.talkesdbnd │ │ ├── m16_00_00_00.talkesdbnd │ │ ├── m17_00_00_00.talkesdbnd │ │ ├── m18_00_00_00.talkesdbnd │ │ └── m18_01_00_00.talkesdbnd ├── DS1R │ ├── Layouts │ │ ├── GAME_AREA_PARAM_ST.xml │ │ ├── ITEMLOT_PARAM_ST.xml │ │ ├── NPC_PARAM_ST.xml │ │ └── SP_EFFECT_PARAM_ST.xml │ ├── event │ │ ├── common.emevd.dcx │ │ ├── m10_00_00_00.emevd.dcx │ │ ├── m10_01_00_00.emevd.dcx │ │ ├── m10_02_00_00.emevd.dcx │ │ ├── m11_00_00_00.emevd.dcx │ │ ├── m12_00_00_00.emevd.dcx │ │ ├── m12_01_00_00.emevd.dcx │ │ ├── m13_00_00_00.emevd.dcx │ │ ├── m13_01_00_00.emevd.dcx │ │ ├── m13_02_00_00.emevd.dcx │ │ ├── m14_00_00_00.emevd.dcx │ │ ├── m14_01_00_00.emevd.dcx │ │ ├── m15_00_00_00.emevd.dcx │ │ ├── m15_01_00_00.emevd.dcx │ │ ├── m16_00_00_00.emevd.dcx │ │ ├── m17_00_00_00.emevd.dcx │ │ ├── m18_00_00_00.emevd.dcx │ │ └── m18_01_00_00.emevd.dcx │ ├── map │ │ └── MapStudio │ │ │ ├── m10_00_00_00.msb │ │ │ ├── m10_01_00_00.msb │ │ │ ├── m10_02_00_00.msb │ │ │ ├── m11_00_00_00.msb │ │ │ ├── m12_00_00_00.msb │ │ │ ├── m12_00_00_01.msb │ │ │ ├── m12_01_00_00.msb │ │ │ ├── m13_00_00_00.msb │ │ │ ├── m13_01_00_00.msb │ │ │ ├── m13_02_00_00.msb │ │ │ ├── m14_00_00_00.msb │ │ │ ├── m14_01_00_00.msb │ │ │ ├── m15_00_00_00.msb │ │ │ ├── m15_01_00_00.msb │ │ │ ├── m16_00_00_00.msb │ │ │ ├── m17_00_00_00.msb │ │ │ ├── m18_00_00_00.msb │ │ │ └── m18_01_00_00.msb │ ├── msg │ │ └── ENGLISH │ │ │ └── menu.msgbnd.dcx │ ├── param │ │ └── GameParam │ │ │ └── GameParam.parambnd.dcx │ └── script │ │ └── talk │ │ ├── m10_00_00_00.talkesdbnd.dcx │ │ ├── m10_01_00_00.talkesdbnd.dcx │ │ ├── m10_02_00_00.talkesdbnd.dcx │ │ ├── m11_00_00_00.talkesdbnd.dcx │ │ ├── m12_00_00_00.talkesdbnd.dcx │ │ ├── m12_01_00_00.talkesdbnd.dcx │ │ ├── m13_00_00_00.talkesdbnd.dcx │ │ ├── m13_01_00_00.talkesdbnd.dcx │ │ ├── m13_02_00_00.talkesdbnd.dcx │ │ ├── m14_00_00_00.talkesdbnd.dcx │ │ ├── m14_01_00_00.talkesdbnd.dcx │ │ ├── m15_00_00_00.talkesdbnd.dcx │ │ ├── m15_01_00_00.talkesdbnd.dcx │ │ ├── m16_00_00_00.talkesdbnd.dcx │ │ ├── m17_00_00_00.talkesdbnd.dcx │ │ ├── m18_00_00_00.talkesdbnd.dcx │ │ └── m18_01_00_00.talkesdbnd.dcx ├── Names │ ├── CharaInitParam.txt │ └── ModelName.txt └── fog.txt └── fogdist ├── Base ├── Data0.bdt ├── common.emevd.dcx ├── common_func.emevd.dcx ├── ds3-common.emedf.json ├── m30_00_00_00.emevd.dcx ├── m30_00_00_00.msb.dcx ├── m30_00_00_00.talkesdbnd.dcx ├── m30_01_00_00.emevd.dcx ├── m30_01_00_00.msb.dcx ├── m30_01_00_00.talkesdbnd.dcx ├── m31_00_00_00.emevd.dcx ├── m31_00_00_00.msb.dcx ├── m31_00_00_00.talkesdbnd.dcx ├── m32_00_00_00.emevd.dcx ├── m32_00_00_00.msb.dcx ├── m32_00_00_00.talkesdbnd.dcx ├── m33_00_00_00.emevd.dcx ├── m33_00_00_00.msb.dcx ├── m33_00_00_00.talkesdbnd.dcx ├── m34_01_00_00.emevd.dcx ├── m34_01_00_00.msb.dcx ├── m34_01_00_00.talkesdbnd.dcx ├── m35_00_00_00.emevd.dcx ├── m35_00_00_00.msb.dcx ├── m35_00_00_00.talkesdbnd.dcx ├── m37_00_00_00.emevd.dcx ├── m37_00_00_00.msb.dcx ├── m37_00_00_00.talkesdbnd.dcx ├── m38_00_00_00.emevd.dcx ├── m38_00_00_00.msb.dcx ├── m38_00_00_00.talkesdbnd.dcx ├── m39_00_00_00.emevd.dcx ├── m39_00_00_00.msb.dcx ├── m39_00_00_00.talkesdbnd.dcx ├── m40_00_00_00.emevd.dcx ├── m40_00_00_00.msb.dcx ├── m40_00_00_00.talkesdbnd.dcx ├── m41_00_00_00.emevd.dcx ├── m41_00_00_00.msb.dcx ├── m41_00_00_00.talkesdbnd.dcx ├── m45_00_00_00.emevd.dcx ├── m45_00_00_00.msb.dcx ├── m45_00_00_00.talkesdbnd.dcx ├── m50_00_00_00.emevd.dcx ├── m50_00_00_00.msb.dcx ├── m50_00_00_00.talkesdbnd.dcx ├── m51_00_00_00.emevd.dcx ├── m51_00_00_00.msb.dcx ├── m51_00_00_00.talkesdbnd.dcx ├── m51_01_00_00.emevd.dcx ├── m51_01_00_00.msb.dcx ├── m51_01_00_00.talkesdbnd.dcx └── menu_dlc2.msgbnd.dcx ├── Layouts ├── ACTIONBUTTON_PARAM_ST.xml ├── AI_SOUND_PARAM_ST.xml ├── ATK_PARAM_ST.xml ├── ATTACK_ELEMENT_CORRECT_PARAM_ST.xml ├── BEHAVIOR_PARAM_ST.xml ├── BONFIRE_WARP_PARAM_ST.xml ├── BUDGET_PARAM_ST.xml ├── BULLET_CREATE_LIMIT_PARAM_ST.xml ├── BULLET_PARAM_ST.xml ├── CACL_CORRECT_GRAPH_ST.xml ├── CEREMONY_PARAM_ST.xml ├── CHARACTER_INIT_PARAM.xml ├── CHARACTER_LOAD_PARAM_ST.xml ├── CHARMAKEMENUTOP_PARAM_ST.xml ├── CHARMAKEMENU_LISTITEM_PARAM_ST.xml ├── CLEAR_COUNT_CORRECT_PARAM_ST.xml ├── COOL_TIME_PARAM_ST.xml ├── CULT_SETTING_PARAM_ST.xml ├── DECAL_PARAM_ST.xml ├── DIRECTION_CAMERA_PARAM_ST.xml ├── EQUIP_MTRL_SET_PARAM_ST.xml ├── EQUIP_PARAM_ACCESSORY_ST.xml ├── EQUIP_PARAM_GOODS_ST.xml ├── EQUIP_PARAM_PROTECTOR_ST.xml ├── EQUIP_PARAM_WEAPON_ST.xml ├── ESTUS_FLASK_RECOVERY_PARAM_ST.xml ├── FACE_GEN_PARAM_ST.xml ├── FACE_PARAM_ST.xml ├── FACE_RANGE_PARAM_ST.xml ├── FOOT_SFX_PARAM_ST.xml ├── GAME_AREA_PARAM_ST.xml ├── GAME_PROGRESS_PARAM_ST.xml ├── GEMEFFECT_PARAM_ST.xml ├── GEM_CATEGORY_PARAM_ST.xml ├── GEM_DROP_DOPING_PARAM_ST.xml ├── GEM_DROP_MODIFY_PARAM_ST.xml ├── GEM_GEN_PARAM_ST.xml ├── HIT_EFFECT_SE_PARAM_ST.xml ├── HIT_EFFECT_SFX_CONCEPT_PARAM_ST.xml ├── HIT_EFFECT_SFX_PARAM_ST.xml ├── HIT_MTRL_PARAM_ST.xml ├── ITEMLOT_PARAM_ST.xml ├── KNOCKBACK_PARAM_ST.xml ├── KNOWLEDGE_LOADSCREEN_ITEM_PARAM_ST.xml ├── LOAD_BALANCER_DRAW_DIST_SCALE_PARAM_ST.xml ├── LOAD_BALANCER_PARAM_ST.xml ├── LOCK_CAM_PARAM_ST.xml ├── LOD_BANK.xml ├── MAGIC_PARAM_ST.xml ├── MAP_MIMICRY_ESTABLISHMENT_PARAM_ST.xml ├── MENUPROPERTY_LAYOUT.xml ├── MENUPROPERTY_SPEC.xml ├── MENU_OFFSCR_REND_PARAM_ST.xml ├── MENU_PARAM_COLOR_TABLE_ST.xml ├── MENU_VALUE_TABLE_SPEC.xml ├── MODEL_SFX_PARAM_ST.xml ├── MOVE_PARAM_ST.xml ├── MULTI_ESTUS_FLASK_BONUS_PARAM_ST.xml ├── MULTI_PLAY_CORRECTION_PARAM_ST.xml ├── MULTI_SOUL_BONUS_RATE_PARAM_ST.xml ├── NETWORK_AREA_PARAM_ST.xml ├── NETWORK_MSG_PARAM_ST.xml ├── NETWORK_PARAM_ST.xml ├── NPC_AI_ACTION_PARAM_ST.xml ├── NPC_PARAM_ST.xml ├── NPC_THINK_PARAM_ST.xml ├── OBJECT_MATERIAL_SFX_PARAM_ST.xml ├── OBJECT_PARAM_ST.xml ├── OBJ_ACT_PARAM_ST.xml ├── PHANTOM_PARAM_ST.xml ├── PLAY_REGION_PARAM_ST.xml ├── PROTECTOR_GEN_PARAM_ST.xml ├── RAGDOLL_PARAM_ST.xml ├── REINFORCE_PARAM_PROTECTOR_ST.xml ├── REINFORCE_PARAM_WEAPON_ST.xml ├── ROLE_PARAM_ST.xml ├── SE_MATERIAL_CONVERT_PARAM_ST.xml ├── SHOP_LINEUP_PARAM.xml ├── SKELETON_PARAM_ST.xml ├── SP_EFFECT_PARAM_ST.xml ├── SP_EFFECT_VFX_PARAM_ST.xml ├── SWORD_ARTS_PARAM_ST.xml ├── TALK_PARAM_ST.xml ├── THROW_DIRECTION_SFX_PARAM_ST.xml ├── THROW_INFO_BANK.xml ├── TOUGHNESS_PARAM_ST.xml ├── UPPER_ARM_PARAM_ST.xml ├── WEAPON_GEN_PARAM_ST.xml ├── WEP_ABSORP_POS_PARAM_ST.xml ├── WET_ASPECT_PARAM_ST.xml ├── WHITE_SIGN_COOL_TIME_PARAM_ST.xml └── WIND_PARAM_ST.xml ├── Names ├── CharaInitParam.txt ├── EquipParamAccessory.txt ├── EquipParamGoods.txt ├── EquipParamProtector.txt ├── EquipParamWeapon.txt ├── ModelName.txt ├── ShopIds.txt └── ShopQwc.txt ├── events.txt ├── fog.txt └── locations.txt /FogMod/App.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 | -------------------------------------------------------------------------------- /FogMod/EventConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using static SoulsIds.Events; 7 | 8 | namespace FogMod 9 | { 10 | public class EventConfig 11 | { 12 | public List NewEvents { get; set; } 13 | public List Events { get; set; } 14 | 15 | public class NewEvent 16 | { 17 | public int ID { get; set; } 18 | public string Name { get; set; } 19 | public string Comment { get; set; } 20 | public List Commands { get; set; } 21 | } 22 | 23 | public class EventSpec : AbstractEventSpec 24 | { 25 | public List Template { get; set; } 26 | } 27 | 28 | // TODO: after abyss watchers 29 | public class EventTemplate 30 | { 31 | // Fog gate entity id. The edits are for making it permanent and removing traversal. 32 | public string Fog { get; set; } 33 | // Event only manages sfx for fog gate, so is not necessary to do manually 34 | public string FogSfx { get; set; } 35 | // Warp exit id, with the area name plus the warp entity id 36 | public string Warp { get; set; } 37 | // The sfx that is used for the fog gate, for permanently recreating it 38 | public string Sfx { get; set; } 39 | // The flag that is expected to be set going through the fog gate, if SetFlagIf is off 40 | public string SetFlag { get; set; } 41 | // The flag that normally disables going through the fog gate 42 | public string SetFlagIf { get; set; } 43 | // The area for setting the flag 44 | public string SetFlagArea { get; set; } 45 | // Non-null if the warp should be replaced 46 | public string WarpReplace { get; set; } 47 | // A repeatable warp which should be added 48 | public int RepeatWarpObject { get; set; } 49 | // The flag for the repeatable warp being usable (usually after it has triggered once before) 50 | public int RepeatWarpFlag { get; set; } 51 | // If copying this event to another one, the target event id 52 | public int CopyTo { get; set; } 53 | 54 | // What to remove, or 'all' for the entire event initialization 55 | public string Remove { get; set; } 56 | // What to add 57 | public List Add { get; set; } 58 | // What to replace 59 | public string Replace { get; set; } 60 | } 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /FogMod/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Linq; 3 | using System.Runtime.InteropServices; 4 | using System.Windows.Forms; 5 | using static SoulsIds.GameSpec; 6 | 7 | namespace FogMod 8 | { 9 | public static class Program 10 | { 11 | // https://stackoverflow.com/questions/7198639/c-sharp-application-both-gui-and-commandline 12 | [DllImport("kernel32.dll")] 13 | static extern bool AttachConsole(int dwProcessId); 14 | private const int ATTACH_PARENT_PROCESS = -1; 15 | 16 | [STAThread] 17 | static void Main(string[] args) 18 | { 19 | System.Threading.Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.InvariantCulture; 20 | if (args.Length > 0 && !args.Contains("/gui")) 21 | { 22 | AttachConsole(-1); 23 | RandomizerOptions opt = new RandomizerOptions { Seed = new Random().Next() }; 24 | foreach (string arg in args) 25 | { 26 | if (uint.TryParse(arg, out uint s)) 27 | { 28 | opt.Seed = (int)s; 29 | } 30 | else 31 | { 32 | opt[arg] = true; 33 | } 34 | } 35 | FromGame game = args.Contains("ptde") ? FromGame.DS1 : FromGame.DS1R; 36 | game = FromGame.DS3; 37 | opt.Game = game; 38 | string gameDir = ForGame(game).GameDir; 39 | if (game == FromGame.DS3) 40 | { 41 | new Randomizer().Randomize(opt, game, opt["mergemods"] ? gameDir + @"\randomizer" : null, gameDir + @"\fog"); 42 | } 43 | else 44 | { 45 | new Randomizer().Randomize(opt, game, gameDir, gameDir); 46 | } 47 | } 48 | else 49 | { 50 | #if DEBUG 51 | AttachConsole(-1); 52 | #endif 53 | Application.EnableVisualStyles(); 54 | Application.SetCompatibleTextRenderingDefault(false); 55 | // Application.Run(new MainForm()); 56 | Application.Run(new MainForm3()); 57 | } 58 | } 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /FogMod/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("FogMod")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("FogMod")] 13 | [assembly: AssemblyCopyright("Copyright © 2019")] 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("e09baee2-7c60-4d95-85f3-d0620713927c")] 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 | -------------------------------------------------------------------------------- /FogMod/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 FogMod.Properties 12 | { 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", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources 26 | { 27 | 28 | private static global::System.Resources.ResourceManager resourceMan; 29 | 30 | private static global::System.Globalization.CultureInfo resourceCulture; 31 | 32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 33 | internal Resources() 34 | { 35 | } 36 | 37 | /// 38 | /// Returns the cached ResourceManager instance used by this class. 39 | /// 40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 41 | internal static global::System.Resources.ResourceManager ResourceManager 42 | { 43 | get 44 | { 45 | if ((resourceMan == null)) 46 | { 47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("FogMod.Properties.Resources", typeof(Resources).Assembly); 48 | resourceMan = temp; 49 | } 50 | return resourceMan; 51 | } 52 | } 53 | 54 | /// 55 | /// Overrides the current thread's CurrentUICulture property for all 56 | /// resource lookups using this strongly typed resource class. 57 | /// 58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 59 | internal static global::System.Globalization.CultureInfo Culture 60 | { 61 | get 62 | { 63 | return resourceCulture; 64 | } 65 | set 66 | { 67 | resourceCulture = value; 68 | } 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /FogMod/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 FogMod.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.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 | [global::System.Configuration.UserScopedSettingAttribute()] 27 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 28 | [global::System.Configuration.DefaultSettingValueAttribute("")] 29 | public string Options { 30 | get { 31 | return ((string)(this["Options"])); 32 | } 33 | set { 34 | this["Options"] = value; 35 | } 36 | } 37 | 38 | [global::System.Configuration.UserScopedSettingAttribute()] 39 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 40 | [global::System.Configuration.DefaultSettingValueAttribute("")] 41 | public string Exe { 42 | get { 43 | return ((string)(this["Exe"])); 44 | } 45 | set { 46 | this["Exe"] = value; 47 | } 48 | } 49 | 50 | [global::System.Configuration.UserScopedSettingAttribute()] 51 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 52 | [global::System.Configuration.DefaultSettingValueAttribute("")] 53 | public string Language { 54 | get { 55 | return ((string)(this["Language"])); 56 | } 57 | set { 58 | this["Language"] = value; 59 | } 60 | } 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /FogMod/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /FogMod/Randomizer.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Linq; 3 | using System.Collections.Generic; 4 | using System.IO; 5 | using SoulsIds; 6 | using YamlDotNet.Serialization; 7 | using static SoulsIds.GameSpec; 8 | 9 | namespace FogMod 10 | { 11 | public class Randomizer 12 | { 13 | public ItemReader.Result Randomize(RandomizerOptions opt, FromGame game, string gameDir, string outDir) 14 | { 15 | Console.WriteLine($"Seed: {opt.DisplaySeed}. Options: {string.Join(" ", opt.GetEnabled())}"); 16 | 17 | string file = game == FromGame.DS3 ? @"fogdist\fog.txt" : @"dist\fog.txt"; 18 | 19 | IDeserializer deserializer = new DeserializerBuilder().Build(); 20 | AnnotationData ann; 21 | using (var f = File.OpenText(file)) ann = deserializer.Deserialize(f); 22 | ann.SetGame(game); 23 | 24 | Events events = null; 25 | 26 | if (game == FromGame.DS3) 27 | { 28 | using (var f = File.OpenText(@"fogdist\locations.txt")) ann.Locations = deserializer.Deserialize(f); 29 | events = new Events(@"fogdist\Base\ds3-common.emedf.json"); 30 | } 31 | 32 | Graph g = new Graph(); 33 | g.Construct(opt, ann); 34 | 35 | ItemReader.Result item = new ItemReader().FindItems(opt, ann, g, events, gameDir, game); 36 | Console.WriteLine(item.Randomized ? $"Key item hash: {item.ItemHash}" : "No key items randomized"); 37 | Console.WriteLine(); 38 | 39 | new GraphConnector().Connect(opt, g, ann); 40 | 41 | // Actual dryruns stop short of writing modified files 42 | if (opt["bonedryrun"]) return item; 43 | 44 | Console.WriteLine(); 45 | if (game == FromGame.DS3) 46 | { 47 | EventConfig eventConfig; 48 | using (var f = File.OpenText(@"fogdist\events.txt")) eventConfig = deserializer.Deserialize(f); 49 | 50 | if (opt["eventsyaml"] || opt["events"]) 51 | { 52 | new GenerateConfig().WriteEventConfig(ann, events, opt); 53 | return item; 54 | } 55 | new GameDataWriter3().Write(opt, ann, g, gameDir, outDir, events, eventConfig); 56 | } 57 | else 58 | { 59 | if (opt["dryrun"]) 60 | { 61 | Console.WriteLine("Success (dry run)"); 62 | return item; 63 | } 64 | new GameDataWriter().Write(opt, ann, g, gameDir, game); 65 | } 66 | return item; 67 | } 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /FogMod/RandomizerOptions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using static SoulsIds.GameSpec; 5 | 6 | namespace FogMod 7 | { 8 | public class RandomizerOptions 9 | { 10 | private SortedDictionary opt = new SortedDictionary { { "v5", true } }; 11 | 12 | // TODO: Make this work 13 | public RandomizerOptions Copy() 14 | { 15 | return new RandomizerOptions 16 | { 17 | opt = new SortedDictionary(opt), 18 | Seed = Seed, 19 | Game = Game, 20 | }; 21 | } 22 | 23 | public bool this[string name] 24 | { 25 | get { return opt.ContainsKey(name) ? opt[name] : false; } 26 | set { opt[name] = value; } 27 | } 28 | public string Language = "ENGLISH"; 29 | public int Seed { get; set; } 30 | public FromGame Game { get; set; } 31 | public uint DisplaySeed => (uint)Seed; 32 | public SortedSet GetEnabled() 33 | { 34 | return new SortedSet(opt.Where(e => e.Value).Select(e => e.Key)); 35 | } 36 | public override string ToString() => $"{string.Join(" ", GetEnabled())} {DisplaySeed}"; 37 | public string ConfigHash() => (JavaStringHash($"{string.Join(" ", GetEnabled())}") % 99999).ToString().PadLeft(5, '0'); 38 | 39 | public static uint JavaStringHash(string s) 40 | { 41 | unchecked 42 | { 43 | uint hash = 0; 44 | foreach (char c in s) 45 | { 46 | hash = hash * 31 + c; 47 | } 48 | return hash; 49 | } 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /FogMod/Util.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace FogMod 5 | { 6 | public class Util 7 | { 8 | public static void AddMulti(IDictionary> dict, K key, V value) 9 | { 10 | if (!dict.ContainsKey(key)) dict[key] = new List(); 11 | dict[key].Add(value); 12 | } 13 | public static void AddMulti(IDictionary> dict, K key, IEnumerable values) 14 | { 15 | if (!dict.ContainsKey(key)) dict[key] = new List(); 16 | dict[key].AddRange(values); 17 | } 18 | public static void AddMulti(IDictionary> dict, K key, V value) 19 | { 20 | if (!dict.ContainsKey(key)) dict[key] = new HashSet(); 21 | dict[key].Add(value); 22 | } 23 | public static void AddMulti(IDictionary> dict, K key, IEnumerable values) 24 | { 25 | if (!dict.ContainsKey(key)) dict[key] = new HashSet(); 26 | dict[key].UnionWith(values); 27 | } 28 | public static void AddMulti(IDictionary> dict, K key, V value) 29 | { 30 | if (!dict.ContainsKey(key)) dict[key] = new SortedSet(); 31 | dict[key].Add(value); 32 | } 33 | public static void Shuffle(Random random, IList list) 34 | { 35 | // Fisher Yates shuffle - O(n) 36 | for (var i = 0; i < list.Count - 1; i++) 37 | { 38 | int j = random.Next(i, list.Count); 39 | T tmp = list[i]; 40 | list[i] = list[j]; 41 | list[j] = tmp; 42 | } 43 | } 44 | public static void CopyAll(T source, T target) 45 | { 46 | var type = typeof(T); 47 | foreach (System.Reflection.PropertyInfo sourceProperty in type.GetProperties()) 48 | { 49 | System.Reflection.PropertyInfo targetProperty = type.GetProperty(sourceProperty.Name); 50 | if (sourceProperty.CanWrite) 51 | { 52 | targetProperty.SetValue(target, sourceProperty.GetValue(source, null), null); 53 | } 54 | else if (sourceProperty.PropertyType.IsArray) 55 | { 56 | Array arr = (Array)sourceProperty.GetValue(source); 57 | Array.Copy(arr, (Array)targetProperty.GetValue(target), arr.Length); 58 | } 59 | else 60 | { 61 | // Sanity check 62 | // Console.WriteLine($"Can't copy {type.Name} {sourceProperty.Name} of type {sourceProperty.PropertyType}"); 63 | } 64 | } 65 | } 66 | public static int SearchBytes(byte[] array, byte[] candidate) 67 | { 68 | // byte[] candidate = BitConverter.GetBytes(num); 69 | for (int i = 0; i < array.Length; i++) 70 | { 71 | if (IsMatch(array, i, candidate)) return i; 72 | } 73 | return -1; 74 | } 75 | private static bool IsMatch(byte[] array, int position, byte[] candidate) 76 | { 77 | if (candidate.Length > (array.Length - position)) 78 | return false; 79 | 80 | for (int i = 0; i < candidate.Length; i++) 81 | if (array[position + i] != candidate[i]) 82 | return false; 83 | 84 | return true; 85 | } 86 | } 87 | } 88 | -------------------------------------------------------------------------------- /FogMod/foggate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/FogMod/foggate.ico -------------------------------------------------------------------------------- /FogMod/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /dist/DS1/Layouts/GAME_AREA_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | bonusSoul_single 5 | u32 6 | 0 7 | 8 | 9 | bonusSoul_multi 10 | u32 11 | 0 12 | 13 | 14 | humanityPointCountFlagIdTop 15 | s32 16 | 0 17 | 18 | 19 | humanityDropPoint1 20 | u16 21 | 0 22 | 23 | 24 | humanityDropPoint2 25 | u16 26 | 0 27 | 28 | 29 | humanityDropPoint3 30 | u16 31 | 0 32 | 33 | 34 | humanityDropPoint4 35 | u16 36 | 0 37 | 38 | 39 | humanityDropPoint5 40 | u16 41 | 0 42 | 43 | 44 | humanityDropPoint6 45 | u16 46 | 0 47 | 48 | 49 | humanityDropPoint7 50 | u16 51 | 0 52 | 53 | 54 | humanityDropPoint8 55 | u16 56 | 0 57 | 58 | 59 | humanityDropPoint9 60 | u16 61 | 0 62 | 63 | 64 | humanityDropPoint10 65 | u16 66 | 0 67 | 68 | -------------------------------------------------------------------------------- /dist/DS1/event/common.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/common.emevd -------------------------------------------------------------------------------- /dist/DS1/event/m10_00_00_00.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/m10_00_00_00.emevd -------------------------------------------------------------------------------- /dist/DS1/event/m10_01_00_00.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/m10_01_00_00.emevd -------------------------------------------------------------------------------- /dist/DS1/event/m10_02_00_00.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/m10_02_00_00.emevd -------------------------------------------------------------------------------- /dist/DS1/event/m11_00_00_00.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/m11_00_00_00.emevd -------------------------------------------------------------------------------- /dist/DS1/event/m12_00_00_00.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/m12_00_00_00.emevd -------------------------------------------------------------------------------- /dist/DS1/event/m12_01_00_00.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/m12_01_00_00.emevd -------------------------------------------------------------------------------- /dist/DS1/event/m13_00_00_00.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/m13_00_00_00.emevd -------------------------------------------------------------------------------- /dist/DS1/event/m13_01_00_00.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/m13_01_00_00.emevd -------------------------------------------------------------------------------- /dist/DS1/event/m13_02_00_00.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/m13_02_00_00.emevd -------------------------------------------------------------------------------- /dist/DS1/event/m14_00_00_00.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/m14_00_00_00.emevd -------------------------------------------------------------------------------- /dist/DS1/event/m14_01_00_00.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/m14_01_00_00.emevd -------------------------------------------------------------------------------- /dist/DS1/event/m15_00_00_00.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/m15_00_00_00.emevd -------------------------------------------------------------------------------- /dist/DS1/event/m15_01_00_00.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/m15_01_00_00.emevd -------------------------------------------------------------------------------- /dist/DS1/event/m16_00_00_00.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/m16_00_00_00.emevd -------------------------------------------------------------------------------- /dist/DS1/event/m17_00_00_00.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/m17_00_00_00.emevd -------------------------------------------------------------------------------- /dist/DS1/event/m18_00_00_00.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/m18_00_00_00.emevd -------------------------------------------------------------------------------- /dist/DS1/event/m18_01_00_00.emevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/event/m18_01_00_00.emevd -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m10_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m10_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m10_01_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m10_01_00_00.msb -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m10_02_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m10_02_00_00.msb -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m11_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m11_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m12_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m12_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m12_00_00_01.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m12_00_00_01.msb -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m12_01_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m12_01_00_00.msb -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m13_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m13_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m13_01_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m13_01_00_00.msb -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m13_02_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m13_02_00_00.msb -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m14_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m14_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m14_01_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m14_01_00_00.msb -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m15_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m15_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m15_01_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m15_01_00_00.msb -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m16_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m16_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m17_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m17_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m18_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m18_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1/map/MapStudio/m18_01_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/map/MapStudio/m18_01_00_00.msb -------------------------------------------------------------------------------- /dist/DS1/msg/ENGLISH/menu.msgbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/msg/ENGLISH/menu.msgbnd -------------------------------------------------------------------------------- /dist/DS1/param/GameParam/GameParam.parambnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/param/GameParam/GameParam.parambnd -------------------------------------------------------------------------------- /dist/DS1/script/talk/m10_00_00_00.talkesdbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/script/talk/m10_00_00_00.talkesdbnd -------------------------------------------------------------------------------- /dist/DS1/script/talk/m10_01_00_00.talkesdbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/script/talk/m10_01_00_00.talkesdbnd -------------------------------------------------------------------------------- /dist/DS1/script/talk/m10_02_00_00.talkesdbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/script/talk/m10_02_00_00.talkesdbnd -------------------------------------------------------------------------------- /dist/DS1/script/talk/m11_00_00_00.talkesdbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/script/talk/m11_00_00_00.talkesdbnd -------------------------------------------------------------------------------- /dist/DS1/script/talk/m12_00_00_00.talkesdbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/script/talk/m12_00_00_00.talkesdbnd -------------------------------------------------------------------------------- /dist/DS1/script/talk/m12_01_00_00.talkesdbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/script/talk/m12_01_00_00.talkesdbnd -------------------------------------------------------------------------------- /dist/DS1/script/talk/m13_00_00_00.talkesdbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/script/talk/m13_00_00_00.talkesdbnd -------------------------------------------------------------------------------- /dist/DS1/script/talk/m13_01_00_00.talkesdbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/script/talk/m13_01_00_00.talkesdbnd -------------------------------------------------------------------------------- /dist/DS1/script/talk/m13_02_00_00.talkesdbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/script/talk/m13_02_00_00.talkesdbnd -------------------------------------------------------------------------------- /dist/DS1/script/talk/m14_00_00_00.talkesdbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/script/talk/m14_00_00_00.talkesdbnd -------------------------------------------------------------------------------- /dist/DS1/script/talk/m14_01_00_00.talkesdbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/script/talk/m14_01_00_00.talkesdbnd -------------------------------------------------------------------------------- /dist/DS1/script/talk/m15_00_00_00.talkesdbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/script/talk/m15_00_00_00.talkesdbnd -------------------------------------------------------------------------------- /dist/DS1/script/talk/m15_01_00_00.talkesdbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/script/talk/m15_01_00_00.talkesdbnd -------------------------------------------------------------------------------- /dist/DS1/script/talk/m16_00_00_00.talkesdbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/script/talk/m16_00_00_00.talkesdbnd -------------------------------------------------------------------------------- /dist/DS1/script/talk/m17_00_00_00.talkesdbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/script/talk/m17_00_00_00.talkesdbnd -------------------------------------------------------------------------------- /dist/DS1/script/talk/m18_00_00_00.talkesdbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/script/talk/m18_00_00_00.talkesdbnd -------------------------------------------------------------------------------- /dist/DS1/script/talk/m18_01_00_00.talkesdbnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1/script/talk/m18_01_00_00.talkesdbnd -------------------------------------------------------------------------------- /dist/DS1R/Layouts/GAME_AREA_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | bonusSoul_single 5 | u32 6 | 0 7 | 8 | 9 | bonusSoul_multi 10 | u32 11 | 0 12 | 13 | 14 | humanityPointCountFlagIdTop 15 | s32 16 | 0 17 | 18 | 19 | humanityDropPoint1 20 | u16 21 | 0 22 | 23 | 24 | humanityDropPoint2 25 | u16 26 | 0 27 | 28 | 29 | humanityDropPoint3 30 | u16 31 | 0 32 | 33 | 34 | humanityDropPoint4 35 | u16 36 | 0 37 | 38 | 39 | humanityDropPoint5 40 | u16 41 | 0 42 | 43 | 44 | humanityDropPoint6 45 | u16 46 | 0 47 | 48 | 49 | humanityDropPoint7 50 | u16 51 | 0 52 | 53 | 54 | humanityDropPoint8 55 | u16 56 | 0 57 | 58 | 59 | humanityDropPoint9 60 | u16 61 | 0 62 | 63 | 64 | humanityDropPoint10 65 | u16 66 | 0 67 | 68 | -------------------------------------------------------------------------------- /dist/DS1R/event/common.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/common.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/event/m10_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/m10_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/event/m10_01_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/m10_01_00_00.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/event/m10_02_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/m10_02_00_00.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/event/m11_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/m11_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/event/m12_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/m12_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/event/m12_01_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/m12_01_00_00.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/event/m13_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/m13_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/event/m13_01_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/m13_01_00_00.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/event/m13_02_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/m13_02_00_00.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/event/m14_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/m14_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/event/m14_01_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/m14_01_00_00.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/event/m15_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/m15_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/event/m15_01_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/m15_01_00_00.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/event/m16_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/m16_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/event/m17_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/m17_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/event/m18_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/m18_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/event/m18_01_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/event/m18_01_00_00.emevd.dcx -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m10_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m10_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m10_01_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m10_01_00_00.msb -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m10_02_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m10_02_00_00.msb -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m11_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m11_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m12_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m12_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m12_00_00_01.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m12_00_00_01.msb -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m12_01_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m12_01_00_00.msb -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m13_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m13_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m13_01_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m13_01_00_00.msb -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m13_02_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m13_02_00_00.msb -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m14_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m14_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m14_01_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m14_01_00_00.msb -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m15_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m15_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m15_01_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m15_01_00_00.msb -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m16_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m16_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m17_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m17_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m18_00_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m18_00_00_00.msb -------------------------------------------------------------------------------- /dist/DS1R/map/MapStudio/m18_01_00_00.msb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/map/MapStudio/m18_01_00_00.msb -------------------------------------------------------------------------------- /dist/DS1R/msg/ENGLISH/menu.msgbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/msg/ENGLISH/menu.msgbnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/param/GameParam/GameParam.parambnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/param/GameParam/GameParam.parambnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/script/talk/m10_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/script/talk/m10_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/script/talk/m10_01_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/script/talk/m10_01_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/script/talk/m10_02_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/script/talk/m10_02_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/script/talk/m11_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/script/talk/m11_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/script/talk/m12_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/script/talk/m12_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/script/talk/m12_01_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/script/talk/m12_01_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/script/talk/m13_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/script/talk/m13_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/script/talk/m13_01_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/script/talk/m13_01_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/script/talk/m13_02_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/script/talk/m13_02_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/script/talk/m14_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/script/talk/m14_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/script/talk/m14_01_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/script/talk/m14_01_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/script/talk/m15_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/script/talk/m15_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/script/talk/m15_01_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/script/talk/m15_01_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/script/talk/m16_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/script/talk/m16_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/script/talk/m17_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/script/talk/m17_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/script/talk/m18_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/script/talk/m18_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /dist/DS1R/script/talk/m18_01_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/dist/DS1R/script/talk/m18_01_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /dist/Names/CharaInitParam.txt: -------------------------------------------------------------------------------- 1 | 6000 Solaire 2 | 6010 Darkmoon Knight 3 | 6020 Oscar of Astora 4 | 6030 Big Hat Logan 5 | 6040 Griggs of Vinheim 6 | 6050 Dusk of Oolacile 7 | 6070 Rhea of Thorolund 8 | 6071 Hollowed Rhea 9 | 6080 Petrus 10 | 6090 Vince 11 | 6100 Nico 12 | 6130 Laurentius 13 | 6170 Quelana 14 | 6180 Ingward 15 | 6220 Rickert of Vinheim 16 | 6250 Crestfallen Merchant 17 | 6260 Domhnall of Zena 18 | 6270 Crestfallen Warrior 19 | 6271 Crestfallen Warrior (Hollow) 20 | 6280 Siegmeyer of Catarina 21 | 6290 Sieglinde of Catarina 22 | 6300 Lautrec of Carim 23 | 6310 Shiva of the East 24 | 6320 Patches 25 | 6370 Oswald of Carim 26 | 6390 Black Iron Tarkus 27 | 6420 Shiva's Bodyguard 28 | 6490 Lautrec's Guard 29 | 6500 Lautrec's Guard 30 | 6510 Black Iron Tarkus 31 | 6511 Black Iron Tarkus (invasion?) 32 | 6520 Witch Beatrice 33 | 6530 Maneater Mildred 34 | 6531 Maneater Mildred (invasion) 35 | 6540 Solaire 36 | 6550 Paladin Leeroy 37 | 6551 Paladin Leeroy (invasion) 38 | 6560 Kirk 39 | 6570 Xanthous King Jeremiah 40 | 6580 Havel 41 | 6590 Lautrec of Carim 42 | 6600 Undead Prince Ricard 43 | 6610 Crystal General 44 | 6640 Darkmoon Soldier 45 | 6650 Darkmoon Soldier 46 | 6740 Ciaran 47 | 6801 Bandit 48 | 6802 Bandit 49 | 6803 Bandit 50 | 6804 Bandit 51 | 6805 Bandit 52 | 6806 Bandit -------------------------------------------------------------------------------- /dist/Names/ModelName.txt: -------------------------------------------------------------------------------- 1 | c0000 Human 2 | c1200 Rat 3 | c1201 Small Rat 4 | c1202 Large Rat 5 | c1203 Snow Rat 6 | c2060 Infested Ghoul 7 | c2230 Stray Demon 8 | c2231 Demon Firesage 9 | c2232 Asylum Demon 10 | c2240 Capra Demon 11 | c2250 Taurus Demon 12 | c2260 Batwing Demon 13 | c2270 Mushroom Parent 14 | c2280 Mushroom Child 15 | c2290 Prototype Chained Prisoner 16 | c2300 Titanite Demon 17 | c2310 Crow Demon 18 | c2320 Iron Golem 19 | c2330 Demonic Foliage 20 | c2360 Smough 21 | c2370 Channeler 22 | c2380 Giant Stone Knight 23 | c2390 Darkwraith 24 | c2400 Painting Guardian 25 | c2410 Silver Knight 26 | c2430 Demonic Statue 27 | c2500 Hollow 28 | c2510 Undead Merchant 29 | c2520 Undead Assassin 30 | c2530 Blowdart Sniper 31 | c2540 Armored Hollow 32 | c2550 Undead Soldier 33 | c2560 Balder Knight 34 | c2570 Heavy Knight 35 | c2590 Prototype Marvelous Chester 36 | c2591 Prototype Marvelous Chester 37 | c2600 Prototype Young Beatrice 38 | c2640 Andre of Astora 39 | c2650 Necromancer 40 | c2660 Butcher 41 | c2670 Ghost (Male) 42 | c2680 Ghost (Female) 43 | c2690 Serpent Soldier 44 | c2700 Serpent Mage 45 | c2710 Crystal Golem 46 | c2711 Golden Crystal Golem 47 | c2730 Crossbreed Priscilla 48 | c2731 Priscilla's Tail 49 | c2750 Anastacia of Astora 50 | c2780 Mimic 51 | c2790 Black Knight 52 | c2791 Black Knight (Kiln Ghost) 53 | c2792 Black Knight (Sword) 54 | c2793 Black Knight (Greatsword) 55 | c2794 Black Knight (Axe) 56 | c2795 Black Knight (Halberd) 57 | c2800 Undead Crystal Soldier 58 | c2810 Infested Barbarian (Club) 59 | c2811 Infested Barbarian (Boulder) 60 | c2820 Prototype Claw Hollow 61 | c2830 Phalanx 62 | c2840 Engorged Zombie 63 | c2860 Giant 64 | c2870 Sentinel or Royal Sentinel 65 | c2900 Skeleton 66 | c2910 Giant Skeleton 67 | c2920 Vamos 68 | c2930 Bonewheel Skeleton 69 | c2940 Skeleton Baby 70 | c2950 Skeleton Beast 71 | c2960 Bone Tower 72 | c3090 Giant Mosquito 73 | c3110 Demon's Souls Crystal Lizard 74 | c3200 Slime 75 | c3210 Egg Carrier 76 | c3220 Vile Maggot 77 | c3230 Moonlight Butterfly 78 | c3240 Chaos Eater 79 | c3250 Man-Eater Shell 80 | c3270 Basilisk 81 | c3290 Brain Bug 82 | c3300 Crystal Lizard 83 | c3320 Pinwheel 84 | c3330 Pisaca 85 | c3340 Undead Attack Dog 86 | c3341 Flaming Attack Dog 87 | c3350 Possessed Tree 88 | c3370 Tree Lizard 89 | c3380 Giant Leech 90 | c3390 Burrowing Rockworm 91 | c3400 Crag-Spider 92 | c3410 Frog-Ray 93 | c3420 Undead Dragon 94 | c3421 Bounding Demon 95 | c3422 Undead Dragon's Wing 96 | c3430 Hellkite Drake 97 | c3431 Hellkite Drake's Tail 98 | c3440 Prototype Kalameet 99 | c3450 Everlasting Dragon 100 | c3451 Everlasting Dragon's Tail 101 | c3460 Armored Tusk 102 | c3461 Armored Tusk (Reinforced) 103 | c3470 Prototype Sanctuary Guardian 104 | c3471 Sanctuary Guardian 105 | c3472 Sanctuary Guardian's Tail 106 | c3480 Chaos Bug 107 | c3490 Good Vagrant 108 | c3491 Evil Vagrant 109 | c3500 Mass of Souls 110 | c3501 Wisp (exploding skull) 111 | c3510 Asylum Transport Crow 112 | c3511 Crow (cutscene version) 113 | c3520 Drake 114 | c3530 Hydra 115 | c3531 Hydra Head 116 | c4090 Marvelous Chester 117 | c4091 Alternate Chester? 118 | c4095 Alternate Chester? 119 | c4100 Artorias 120 | c4110 Hawkeye Gough 121 | c4120 Stone Guardian 122 | c4130 Scarecrow 123 | c4140 Elizabeth 124 | c4150 Bloathead 125 | c4160 Bloathead Sorcerer 126 | c4170 Humanity Phantom (small) 127 | c4171 Humanity Phantom (medium) 128 | c4172 Humanity Phantom (large) 129 | c4180 Chained Prisoner 130 | c4190 Attack Dog (DLC) 131 | c4500 Manus 132 | c4510 Black Dragon Kalameet 133 | c4511 Kalameet's Tail 134 | c4520 Young Sif 135 | c4530 Young Alvina 136 | c4531 Young Alvina 137 | c5200 Centipede Demon 138 | c5201 Centipede Demon's Arm 139 | c5202 Centipede Demon's Tail 140 | c5210 Sif 141 | c5220 Gravelord Nito 142 | c5230 Bed of Chaos 143 | c5231 Prototype/Alternate Bed of Chaos 144 | c5240 Parasitic Wall Hugger 145 | c5250 Ceaseless Discharge 146 | c5260 Gaping Dragon 147 | c5261 Gaping Dragon's Tail 148 | c5270 Ornstein 149 | c5271 Super Ornstein 150 | c5280 Quelaag 151 | c5290 Seath 152 | c5291 Seath's Tail 153 | c5300 Prototype Undead King Jar Eel 154 | c5310 Gwynevere 155 | c5320 Gwyndolin 156 | c5330 Frampt / Kaathe 157 | c5340 The Fair Lady 158 | c5350 Bell Gargoyles 159 | c5351 Lightning Gargoyles 160 | c5352 Gargoyle Tail 161 | c5353 Gaygolye Tail 162 | c5360 Great Feline 163 | c5361 Alvina 164 | c5362 Alvina 165 | c5370 Gwyn 166 | c5390 Four Kings 167 | c5400 Bed of Chaos Arm 168 | c5401 Bed of Chaos Worm -------------------------------------------------------------------------------- /fogdist/Base/Data0.bdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/Data0.bdt -------------------------------------------------------------------------------- /fogdist/Base/common.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/common.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/common_func.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/common_func.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m30_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m30_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m30_00_00_00.msb.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m30_00_00_00.msb.dcx -------------------------------------------------------------------------------- /fogdist/Base/m30_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m30_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m30_01_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m30_01_00_00.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m30_01_00_00.msb.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m30_01_00_00.msb.dcx -------------------------------------------------------------------------------- /fogdist/Base/m30_01_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m30_01_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m31_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m31_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m31_00_00_00.msb.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m31_00_00_00.msb.dcx -------------------------------------------------------------------------------- /fogdist/Base/m31_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m31_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m32_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m32_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m32_00_00_00.msb.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m32_00_00_00.msb.dcx -------------------------------------------------------------------------------- /fogdist/Base/m32_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m32_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m33_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m33_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m33_00_00_00.msb.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m33_00_00_00.msb.dcx -------------------------------------------------------------------------------- /fogdist/Base/m33_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m33_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m34_01_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m34_01_00_00.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m34_01_00_00.msb.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m34_01_00_00.msb.dcx -------------------------------------------------------------------------------- /fogdist/Base/m34_01_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m34_01_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m35_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m35_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m35_00_00_00.msb.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m35_00_00_00.msb.dcx -------------------------------------------------------------------------------- /fogdist/Base/m35_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m35_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m37_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m37_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m37_00_00_00.msb.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m37_00_00_00.msb.dcx -------------------------------------------------------------------------------- /fogdist/Base/m37_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m37_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m38_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m38_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m38_00_00_00.msb.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m38_00_00_00.msb.dcx -------------------------------------------------------------------------------- /fogdist/Base/m38_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m38_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m39_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m39_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m39_00_00_00.msb.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m39_00_00_00.msb.dcx -------------------------------------------------------------------------------- /fogdist/Base/m39_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m39_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m40_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m40_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m40_00_00_00.msb.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m40_00_00_00.msb.dcx -------------------------------------------------------------------------------- /fogdist/Base/m40_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m40_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m41_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m41_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m41_00_00_00.msb.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m41_00_00_00.msb.dcx -------------------------------------------------------------------------------- /fogdist/Base/m41_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m41_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m45_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m45_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m45_00_00_00.msb.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m45_00_00_00.msb.dcx -------------------------------------------------------------------------------- /fogdist/Base/m45_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m45_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m50_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m50_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m50_00_00_00.msb.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m50_00_00_00.msb.dcx -------------------------------------------------------------------------------- /fogdist/Base/m50_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m50_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m51_00_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m51_00_00_00.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m51_00_00_00.msb.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m51_00_00_00.msb.dcx -------------------------------------------------------------------------------- /fogdist/Base/m51_00_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m51_00_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m51_01_00_00.emevd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m51_01_00_00.emevd.dcx -------------------------------------------------------------------------------- /fogdist/Base/m51_01_00_00.msb.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m51_01_00_00.msb.dcx -------------------------------------------------------------------------------- /fogdist/Base/m51_01_00_00.talkesdbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/m51_01_00_00.talkesdbnd.dcx -------------------------------------------------------------------------------- /fogdist/Base/menu_dlc2.msgbnd.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefifthmatt/FogMod/28711c3f8b1f7f8c1f329ef9a7f4d9c1e55ce526/fogdist/Base/menu_dlc2.msgbnd.dcx -------------------------------------------------------------------------------- /fogdist/Layouts/ACTIONBUTTON_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | regionType 5 | u8 6 | 0 7 | 8 | 9 | pad1 10 | dummy8 11 | 3 12 | 13 | 14 | dummyPoly1 15 | s32 16 | -1 17 | 18 | 19 | dummyPoly2 20 | s32 21 | -1 22 | 23 | 24 | Radius 25 | f32 26 | 1.5 27 | 28 | 29 | Angle 30 | s32 31 | 180 32 | 33 | 34 | depth 35 | f32 36 | 0 37 | 38 | 39 | width 40 | f32 41 | 0 42 | 43 | 44 | height 45 | f32 46 | 1 47 | 48 | 49 | baseHeightOffset 50 | f32 51 | -0.25 52 | 53 | 54 | angleCheckType 55 | u8 56 | 0 57 | 58 | 59 | pad2 60 | dummy8 61 | 3 62 | 63 | 64 | AllowAngle 65 | s32 66 | 90 67 | 68 | 69 | textBoxType 70 | u8 71 | 0 72 | 73 | 74 | pad3 75 | dummy8 76 | 3 77 | 78 | 79 | textId 80 | s32 81 | 10010403 82 | 83 | 84 | InvalidFlag 85 | s32 86 | -1 87 | 88 | 89 | grayoutFlag 90 | s32 91 | -1 92 | 93 | 94 | priority 95 | s32 96 | 3 97 | 98 | 99 | execInvalidTime 100 | f32 101 | 3 102 | 103 | 104 | execButtonCircle 105 | u8 106 | 1 107 | 108 | 109 | pad4 110 | dummy8 111 | 3 112 | 113 | -------------------------------------------------------------------------------- /fogdist/Layouts/AI_SOUND_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Radius 5 | f32 6 | 5 7 | 8 | 9 | lifeFrame 10 | f32 11 | 1 12 | 13 | 14 | bSpEffectEnable [ON_OFF] 15 | u8 16 | 0 17 | 18 | 19 | Type [AI_SOUND_RATE_TYPE] 20 | u8 21 | 0 22 | 23 | 24 | fakeTargetType [AI_SOUND_FAKE_TARGET_TYPE] 25 | u8 26 | 1 27 | 28 | 29 | InterestCategory 30 | u8 31 | 0 32 | 33 | 34 | UseHitDamageTeam [ON_OFF] 35 | u8 36 | 0 37 | 38 | 39 | pad 40 | dummy8 41 | 19 42 | 43 | -------------------------------------------------------------------------------- /fogdist/Layouts/BEHAVIOR_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | variationId 5 | s32 6 | 0 7 | 8 | 9 | behaviorJudgeId 10 | s32 11 | 0 12 | 13 | 14 | ezStateBehaviorType_old 15 | u8 16 | 1 17 | 18 | 19 | refType 20 | u8 21 | 0 22 | 23 | 24 | pad1 25 | dummy8 26 | 2 27 | 28 | 29 | refId 30 | s32 31 | 200 32 | 33 | 34 | sfxVariationId 35 | s32 36 | 0 37 | 38 | 39 | stamina 40 | s32 41 | 0 42 | 43 | 44 | mp 45 | s32 46 | 0 47 | 48 | 49 | category 50 | u8 51 | 11 52 | 53 | 54 | heroPoint 55 | u8 56 | 0 57 | 58 | 59 | pad2 60 | dummy8 61 | 2 62 | 63 | -------------------------------------------------------------------------------- /fogdist/Layouts/BONFIRE_WARP_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | LocationEventId 5 | s32 6 | 14000000 7 | 8 | 9 | WarpEventId 10 | s32 11 | 4001950 12 | 13 | 14 | BonfireNameId 15 | s32 16 | 211210 17 | 18 | 19 | DescriptionTextId 20 | s32 21 | -1 22 | 23 | 24 | PictureId 25 | s32 26 | 10011 27 | 28 | 29 | ListId 30 | u8 31 | 3 32 | 33 | 34 | IsDisableQuickwarp 35 | u8 36 | 0 37 | 38 | 39 | CeremonyId 40 | s16 41 | -1 42 | 43 | 44 | onlineAreaId 45 | s32 46 | 0 47 | 48 | 49 | pad1 50 | dummy8 51 | 36 52 | 53 | -------------------------------------------------------------------------------- /fogdist/Layouts/BUDGET_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | MemoryBudget0 5 | f32 6 | 3000 7 | 8 | 9 | MemoryBudget1 10 | f32 11 | 340 12 | 13 | 14 | MemoryBudget2 15 | f32 16 | 500 17 | 18 | 19 | MemoryBudget3 20 | f32 21 | 980 22 | 23 | 24 | MemoryBudget4 25 | f32 26 | 220 27 | 28 | 29 | MemoryBudget5 30 | f32 31 | 150 32 | 33 | 34 | MemoryBudget6 35 | f32 36 | 150 37 | 38 | 39 | MemoryBudget7 40 | f32 41 | 160 42 | 43 | 44 | MemoryBudget8 45 | f32 46 | 60 47 | 48 | 49 | MemoryBudget9 50 | f32 51 | 100 52 | 53 | 54 | MemoryBudget10 55 | f32 56 | 50 57 | 58 | 59 | MemoryBudget11 60 | f32 61 | 145 62 | 63 | 64 | MemoryBudget12 65 | f32 66 | 5 67 | 68 | 69 | MemoryBudget13 70 | f32 71 | 140 72 | 73 | 74 | MemoryBudget14 75 | f32 76 | 110 77 | 78 | 79 | MemoryBudget15 80 | f32 81 | 100 82 | 83 | 84 | MemoryBudget16 85 | f32 86 | 20 87 | 88 | 89 | MemoryBudget17 90 | f32 91 | 256 92 | 93 | 94 | MemoryBudget18 95 | f32 96 | 45 97 | 98 | 99 | MemoryBudget19 100 | f32 101 | 5 102 | 103 | 104 | MemoryBudget20 105 | f32 106 | 200 107 | 108 | 109 | MemoryBudget21 110 | f32 111 | 50 112 | 113 | 114 | MemoryBudget22 115 | f32 116 | 50 117 | 118 | 119 | MemoryBudget23 120 | f32 121 | 50 122 | 123 | 124 | MemoryBudget24 125 | f32 126 | 3000 127 | 128 | 129 | MemoryBudget25 130 | f32 131 | 370 132 | 133 | 134 | pad1 135 | dummy8 136 | 28 137 | 138 | -------------------------------------------------------------------------------- /fogdist/Layouts/BULLET_CREATE_LIMIT_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | maxAmmount 5 | u8 6 | 1 7 | 8 | 9 | pad1 10 | dummy8 11 | 31 12 | 13 | -------------------------------------------------------------------------------- /fogdist/Layouts/CACL_CORRECT_GRAPH_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | stageMaxVal0 5 | f32 6 | 1 7 | 8 | 9 | stageMaxVal1 10 | f32 11 | 30 12 | 13 | 14 | stageMaxVal2 15 | f32 16 | 40 17 | 18 | 19 | stageMaxVal3 20 | f32 21 | 60 22 | 23 | 24 | stageMaxVal4 25 | f32 26 | 99 27 | 28 | 29 | stageMaxGrowVal0 30 | f32 31 | 0 32 | 33 | 34 | stageMaxGrowVal1 35 | f32 36 | 0 37 | 38 | 39 | stageMaxGrowVal2 40 | f32 41 | 0 42 | 43 | 44 | stageMaxGrowVal3 45 | f32 46 | 90 47 | 48 | 49 | stageMaxGrowVal4 50 | f32 51 | 100 52 | 53 | 54 | adjPt_maxGrowVal0 55 | f32 56 | 1 57 | 58 | 59 | adjPt_maxGrowVal1 60 | f32 61 | 1 62 | 63 | 64 | adjPt_maxGrowVal2 65 | f32 66 | 1 67 | 68 | 69 | adjPt_maxGrowVal3 70 | f32 71 | 1 72 | 73 | 74 | adjPt_maxGrowVal4 75 | f32 76 | 1 77 | 78 | 79 | init_inclination_soul 80 | f32 81 | 0 82 | 83 | 84 | adjustment_value 85 | f32 86 | 0 87 | 88 | 89 | boundry_inclination_soul 90 | f32 91 | 0 92 | 93 | 94 | boundry_value 95 | f32 96 | 0 97 | 98 | 99 | pad1 100 | dummy8 101 | 4 102 | 103 | -------------------------------------------------------------------------------- /fogdist/Layouts/CEREMONY_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | EventLayerID 5 | s32 6 | 0 7 | 8 | 9 | MapStudioLayerID 10 | s32 11 | 0 12 | 13 | 14 | GparamID[Up] 15 | s16 16 | 0 17 | 18 | 19 | GparamID[Low] 20 | s16 21 | 0 22 | 23 | 24 | Point CloudID 25 | s32 26 | 0 27 | 28 | 29 | GI_TextureID 30 | s32 31 | 0 32 | 33 | 34 | Light GroupID 35 | s32 36 | 0 37 | 38 | 39 | IsReload 40 | u8 41 | 0 42 | 43 | 44 | IsDisableOnline 45 | u8 46 | 0 47 | 48 | 49 | pad1 50 | dummy8 51 | 10 52 | 53 | -------------------------------------------------------------------------------- /fogdist/Layouts/CHARACTER_LOAD_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ChrBndType 5 | u8 6 | 0 7 | 8 | 9 | AniBndType 10 | u8 11 | 0 12 | 13 | 14 | TexBndType 15 | u8 16 | 0 17 | 18 | 19 | BehBndType 20 | u8 21 | 0 22 | 23 | 24 | SndChrType 25 | u8 26 | 0 27 | 28 | -------------------------------------------------------------------------------- /fogdist/Layouts/CHARMAKEMENUTOP_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | CommandID 5 | s32 6 | 1 7 | 8 | 9 | FaceParamID 10 | s32 11 | 0 12 | 13 | 14 | TableID 15 | s32 16 | 0 17 | 18 | 19 | ViewCondition 20 | s32 21 | 0 22 | 23 | 24 | PreviewMode 25 | u8 26 | 0 27 | 28 | 29 | pad1 30 | dummy8 31 | 3 32 | 33 | 34 | MenuType 35 | s8 36 | 2 37 | 38 | 39 | pad2 40 | dummy8 41 | 11 42 | 43 | -------------------------------------------------------------------------------- /fogdist/Layouts/CHARMAKEMENU_LISTITEM_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Value 5 | s32 6 | 1 7 | 8 | 9 | CaptionId 10 | s32 11 | 0 12 | 13 | 14 | IconID 15 | u8 16 | 0 17 | 18 | 19 | pad1 20 | dummy8 21 | 7 22 | 23 | -------------------------------------------------------------------------------- /fogdist/Layouts/CLEAR_COUNT_CORRECT_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | HP 5 | f32 6 | 0 7 | 8 | 9 | Mana 10 | f32 11 | 1 12 | 13 | 14 | Stamina 15 | f32 16 | 0 17 | 18 | 19 | PhysDmg 20 | f32 21 | 0 22 | 23 | 24 | slashDmg 25 | f32 26 | 1 27 | 28 | 29 | blowDmg 30 | f32 31 | 1 32 | 33 | 34 | thrustDmg 35 | f32 36 | 1 37 | 38 | 39 | neutral 40 | f32 41 | 0 42 | 43 | 44 | MagicDmg 45 | f32 46 | 0 47 | 48 | 49 | FireDmg 50 | f32 51 | 0 52 | 53 | 54 | ThunderDmg 55 | f32 56 | 0 57 | 58 | 59 | DarkDmg 60 | f32 61 | 0 62 | 63 | 64 | PhysResist 65 | f32 66 | 0 67 | 68 | 69 | MagicResist 70 | f32 71 | 0 72 | 73 | 74 | FireResist 75 | f32 76 | 0 77 | 78 | 79 | ThunderResist 80 | f32 81 | 0 82 | 83 | 84 | DarkResist 85 | f32 86 | 0 87 | 88 | 89 | StaminaDmg 90 | f32 91 | 0 92 | 93 | 94 | MpRecover 95 | f32 96 | 0 97 | 98 | 99 | PoisonResist 100 | f32 101 | 0 102 | 103 | 104 | ToxicResist 105 | f32 106 | 0 107 | 108 | 109 | BleedResist 110 | f32 111 | 0 112 | 113 | 114 | CurseResist 115 | f32 116 | 0 117 | 118 | 119 | FrostResist 120 | f32 121 | 0 122 | 123 | 124 | HpRecover 125 | f32 126 | 1 127 | 128 | 129 | subMpRecover 130 | f32 131 | 0 132 | 133 | 134 | subHpRecover 135 | f32 136 | 1 137 | 138 | 139 | pad1 140 | dummy8 141 | 20 142 | 143 | -------------------------------------------------------------------------------- /fogdist/Layouts/COOL_TIME_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | limitationTime_0 5 | f32 6 | 900 7 | 8 | 9 | observationTime_0 10 | f32 11 | 900 12 | 13 | 14 | limitationTime_1 15 | f32 16 | 600 17 | 18 | 19 | observationTime_1 20 | f32 21 | 450 22 | 23 | 24 | limitationTime_2 25 | f32 26 | 300 27 | 28 | 29 | observationTime_2 30 | f32 31 | 200 32 | 33 | 34 | limitationTime_3 35 | f32 36 | 0 37 | 38 | 39 | observationTime_3 40 | f32 41 | 0 42 | 43 | -------------------------------------------------------------------------------- /fogdist/Layouts/CULT_SETTING_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Distance 5 | f32 6 | 0.8 7 | 8 | 9 | Angle 10 | f32 11 | 90 12 | 13 | 14 | EventFlagId 15 | s32 16 | -1 17 | 18 | 19 | Coefficient.1000 20 | s16 21 | 0 22 | 23 | 24 | CultState1 25 | s8 26 | 0 27 | 28 | 29 | CultState2 30 | s8 31 | 0 32 | 33 | 34 | pad1 35 | dummy8 36 | 16 37 | 38 | -------------------------------------------------------------------------------- /fogdist/Layouts/DIRECTION_CAMERA_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | RumbleState[ON_OFF] 5 | u8 6 | 1 7 | 8 | 9 | pad1 10 | dummy8 11 | 15 12 | 13 | -------------------------------------------------------------------------------- /fogdist/Layouts/EQUIP_MTRL_SET_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | MaterialId01 5 | s32 6 | 1000 7 | 8 | 9 | MaterialId02 10 | s32 11 | -1 12 | 13 | 14 | MaterialId03 15 | s32 16 | -1 17 | 18 | 19 | MaterialId04 20 | s32 21 | -1 22 | 23 | 24 | MaterialId05 25 | s32 26 | -1 27 | 28 | 29 | ItemNum01 30 | s8 31 | 1 32 | 33 | 34 | ItemNum02 35 | s8 36 | -1 37 | 38 | 39 | ItemNum03 40 | s8 41 | -1 42 | 43 | 44 | ItemNum04 45 | s8 46 | -1 47 | 48 | 49 | ItemNum05 50 | s8 51 | -1 52 | 53 | 54 | isDisableDispNum01 55 | b8 56 | False 57 | 58 | 59 | isDisableDispNum02 60 | b8 61 | False 62 | 63 | 64 | isDisableDispNum03 65 | b8 66 | True 67 | 68 | 69 | isDisableDispNum04 70 | b8 71 | False 72 | 73 | 74 | isDisableDispNum05 75 | b8 76 | False 77 | 78 | 79 | pad1 80 | dummy8 81 | 6 82 | 83 | -------------------------------------------------------------------------------- /fogdist/Layouts/ESTUS_FLASK_RECOVERY_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | recoveryCount0 5 | u8 6 | 0 7 | 8 | 9 | recoveryCount1 10 | u8 11 | 0 12 | 13 | 14 | recoveryCount2 15 | u8 16 | 0 17 | 18 | 19 | recoveryCount3 20 | u8 21 | 0 22 | 23 | 24 | recoveryCount4 25 | u8 26 | 0 27 | 28 | 29 | recoveryCount5 30 | u8 31 | 0 32 | 33 | 34 | recoveryCount6 35 | u8 36 | 0 37 | 38 | 39 | recoveryCount7 40 | u8 41 | 0 42 | 43 | 44 | recoveryCount8 45 | u8 46 | 0 47 | 48 | 49 | recoveryCount9 50 | u8 51 | 0 52 | 53 | 54 | recoveryCount10 55 | u8 56 | 0 57 | 58 | 59 | recoveryCount11 60 | u8 61 | 0 62 | 63 | 64 | recoveryCount12 65 | u8 66 | 0 67 | 68 | 69 | recoveryCount13 70 | u8 71 | 0 72 | 73 | 74 | recoveryCount14 75 | u8 76 | 0 77 | 78 | 79 | recoveryCount15 80 | u8 81 | 0 82 | 83 | 84 | recoveryCount16 85 | u8 86 | 0 87 | 88 | 89 | recoveryCount17 90 | u8 91 | 0 92 | 93 | 94 | recoveryCount18 95 | u8 96 | 0 97 | 98 | 99 | recoveryCount19 100 | u8 101 | 0 102 | 103 | 104 | recoveryCount20 105 | u8 106 | 0 107 | 108 | 109 | recoveryCount21 110 | u8 111 | 0 112 | 113 | 114 | recoveryCount22 115 | u8 116 | 0 117 | 118 | 119 | recoveryCount23 120 | u8 121 | 0 122 | 123 | -------------------------------------------------------------------------------- /fogdist/Layouts/GAME_AREA_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | BonusSoul_single 5 | s32 6 | 60000 7 | 8 | 9 | BonusSoul_multi 10 | s32 11 | 60000 12 | 13 | 14 | humanityPointCountFlagIdTop 15 | s32 16 | -1 17 | 18 | 19 | humanityDropPoint1 20 | s16 21 | -1 22 | 23 | 24 | humanityDropPoint2 25 | s16 26 | -1 27 | 28 | 29 | humanityDropPoint3 30 | s16 31 | -1 32 | 33 | 34 | humanityDropPoint4 35 | s16 36 | -1 37 | 38 | 39 | humanityDropPoint5 40 | s16 41 | -1 42 | 43 | 44 | humanityDropPoint6 45 | s16 46 | -1 47 | 48 | 49 | humanityDropPoint7 50 | s16 51 | -1 52 | 53 | 54 | humanityDropPoint8 55 | s16 56 | -1 57 | 58 | 59 | humanityDropPoint9 60 | s16 61 | -1 62 | 63 | 64 | humanityDropPoint10 65 | s16 66 | -1 67 | 68 | 69 | subBonusSoul_single 70 | s32 71 | 0 72 | 73 | 74 | subbonusSoul_multi 75 | s32 76 | 10000 77 | 78 | 79 | pad1 80 | dummy8 81 | 8 82 | 83 | -------------------------------------------------------------------------------- /fogdist/Layouts/GAME_PROGRESS_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | EventFlagId 5 | s32 6 | 6100 7 | 8 | 9 | ProgressId 10 | u8 11 | 10 12 | 13 | 14 | pad1 15 | dummy8 16 | 11 17 | 18 | -------------------------------------------------------------------------------- /fogdist/Layouts/GEMEFFECT_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | spEffectId 5 | s32 6 | -1 7 | 8 | 9 | categoryId 10 | s32 11 | 0 12 | 13 | 14 | effectRank 15 | s32 16 | 1 17 | 18 | 19 | rankMin 20 | s32 21 | 1 22 | 23 | 24 | rankMax 25 | s32 26 | 100 27 | 28 | 29 | disposalPrice 30 | s32 31 | 0 32 | 33 | 34 | gemIconIdOffset 35 | s16 36 | 0 37 | 38 | 39 | pad1 40 | dummy8 41 | 2 42 | 43 | 44 | spEffectId_forAtk 45 | s32 46 | -1 47 | 48 | -------------------------------------------------------------------------------- /fogdist/Layouts/GEM_CATEGORY_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | SortNo 5 | s32 6 | 0 7 | 8 | 9 | manifestRate 10 | f32 11 | 100 12 | 13 | 14 | directionalId 15 | s32 16 | 0 17 | 18 | 19 | cateGroupId 20 | s32 21 | 0 22 | 23 | 24 | excludeGroupId 25 | s32 26 | 0 27 | 28 | 29 | isNegative 30 | b8 31 | False 32 | 33 | 34 | enableSlotTypeA 35 | b8 36 | True 37 | 38 | 39 | enableSlotTypeB 40 | b8 41 | True 42 | 43 | 44 | enableSlotTypeC 45 | b8 46 | True 47 | 48 | 49 | enableSlotTypeD 50 | b8 51 | True 52 | 53 | 54 | enableSlotTypeE 55 | b8 56 | True 57 | 58 | 59 | enableSlotTypeF 60 | b8 61 | True 62 | 63 | 64 | holygrailTypeGroup 65 | b8 66 | False 67 | 68 | 69 | pad1 70 | dummy8 71 | 3 72 | 73 | 74 | affinityCateId_0 75 | s32 76 | -1 77 | 78 | 79 | affinityModifyRate_0 80 | f32 81 | 1 82 | 83 | 84 | affinityCateId_1 85 | s32 86 | -1 87 | 88 | 89 | affinityModifyRate_1 90 | f32 91 | 1 92 | 93 | 94 | affinityCateId_2 95 | s32 96 | -1 97 | 98 | 99 | affinityModifyRate_2 100 | f32 101 | 1 102 | 103 | 104 | affinityCateId_3 105 | s32 106 | -1 107 | 108 | 109 | affinityModifyRate_3 110 | f32 111 | 1 112 | 113 | -------------------------------------------------------------------------------- /fogdist/Layouts/GEM_DROP_DOPING_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | rankMin 5 | s32 6 | 0 7 | 8 | 9 | rankMax 10 | s32 11 | 0 12 | 13 | 14 | normalDistributionAve 15 | s32 16 | 0 17 | 18 | 19 | normalDistributionSigma 20 | s32 21 | 1 22 | 23 | 24 | SlotTypeA 25 | f32 26 | 1 27 | 28 | 29 | SlotTypeB 30 | f32 31 | 1 32 | 33 | 34 | SlotTypeC 35 | f32 36 | 1 37 | 38 | 39 | SlotTypeD 40 | f32 41 | 1 42 | 43 | 44 | SlotTypeE 45 | f32 46 | 1 47 | 48 | 49 | SlotTypeF 50 | f32 51 | 1 52 | 53 | 54 | directionalIdRate_0 55 | f32 56 | 1 57 | 58 | 59 | directionalIdRate_1 60 | f32 61 | 1 62 | 63 | 64 | directionalIdRate_2 65 | f32 66 | 1 67 | 68 | 69 | directionalIdRate_3 70 | f32 71 | 1 72 | 73 | 74 | directionalIdRate_4 75 | f32 76 | 1 77 | 78 | 79 | directionalIdRate_5 80 | f32 81 | 1 82 | 83 | 84 | directionalIdRate_6 85 | f32 86 | 1 87 | 88 | 89 | directionalIdRate_7 90 | f32 91 | 1 92 | 93 | -------------------------------------------------------------------------------- /fogdist/Layouts/GEM_DROP_MODIFY_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | slotTypeRateA 5 | f32 6 | 1 7 | 8 | 9 | slotTypeRateB 10 | f32 11 | 1 12 | 13 | 14 | slotTypeRateC 15 | f32 16 | 1 17 | 18 | 19 | slotTypeRateD 20 | f32 21 | 1 22 | 23 | 24 | slotTypeRateE 25 | f32 26 | 1 27 | 28 | 29 | slotTypeRateF 30 | f32 31 | 1 32 | 33 | 34 | directionalIdRate_0 35 | f32 36 | 1 37 | 38 | 39 | directionalIdRate_1 40 | f32 41 | 1 42 | 43 | 44 | directionalIdRate_2 45 | f32 46 | 1 47 | 48 | 49 | directionalIdRate_3 50 | f32 51 | 1 52 | 53 | 54 | directionalIdRate_4 55 | f32 56 | 1 57 | 58 | 59 | directionalIdRate_5 60 | f32 61 | 1 62 | 63 | 64 | directionalIdRate_6 65 | f32 66 | 1 67 | 68 | 69 | directionalIdRate_7 70 | f32 71 | 1 72 | 73 | 74 | affinityCateId_0 75 | s32 76 | -1 77 | 78 | 79 | affinityModifyRate_0 80 | f32 81 | 1 82 | 83 | 84 | affinityCateId_1 85 | s32 86 | -1 87 | 88 | 89 | affinityModifyRate_1 90 | f32 91 | 1 92 | 93 | 94 | affinityCateId_2 95 | s32 96 | -1 97 | 98 | 99 | affinityModifyRate_2 100 | f32 101 | 1 102 | 103 | 104 | affinityCateId_3 105 | s32 106 | -1 107 | 108 | 109 | affinityModifyRate_3 110 | f32 111 | 1 112 | 113 | 114 | manifestRate_0 115 | f32 116 | 0 117 | 118 | 119 | manifestRate_1 120 | f32 121 | 0 122 | 123 | 124 | manifestRate_2 125 | f32 126 | 0 127 | 128 | 129 | manifestRate_3 130 | f32 131 | 0 132 | 133 | 134 | manifestRate_4 135 | f32 136 | 0 137 | 138 | 139 | manifestRate_5 140 | f32 141 | 0 142 | 143 | 144 | negativizeRate_0 145 | f32 146 | 0 147 | 148 | 149 | normalDistributionAve 150 | s32 151 | 0 152 | 153 | 154 | normalDistributionSigma 155 | s32 156 | 1 157 | 158 | -------------------------------------------------------------------------------- /fogdist/Layouts/HIT_EFFECT_SFX_CONCEPT_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | SfxConceptId0 5 | s16 6 | 10 7 | 8 | 9 | SfxConceptId1 10 | s16 11 | 0 12 | 13 | 14 | SfxConceptId2 15 | s16 16 | 380 17 | 18 | 19 | SfxConceptId3 20 | s16 21 | 0 22 | 23 | 24 | SfxConceptId4 25 | s16 26 | 20 27 | 28 | 29 | SfxConceptId5 30 | s16 31 | 0 32 | 33 | 34 | SfxConceptId6 35 | s16 36 | 20 37 | 38 | 39 | SfxConceptId7 40 | s16 41 | 0 42 | 43 | 44 | SfxConceptId8 45 | s16 46 | 450 47 | 48 | 49 | SfxConceptId9 50 | s16 51 | 0 52 | 53 | 54 | SfxConceptId10 55 | s16 56 | 0 57 | 58 | 59 | SfxConceptId11 60 | s16 61 | 0 62 | 63 | 64 | SfxConceptId12 65 | s16 66 | 0 67 | 68 | 69 | SfxConceptId13 70 | s16 71 | 0 72 | 73 | 74 | SfxConceptId14 75 | s16 76 | 0 77 | 78 | 79 | SfxConceptId15 80 | s16 81 | 0 82 | 83 | 84 | SfxConceptId16 85 | s16 86 | 0 87 | 88 | 89 | SfxConceptId17 90 | s16 91 | 0 92 | 93 | 94 | SfxConceptId18 95 | s16 96 | 0 97 | 98 | 99 | SfxConceptId19 100 | s16 101 | 0 102 | 103 | 104 | SfxConceptId20 105 | s16 106 | 0 107 | 108 | 109 | SfxConceptId21 110 | s16 111 | 0 112 | 113 | 114 | SfxConceptId22 115 | s16 116 | 0 117 | 118 | 119 | SfxConceptId23 120 | s16 121 | 0 122 | 123 | 124 | SfxConceptId24 125 | s16 126 | 430 127 | 128 | 129 | SfxConceptId25 130 | s16 131 | 0 132 | 133 | 134 | SfxConceptId26 135 | s16 136 | 440 137 | 138 | 139 | SfxConceptId27 140 | s16 141 | 0 142 | 143 | 144 | SfxConceptId28 145 | s16 146 | 460 147 | 148 | 149 | SfxConceptId29 150 | s16 151 | 0 152 | 153 | 154 | pad1 155 | dummy8 156 | 20 157 | 158 | -------------------------------------------------------------------------------- /fogdist/Layouts/HIT_EFFECT_SFX_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | HitSfxId0 5 | s32 6 | 0 7 | 8 | 9 | HitSfxId1 10 | s32 11 | 0 12 | 13 | 14 | HitSfxId2 15 | s32 16 | 0 17 | 18 | 19 | HitSfxId3 20 | s32 21 | 0 22 | 23 | 24 | HitSfxId4 25 | s32 26 | 0 27 | 28 | 29 | HitSfxId5 30 | s32 31 | 0 32 | 33 | 34 | HitSfxId6 35 | s32 36 | 0 37 | 38 | 39 | HitSfxId7 40 | s32 41 | 0 42 | 43 | 44 | HitSfxId8 45 | s32 46 | 0 47 | 48 | 49 | HitSfxId9 50 | s32 51 | 0 52 | 53 | 54 | HitSfxId10 55 | s32 56 | 0 57 | 58 | 59 | HitSfxId11 60 | s32 61 | 0 62 | 63 | 64 | HitSfxId12 65 | s32 66 | 0 67 | 68 | 69 | HitSfxId13 70 | s32 71 | 0 72 | 73 | 74 | HitSfxId14 75 | s32 76 | 0 77 | 78 | 79 | HitSfxId15 80 | s32 81 | 0 82 | 83 | 84 | pad1 85 | dummy8 86 | 16 87 | 88 | -------------------------------------------------------------------------------- /fogdist/Layouts/HIT_MTRL_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | aiVolumeRate 5 | f32 6 | 1 7 | 8 | 9 | spEffectId0 10 | s32 11 | -1 12 | 13 | 14 | spEffectId1 15 | s32 16 | -1 17 | 18 | 19 | FootEffectHeightType0 20 | b8 21 | False 22 | 23 | 24 | FootEffectHeightType1 25 | b8 26 | False 27 | 28 | 29 | footEffectDirType0 30 | b8 31 | False 32 | 33 | 34 | footEffectDirType1 35 | b8 36 | False 37 | 38 | 39 | newSpType0 40 | b8 41 | False 42 | 43 | 44 | newSpType1 45 | b8 46 | False 47 | 48 | 49 | unkb1 50 | b8 51 | False 52 | 53 | 54 | unkb2 55 | b8 56 | False 57 | 58 | 59 | HitMtrlType0 60 | u8 61 | 1 62 | 63 | 64 | HitMtrlType1 65 | u8 66 | 0 67 | 68 | 69 | HitMtrlType2 70 | u8 71 | 0 72 | 73 | 74 | spEffectId2 75 | s32 76 | -1 77 | 78 | 79 | spEffectId3 80 | s32 81 | -1 82 | 83 | 84 | spEffectId4 85 | s32 86 | -1 87 | 88 | 89 | spEffectId5 90 | s32 91 | -1 92 | 93 | 94 | spEffectId6 95 | s32 96 | -1 97 | 98 | 99 | spEffectId7 100 | s32 101 | -1 102 | 103 | 104 | spEffectId8 105 | s32 106 | -1 107 | 108 | 109 | spEffectId9 110 | s32 111 | -1 112 | 113 | 114 | spEffectId10 115 | s32 116 | -1 117 | 118 | 119 | spEffectId11 120 | s32 121 | -1 122 | 123 | 124 | spEffectId12 125 | s32 126 | -1 127 | 128 | 129 | spEffectId13 130 | s32 131 | -1 132 | 133 | 134 | spEffectId14 135 | s32 136 | -1 137 | 138 | 139 | spEffectId15 140 | s32 141 | -1 142 | 143 | 144 | spEffectId16 145 | s32 146 | -1 147 | 148 | 149 | pad1 150 | dummy8 151 | 20 152 | 153 | -------------------------------------------------------------------------------- /fogdist/Layouts/KNOCKBACK_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | damage_Min_ContTime 5 | f32 6 | 0.02 7 | 8 | 9 | damage_S_ContTime 10 | f32 11 | 0.01 12 | 13 | 14 | damage_M_ContTime 15 | f32 16 | 0.03 17 | 18 | 19 | damage_L_ContTime 20 | f32 21 | 0.05 22 | 23 | 24 | damage_BlowS_ContTime 25 | f32 26 | 0 27 | 28 | 29 | damage_BlowM_ContTime 30 | f32 31 | 0 32 | 33 | 34 | damage_Strike_ContTime 35 | f32 36 | 0.1 37 | 38 | 39 | damage_Uppercut_ContTime 40 | f32 41 | 0.45 42 | 43 | 44 | damage_Push_ContTime 45 | f32 46 | 0.1 47 | 48 | 49 | damage_Breath_ContTime 50 | f32 51 | 0 52 | 53 | 54 | damage_HeadShot_ContTime 55 | f32 56 | 0 57 | 58 | 59 | guard_S_ContTime 60 | f32 61 | 0.05 62 | 63 | 64 | guard_L_ContTime 65 | f32 66 | 0.02 67 | 68 | 69 | guard_LL_ContTime 70 | f32 71 | 0 72 | 73 | 74 | guardBrake_ContTime 75 | f32 76 | 0.07 77 | 78 | 79 | damage_min_decTime 80 | f32 81 | 0.06 82 | 83 | 84 | damage_S_decTime 85 | f32 86 | 0.15 87 | 88 | 89 | damage_M_decTime 90 | f32 91 | 0.69 92 | 93 | 94 | damage_L_decTime 95 | f32 96 | 1 97 | 98 | 99 | damage_BlowS_decTime 100 | f32 101 | 0 102 | 103 | 104 | damage_BlowM_decTime 105 | f32 106 | 0 107 | 108 | 109 | damage_Strike_decTime 110 | f32 111 | 0 112 | 113 | 114 | damage_Uppercut_DecTime 115 | f32 116 | 1.75 117 | 118 | 119 | damage_Push_DecTime 120 | f32 121 | 0.9 122 | 123 | 124 | damage_Breath_DecTime 125 | f32 126 | 0 127 | 128 | 129 | damage_HeadShot_DecTime 130 | f32 131 | 0 132 | 133 | 134 | guard_S_DecTime 135 | f32 136 | 0.2 137 | 138 | 139 | guard_L_DecTime 140 | f32 141 | 0.7 142 | 143 | 144 | guard_LL_DecTime 145 | f32 146 | 0 147 | 148 | 149 | guardBrake_DecTime 150 | f32 151 | 0.2 152 | 153 | 154 | pad1 155 | dummy8 156 | 8 157 | 158 | -------------------------------------------------------------------------------- /fogdist/Layouts/KNOWLEDGE_LOADSCREEN_ITEM_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | LoadscreenCategoryId 5 | x32 6 | 0x00000000 7 | 8 | 9 | KnowledgeId 10 | s32 11 | 23000000 12 | 13 | 14 | pad1 15 | dummy8 16 | 8 17 | 18 | -------------------------------------------------------------------------------- /fogdist/Layouts/LOAD_BALANCER_DRAW_DIST_SCALE_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | LodDistDrawScale0 5 | f32 6 | 1 7 | 8 | 9 | LodDistDrawScale1 10 | f32 11 | 1 12 | 13 | 14 | LodDistDrawScale2 15 | f32 16 | 1 17 | 18 | 19 | LodDistDrawScale3 20 | f32 21 | 1 22 | 23 | 24 | LodDistDrawScale4 25 | f32 26 | 1 27 | 28 | 29 | LodDistDrawScale5 30 | f32 31 | 1 32 | 33 | 34 | LodDistDrawScale6 35 | f32 36 | 1 37 | 38 | 39 | LodDistDrawScale7 40 | f32 41 | 1 42 | 43 | 44 | LodDistDrawScale8 45 | f32 46 | 1 47 | 48 | 49 | LodDistDrawScale9 50 | f32 51 | 1 52 | 53 | 54 | LodDistDrawScale10 55 | f32 56 | 1 57 | 58 | 59 | LodDistDrawScale11 60 | f32 61 | 1 62 | 63 | 64 | LodDistDrawScale12 65 | f32 66 | 1 67 | 68 | 69 | LodDistDrawScale13 70 | f32 71 | 1 72 | 73 | 74 | LodDistDrawScale14 75 | f32 76 | 1 77 | 78 | 79 | LodDistDrawScale15 80 | f32 81 | 1 82 | 83 | 84 | LodDistDrawScale16 85 | f32 86 | 1 87 | 88 | 89 | LodDistDrawScale17 90 | f32 91 | 1 92 | 93 | 94 | LodDistDrawScale18 95 | f32 96 | 1 97 | 98 | 99 | LodDistDrawScale19 100 | f32 101 | 1 102 | 103 | 104 | LodDistDrawScale20 105 | f32 106 | 1 107 | 108 | 109 | pad1 110 | dummy8 111 | 44 112 | 113 | -------------------------------------------------------------------------------- /fogdist/Layouts/LOAD_BALANCER_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Unk1 5 | f32 6 | 23 7 | 8 | 9 | Unk2 10 | f32 11 | 27 12 | 13 | 14 | Unk3 15 | s32 16 | 5 17 | 18 | 19 | Unk4 20 | s32 21 | 20 22 | 23 | 24 | Unk5 25 | s32 26 | 30 27 | 28 | 29 | Unk6 30 | s32 31 | 10 32 | 33 | 34 | LoadBalancerVal0 35 | u8 36 | 12 37 | 38 | 39 | LoadBalancerVal1 40 | u8 41 | 5 42 | 43 | 44 | LoadBalancerVal2 45 | u8 46 | 15 47 | 48 | 49 | LoadBalancerVal3 50 | u8 51 | 12 52 | 53 | 54 | LoadBalancerVal4 55 | u8 56 | 7 57 | 58 | 59 | LoadBalancerVal5 60 | u8 61 | 7 62 | 63 | 64 | LoadBalancerVal6 65 | u8 66 | 10 67 | 68 | 69 | LoadBalancerVal7 70 | u8 71 | 6 72 | 73 | 74 | LoadBalancerVal8 75 | u8 76 | 13 77 | 78 | 79 | LoadBalancerVal9 80 | u8 81 | 8 82 | 83 | 84 | LoadBalancerVal10 85 | u8 86 | 1 87 | 88 | 89 | LoadBalancerVal11 90 | u8 91 | 1 92 | 93 | 94 | LoadBalancerVal12 95 | u8 96 | 1 97 | 98 | 99 | LoadBalancerVal13 100 | u8 101 | 4 102 | 103 | 104 | LoadBalancerVal14 105 | u8 106 | 3 107 | 108 | 109 | LoadBalancerVal15 110 | u8 111 | 4 112 | 113 | 114 | LoadBalancerVal16 115 | u8 116 | 4 117 | 118 | 119 | LoadBalancerVal17 120 | u8 121 | 3 122 | 123 | 124 | pad1 125 | dummy8 126 | 38 127 | 128 | -------------------------------------------------------------------------------- /fogdist/Layouts/LOCK_CAM_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | CamDistTarget 5 | f32 6 | 4 7 | 8 | 9 | rotRangeMinX 10 | f32 11 | -40 12 | 13 | 14 | lockRotXShiftRatio 15 | f32 16 | 0.3 17 | 18 | 19 | chrOrgOffsetZ 20 | f32 21 | 1.42 22 | 23 | 24 | chrLockRangeMaxRadius 25 | f32 26 | 15 27 | 28 | 29 | FovYChange 30 | f32 31 | 43 32 | 33 | 34 | ChrLockRangeMaxRadius_forDark 35 | f32 36 | 10 37 | 38 | 39 | ChrLockRangeMaxRadius_forPitchDark 40 | f32 41 | 6 42 | 43 | 44 | MeleeAttackCaptureUpperLimitHeight 45 | f32 46 | 0.8 47 | 48 | 49 | AttackCaptureLowerLimitHeight 50 | f32 51 | 2 52 | 53 | 54 | AttackAutoAcquisitionAngleRangeLeft 55 | f32 56 | 20 57 | 58 | 59 | MeleeAttackAutoAcquisitionCharacterRangeMaximumRadius 60 | f32 61 | 4.5 62 | 63 | 64 | MeleeAttackAutoAcquisitionDarkCharacterRangeMaximumRadius 65 | f32 66 | 4.5 67 | 68 | 69 | ProximityAttackAutoAcquisitionCharacterRangeForPureDarknessMaximumRadius 70 | f32 71 | 4.5 72 | 73 | 74 | BulletAutoCaptureCharacterRangeMaximumRadius 75 | f32 76 | 15 77 | 78 | 79 | BulletAutoCaptureDarkCharacterRangeMaximumRadius 80 | f32 81 | 10 82 | 83 | 84 | BulletAutomaticCaptureCharacterRangeRorPureDarknessMaximumRadius 85 | f32 86 | 6 87 | 88 | 89 | BulletAutoCapturingAngleRangeLeftAndRight 90 | f32 91 | 20 92 | 93 | 94 | pad1 95 | dummy8 96 | 28 97 | 98 | -------------------------------------------------------------------------------- /fogdist/Layouts/LOD_BANK.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | lv01_BorderDist 5 | f32 6 | 5 7 | 8 | 9 | lv01_PlayDist 10 | f32 11 | 1 12 | 13 | 14 | lv12_BorderDist 15 | f32 16 | 20 17 | 18 | 19 | lv12_PlayDist 20 | f32 21 | 2 22 | 23 | 24 | textureLod 25 | u8 26 | 1 27 | 28 | 29 | pad1 30 | dummy8 31 | 3 32 | 33 | 34 | lv23_BorderDist 35 | f32 36 | 9999 37 | 38 | 39 | lv23_PlayDist 40 | f32 41 | 1 42 | 43 | 44 | lv34_BorderDist 45 | f32 46 | 9999 47 | 48 | 49 | lv34_PlayDist 50 | f32 51 | 1 52 | 53 | 54 | lv45_BorderDist 55 | f32 56 | 9999 57 | 58 | 59 | lv45_PlayDist 60 | f32 61 | 1 62 | 63 | 64 | DistanceScaleId [0-255] 65 | u8 66 | 0 67 | 68 | 69 | pad2 70 | dummy8 71 | 19 72 | 73 | -------------------------------------------------------------------------------- /fogdist/Layouts/MAP_MIMICRY_ESTABLISHMENT_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | RandomizerCoefficient0 5 | f32 6 | 500 7 | 8 | 9 | RandomizerCoefficient1 10 | f32 11 | 500 12 | 13 | 14 | RandomizerCoefficient2 15 | f32 16 | -1 17 | 18 | 19 | TransformVfxId0 20 | s32 21 | -1 22 | 23 | 24 | LoopVfxId0 25 | s32 26 | 430041 27 | 28 | 29 | DestroyVfxId0 30 | s32 31 | 430042 32 | 33 | 34 | TransformVfxId1 35 | s32 36 | -1 37 | 38 | 39 | LoopVfxId1 40 | s32 41 | -1 42 | 43 | 44 | DestroyVfxId1 45 | s32 46 | -1 47 | 48 | 49 | TransformVfxId2 50 | s32 51 | -1 52 | 53 | 54 | LoopVfxId2 55 | s32 56 | -1 57 | 58 | 59 | DestroyVfxId2 60 | s32 61 | -1 62 | 63 | 64 | pad1 65 | dummy8 66 | 16 67 | 68 | -------------------------------------------------------------------------------- /fogdist/Layouts/MENUPROPERTY_LAYOUT.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | LayoutPath 5 | fixstr 6 | 16 7 | 8 | 9 | 10 | PropertyId [MENU_PROPERTY_ID] 11 | s32 12 | 0 13 | 14 | 15 | captionTextId 16 | s32 17 | 0 18 | 19 | 20 | HelpTextId 21 | s32 22 | 0 23 | 24 | 25 | pad1 26 | dummy8 27 | 4 28 | 29 | -------------------------------------------------------------------------------- /fogdist/Layouts/MENUPROPERTY_SPEC.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | CaptionTextId 5 | s32 6 | 0 7 | 8 | 9 | IconId 10 | s32 11 | -1 12 | 13 | 14 | RequiredPropertyId 15 | s32 16 | 0 17 | 18 | 19 | CompareType 20 | u8 21 | 1 22 | 23 | 24 | RequiredPropertyFormatId 25 | u8 26 | 0 27 | 28 | 29 | AdhocCaption 30 | fixstrW 31 | 18 32 | 耐久度 33 | 34 | -------------------------------------------------------------------------------- /fogdist/Layouts/MENU_OFFSCR_REND_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | MenuContent0 Y 5 | f32 6 | 0 7 | 8 | 9 | MenuContent0 X 10 | f32 11 | 0.85 12 | 13 | 14 | MenuContent0 Distance 15 | f32 16 | 0 17 | 18 | 19 | MenuContent1 Y 20 | f32 21 | 2.66 22 | 23 | 24 | MenuContent1 X 25 | f32 26 | 1.719 27 | 28 | 29 | MenuContent1 Reverse X 30 | f32 31 | -14.85 32 | 33 | 34 | MenuContent1 Distance 35 | f32 36 | 15 37 | 38 | 39 | pad1 40 | dummy8 41 | 16 42 | 43 | 44 | screenRendId 45 | s32 46 | 11 47 | 48 | 49 | pad2 50 | dummy8 51 | 16 52 | 53 | -------------------------------------------------------------------------------- /fogdist/Layouts/MENU_PARAM_COLOR_TABLE_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | R 5 | u8 6 | 0 7 | 8 | 9 | G 10 | u8 11 | 0 12 | 13 | 14 | B 15 | u8 16 | 0 17 | 18 | 19 | A 20 | u8 21 | 255 22 | 23 | -------------------------------------------------------------------------------- /fogdist/Layouts/MENU_VALUE_TABLE_SPEC.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Value 5 | s32 6 | 1 7 | 8 | 9 | TextId 10 | s32 11 | 11320 12 | 13 | 14 | CompareType 15 | u8 16 | 0 17 | 18 | 19 | pad1 20 | dummy8 21 | 3 22 | 23 | -------------------------------------------------------------------------------- /fogdist/Layouts/MODEL_SFX_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | VfxId1 5 | s32 6 | 800022 7 | 8 | 9 | DummyPolyId1 10 | s32 11 | 200 12 | 13 | 14 | pad1 15 | dummy8 16 | 8 17 | 18 | 19 | VfxId2 20 | s32 21 | 0 22 | 23 | 24 | DummyPolyId2 25 | s32 26 | 0 27 | 28 | 29 | pad2 30 | dummy8 31 | 8 32 | 33 | 34 | VfxId3 35 | s32 36 | 0 37 | 38 | 39 | DummyPolyId3 40 | s32 41 | 0 42 | 43 | 44 | pad3 45 | dummy8 46 | 0 47 | 48 | 49 | VfxId4 50 | s32 51 | 0 52 | 53 | 54 | DummyPolyId4 55 | s32 56 | 0 57 | 58 | 59 | pad4 60 | dummy8 61 | 0 62 | 63 | 64 | VfxId5 65 | s32 66 | 0 67 | 68 | 69 | DummyPolyId5 70 | s32 71 | 0 72 | 73 | 74 | pad5 75 | dummy8 76 | 0 77 | 78 | 79 | VfxId6 80 | s32 81 | 0 82 | 83 | 84 | DummyPolyId6 85 | s32 86 | 0 87 | 88 | 89 | pad6 90 | dummy8 91 | 0 92 | 93 | 94 | VfxId7 95 | s32 96 | 0 97 | 98 | 99 | DummyPolyId7 100 | s32 101 | 0 102 | 103 | 104 | pad7 105 | dummy8 106 | 8 107 | 108 | 109 | VfxId8 110 | s32 111 | 0 112 | 113 | 114 | DummyPolyId8 115 | s32 116 | 0 117 | 118 | 119 | pad8 120 | dummy8 121 | 8 122 | 123 | 124 | VfxId9 125 | s32 126 | 0 127 | 128 | 129 | DummyPolyId9 130 | s32 131 | 0 132 | 133 | 134 | pad9 135 | dummy8 136 | 8 137 | 138 | 139 | VfxId10 140 | s32 141 | 0 142 | 143 | 144 | DummyPolyId10 145 | s32 146 | 0 147 | 148 | 149 | pad10 150 | dummy8 151 | 8 152 | 153 | -------------------------------------------------------------------------------- /fogdist/Layouts/MULTI_ESTUS_FLASK_BONUS_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | estusFlaskRestoreCount0 5 | u8 6 | 0 7 | 8 | 9 | estusFlaskRestoreCount1 10 | u8 11 | 1 12 | 13 | 14 | estusFlaskRestoreCount2 15 | u8 16 | 1 17 | 18 | 19 | estusFlaskRestoreCount3 20 | u8 21 | 1 22 | 23 | 24 | estusFlaskRestoreCount4 25 | u8 26 | 1 27 | 28 | 29 | estusFlaskRestoreCount5 30 | u8 31 | 1 32 | 33 | 34 | estusFlaskRestoreCount6 35 | u8 36 | 1 37 | 38 | 39 | estusFlaskRestoreCount7 40 | u8 41 | 1 42 | 43 | 44 | estusFlaskRestoreCount8 45 | u8 46 | 1 47 | 48 | 49 | estusFlaskRestoreCount9 50 | u8 51 | 1 52 | 53 | 54 | estusFlaskRestoreCount10 55 | u8 56 | 0 57 | 58 | 59 | estusFlaskRestoreCount11 60 | u8 61 | 0 62 | 63 | 64 | estusFlaskRestoreCount12 65 | u8 66 | 1 67 | 68 | 69 | estusFlaskRestoreCount13 70 | u8 71 | 1 72 | 73 | 74 | estusFlaskRestoreCount14 75 | u8 76 | 0 77 | 78 | 79 | estusFlaskRestoreCount15 80 | u8 81 | 0 82 | 83 | 84 | estusFlaskRestoreCount16 85 | u8 86 | 0 87 | 88 | 89 | estusFlaskRestoreCount17 90 | u8 91 | 0 92 | 93 | 94 | estusFlaskRestoreCount18 95 | u8 96 | 0 97 | 98 | 99 | estusFlaskRestoreCount19 100 | u8 101 | 0 102 | 103 | -------------------------------------------------------------------------------- /fogdist/Layouts/MULTI_PLAY_CORRECTION_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | CorrectionVal0 5 | s32 6 | 140201 7 | 8 | 9 | CorrectionVal1 10 | s32 11 | 140202 12 | 13 | 14 | CorrectionVal2 15 | s32 16 | 140203 17 | 18 | 19 | CorrectionVal3 20 | s32 21 | 0 22 | 23 | 24 | pad1 25 | dummy8 26 | 16 27 | 28 | -------------------------------------------------------------------------------- /fogdist/Layouts/MULTI_SOUL_BONUS_RATE_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | soulMultiplierRate0 5 | f32 6 | 0 7 | 8 | 9 | soulMultiplierRate1 10 | f32 11 | 0 12 | 13 | 14 | soulMultiplierRate2 15 | f32 16 | 0 17 | 18 | 19 | soulMultiplierRate3 20 | f32 21 | 0.01 22 | 23 | 24 | soulMultiplierRate4 25 | f32 26 | 0.01 27 | 28 | 29 | soulMultiplierRate5 30 | f32 31 | 0.01 32 | 33 | 34 | soulMultiplierRate6 35 | f32 36 | 0.01 37 | 38 | 39 | soulMultiplierRate7 40 | f32 41 | 0.01 42 | 43 | 44 | soulMultiplierRate8 45 | f32 46 | 0.01 47 | 48 | 49 | soulMultiplierRate9 50 | f32 51 | 0.01 52 | 53 | 54 | soulMultiplierRate10 55 | f32 56 | 0 57 | 58 | 59 | soulMultiplierRate11 60 | f32 61 | 0 62 | 63 | 64 | soulMultiplierRate12 65 | f32 66 | 0.01 67 | 68 | 69 | soulMultiplierRate13 70 | f32 71 | 0.01 72 | 73 | 74 | soulMultiplierRate14 75 | f32 76 | 0 77 | 78 | 79 | soulMultiplierRate15 80 | f32 81 | 0 82 | 83 | 84 | pad1 85 | dummy8 86 | 4 87 | 88 | -------------------------------------------------------------------------------- /fogdist/Layouts/NETWORK_AREA_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | LimitationTime0 5 | f32 6 | 30 7 | 8 | 9 | LimitationTime1 10 | f32 11 | 20 12 | 13 | 14 | LimitationTime2 15 | f32 16 | 30 17 | 18 | 19 | pad1 20 | dummy8 21 | 12 22 | 23 | 24 | isEnable00 25 | b8 26 | True 27 | 28 | 29 | isEnable01 30 | b8 31 | True 32 | 33 | 34 | isEnable02 35 | b8 36 | True 37 | 38 | 39 | unkb1 40 | b8 41 | True 42 | 43 | 44 | unkb2 45 | b8 46 | True 47 | 48 | 49 | unkb3 50 | b8 51 | True 52 | 53 | 54 | unkb4 55 | b8 56 | True 57 | 58 | 59 | unkb5 60 | b8 61 | True 62 | 63 | 64 | pad2 65 | dummy8 66 | 3 67 | 68 | -------------------------------------------------------------------------------- /fogdist/Layouts/NETWORK_MSG_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | MsgType0 5 | u8 6 | 3 7 | 8 | 9 | MsgType1 10 | u8 11 | 0 12 | 13 | 14 | MsgType2 15 | u8 16 | 1 17 | 18 | 19 | MsgType3 20 | u8 21 | 0 22 | 23 | 24 | MsgId0 25 | s32 26 | -1 27 | 28 | 29 | MsgId1 30 | s32 31 | -1 32 | 33 | 34 | MsgId2 35 | s32 36 | -1 37 | 38 | 39 | MsgId3 40 | s32 41 | -1 42 | 43 | 44 | MsgId4 45 | s32 46 | -1 47 | 48 | 49 | MsgId5 50 | s32 51 | -1 52 | 53 | 54 | MsgId6 55 | s32 56 | -1 57 | 58 | 59 | MsgId7 60 | s32 61 | -1 62 | 63 | 64 | MsgId8 65 | s32 66 | -1 67 | 68 | 69 | MsgId9 70 | s32 71 | -1 72 | 73 | 74 | MsgId10 75 | s32 76 | -1 77 | 78 | 79 | MsgId11 80 | s32 81 | -1 82 | 83 | 84 | MsgId12 85 | s32 86 | -1 87 | 88 | 89 | MsgId13 90 | s32 91 | -1 92 | 93 | 94 | MsgId14 95 | s32 96 | -1 97 | 98 | 99 | MsgId15 100 | s32 101 | -1 102 | 103 | 104 | MsgId16 105 | s32 106 | -1 107 | 108 | 109 | MsgId17 110 | s32 111 | -1 112 | 113 | 114 | MsgId18 115 | s32 116 | -1 117 | 118 | 119 | MsgId19 120 | s32 121 | -1 122 | 123 | 124 | MsgId20 125 | s32 126 | -1 127 | 128 | 129 | MsgId21 130 | s32 131 | -1 132 | 133 | 134 | MsgId22 135 | s32 136 | -1 137 | 138 | 139 | pad1 140 | dummy8 141 | 48 142 | 143 | -------------------------------------------------------------------------------- /fogdist/Layouts/NETWORK_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | networkData 5 | dummy8 6 | 632 7 | 8 | -------------------------------------------------------------------------------- /fogdist/Layouts/NPC_AI_ACTION_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | directionMovementId 5 | u8 6 | 0 7 | 8 | 9 | actId0 10 | u8 11 | 22 12 | 13 | 14 | actId1 15 | u8 16 | 0 17 | 18 | 19 | actId2 20 | u8 21 | 0 22 | 23 | 24 | isDisableDirectionMovement 25 | u8 26 | 0 27 | 28 | 29 | isDisableAct0 30 | u8 31 | 0 32 | 33 | 34 | isDisableAct1 35 | u8 36 | 0 37 | 38 | 39 | isDisableAct2 40 | u8 41 | 0 42 | 43 | 44 | actType 45 | s32 46 | 0 47 | 48 | 49 | isDisableAiCheck 50 | u8 51 | 0 52 | 53 | 54 | pad1 55 | dummy8 56 | 3 57 | 58 | -------------------------------------------------------------------------------- /fogdist/Layouts/OBJECT_MATERIAL_SFX_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | MtrlVfxId0 5 | s32 6 | 0 7 | 8 | 9 | MtrlVfxId1 10 | s32 11 | 0 12 | 13 | 14 | MtrlVfxId2 15 | s32 16 | 0 17 | 18 | 19 | MtrlVfxId3 20 | s32 21 | 0 22 | 23 | 24 | MtrlVfxId4 25 | s32 26 | 0 27 | 28 | 29 | MtrlVfxId5 30 | s32 31 | 0 32 | 33 | 34 | MtrlVfxId6 35 | s32 36 | 0 37 | 38 | 39 | MtrlVfxId7 40 | s32 41 | 0 42 | 43 | 44 | MtrlVfxId8 45 | s32 46 | 0 47 | 48 | 49 | MtrlVfxId9 50 | s32 51 | 0 52 | 53 | 54 | MtrlVfxId10 55 | s32 56 | 0 57 | 58 | 59 | MtrlVfxId11 60 | s32 61 | 0 62 | 63 | 64 | MtrlVfxId12 65 | s32 66 | 0 67 | 68 | 69 | MtrlVfxId13 70 | s32 71 | 0 72 | 73 | 74 | MtrlVfxId14 75 | s32 76 | 0 77 | 78 | 79 | MtrlVfxId15 80 | s32 81 | 0 82 | 83 | 84 | MtrlVfxId16 85 | s32 86 | 0 87 | 88 | 89 | MtrlVfxId17 90 | s32 91 | 0 92 | 93 | 94 | MtrlVfxId18 95 | s32 96 | 0 97 | 98 | 99 | MtrlVfxId19 100 | s32 101 | 0 102 | 103 | 104 | MtrlVfxId20 105 | s32 106 | 0 107 | 108 | 109 | MtrlVfxId21 110 | s32 111 | 0 112 | 113 | 114 | MtrlVfxId22 115 | s32 116 | 0 117 | 118 | 119 | MtrlVfxId23 120 | s32 121 | 0 122 | 123 | 124 | MtrlVfxId24 125 | s32 126 | 0 127 | 128 | 129 | MtrlVfxId25 130 | s32 131 | 0 132 | 133 | 134 | MtrlVfxId26 135 | s32 136 | 0 137 | 138 | 139 | MtrlVfxId27 140 | s32 141 | 0 142 | 143 | 144 | MtrlVfxId28 145 | s32 146 | 0 147 | 148 | 149 | MtrlVfxId29 150 | s32 151 | 0 152 | 153 | 154 | MtrlVfxId30 155 | s32 156 | 0 157 | 158 | 159 | MtrlVfxId31 160 | s32 161 | 0 162 | 163 | -------------------------------------------------------------------------------- /fogdist/Layouts/OBJ_ACT_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | actionEnableMsgId 5 | s32 6 | 10010400 7 | 8 | 9 | actionFailedMsgId 10 | s32 11 | -1 12 | 13 | 14 | spQualifiedPassEventFlag 15 | s32 16 | -1 17 | 18 | 19 | playerAnimId 20 | s32 21 | 60000 22 | 23 | 24 | chrAnimId 25 | s32 26 | 7120 27 | 28 | 29 | validDist 30 | s16 31 | 70 32 | 33 | 34 | spQualifiedId 35 | s16 36 | 0 37 | 38 | 39 | spQualifiedId2 40 | s16 41 | 0 42 | 43 | 44 | ObjDummyId 45 | u8 46 | 120 47 | 48 | 49 | pad1 50 | dummy8 51 | 1 52 | 53 | 54 | ObjAnimId 55 | s32 56 | 1 57 | 58 | 59 | ValidPlayerAngle 60 | u8 61 | 60 62 | 63 | 64 | spQualifiedType 65 | u8 66 | 0 67 | 68 | 69 | spQualifiedType2 70 | u8 71 | 0 72 | 73 | 74 | ValidObjAngle 75 | u8 76 | 60 77 | 78 | 79 | ChrSorbType 80 | u8 81 | 0 82 | 83 | 84 | eventKickTiming 85 | u8 86 | 1 87 | 88 | 89 | pad2 90 | dummy8 91 | 2 92 | 93 | 94 | actionButtonParamId 95 | s32 96 | 7200 97 | 98 | 99 | actionSuccessMsgId 100 | s32 101 | 0 102 | 103 | -------------------------------------------------------------------------------- /fogdist/Layouts/PHANTOM_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Alpha1 5 | f32 6 | 1 7 | 8 | 9 | Alpha2 10 | f32 11 | 0 12 | 13 | 14 | Alpha3 15 | f32 16 | 1 17 | 18 | 19 | Alpha4 20 | f32 21 | 1 22 | 23 | 24 | Alpha5 25 | f32 26 | 1 27 | 28 | 29 | R1 30 | u8 31 | 255 32 | 33 | 34 | G1 35 | u8 36 | 255 37 | 38 | 39 | B1 40 | u8 41 | 255 42 | 43 | 44 | R2 45 | u8 46 | 0 47 | 48 | 49 | G2 50 | u8 51 | 0 52 | 53 | 54 | B2 55 | u8 56 | 0 57 | 58 | 59 | R3 60 | u8 61 | 255 62 | 63 | 64 | G3 65 | u8 66 | 255 67 | 68 | 69 | B3 70 | u8 71 | 255 72 | 73 | 74 | R4 75 | u8 76 | 255 77 | 78 | 79 | G4 80 | u8 81 | 255 82 | 83 | 84 | B4 85 | u8 86 | 255 87 | 88 | 89 | R5 90 | u8 91 | 255 92 | 93 | 94 | G5 95 | u8 96 | 0 97 | 98 | 99 | B5 100 | u8 101 | 0 102 | 103 | 104 | Unk1 105 | u8 106 | 0 107 | 108 | 109 | GhostAlpha1 110 | f32 111 | 1 112 | 113 | 114 | GhostAlpha2 115 | f32 116 | 1 117 | 118 | 119 | GhostType 120 | u8 121 | 0 122 | 123 | 124 | pad1 125 | dummy8 126 | 3 127 | 128 | -------------------------------------------------------------------------------- /fogdist/Layouts/PLAY_REGION_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | playRegionSpId 5 | s32 6 | 0 7 | 8 | 9 | EventFlagId0 10 | s32 11 | 0 12 | 13 | 14 | LimitationTime 15 | f32 16 | 20 17 | 18 | 19 | EventFlagId1 20 | s32 21 | 0 22 | 23 | 24 | EventFlagId2 25 | s32 26 | 0 27 | 28 | 29 | DisolvedEventFlag 30 | s16 31 | 180 32 | 33 | 34 | LoadOfCinder [ON_OFF] 35 | u8 36 | 0 37 | 38 | 39 | IsEnableEvent 40 | b8 41 | False 42 | 43 | 44 | Unk1 45 | b8 46 | False 47 | 48 | 49 | Unk2 50 | b8 51 | False 52 | 53 | 54 | Unk3 55 | b8 56 | False 57 | 58 | 59 | Unk4 60 | b8 61 | False 62 | 63 | 64 | Unk5 65 | b8 66 | False 67 | 68 | 69 | Unk6 70 | b8 71 | False 72 | 73 | 74 | Unk7 75 | b8 76 | False 77 | 78 | 79 | BonfireEventId0 80 | s32 81 | -1 82 | 83 | 84 | BonfireEventId1 85 | s32 86 | -1 87 | 88 | 89 | BonfireEventId2 90 | s32 91 | -1 92 | 93 | 94 | BonfireEventId3 95 | s32 96 | -1 97 | 98 | 99 | BonfireEventId4 100 | s32 101 | -1 102 | 103 | 104 | BonfireEventId5 105 | s32 106 | -1 107 | 108 | 109 | BonfireEventId6 110 | s32 111 | -1 112 | 113 | 114 | BonfireEventId7 115 | s32 116 | -1 117 | 118 | 119 | BonfireEventId8 120 | s32 121 | -1 122 | 123 | 124 | BonfireEventId9 125 | s32 126 | -1 127 | 128 | 129 | Unk8 130 | b8 131 | True 132 | 133 | 134 | Unk9 135 | b8 136 | True 137 | 138 | 139 | Unk10 140 | b8 141 | True 142 | 143 | 144 | Unk11 145 | b8 146 | False 147 | 148 | 149 | Unk12 150 | b8 151 | False 152 | 153 | 154 | Unk13 155 | b8 156 | False 157 | 158 | 159 | Unk14 160 | b8 161 | False 162 | 163 | 164 | Unk15 165 | b8 166 | False 167 | 168 | 169 | pad1 170 | dummy8 171 | 31 172 | 173 | -------------------------------------------------------------------------------- /fogdist/Layouts/PROTECTOR_GEN_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | proParamId 5 | s32 6 | 0 7 | 8 | 9 | gemSlotType_0 10 | x32 11 | 0x80000160 12 | 13 | 14 | gemGenId_0 15 | s32 16 | -1 17 | 18 | 19 | gemSlotType_1 20 | x32 21 | 0x80000160 22 | 23 | 24 | gemGenId_1 25 | s32 26 | -1 27 | 28 | 29 | gemSlotType_2 30 | x32 31 | 0x80000160 32 | 33 | 34 | gemGenId_2 35 | s32 36 | -1 37 | 38 | 39 | gemSlotType_3 40 | x32 41 | 0x80000160 42 | 43 | 44 | gemGenId_3 45 | s32 46 | -1 47 | 48 | 49 | gemSlotType_4 50 | x32 51 | 0x80000160 52 | 53 | 54 | gemGenId_4 55 | s32 56 | -1 57 | 58 | -------------------------------------------------------------------------------- /fogdist/Layouts/RAGDOLL_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | hierarchGain 5 | f32 6 | 0 7 | 8 | 9 | velocityDamping 10 | f32 11 | 0 12 | 13 | 14 | accelGain 15 | f32 16 | 0 17 | 18 | 19 | velocityGain 20 | f32 21 | 0 22 | 23 | 24 | positionGain 25 | f32 26 | 0 27 | 28 | 29 | maxLinerVelocity 30 | f32 31 | 0 32 | 33 | 34 | maxAngularVelocity 35 | f32 36 | 0 37 | 38 | 39 | snapGain 40 | f32 41 | 0 42 | 43 | 44 | enable 45 | u8 46 | 1 47 | 48 | 49 | partsHitMaskNo 50 | s8 51 | 1 52 | 53 | 54 | pad1 55 | dummy8 56 | 14 57 | 58 | -------------------------------------------------------------------------------- /fogdist/Layouts/REINFORCE_PARAM_PROTECTOR_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | physicDefRate 5 | f32 6 | 1 7 | 8 | 9 | magicDefRate 10 | f32 11 | 1 12 | 13 | 14 | fireDefRate 15 | f32 16 | 1 17 | 18 | 19 | thunderDefRate 20 | f32 21 | 1 22 | 23 | 24 | slashDefRate 25 | f32 26 | 1 27 | 28 | 29 | blowDefRate 30 | f32 31 | 1 32 | 33 | 34 | thrustDefRate 35 | f32 36 | 1 37 | 38 | 39 | resistPoisonRate 40 | f32 41 | 1 42 | 43 | 44 | resistToxicRate 45 | f32 46 | 1 47 | 48 | 49 | resistBloodRate 50 | f32 51 | 1 52 | 53 | 54 | resistCurseRate 55 | f32 56 | 1 57 | 58 | 59 | ResidentSpEffectId1 60 | u8 61 | 0 62 | 63 | 64 | ResidentSpEffectId2 65 | u8 66 | 0 67 | 68 | 69 | ResidentSpEffectId3 70 | u8 71 | 0 72 | 73 | 74 | materialSetId 75 | u8 76 | 0 77 | 78 | 79 | darkDefRate 80 | f32 81 | 1 82 | 83 | 84 | resistFrost 85 | f32 86 | 1 87 | 88 | 89 | pad1 90 | dummy8 91 | 8 92 | 93 | -------------------------------------------------------------------------------- /fogdist/Layouts/ROLE_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | TeamType 5 | u8 6 | 16 7 | 8 | 9 | pad1 10 | dummy8 11 | 3 12 | 13 | 14 | PhantomParamId0 15 | s32 16 | -1 17 | 18 | 19 | SpEffectId0 20 | s32 21 | -1 22 | 23 | 24 | SpEffectId1 25 | s32 26 | -1 27 | 28 | 29 | SpEffectId2 30 | s32 31 | -1 32 | 33 | 34 | SpEffectId3 35 | s32 36 | -1 37 | 38 | 39 | SpEffectId4 40 | s32 41 | -1 42 | 43 | 44 | SpEffectId5 45 | s32 46 | -1 47 | 48 | 49 | SpEffectId6 50 | s32 51 | -1 52 | 53 | 54 | SpEffectId7 55 | s32 56 | -1 57 | 58 | 59 | SpEffectId8 60 | s32 61 | -1 62 | 63 | 64 | SpEffectId9 65 | s32 66 | -1 67 | 68 | 69 | SfxId0 70 | s32 71 | 0 72 | 73 | 74 | SfxId1 75 | s32 76 | 0 77 | 78 | 79 | StayAnimId 80 | s32 81 | 63010 82 | 83 | 84 | ItemLotId 85 | s32 86 | -1 87 | 88 | 89 | spEffectCondition 90 | u8 91 | 0 92 | 93 | 94 | IsDisplayTeamName [ON_OFF] 95 | u8 96 | 2 97 | 98 | 99 | pad2 100 | dummy8 101 | 2 102 | 103 | 104 | TextId 105 | s32 106 | 0 107 | 108 | 109 | subTeamType 110 | s32 111 | 16 112 | 113 | 114 | PhantomParamId1 115 | s32 116 | -1 117 | 118 | 119 | PhantomParamId2 120 | s32 121 | -1 122 | 123 | 124 | PhantomParamId3 125 | s32 126 | -1 127 | 128 | 129 | spEffect10 130 | s32 131 | -1 132 | 133 | 134 | spEffect11 135 | s32 136 | -1 137 | 138 | 139 | spEffect12 140 | s32 141 | -1 142 | 143 | 144 | spEffect13 145 | s32 146 | -1 147 | 148 | 149 | PhantomParamIdForDebug 150 | s32 151 | -1 152 | 153 | 154 | pad3 155 | dummy8 156 | 20 157 | 158 | -------------------------------------------------------------------------------- /fogdist/Layouts/SE_MATERIAL_CONVERT_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Material_Id 5 | s32 6 | 80 7 | 8 | -------------------------------------------------------------------------------- /fogdist/Layouts/SHOP_LINEUP_PARAM.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | EquipId 5 | s32 6 | 500 7 | 8 | 9 | value 10 | s32 11 | -1 12 | 13 | 14 | mtrlId 15 | s32 16 | -1 17 | 18 | 19 | EventFlag 20 | s32 21 | -1 22 | 23 | 24 | qwcID 25 | s32 26 | -1 27 | 28 | 29 | sellQuantity 30 | s16 31 | 1 32 | 33 | 34 | shopType 35 | u8 36 | 0 37 | 38 | 39 | equipType 40 | u8 41 | 3 42 | 43 | 44 | value_SAN 45 | s16 46 | -1 47 | 48 | 49 | pad1 50 | dummy8 51 | 6 52 | 53 | 54 | PriceRate 55 | f32 56 | 1 57 | 58 | -------------------------------------------------------------------------------- /fogdist/Layouts/SKELETON_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | neckTurnGain 5 | f32 6 | 0 7 | 8 | 9 | originalGroundHeightMS 10 | s16 11 | 0 12 | 13 | 14 | minAnkleHeightMS 15 | s16 16 | -30 17 | 18 | 19 | maxAnkleHeightMS 20 | s16 21 | 70 22 | 23 | 24 | cosineMaxKneeAngle 25 | s16 26 | -95 27 | 28 | 29 | cosineMinKneeAngle 30 | s16 31 | 55 32 | 33 | 34 | footPlantedAnkleHeightMS 35 | s16 36 | 1 37 | 38 | 39 | footRaisedAnkleHeightMS 40 | s16 41 | 30 42 | 43 | 44 | raycastDistanceUp 45 | s16 46 | 250 47 | 48 | 49 | raycastDistanceDown 50 | s16 51 | 235 52 | 53 | 54 | footEndLS_X 55 | s16 56 | 0 57 | 58 | 59 | footEndLS_Y 60 | s16 61 | 0 62 | 63 | 64 | footEndLS_Z 65 | s16 66 | 0 67 | 68 | 69 | onOffGain 70 | s16 71 | 18 72 | 73 | 74 | groundAcsendingGain 75 | s16 76 | 100 77 | 78 | 79 | groundDescendingGain 80 | s16 81 | 100 82 | 83 | 84 | footRaisedGain 85 | s16 86 | 20 87 | 88 | 89 | footPlantedGain 90 | s16 91 | 100 92 | 93 | 94 | footUnlockGain 95 | s16 96 | 80 97 | 98 | 99 | kneeAxisType 100 | u8 101 | 4 102 | 103 | 104 | useFootLocking 105 | u8 106 | 0 107 | 108 | 109 | footPlacementOn 110 | u8 111 | 1 112 | 113 | 114 | twistKneeAxisType 115 | u8 116 | 1 117 | 118 | 119 | neckTurnPriority 120 | u8 121 | 0 122 | 123 | 124 | neckTurnMaxAngle 125 | u8 126 | 0 127 | 128 | 129 | pad1 130 | dummy8 131 | 2 132 | 133 | -------------------------------------------------------------------------------- /fogdist/Layouts/SWORD_ARTS_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ActionId [0-36] 5 | u8 6 | 22 7 | 8 | 9 | ActionCorrection 10 | u8 11 | 2 12 | 13 | 14 | ReserveArtPointType [0-3] 15 | u8 16 | 1 17 | 18 | 19 | UnusedField 20 | u8 21 | 2 22 | 23 | 24 | reserveArtsPoint0 25 | s8 26 | -1 27 | 28 | 29 | reserveArtsPoint1 30 | s8 31 | -1 32 | 33 | 34 | reserveArtsPoint2 35 | s8 36 | -1 37 | 38 | 39 | reserveArtsPoint3 40 | s8 41 | -1 42 | 43 | 44 | DebugTextId 45 | s32 46 | 70005 47 | 48 | 49 | subFPCost 50 | s16 51 | -1 52 | 53 | 54 | FPCost 55 | s16 56 | 0 57 | 58 | 59 | FPCostLight 60 | s16 61 | -1 62 | 63 | 64 | FpCostStrong 65 | s16 66 | -1 67 | 68 | 69 | ShieldCategory [0-4] 70 | u8 71 | 0 72 | 73 | 74 | pad1 75 | dummy8 76 | 11 77 | 78 | -------------------------------------------------------------------------------- /fogdist/Layouts/TALK_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | PcGenderFemale1 5 | s32 6 | 90000000 7 | 8 | 9 | PcGenderMale1 10 | s32 11 | 30000001 12 | 13 | 14 | SpEffectId0 15 | s32 16 | -1 17 | 18 | 19 | AnimationId0 20 | s32 21 | -1 22 | 23 | 24 | SpEffectId1 25 | s32 26 | -1 27 | 28 | 29 | AnimationId1 30 | s32 31 | -1 32 | 33 | 34 | SpEffectId2 35 | s32 36 | 0 37 | 38 | 39 | AnimationId2 40 | s32 41 | -1 42 | 43 | 44 | EventFlagId 45 | s32 46 | -1 47 | 48 | 49 | EventID_Female 50 | s32 51 | 90000000 52 | 53 | 54 | EventID_Male 55 | s32 56 | 30000001 57 | 58 | 59 | TalkTime[0.0 - 1.0] 60 | f32 61 | 0 62 | 63 | -------------------------------------------------------------------------------- /fogdist/Layouts/THROW_DIRECTION_SFX_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | SfxId1 5 | s32 6 | 0 7 | 8 | 9 | SfxId2 10 | s32 11 | 0 12 | 13 | 14 | SfxId3 15 | s32 16 | 0 17 | 18 | 19 | SfxId4 20 | s32 21 | 0 22 | 23 | 24 | SfxId5 25 | s32 26 | 0 27 | 28 | 29 | SfxId6 30 | s32 31 | 0 32 | 33 | 34 | SfxId7 35 | s32 36 | 0 37 | 38 | 39 | SfxId8 40 | s32 41 | 0 42 | 43 | 44 | SfxId9 45 | s32 46 | 0 47 | 48 | 49 | SfxId10 50 | s32 51 | 0 52 | 53 | 54 | SfxId11 55 | s32 56 | 0 57 | 58 | 59 | SfxId12 60 | s32 61 | 0 62 | 63 | 64 | SfxId13 65 | s32 66 | 0 67 | 68 | 69 | SfxId14 70 | s32 71 | 0 72 | 73 | 74 | SfxId15 75 | s32 76 | 0 77 | 78 | 79 | SfxId16 80 | s32 81 | 0 82 | 83 | 84 | SfxId17 85 | s32 86 | 0 87 | 88 | 89 | SfxId18 90 | s32 91 | 0 92 | 93 | 94 | SfxId19 95 | s32 96 | 0 97 | 98 | 99 | SfxId20 100 | s32 101 | 0 102 | 103 | 104 | SfxId21 105 | s32 106 | 0 107 | 108 | 109 | SfxId22 110 | s32 111 | 0 112 | 113 | 114 | SfxId23 115 | s32 116 | 0 117 | 118 | 119 | SfxId24 120 | s32 121 | 0 122 | 123 | 124 | SfxId25 125 | s32 126 | 0 127 | 128 | 129 | SfxId26 130 | s32 131 | 0 132 | 133 | 134 | SfxId27 135 | s32 136 | 0 137 | 138 | 139 | SfxId28 140 | s32 141 | 0 142 | 143 | 144 | SfxId29 145 | s32 146 | 0 147 | 148 | 149 | SfxId30 150 | s32 151 | 0 152 | 153 | 154 | pad1 155 | dummy8 156 | 24 157 | 158 | -------------------------------------------------------------------------------- /fogdist/Layouts/TOUGHNESS_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Toughness 5 | f32 6 | 1 7 | 8 | 9 | DamageLvlThreshold 10 | s16 11 | 0 12 | 13 | 14 | IsToughnessEffective 15 | u8 16 | 0 17 | 18 | 19 | pad1 20 | dummy8 21 | 1 22 | 23 | 24 | SpEffectId 25 | s32 26 | 6352 27 | 28 | 29 | pad2 30 | dummy8 31 | 20 32 | 33 | -------------------------------------------------------------------------------- /fogdist/Layouts/UPPER_ARM_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ArmZ0 5 | f32 6 | 0 7 | 8 | 9 | ArmXY0 10 | f32 11 | 0 12 | 13 | 14 | ArmZ1 15 | f32 16 | 0 17 | 18 | 19 | ArmXY1 20 | f32 21 | 0 22 | 23 | 24 | ArmZ2 25 | f32 26 | 0 27 | 28 | 29 | ArmXY2 30 | f32 31 | 0 32 | 33 | 34 | ArmZ3 35 | f32 36 | 0 37 | 38 | 39 | ArmXY3 40 | f32 41 | 0 42 | 43 | 44 | ArmZ4 45 | f32 46 | 0 47 | 48 | 49 | ArmXY4 50 | f32 51 | 0 52 | 53 | 54 | ArmZ5 55 | f32 56 | 0 57 | 58 | 59 | ArmXY5 60 | f32 61 | 0 62 | 63 | 64 | ArmZ6 65 | f32 66 | 0 67 | 68 | 69 | ArmXY6 70 | f32 71 | 0 72 | 73 | 74 | ArmZ7 75 | f32 76 | 0 77 | 78 | 79 | ArmXY7 80 | f32 81 | 0 82 | 83 | 84 | ArmZ8 85 | f32 86 | 0 87 | 88 | 89 | ArmXY8 90 | f32 91 | 0 92 | 93 | 94 | ArmZ9 95 | f32 96 | 0 97 | 98 | 99 | ArmXY9 100 | f32 101 | 0 102 | 103 | 104 | pad1 105 | dummy8 106 | 48 107 | 108 | -------------------------------------------------------------------------------- /fogdist/Layouts/WEAPON_GEN_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | wepParamId 5 | s32 6 | 0 7 | 8 | 9 | gemSlotType_0 10 | s32 11 | -2147483296 12 | 13 | 14 | gemGenId0 15 | s32 16 | -1 17 | 18 | 19 | gemSlotType_1 20 | s32 21 | -2147483296 22 | 23 | 24 | gemGenId1 25 | s32 26 | -1 27 | 28 | 29 | gemSlotType_2 30 | s32 31 | -2147483296 32 | 33 | 34 | gemGenId2 35 | s32 36 | -1 37 | 38 | 39 | gemSlotType_3 40 | s32 41 | -2147483296 42 | 43 | 44 | gemGenId3 45 | s32 46 | -1 47 | 48 | 49 | gemSlotType_4 50 | s32 51 | -2147483296 52 | 53 | 54 | gemGenId4 55 | s32 56 | -1 57 | 58 | -------------------------------------------------------------------------------- /fogdist/Layouts/WET_ASPECT_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | R1 5 | u8 6 | 0 7 | 8 | 9 | G1 10 | u8 11 | 0 12 | 13 | 14 | B1 15 | u8 16 | 0 17 | 18 | 19 | pad1 20 | dummy8 21 | 1 22 | 23 | 24 | Alpha1 25 | f32 26 | 0 27 | 28 | 29 | R2 30 | u8 31 | 0 32 | 33 | 34 | G2 35 | u8 36 | 0 37 | 38 | 39 | B2 40 | u8 41 | 0 42 | 43 | 44 | pad2 45 | dummy8 46 | 1 47 | 48 | 49 | Alpha2 50 | f32 51 | 0 52 | 53 | 54 | WetRate 55 | f32 56 | 0 57 | 58 | 59 | WetCorrection 60 | u8 61 | 0 62 | 63 | 64 | pad3 65 | dummy8 66 | 11 67 | 68 | -------------------------------------------------------------------------------- /fogdist/Layouts/WHITE_SIGN_COOL_TIME_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | timeLimit0 5 | f32 6 | 360 7 | 8 | 9 | timeLimit1 10 | f32 11 | 360 12 | 13 | 14 | timeLimit2 15 | f32 16 | 360 17 | 18 | 19 | timeLimit3 20 | f32 21 | 360 22 | 23 | -------------------------------------------------------------------------------- /fogdist/Layouts/WIND_PARAM_ST.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | commonCapsuleBeginDmyId 5 | s16 6 | 0 7 | 8 | 9 | commonCapsuleEndDmyId 10 | s16 11 | 0 12 | 13 | 14 | commonCapsuleRadius 15 | f32 16 | 1 17 | 18 | 19 | pad1 20 | dummy8 21 | 120 22 | 23 | 24 | sfxWindEnable 25 | b8 26 | True 27 | 28 | 29 | sfxIgnorePlayerSfx 30 | b8 31 | False 32 | 33 | 34 | sfxIsCollision 35 | b8 36 | False 37 | 38 | 39 | pad2 40 | dummy8 41 | 3 42 | 43 | 44 | SfxDirPitchMin 45 | f32 46 | -15 47 | 48 | 49 | SfxDirPitchMax 50 | f32 51 | 15 52 | 53 | 54 | SfxDirYawMin 55 | f32 56 | -15 57 | 58 | 59 | SfxDirYawMax 60 | f32 61 | 15 62 | 63 | 64 | SfxCycleMin 65 | f32 66 | 0.5 67 | 68 | 69 | SfxCycleMax 70 | f32 71 | 1 72 | 73 | 74 | SfxSpeedMin 75 | f32 76 | 0.1 77 | 78 | 79 | SfxSpeedMax 80 | f32 81 | 2.5 82 | 83 | 84 | SfxMaximumDrag 85 | f32 86 | 1 87 | 88 | 89 | pad3 90 | dummy8 91 | 88 92 | 93 | 94 | clothWindEnable 95 | b8 96 | True 97 | 98 | 99 | clothVertexWind 100 | b8 101 | False 102 | 103 | 104 | pad4 105 | dummy8 106 | 3 107 | 108 | 109 | clothDirPitchMin 110 | f32 111 | -15 112 | 113 | 114 | clothDirPitchMax 115 | f32 116 | 15 117 | 118 | 119 | clothDirYawMin 120 | f32 121 | -15 122 | 123 | 124 | clothDirYawMax 125 | f32 126 | 15 127 | 128 | 129 | clothCycleMin 130 | f32 131 | 0.5 132 | 133 | 134 | clothCycleMax 135 | f32 136 | 1 137 | 138 | 139 | clothSpeedMin 140 | f32 141 | 40 142 | 143 | 144 | clothSpeedMax 145 | f32 146 | 10 147 | 148 | 149 | clothMaximumDrag 150 | f32 151 | 10 152 | 153 | 154 | pad5 155 | dummy8 156 | 88 157 | 158 | -------------------------------------------------------------------------------- /fogdist/Names/CharaInitParam.txt: -------------------------------------------------------------------------------- 1 | 0 UNUSED 2 | 3000 Knight 3 | 3001 Mercenary 4 | 3002 Warrior 5 | 3003 Herald 6 | 3004 Thief 7 | 3005 Assassin 8 | 3006 Sorcerer 9 | 3007 Pyromancer 10 | 3008 Cleric 11 | 3009 Deprived 12 | 3500 UNUSED 13 | 21000 Slave Knight Gael 14 | 21140 Sir Vilhelm 15 | 21200 Livid Pyromancer Dunnel 16 | 21300 Champion's Gravetender 17 | 21400 Amnesiac Lapp 18 | 21500 Shira 19 | 21640 Halflight, Spear of the Church 20 | 21700 Painting Guardian 21 | 21800 Halflight, Spear of the Church 22 | 21940 Desert Pyromancer Zoey 23 | 22000 Amnesiac Lapp 24 | 22140 Silver Knight Ledo 25 | 22240 Alva, Seeker of the Spurned 26 | 22340 Moaning Knight 27 | 24700 Madwoman 28 | 24800 Greirat of the Undead Settlement 29 | 25000 Yuria of Londor 30 | 25100 Hawkwood the Deserter 31 | 25200 Sirris of the Sunless Realms 32 | 25300 Ringfinger Leonhard 33 | 25400 Orbeck of Vinheim 34 | 25500 Cornyx of the Great Swamp 35 | 25600 Karla 36 | 25700 Irina of Carim 37 | 25800 Eygon of Carim 38 | 25900 UNUSED 39 | 26000 Anri of Astora (female) 40 | 26050 Anri of Astora (male) 41 | 26100 Unbreakable Patches 42 | 26200 Siegward of Catarina 43 | 26209 UNUSED 44 | 26300 Horace the Hushed 45 | 27300 Sword Master 46 | 27420 Yellowfinger Heysel 47 | 27500 Black Hand Kamui 48 | 27600 Great Swamp Cuculus 49 | 27700 Holy Knight Hodrick 50 | 27800 Londor Pale Shade 51 | 27900 Lion Knight Albert 52 | 28000 Daughter of Crystal Kriemhild 53 | 28100 Greatsword Exile Knight 54 | 28200 Great Club Exile Knight 55 | 28300 Brigand 56 | 28400 Fallen Knight 57 | 28600 Court Sorcerer 58 | 28700 Havel Knight 59 | 28800 Drakeblood Knight 60 | 28900 Rapier Champion 61 | 29100 Drang Hammers Knight 62 | 29100 Drang Twinspears Knight 63 | 29200 Knight Slayer Tsorig 64 | 29340 Creighton the Wanderer 65 | 29440 Alva, Seeker of the Spurned 66 | 29540 Longfinger Kirk 67 | 1000000 UNUSED -------------------------------------------------------------------------------- /fogdist/Names/EquipParamAccessory.txt: -------------------------------------------------------------------------------- 1 | 10000 Blade of the Darkmoon 2 | 10020 Watchdogs of Farron 3 | 10030 Aldrich Faithful 4 | 10040 Warrior of Sunlight 5 | 10050 Mound-makers 6 | 10060 Way of Blue 7 | 10070 Blue Sentinels 8 | 10080 Rosaria's Fingers 9 | 10090 Spears of the Church 10 | 20000 Life Ring 11 | 20001 Life Ring+1 12 | 20002 Life Ring+2 13 | 20003 Life Ring+3 14 | 20010 Chloranthy Ring 15 | 20011 Chloranthy Ring+1 16 | 20012 Chloranthy Ring+2 17 | 20013 Chloranthy Ring+3 18 | 20020 Havel's Ring 19 | 20021 Havel's Ring+1 20 | 20022 Havel's Ring+2 21 | 20023 Havel's Ring+3 22 | 20030 Ring of Favor 23 | 20031 Ring of Favor+1 24 | 20032 Ring of Favor+2 25 | 20033 Ring of Favor+3 26 | 20040 Ring of Steel Protection 27 | 20041 Ring of Steel Protection+1 28 | 20042 Ring of Steel Protection+2 29 | 20043 Ring of Steel Protection+3 30 | 20050 Flame Stoneplate Ring 31 | 20051 Flame Stoneplate Ring+1 32 | 20052 Flame Stoneplate Ring+2 33 | 20060 Thunder Stoneplate Ring 34 | 20061 Thunder Stoneplate Ring+1 35 | 20062 Thunder Stoneplate Ring+2 36 | 20070 Magic Stoneplate Ring 37 | 20071 Magic Stoneplate Ring+1 38 | 20072 Magic Stoneplate Ring+2 39 | 20080 Dark Stoneplate Ring 40 | 20081 Dark Stoneplate Ring+1 41 | 20082 Dark Stoneplate Ring+2 42 | 20090 Speckled Stoneplate Ring 43 | 20091 Speckled Stoneplate Ring+1 44 | 20100 Bloodbite Ring 45 | 20101 Bloodbite Ring+1 46 | 20110 Poisonbite Ring 47 | 20111 Poisonbite Ring+1 48 | 20120 Cursebite Ring 49 | 20130 Fleshbite Ring 50 | 20131 Fleshbite Ring+1 51 | 20140 Wood Grain Ring 52 | 20141 Wood Grain Ring+1 53 | 20142 Wood Grain Ring+2 54 | 20150 Scholar Ring 55 | 20160 Priestess Ring 56 | 20170 Red Tearstone Ring 57 | 20180 Blue Tearstone Ring 58 | 20190 Wolf Ring 59 | 20191 Wolf Ring+1 60 | 20192 Wolf Ring+2 61 | 20193 Wolf Ring+3 62 | 20200 Leo Ring 63 | 20210 Ring of Sacrifice 64 | 20230 Young Dragon Ring 65 | 20231 Bellowing Dragoncrest Ring 66 | 20240 Great Swamp Ring 67 | 20241 Witch's Ring 68 | 20250 Morne's Ring 69 | 20251 Ring of the Sun's First Born 70 | 20270 Lingering Dragoncrest Ring 71 | 20271 Lingering Dragoncrest Ring+1 72 | 20272 Lingering Dragoncrest Ring+2 73 | 20280 Sage Ring 74 | 20281 Sage Ring+1 75 | 20282 Sage Ring+2 76 | 20290 Slumbering Dragoncrest Ring 77 | 20300 Dusk Crown Ring 78 | 20310 Saint's Ring 79 | 20320 Deep Ring 80 | 20330 Darkmoon Ring 81 | 20370 Hawk Ring 82 | 20380 Hornet Ring 83 | 20390 Covetous Gold Serpent Ring 84 | 20391 Covetous Gold Serpent Ring+1 85 | 20392 Covetous Gold Serpent Ring+2 86 | 20393 Covetous Gold Serpent Ring+3 87 | 20400 Covetous Silver Serpent Ring 88 | 20401 Covetous Silver Serpent Ring+1 89 | 20402 Covetous Silver Serpent Ring+2 90 | 20403 Covetous Silver Serpent Ring+3 91 | 20410 Sun Princess Ring 92 | 20420 Silvercat Ring 93 | 20430 Skull Ring 94 | 20440 Untrue White Ring 95 | 20450 Carthus Milkring 96 | 20460 Knight's Ring 97 | 20470 Hunter's Ring 98 | 20480 Knight Slayer's Ring 99 | 20490 Magic Clutch Ring 100 | 20500 Lightning Clutch Ring 101 | 20510 Fire Clutch Ring 102 | 20520 Dark Clutch Ring 103 | 20540 Flynn's Ring 104 | 20550 Prisoner's Chain 105 | 20560 Untrue Dark Ring 106 | 20580 Obscuring Ring 107 | 20590 Ring of the Evil Eye 108 | 20591 Ring of the Evil Eye+1 109 | 20592 Ring of the Evil Eye+2 110 | 20593 Ring of the Evil Eye+3 111 | 20600 Calamity Ring 112 | 20610 Farron Ring 113 | 20620 Aldrich's Ruby 114 | 20630 Aldrich's Sapphire 115 | 20660 Lloyd's Sword Ring 116 | 20670 Lloyd's Shield Ring 117 | 20700 Estus Ring 118 | 20710 Ashen Estus Ring 119 | 20720 Horsehoof Ring 120 | 20730 Carthus Bloodring 121 | 20740 Reversal Ring 122 | 20750 Pontiff's Right Eye 123 | 20790 Pontiff's Left Eye 124 | 20830 Dragonscale Ring 125 | 21000 Chillbite Ring 126 | -------------------------------------------------------------------------------- /fogdist/Names/ShopIds.txt: -------------------------------------------------------------------------------- 1 | 1 UNUSED 2 | 30000 Ludleth 3 | 40000 Yuria 4 | 50000 Yoel 5 | 110000 Shrine Handmaid 6 | 119900 Untended Graves Handmaid 7 | 120000 Greirat 8 | 130100 Orbeck spells 9 | 140000 Cornyx 10 | 140100 Cornyx spells 11 | 150100 Karla spells 12 | 160000 Irina 13 | 160100 Irina spells 14 | 200000 Patches 15 | 760000 Stone-humped Hag 16 | 900000 UNUSED 17 | --------------------------------------------------------------------------------