From 633f5a9cb95233d84958f7636557da382fb1e50e Mon Sep 17 00:00:00 2001
From: Doriel Rivalet <100863878+DorielRivalet@users.noreply.github.com>
Date: Mon, 10 Jul 2023 22:48:48 -0300
Subject: [PATCH] style: fix style warnings
---
MHFZ_Overlay/.stylecop.json | 3 +-
MHFZ_Overlay/App.xaml.cs | 3 +-
MHFZ_Overlay/DataLoader.cs | 88 +-
.../Models/Addresses/AddressModelHGE.cs | 655 +++-
.../Models/Addresses/AddressModelNotHGE.cs | 515 ++-
MHFZ_Overlay/Models/Addresses/README.md | 5 +-
MHFZ_Overlay/Models/BrushAnimation.cs | 13 +-
MHFZ_Overlay/Models/ButtonPress.cs | 18 +-
.../Models/Constant/ApplicationPaths.cs | 6 +-
MHFZ_Overlay/Models/Constant/Messages.cs | 53 +-
MHFZ_Overlay/Models/Constant/Numbers.cs | 222 +-
MHFZ_Overlay/Models/Constant/TimeFormats.cs | 4 +-
MHFZ_Overlay/Models/FastestRun.cs | 6 +-
.../Models/Mappers/AchievementsMapper.cs | 2458 +++++++-----
MHFZ_Overlay/Models/Mappers/AreaIconMapper.cs | 129 +-
.../BerserkRavienteTriggerEventsMapper.cs | 5 +-
.../Models/Mappers/BingoMonsterMapper.cs | 16 +-
.../Mappers/CatppuccinMochaColorsMapper.cs | 107 +-
.../Models/Mappers/DPadImageMapper.cs | 2 +-
.../Models/Mappers/DiscordServersMapper.cs | 5 +-
.../Models/Mappers/GatheringMapMapper.cs | 134 +-
.../Models/Mappers/JoystickImageMapper.cs | 2 +-
.../Models/Mappers/MezFesMinigameMapper.cs | 2 +-
.../Models/Mappers/MonsterColorMapper.cs | 410 +-
.../Models/Mappers/MonsterImageMapper.cs | 161 +-
MHFZ_Overlay/Models/Mappers/MonsterMapper.cs | 3 +-
.../Models/Mappers/MonsterNameMapper.cs | 11 +-
.../Models/Mappers/MonsterRenderMapper.cs | 394 +-
.../Models/Mappers/PersonalBestsMapper.cs | 24 +-
MHFZ_Overlay/Models/Mappers/PlayersMapper.cs | 7 +-
.../Models/Mappers/WeaponIconsMapper.cs | 4 +-
.../Models/Mappers/WeaponUsageMapper.cs | 12 +-
MHFZ_Overlay/Models/Monster/MonsterInfo.cs | 15 +-
MHFZ_Overlay/Models/Monster/MonsterLog.cs | 18 +-
MHFZ_Overlay/Models/MonsterInfoList.cs | 2390 ++++++------
MHFZ_Overlay/Models/PartnyaBag.cs | 1 -
MHFZ_Overlay/Models/PlayerInventory.cs | 1 +
MHFZ_Overlay/Models/RangeValidationRule.cs | 4 +-
MHFZ_Overlay/Models/RecentRuns.cs | 8 +-
MHFZ_Overlay/Models/Structures/Bitfields.cs | 28 +-
MHFZ_Overlay/Models/Structures/Enums.cs | 16 +-
.../Converter/ConfigurationPresetConverter.cs | 1 -
.../Converter/OptionToTemplateConverter.cs | 9 +-
.../DataAccessLayer/DatabaseManager.cs | 673 ++--
MHFZ_Overlay/Services/Hotkey/GlobalHotkey.cs | 37 +-
.../Services/Manager/AchievementManager.cs | 1070 ++++--
.../Services/Manager/ApplicationManager.cs | 5 +-
.../Services/Manager/DiscordManager.cs | 322 +-
MHFZ_Overlay/Services/Manager/FileManager.cs | 20 +-
.../Services/Manager/LoggingManager.cs | 10 +-
.../Manager/OverlaySettingsManager.cs | 19 +-
.../Template/OptionTemplateSelector.cs | 1 +
MHFZ_Overlay/ViewModels/AddressModel.cs | 3299 +++++++++++++----
MHFZ_Overlay/Views/ConfigWindow.xaml.cs | 624 ++--
.../CustomControls/CustomProgressBar.xaml.cs | 139 +-
.../MainConfigurationActions.xaml.cs | 28 +-
.../Views/CustomControls/OutlinedTextBlock.cs | 2 +-
MHFZ_Overlay/Views/MainWindow.xaml.cs | 823 ++--
MHFZ_Overlay/Views/SettingsForm.xaml.cs | 29 +-
59 files changed, 9901 insertions(+), 5168 deletions(-)
diff --git a/MHFZ_Overlay/.stylecop.json b/MHFZ_Overlay/.stylecop.json
index 278631a1..acedb4c1 100644
--- a/MHFZ_Overlay/.stylecop.json
+++ b/MHFZ_Overlay/.stylecop.json
@@ -3,7 +3,8 @@
"settings": {
"documentationRules": {
"companyName": "The mhfz-overlay developers",
- "copyrightText": " © 2023 {companyName}.\n Use of this source code is governed by a {licenseName} license that can be\n found in the LICENSE file.",
+ "copyrightText": "© 2023 {companyName}.\nUse of this source code is governed by a {licenseName} license that can be\nfound in the LICENSE file.",
+ "xmlHeader": false,
"variables": {
"licenseName": "MIT"
}
diff --git a/MHFZ_Overlay/App.xaml.cs b/MHFZ_Overlay/App.xaml.cs
index a56e698f..0564f5ae 100644
--- a/MHFZ_Overlay/App.xaml.cs
+++ b/MHFZ_Overlay/App.xaml.cs
@@ -104,7 +104,7 @@ protected override void OnStartup(StartupEventArgs e)
private static void App_DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
{
// Log/inspect the inspection here
- logger.Error(e.Exception);
+ logger.Error("Unhandled exception", e.Exception);
}
private static void SetRenderingMode(string renderingMode)
@@ -185,6 +185,7 @@ private static void OnAppUninstall(SemanticVersion version, IAppTools tools)
private static void OnAppRun(SemanticVersion version, IAppTools tools, bool firstRun)
{
tools.SetProcessAppUserModelId();
+
// show a welcome message when the app is first installed
if (firstRun)
{
diff --git a/MHFZ_Overlay/DataLoader.cs b/MHFZ_Overlay/DataLoader.cs
index 40428a0f..7f9e5041 100644
--- a/MHFZ_Overlay/DataLoader.cs
+++ b/MHFZ_Overlay/DataLoader.cs
@@ -6,20 +6,34 @@
/*
- To make the DataLoader class clearly fit into a single category in the MVVM pattern, you can refactor it by separating its responsibilities into distinct components. Here's a suggestion on how you can achieve this:
+ To make the DataLoader class clearly fit into a single category in the MVVM pattern,
+you can refactor it by separating its responsibilities into distinct components.
+Here's a suggestion on how you can achieve this:
-Service/Model: Move the data loading and database management responsibilities to a dedicated service class, such as DataLoadService. This service will be responsible for initializing the DatabaseManager, checking external processes and illegal modifications, and interacting with memory addresses. It can expose methods or properties to retrieve game data or perform data-related operations. This will help separate data-related concerns from the other responsibilities of DataLoader.
+Service/Model: Move the data loading and database management responsibilities to
+a dedicated service class, such as DataLoadService.
+This service will be responsible for initializing the DatabaseManager,
+checking external processes and illegal modifications, and interacting with memory addresses.
+It can expose methods or properties to retrieve game data or perform data-related operations.
+This will help separate data-related concerns from the other responsibilities of DataLoader.
-ViewModel: Extract the logic related to game state checks and warnings into a separate ViewModel class, such as GameStatusViewModel. This ViewModel can have properties and commands that represent the game state and provide warnings or error messages to the View based on that state. It can utilize the DataLoadService to fetch relevant game data.
+ViewModel: Extract the logic related to game state checks and warnings into a separate ViewModel class,
+such as GameStatusViewModel. This ViewModel can have properties and commands
+that represent the game state and provide warnings or error messages to the View based on that state.
+It can utilize the DataLoadService to fetch relevant game data.
-View: The MainWindow.xaml and MainWindow.xaml.cs files will remain as the View components, responsible for displaying the UI and interacting with the ViewModel.
+View: The MainWindow.xaml and MainWindow.xaml.cs files will remain as the View components,
+responsible for displaying the UI and interacting with the ViewModel.
By following this approach, you achieve a clearer separation of concerns:
-The DataLoadService handles the data loading, database management, and memory address interactions (service/model).
+The DataLoadService handles the data loading, database management,
+and memory address interactions (service/model).
The GameStatusViewModel contains the logic for game state checks and warnings (viewmodel).
The MainWindow acts as the user interface (view).
-This separation allows for better maintainability, testability, and adherence to the MVVM pattern. Each component has a well-defined responsibility, making it easier to understand and modify the codebase.
+This separation allows for better maintainability, testability, and adherence to the MVVM pattern.
+Each component has a well-defined responsibility,
+making it easier to understand and modify the codebase.
*/
@@ -74,7 +88,7 @@ public DataLoader()
// Imulion's version does not have anything in the catch block.
// I'm marking this as error since overlay might interfere with custom shaders.
LoggerInstance.Error(ex, "Could not create code cave");
- System.Windows.MessageBox.Show("Could not create code cave. ReShade or similar programs might trigger this error. Also make sure you are not loading the overlay when on game launcher.", Messages.ERROR_TITLE, System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Error);
+ System.Windows.MessageBox.Show("Could not create code cave. ReShade or similar programs might trigger this error. Also make sure you are not loading the overlay when on game launcher.", Messages.ErrorTitle, System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Error);
}
if (!isHighGradeEdition)
@@ -102,7 +116,7 @@ public DataLoader()
else
{
LoggerInstance.Fatal(CultureInfo.InvariantCulture, "Launch game first");
- System.Windows.MessageBox.Show("Please launch game first", Messages.ERROR_TITLE, System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Error);
+ System.Windows.MessageBox.Show("Please launch game first", Messages.ErrorTitle, System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Error);
ApplicationManager.HandleShutdown();
}
@@ -134,7 +148,7 @@ private void CheckIfLoadedOutsideQuest()
if (model.QuestID() != 0)
{
LoggerInstance.Fatal(CultureInfo.InvariantCulture, "Loaded overlay inside quest {0}", model.QuestID());
- System.Windows.MessageBox.Show("Loaded overlay inside quest. Please load the overlay outside quests.", Messages.FATAL_TITLE, System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Error);
+ System.Windows.MessageBox.Show("Loaded overlay inside quest. Please load the overlay outside quests.", Messages.FatalTitle, System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Error);
LoggingManager.WriteCrashLog(new ArgumentOutOfRangeException("Loaded overlay inside quest"));
}
}
@@ -153,12 +167,14 @@ private void GetMHFFolderLocation()
{
// The "mhf.exe" process was not found
LoggerInstance.Fatal(CultureInfo.InvariantCulture, "mhf.exe not found");
- MessageBox.Show("The 'mhf.exe' process was not found.", Messages.ERROR_TITLE, MessageBoxButton.OK, MessageBoxImage.Error);
+ MessageBox.Show("The 'mhf.exe' process was not found.", Messages.ErrorTitle, MessageBoxButton.OK, MessageBoxImage.Error);
ApplicationManager.HandleShutdown();
return;
}
+
// Get the location of the first "mhf.exe" process
string? mhfPath = module.FileName;
+
// Get the directory that contains "mhf.exe"
string? mhfDirectory = Path.GetDirectoryName(mhfPath);
@@ -166,10 +182,11 @@ private void GetMHFFolderLocation()
{
// The "mhf.exe" process was not found
LoggerInstance.Fatal(CultureInfo.InvariantCulture, "mhf.exe not found");
- MessageBox.Show("The 'mhf.exe' process was not found.", Messages.ERROR_TITLE, MessageBoxButton.OK, MessageBoxImage.Error);
+ MessageBox.Show("The 'mhf.exe' process was not found.", Messages.ErrorTitle, MessageBoxButton.OK, MessageBoxImage.Error);
ApplicationManager.HandleShutdown();
return;
}
+
// Save the directory to the program's settings
// (Assuming you have a "settings" object that can store strings)
s.GameFolderPath = mhfDirectory;
@@ -199,7 +216,7 @@ private void GetMHFFolderLocation()
{
// The "mhf.exe" process was not found
LoggerInstance.Fatal(CultureInfo.InvariantCulture, "mhf.exe not found");
- MessageBox.Show("The 'mhf.exe' process was not found.", Messages.ERROR_TITLE, MessageBoxButton.OK, MessageBoxImage.Error);
+ MessageBox.Show("The 'mhf.exe' process was not found.", Messages.ErrorTitle, MessageBoxButton.OK, MessageBoxImage.Error);
ApplicationManager.HandleShutdown();
}
}
@@ -254,31 +271,36 @@ public void CheckForExternalProcesses()
if (process.ProcessName == "GameOverlayUI" && !steamOverlayWarningShown)
{
LoggerInstance.Warn(CultureInfo.InvariantCulture, "Found Steam overlay: {0}", process.ProcessName);
- var result = MessageBox.Show($"Having Steam Overlay open while MHF-Z Overlay is running may decrease performance. ({process.ProcessName} found)", Messages.WARNING_TITLE, MessageBoxButton.OK, MessageBoxImage.Warning);
+ var result = MessageBox.Show($"Having Steam Overlay open while MHF-Z Overlay is running may decrease performance. ({process.ProcessName} found)", Messages.WarningTitle, MessageBoxButton.OK, MessageBoxImage.Warning);
if (result == MessageBoxResult.OK)
{
steamOverlayWarningShown = true;
}
+
continue;
}
+
if (allowedProcesses.Any(s => process.ProcessName.Contains(s)) && process.ProcessName != "MHFZ_Overlay")
{
continue;
}
+
if (bannedProcesses.Any(s => process.ProcessName.Contains(s)) && process.ProcessName != "MHFZ_Overlay")
{
// processName is a substring of one of the banned process strings
LoggerInstance.Fatal(CultureInfo.InvariantCulture, "Found banned process {0}", process.ProcessName);
- MessageBox.Show($"Close other external programs before opening the overlay ({process.ProcessName} found)", Messages.FATAL_TITLE, MessageBoxButton.OK, MessageBoxImage.Error);
+ MessageBox.Show($"Close other external programs before opening the overlay ({process.ProcessName} found)", Messages.FatalTitle, MessageBoxButton.OK, MessageBoxImage.Error);
// Close the overlay program
ApplicationManager.HandleShutdown();
}
+
if (process.ProcessName == "MHFZ_Overlay")
{
overlayCount++;
}
+
if (process.ProcessName == "mhf")
{
gameCount++;
@@ -288,16 +310,17 @@ public void CheckForExternalProcesses()
{
// More than one "MHFZ_Overlay" process is running
LoggerInstance.Fatal(CultureInfo.InvariantCulture, "Found duplicate overlay");
- MessageBox.Show("Close other instances of the overlay before opening a new one", Messages.FATAL_TITLE, MessageBoxButton.OK, MessageBoxImage.Error);
+ MessageBox.Show("Close other instances of the overlay before opening a new one", Messages.FatalTitle, MessageBoxButton.OK, MessageBoxImage.Error);
// Close the overlay program
ApplicationManager.HandleShutdown();
}
+
if (gameCount > 1)
{
// More than one game process is running
LoggerInstance.Fatal(CultureInfo.InvariantCulture, "Found duplicate game");
- MessageBox.Show("Close other instances of the game before opening a new one", Messages.FATAL_TITLE, MessageBoxButton.OK, MessageBoxImage.Error);
+ MessageBox.Show("Close other instances of the game before opening a new one", Messages.FatalTitle, MessageBoxButton.OK, MessageBoxImage.Error);
// Close the overlay program
ApplicationManager.HandleShutdown();
@@ -309,7 +332,9 @@ public void CheckForExternalProcesses()
public void CheckForIllegalModifications()
{
if (App.isClowdSquirrelUpdating)
+ {
return;
+ }
try
{
@@ -324,13 +349,14 @@ public void CheckForIllegalModifications()
{
// The "mhf.exe" process was not found
LoggerInstance.Fatal(CultureInfo.InvariantCulture, "mhf.exe not found");
- MessageBox.Show("The 'mhf.exe' process was not found. You may have closed the game. Closing overlay.", Messages.FATAL_TITLE, MessageBoxButton.OK, MessageBoxImage.Error);
+ MessageBox.Show("The 'mhf.exe' process was not found. You may have closed the game. Closing overlay.", Messages.FatalTitle, MessageBoxButton.OK, MessageBoxImage.Error);
ApplicationManager.HandleShutdown();
return;
}
// Get the location of the first "mhf.exe" process
string? mhfPath = module.FileName;
+
// Get the directory that contains "mhf.exe"
string? mhfDirectory = Path.GetDirectoryName(mhfPath);
@@ -338,7 +364,7 @@ public void CheckForIllegalModifications()
{
// The "mhf.exe" process was not found
LoggerInstance.Fatal(CultureInfo.InvariantCulture, "mhf.exe not found");
- MessageBox.Show("The 'mhf.exe' process was not found. You may have closed the game. Closing overlay.", Messages.FATAL_TITLE, MessageBoxButton.OK, MessageBoxImage.Error);
+ MessageBox.Show("The 'mhf.exe' process was not found. You may have closed the game. Closing overlay.", Messages.FatalTitle, MessageBoxButton.OK, MessageBoxImage.Error);
ApplicationManager.HandleShutdown();
return;
}
@@ -353,7 +379,7 @@ public void CheckForIllegalModifications()
{
// The "mhf.exe" process was not found
LoggerInstance.Fatal(CultureInfo.InvariantCulture, "mhf.exe not found");
- MessageBox.Show("The 'mhf.exe' process was not found. You may have closed the game. Closing overlay.", Messages.FATAL_TITLE, MessageBoxButton.OK, MessageBoxImage.Error);
+ MessageBox.Show("The 'mhf.exe' process was not found. You may have closed the game. Closing overlay.", Messages.FatalTitle, MessageBoxButton.OK, MessageBoxImage.Error);
ApplicationManager.HandleShutdown();
}
}
@@ -365,14 +391,13 @@ public void CheckForIllegalModifications()
public bool databaseChanged;
-
- #region DataLoaderVariables
//needed for getting data
- readonly Mem m = new();
+ readonly Mem m = new ();
public bool isHighGradeEdition { get; set; }
int index;
+
///
/// Gets the model.
///
@@ -381,8 +406,6 @@ public void CheckForIllegalModifications()
///
public AddressModel model { get; } // TODO: fix null warning
- #endregion
-
private static readonly DatabaseManager databaseManager = DatabaseManager.GetInstance();
///
@@ -396,10 +419,11 @@ private void CreateCodeCave(int PID)
if (proc == null)
{
LoggerInstance.Fatal(CultureInfo.InvariantCulture, "Launch game first");
- System.Windows.MessageBox.Show("Please launch game first", Messages.ERROR_TITLE, System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Error);
+ System.Windows.MessageBox.Show("Please launch game first", Messages.ErrorTitle, System.Windows.MessageBoxButton.OK, System.Windows.MessageBoxImage.Error);
ApplicationManager.HandleShutdown();
return;
}
+
long searchAddress = m.AoBScan("89 04 8D 00 C6 43 00 61 E9").Result.FirstOrDefault();
if (searchAddress.ToString("X8", CultureInfo.InvariantCulture) == "00000000")
{
@@ -432,8 +456,8 @@ private void CreateCodeCave(int PID)
public string GetQuestTimeCompletion()
{
- double totalQuestDuration = (double)model.TimeDefInt() / Numbers.FRAMES_PER_SECOND; // Total duration of the quest in seconds
- double timeRemainingInQuest = (double)model.TimeInt() / Numbers.FRAMES_PER_SECOND; // Time left in the quest in seconds
+ double totalQuestDuration = (double)model.TimeDefInt() / Numbers.FramesPerSecond; // Total duration of the quest in seconds
+ double timeRemainingInQuest = (double)model.TimeInt() / Numbers.FramesPerSecond; // Time left in the quest in seconds
// Calculate the elapsed time by subtracting the time left from the total duration
double elapsedTime = totalQuestDuration - timeRemainingInQuest;
@@ -445,7 +469,7 @@ public string GetQuestTimeCompletion()
TimeSpan timeSpan = TimeSpan.FromMilliseconds(elapsedTime);
// Format the TimeSpan object as a string
- string formattedTime = timeSpan.ToString(TimeFormats.MINUTES_SECONDS_MILLISECONDS, CultureInfo.InvariantCulture);
+ string formattedTime = timeSpan.ToString(TimeFormats.MinutesSecondsMilliseconds, CultureInfo.InvariantCulture);
return formattedTime;
}
@@ -474,6 +498,7 @@ void WriteByteFromAddress(UIntPtr codecaveAddress, Process proc, long offset1, i
Process? LoadMHFODLL(int PID)
{
LoggerInstance.Info(CultureInfo.InvariantCulture, "Loading MHFODLL");
+
//Search and get mhfo-hd.dll module base address
Process proccess = Process.GetProcessById(PID);
if (proccess == null)
@@ -481,13 +506,17 @@ void WriteByteFromAddress(UIntPtr codecaveAddress, Process proc, long offset1, i
LoggerInstance.Warn(CultureInfo.InvariantCulture, "Process not found");
return null;
}
+
var ModuleList = new List();
foreach (ProcessModule md in proccess.Modules)
{
string? moduleName = md.ModuleName;
if (moduleName != null)
+ {
ModuleList.Add(moduleName);
+ }
}
+
index = ModuleList.IndexOf("mhfo-hd.dll");
if (index > 0)
{
@@ -503,10 +532,11 @@ void WriteByteFromAddress(UIntPtr codecaveAddress, Process proc, long offset1, i
else
{
LoggerInstance.Fatal(CultureInfo.InvariantCulture, "Could not find game dll");
- MessageBox.Show("Could not find game dll. Make sure you start the overlay inside Mezeporta.", Messages.FATAL_TITLE, MessageBoxButton.OK, MessageBoxImage.Error);
+ MessageBox.Show("Could not find game dll. Make sure you start the overlay inside Mezeporta.", Messages.FatalTitle, MessageBoxButton.OK, MessageBoxImage.Error);
ApplicationManager.HandleShutdown();
}
}
+
return proccess;
}
}
diff --git a/MHFZ_Overlay/Models/Addresses/AddressModelHGE.cs b/MHFZ_Overlay/Models/Addresses/AddressModelHGE.cs
index 9693f91e..cfd733af 100644
--- a/MHFZ_Overlay/Models/Addresses/AddressModelHGE.cs
+++ b/MHFZ_Overlay/Models/Addresses/AddressModelHGE.cs
@@ -2,7 +2,6 @@
// Use of this source code is governed by a MIT license that can be
// found in the LICENSE file.
-
// Most Addresses from https://github.com/suzaku01/
namespace MHFZ_Overlay.Models.Addresses;
@@ -21,286 +20,547 @@ public AddressModelHGE(Mem m) : base(m)
}
public override int HitCountInt() => M.Read2Byte("mhfo-hd.dll+ECB2DC6");
+
public override int TimeDefInt() => M.ReadInt("mhfo-hd.dll+2AFA820");
+
public override int TimeInt() => M.ReadInt("mhfo-hd.dll+E7FE170");
+
public override int WeaponRaw() => M.Read2Byte("mhfo-hd.dll+DC6BEFA");
//This is equipment slot number that goes from 0-255 repeatedly
//"mhfo-hd.dll+ED3A466
public override int WeaponType() => M.ReadByte("mhfo-hd.dll+DC6B753");
+
public override bool IsNotRoad()
{
return M.ReadByte("mhfo-hd.dll+DCD4490") == 0;
}
+
public override int LargeMonster1ID()
{
return GetNotRoad() ? M.ReadByte("mhfo-hd.dll+1BEF3D9") : LargeMonster1Road();
}
+
public override int LargeMonster2ID()
{
return GetNotRoad() ? M.ReadByte("mhfo-hd.dll+1BEF3DA") : LargeMonster2Road();
}
+
public override int LargeMonster3ID() => M.ReadByte("mhfo-hd.dll+1BEF3DB");
+
public override int LargeMonster4ID() => M.ReadByte("mhfo-hd.dll+1BEF3DC");
+
public int LargeMonster1Road()
{
return M.ReadByte("mhfo-hd.dll+DCD4478");
}
+
public int LargeMonster2Road()
{
return M.ReadByte("mhfo-hd.dll+DCD4498");
}
+
// TODO monster parts max values
public string Monster1BP1() => M.Read2Byte("mhfo-hd.dll+0E37DD38,348").ToString(CultureInfo.InvariantCulture);
+
public override int Monster1Part1() => M.Read2Byte("mhfo-hd.dll+0E37DD38,348");
+
public string Monster1BP2() => M.Read2Byte("mhfo-hd.dll+0E37DD38,350").ToString(CultureInfo.InvariantCulture);
+
public override int Monster1Part2() => M.Read2Byte("mhfo-hd.dll+0E37DD38,350");
public string Monster1BP3() => M.Read2Byte("mhfo-hd.dll+0E37DD38,358").ToString(CultureInfo.InvariantCulture);
+
public override int Monster1Part3() => M.Read2Byte("mhfo-hd.dll+0E37DD38,358");
public string Monster1BP4() => M.Read2Byte("mhfo-hd.dll+0E37DD38,360").ToString(CultureInfo.InvariantCulture);
+
public override int Monster1Part4() => M.Read2Byte("mhfo-hd.dll+0E37DD38,360");
public string Monster1BP5() => M.Read2Byte("mhfo-hd.dll+0E37DD38,368").ToString(CultureInfo.InvariantCulture);
+
public override int Monster1Part5() => M.Read2Byte("mhfo-hd.dll+0E37DD38,368");
public string Monster1BP6() => M.Read2Byte("mhfo-hd.dll+0E37DD38,370").ToString(CultureInfo.InvariantCulture);
+
public override int Monster1Part6() => M.Read2Byte("mhfo-hd.dll+0E37DD38,370");
public string Monster1BP7() => M.Read2Byte("mhfo-hd.dll+0E37DD38,378").ToString(CultureInfo.InvariantCulture);
+
public override int Monster1Part7() => M.Read2Byte("mhfo-hd.dll+0E37DD38,378");
public string Monster1BP8() => M.Read2Byte("mhfo-hd.dll+0E37DD38,380").ToString(CultureInfo.InvariantCulture);
+
public override int Monster1Part8() => M.Read2Byte("mhfo-hd.dll+0E37DD38,380");
public string Monster1BP9() => M.Read2Byte("mhfo-hd.dll+0E37DD38,388").ToString(CultureInfo.InvariantCulture);
+
public override int Monster1Part9() => M.Read2Byte("mhfo-hd.dll+0E37DD38,388");
public string Monster1BP10() => M.Read2Byte("mhfo-hd.dll+0E37DD38,390").ToString(CultureInfo.InvariantCulture);
+
public override int Monster1Part10() => M.Read2Byte("mhfo-hd.dll+0E37DD38,390");
public string Monster2BP1() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1238").ToString(CultureInfo.InvariantCulture);
+
public override int Monster2Part1() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1238");
public string Monster2BP2() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1240").ToString(CultureInfo.InvariantCulture);
+
public override int Monster2Part2() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1240");
public string Monster2BP3() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1248").ToString(CultureInfo.InvariantCulture);
+
public override int Monster2Part3() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1248");
public string Monster2BP4() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1250").ToString(CultureInfo.InvariantCulture);
+
public override int Monster2Part4() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1250");
public string Monster2BP5() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1258").ToString(CultureInfo.InvariantCulture);
+
public override int Monster2Part5() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1258");
public string Monster2BP6() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1260").ToString(CultureInfo.InvariantCulture);
+
public override int Monster2Part6() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1260");
public string Monster2BP7() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1268").ToString(CultureInfo.InvariantCulture);
+
public override int Monster2Part7() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1268");
public string Monster2BP8() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1270").ToString(CultureInfo.InvariantCulture);
+
public override int Monster2Part8() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1270");
public string Monster2BP9() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1278").ToString(CultureInfo.InvariantCulture);
+
public override int Monster2Part9() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1278");
public string Monster2BP10() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1280").ToString(CultureInfo.InvariantCulture);
+
public override int Monster2Part10() => M.Read2Byte("mhfo-hd.dll+0E37DD38,1280");
public string Monster1RoadBP1() => M.Read2Byte("mhfo-hd.dll+E37DF18,348").ToString(CultureInfo.InvariantCulture);
+
public string Monster1RoadBP2() => M.Read2Byte("mhfo-hd.dll+E37DF18,350").ToString(CultureInfo.InvariantCulture);
+
public string Monster1RoadBP3() => M.Read2Byte("mhfo-hd.dll+E37DF18,358").ToString(CultureInfo.InvariantCulture);
+
public string Monster1RoadBP4() => M.Read2Byte("mhfo-hd.dll+E37DF18,360").ToString(CultureInfo.InvariantCulture);
+
public string Monster1RoadBP5() => M.Read2Byte("mhfo-hd.dll+E37DF18,368").ToString(CultureInfo.InvariantCulture);
+
public string Monster1RoadBP6() => M.Read2Byte("mhfo-hd.dll+E37DF18,370").ToString(CultureInfo.InvariantCulture);
+
public string Monster1RoadBP7() => M.Read2Byte("mhfo-hd.dll+E37DF18,378").ToString(CultureInfo.InvariantCulture);
+
public string Monster1RoadBP8() => M.Read2Byte("mhfo-hd.dll+E37DF18,380").ToString(CultureInfo.InvariantCulture);
+
public string Monster1RoadBP9() => M.Read2Byte("mhfo-hd.dll+E37DF18,388").ToString(CultureInfo.InvariantCulture);
+
public string Monster1RoadBP10() => M.Read2Byte("mhfo-hd.dll+E37DF18,390").ToString(CultureInfo.InvariantCulture);
+
public string Monster2RoadBP1() => M.Read2Byte("mhfo-hd.dll+E37DF18,1238").ToString(CultureInfo.InvariantCulture);
+
public string Monster2RoadBP2() => M.Read2Byte("mhfo-hd.dll+E37DF18,1240").ToString(CultureInfo.InvariantCulture);
+
public string Monster2RoadBP3() => M.Read2Byte("mhfo-hd.dll+E37DF18,1248").ToString(CultureInfo.InvariantCulture);
+
public string Monster2RoadBP4() => M.Read2Byte("mhfo-hd.dll+E37DF18,1250").ToString(CultureInfo.InvariantCulture);
+
public string Monster2RoadBP5() => M.Read2Byte("mhfo-hd.dll+E37DF18,1258").ToString(CultureInfo.InvariantCulture);
+
public string Monster2RoadBP6() => M.Read2Byte("mhfo-hd.dll+E37DF18,1260").ToString(CultureInfo.InvariantCulture);
+
public string Monster2RoadBP7() => M.Read2Byte("mhfo-hd.dll+E37DF18,1268").ToString(CultureInfo.InvariantCulture);
+
public string Monster2RoadBP8() => M.Read2Byte("mhfo-hd.dll+E37DF18,1270").ToString(CultureInfo.InvariantCulture);
+
public string Monster2RoadBP9() => M.Read2Byte("mhfo-hd.dll+E37DF18,1278").ToString(CultureInfo.InvariantCulture);
+
public string Monster2RoadBP10() => M.Read2Byte("mhfo-hd.dll+E37DF18,1280").ToString(CultureInfo.InvariantCulture);
public override int Monster1HPInt() => M.Read2Byte("0043C600");
+
public override int Monster2HPInt() => M.Read2Byte("0043C604");
+
public override int Monster3HPInt() => M.Read2Byte("0043C608");
+
public override int Monster4HPInt() => M.Read2Byte("0043C60C");
- public override string Monster1AtkMult() { return GetNotRoad() ? M.ReadFloat("mhfo-hd.dll+0E37DD38,898").ToString(CultureInfo.InvariantCulture) : Monster1RoadAtkMult(); }
- public override decimal Monster1DefMult() { return GetNotRoad() ? (decimal)M.ReadFloat("mhfo-hd.dll+0E37DD38,89C", "", false) : Monster1RoadDefMult(); }
- public override int Monster1Poison() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,88A") : Monster1RoadPoison(); }
- public override int Monster1PoisonNeed() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,888") : Monster1RoadPoisonNeed(); }
- public override int Monster1Sleep() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,86C") : Monster1RoadSleep(); }
- public override int Monster1SleepNeed() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,86A") : Monster1RoadSleepNeed(); }
- public override int Monster1Para() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,886") : Monster1RoadPara(); }
- public override int Monster1ParaNeed() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,880") : Monster1RoadParaNeed(); }
- public override int Monster1Blast() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,D4A") : Monster1RoadBlast(); }
- public override int Monster1BlastNeed() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,D48") : Monster1RoadBlastNeed(); }
- public override int Monster1Stun() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,872") : Monster1RoadStun(); }
- public override int Monster1StunNeed() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,A74") : Monster1RoadStunNeed(); }
- public override string Monster1Size() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+2AFA784").ToString(CultureInfo.InvariantCulture) + "%" : Monster1RoadSize(); }
- public override string Monster2AtkMult() { return GetNotRoad() ? M.ReadFloat("mhfo-hd.dll+0E37DD38,1788").ToString(CultureInfo.InvariantCulture) : Monster2RoadAtkMult(); }
- public override decimal Monster2DefMult() { return GetNotRoad() ? (decimal)M.ReadFloat("mhfo-hd.dll+0E37DD38,178C", "", false) : Monster2RoadDefMult(); }
- public override int Monster2Poison() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,177A") : Monster2RoadPoison(); }
- public override int Monster2PoisonNeed() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,1778") : Monster2RoadPoisonNeed(); }
- public override int Monster2Sleep() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,175C") : Monster2RoadSleep(); }
- public override int Monster2SleepNeed() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,175A") : Monster2RoadSleepNeed(); }
- public override int Monster2Para() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,1776") : Monster2RoadPara(); }
- public override int Monster2ParaNeed() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,1770") : Monster2RoadParaNeed(); }
- public override int Monster2Blast() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,1C3A") : Monster2RoadBlast(); }
- public override int Monster2BlastNeed() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,1C38") : Monster2RoadBlastNeed(); }
- public override int Monster2Stun() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,1762") : Monster2RoadStun(); }
- public override int Monster2StunNeed() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,1964") : Monster2RoadStunNeed(); }
- public override string Monster2Size() { return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+2AFA784").ToString(CultureInfo.InvariantCulture) + "%" : Monster2RoadSize(); }
+
+ public override string Monster1AtkMult()
+ {
+ return GetNotRoad() ? M.ReadFloat("mhfo-hd.dll+0E37DD38,898").ToString(CultureInfo.InvariantCulture) : Monster1RoadAtkMult();
+ }
+
+ public override decimal Monster1DefMult()
+ {
+ return GetNotRoad() ? (decimal)M.ReadFloat("mhfo-hd.dll+0E37DD38,89C", "", false) : Monster1RoadDefMult();
+ }
+
+ public override int Monster1Poison()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,88A") : Monster1RoadPoison();
+ }
+
+ public override int Monster1PoisonNeed()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,888") : Monster1RoadPoisonNeed();
+ }
+
+ public override int Monster1Sleep()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,86C") : Monster1RoadSleep();
+ }
+
+ public override int Monster1SleepNeed()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,86A") : Monster1RoadSleepNeed();
+ }
+
+ public override int Monster1Para()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,886") : Monster1RoadPara();
+ }
+
+ public override int Monster1ParaNeed()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,880") : Monster1RoadParaNeed();
+ }
+
+ public override int Monster1Blast()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,D4A") : Monster1RoadBlast();
+ }
+
+ public override int Monster1BlastNeed()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,D48") : Monster1RoadBlastNeed();
+ }
+
+ public override int Monster1Stun()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,872") : Monster1RoadStun();
+ }
+
+ public override int Monster1StunNeed()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,A74") : Monster1RoadStunNeed();
+ }
+
+ public override string Monster1Size()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+2AFA784").ToString(CultureInfo.InvariantCulture) + "%" : Monster1RoadSize();
+ }
+
+ public override string Monster2AtkMult()
+ {
+ return GetNotRoad() ? M.ReadFloat("mhfo-hd.dll+0E37DD38,1788").ToString(CultureInfo.InvariantCulture) : Monster2RoadAtkMult();
+ }
+
+ public override decimal Monster2DefMult()
+ {
+ return GetNotRoad() ? (decimal)M.ReadFloat("mhfo-hd.dll+0E37DD38,178C", "", false) : Monster2RoadDefMult();
+ }
+
+ public override int Monster2Poison()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,177A") : Monster2RoadPoison();
+ }
+
+ public override int Monster2PoisonNeed()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,1778") : Monster2RoadPoisonNeed();
+ }
+
+ public override int Monster2Sleep()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,175C") : Monster2RoadSleep();
+ }
+
+ public override int Monster2SleepNeed()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,175A") : Monster2RoadSleepNeed();
+ }
+
+ public override int Monster2Para()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,1776") : Monster2RoadPara();
+ }
+
+ public override int Monster2ParaNeed()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,1770") : Monster2RoadParaNeed();
+ }
+
+ public override int Monster2Blast()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,1C3A") : Monster2RoadBlast();
+ }
+
+ public override int Monster2BlastNeed()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,1C38") : Monster2RoadBlastNeed();
+ }
+
+ public override int Monster2Stun()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,1762") : Monster2RoadStun();
+ }
+
+ public override int Monster2StunNeed()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+0E37DD38,1964") : Monster2RoadStunNeed();
+ }
+
+ public override string Monster2Size()
+ {
+ return GetNotRoad() ? M.Read2Byte("mhfo-hd.dll+2AFA784").ToString(CultureInfo.InvariantCulture) + "%" : Monster2RoadSize();
+ }
+
public string Monster1RoadAtkMult() => M.ReadFloat("mhfo-hd.dll+E37DF18,898").ToString(CultureInfo.InvariantCulture);
+
public decimal Monster1RoadDefMult() => (decimal)M.ReadFloat("mhfo-hd.dll+E37DF18,89C", "", false);
+
public int Monster1RoadPoison() => M.Read2Byte("mhfo-hd.dll+E37DF18,88A");
+
public int Monster1RoadPoisonNeed() => M.Read2Byte("mhfo-hd.dll+E37DF18,888");
+
public int Monster1RoadSleep() => M.Read2Byte("mhfo-hd.dll+E37DF18,86C");
+
public int Monster1RoadSleepNeed() => M.Read2Byte("mhfo-hd.dll+E37DF18,86A");
+
public int Monster1RoadPara() => M.Read2Byte("mhfo-hd.dll+E37DF18,886");
+
public int Monster1RoadParaNeed() => M.Read2Byte("mhfo-hd.dll+E37DF18,880");
+
public int Monster1RoadBlast() => M.Read2Byte("mhfo-hd.dll+E37DF18,D4A");
+
public int Monster1RoadBlastNeed() => M.Read2Byte("mhfo-hd.dll+E37DF18,D48");
+
public int Monster1RoadStun() => M.Read2Byte("mhfo-hd.dll+E37DF18,872");
+
public int Monster1RoadStunNeed() => M.Read2Byte("mhfo-hd.dll+E37DF18,A74");
+
public string Monster1RoadSize() => M.Read2Byte("mhfo-hd.dll+2AFA784").ToString(CultureInfo.InvariantCulture) + "%";
+
public string Monster2RoadAtkMult() => M.ReadFloat("mhfo-hd.dll+E37DF18,1788").ToString(CultureInfo.InvariantCulture);
+
public decimal Monster2RoadDefMult() => (decimal)M.ReadFloat("mhfo-hd.dll+E37DF18,178C", "", false);
+
public int Monster2RoadPoison() => M.Read2Byte("mhfo-hd.dll+E37DF18,177A");
+
public int Monster2RoadPoisonNeed() => M.Read2Byte("mhfo-hd.dll+E37DF18,1778");
+
public int Monster2RoadSleep() => M.Read2Byte("mhfo-hd.dll+E37DF18,175C");
+
public int Monster2RoadSleepNeed() => M.Read2Byte("mhfo-hd.dll+E37DF18,175A");
+
public int Monster2RoadPara() => M.Read2Byte("mhfo-hd.dll+E37DF18,1776");
+
public int Monster2RoadParaNeed() => M.Read2Byte("mhfo-hd.dll+E37DF18,1770");
+
public int Monster2RoadBlast() => M.Read2Byte("mhfo-hd.dll+E37DF18,1C3A");
+
public int Monster2RoadBlastNeed() => M.Read2Byte("mhfo-hd.dll+E37DF18,1C38");
+
public int Monster2RoadStun() => M.Read2Byte("mhfo-hd.dll+E37DF18,1762");
+
public int Monster2RoadStunNeed() => M.Read2Byte("mhfo-hd.dll+E37DF18,1964");
+
public string Monster2RoadSize() => M.Read2Byte("mhfo-hd.dll+2AFA784").ToString(CultureInfo.InvariantCulture) + "%";
- public override int DamageDealt() => M.Read2Byte("mhfo-hd.dll+E8DCF18");
- public override int RoadSelectedMonster() => M.ReadByte("mhfo-hd.dll+E87FB04");
+ public override int DamageDealt() => M.Read2Byte("mhfo-hd.dll+E8DCF18");
+ public override int RoadSelectedMonster() => M.ReadByte("mhfo-hd.dll+E87FB04");
//new addresses
public override int AreaID() => M.Read2Byte("mhfo-hd.dll+DC6BF48");
+
public override int GRankNumber() => M.Read2Byte("mhfo-hd.dll+ED784D0");
+
public override int GSR() => M.Read2Byte("mhfo-hd.dll+DC6C562");
+
public override int RoadFloor() => M.Read2Byte("mhfo-hd.dll+E87FAF0");
+
public override int WeaponStyle() => M.ReadByte("mhfo-hd.dll+DC6C492");
+
public override int QuestID() => M.Read2Byte("mhfo-hd.dll+EBEE53C");
+
public override int UrukiPachinkoFish() => M.ReadByte("mhfo-hd.dll+EE26916");
+
public override int UrukiPachinkoMushroom() => M.ReadByte("mhfo-hd.dll+EE26918");
+
public override int UrukiPachinkoSeed() => M.ReadByte("mhfo-hd.dll+EE2691A");
+
public override int UrukiPachinkoMeat() => M.ReadByte("mhfo-hd.dll+EE26914");
+
public override int UrukiPachinkoChain() => M.ReadByte("mhfo-hd.dll+EE26900");
+
public override int UrukiPachinkoScore() => M.ReadInt("mhfo-hd.dll+EE2690C");
+
public override int UrukiPachinkoBonusScore() => M.ReadInt("mhfo-hd.dll+EE26910");
+
public override int NyanrendoScore() => M.ReadInt("mhfo-hd.dll+EE26900");
+
public override int DokkanBattleCatsScore() => M.ReadInt("mhfo-hd.dll+EE268F8");
+
public override int DokkanBattleCatsScale() => M.ReadByte("mhfo-hd.dll+EE26A8C");
+
public override int DokkanBattleCatsShell() => M.ReadByte("mhfo-hd.dll+EE268F4");
+
public override int DokkanBattleCatsCamp() => M.ReadByte("mhfo-hd.dll+EE26A8A");
+
public override int GuukuScoopSmall() => M.ReadByte("mhfo-hd.dll+EE26930");
+
public override int GuukuScoopMedium() => M.ReadByte("mhfo-hd.dll+EE26934");
+
public override int GuukuScoopLarge() => M.ReadByte("mhfo-hd.dll+EE26938");
+
public override int GuukuScoopGolden() => M.ReadByte("mhfo-hd.dll+EE2693C");
+
public override int GuukuScoopScore() => M.ReadInt("mhfo-hd.dll+EE26924");
+
public override int PanicHoneyScore() => M.ReadByte("mhfo-hd.dll+EE26908");
+
// TODO: Volpkun Together addresses
public override int Sharpness() => M.Read2Byte("mhfo-hd.dll+DC6C276");
+
public override int CaravanPoints() => M.ReadInt("mhfo-hd.dll+ED3C034");
+
public override int MezeportaFestivalPoints() => M.ReadInt("mhfo-hd.dll+EDBA1EC");
+
public override int DivaBond() => M.Read2Byte("mhfo-hd.dll+ED3DB48");
+
public override int DivaItemsGiven() => M.Read2Byte("mhfo-hd.dll+ED3DB4A");
+
public override int GCP() => M.ReadInt("mhfo-hd.dll+E5075D8");
+
public override int RoadPoints() => M.ReadInt("mhfo-hd.dll+ED3EB98");
+
public override int ArmorColor() => M.ReadByte("mhfo-hd.dll+EDE66A8");
+
public override int RaviGg() => M.ReadInt("mhfo-hd.dll+ED3E928");
+
public override int Ravig() => M.ReadInt("mhfo-hd.dll+ED3AB40");
+
public override int GZenny() => M.ReadInt("mhfo-hd.dll+ED3ACB4");
+
public override int GuildFoodSkill() => M.Read2Byte("mhfo-hd.dll+E7FED00");
+
public override int GalleryEvaluationScore() => M.ReadInt("mhfo-hd.dll+ED3D9F0");
+
public override int PoogiePoints() => M.ReadByte("mhfo-hd.dll+ED3AAF0");
+
public override int PoogieItemUseID() => M.Read2Byte("mhfo-hd.dll+ED8E898");
+
public override int PoogieCostume() => M.ReadByte("mhfo-hd.dll+1A77AF2");
//zero-indexed
public override int CaravenGemLevel() => M.ReadByte("mhfo-hd.dll+1C747F6");
-
public override int RoadMaxStagesMultiplayer() => M.Read2Byte("mhfo-hd.dll+E87FB78");
+
public override int RoadTotalStagesMultiplayer() => M.Read2Byte("mhfo-hd.dll+E87FB58");
+
public override int RoadTotalStagesSolo() => M.Read2Byte("mhfo-hd.dll+E87FB5C");
+
public override int RoadMaxStagesSolo() => M.Read2Byte("mhfo-hd.dll+E87FB80");
+
public override int RoadFatalisSlain() => M.Read2Byte("mhfo-hd.dll+E87FB60");
+
public override int RoadFatalisEncounters() => M.Read2Byte("mhfo-hd.dll+ED3EBBC");
+
public override int FirstDistrictDuremudiraEncounters() => M.Read2Byte("mhfo-hd.dll+ED3EBB4");
+
public override int FirstDistrictDuremudiraSlays() => M.Read2Byte("mhfo-hd.dll+E87FB64");
+
public override int SecondDistrictDuremudiraEncounters() => M.Read2Byte("mhfo-hd.dll+ED3EBB8");
+
public override int SecondDistrictDuremudiraSlays() => M.Read2Byte("mhfo-hd.dll+E87FB68");
+
public override int DeliveryQuestPoints() => M.Read2Byte("mhfo-hd.dll+ED3B212");
//red is 0
public override int SharpnessLevel() => M.ReadByte("mhfo-hd.dll+DC6C27F");
+
public override int PartnerLevel() => M.Read2Byte("mhfo-hd.dll+E378E3E");
// as hex
public override int ObjectiveType() => M.ReadInt("mhfo-hd.dll+2AFA830");
-
public override int DivaSkillUsesLeft() => M.ReadByte("mhfo-hd.dll+ED3EB0A");
+
public override int HalkFullness() => M.ReadByte("mhfo-hd.dll+ED3C123");
+
public override int RankBand() => M.ReadByte("mhfo-hd.dll+2AFA788");
+
public override int PartnyaRankPoints() => M.ReadInt("mhfo-hd.dll+E551114");
public override int Objective1ID() => M.Read2Byte("mhfo-hd.dll+2AFA834");
+
public override int Objective1Quantity() => M.Read2Byte("mhfo-hd.dll+2AFA836");
+
public override int Objective1CurrentQuantityMonster() => M.Read2Byte("mhfo-hd.dll+ECB2A38");
+
public override int Objective1CurrentQuantityItem() => M.Read2Byte("mhfo-hd.dll+DC6C2F2");
public override int RavienteTriggeredEvent() => M.ReadByte("mhfo-hd.dll+ED3AD66");
- public override int RavienteAreaID() => M.Read2Byte("mhfo-hd.dll+ED5F30E");//untested
+
+ public override int RavienteAreaID() => M.Read2Byte("mhfo-hd.dll+ED5F30E");
+
+ //untested
public override int GreatSlayingPoints() => M.ReadInt("mhfo-hd.dll+ED3AD64");
+
public override int GreatSlayingPointsSaved() => M.ReadInt("mhfo-hd.dll+E77DC20");
public override int AlternativeMonster1HPInt() => 1;
+
public override int AlternativeMonster1AtkMult() => 1;
+
public override int AlternativeMonster1DefMult() => 1;
+
public override int AlternativeMonster1Size() => 1;
public override int AlternativeMonster1Poison() => 1;
+
public override int AlternativeMonster1PoisonNeed() => 1;
+
public override int AlternativeMonster1Sleep() => 1;
+
public override int AlternativeMonster1SleepNeed() => 1;
public override int AlternativeMonster1Para() => 1;
+
public override int AlternativeMonster1ParaNeed() => 1;
+
public override int AlternativeMonster1Blast() => 1;
+
public override int AlternativeMonster1BlastNeed() => 1;
public override int AlternativeMonster1Stun() => 1;
+
public override int AlternativeMonster1StunNeed() => 1;
public override int AlternativeMonster1Part1() => 1;
+
public override int AlternativeMonster1Part2() => 1;
+
public override int AlternativeMonster1Part3() => 1;
+
public override int AlternativeMonster1Part4() => 1;
+
public override int AlternativeMonster1Part5() => 1;
+
public override int AlternativeMonster1Part6() => 1;
+
public override int AlternativeMonster1Part7() => 1;
+
public override int AlternativeMonster1Part8() => 1;
+
public override int AlternativeMonster1Part9() => 1;
+
public override int AlternativeMonster1Part10() => 1;
public override int DivaSkill() => M.ReadByte("mhfo-hd.dll+ED3EB08");
@@ -308,386 +568,707 @@ public int LargeMonster2Road()
public override int StarGrades() => M.ReadByte("mhfo-hd.dll+E774CAE");
public override int CurrentFaints() => M.ReadByte("mhfo-hd.dll+DC6C35B");
+
//public override int MaxFaints() => M.ReadByte("mhfo-hd.dll+C4C8FE8");
+
public override int MaxFaints() => M.ReadByte("mhfo-hd.dll+2B20C0C");
+
public override int AlternativeMaxFaints() => M.ReadByte("mhfo-hd.dll+2AFA814");
public override int CaravanSkill1() => M.ReadByte("mhfo-hd.dll+DC6C448");
+
public override int CaravanSkill2() => M.ReadByte("mhfo-hd.dll+DC6C44A");
+
public override int CaravanSkill3() => M.ReadByte("mhfo-hd.dll+DC6C44C");
+
public override int CaravanScore() => M.ReadInt("mhfo-hd.dll+ED8F764");
public override int CaravanMonster1ID() => M.ReadByte("mhfo-hd.dll+2AFA834");
+
//unsure
public override int CaravanMonster2ID() => M.ReadByte("mhfo-hd.dll+1C41D12");
-
public override int BlademasterWeaponID() => M.Read2Byte("mhfo-hd.dll+DC6BB52");
+
public override int GunnerWeaponID() => M.Read2Byte("mhfo-hd.dll+DC6BB52");
+
public override int WeaponDeco1ID() => M.Read2Byte("mhfo-hd.dll+DC6BB56");
+
public override int WeaponDeco2ID() => M.Read2Byte("mhfo-hd.dll+DC6BB58");
+
public override int WeaponDeco3ID() => M.Read2Byte("mhfo-hd.dll+DC6BB5A");
+
public override int ArmorHeadID() => M.Read2Byte("mhfo-hd.dll+DC6BB12");
+
public override int ArmorHeadDeco1ID() => M.Read2Byte("mhfo-hd.dll+DC6BB16");
+
public override int ArmorHeadDeco2ID() => M.Read2Byte("mhfo-hd.dll+DC6BB18");
+
public override int ArmorHeadDeco3ID() => M.Read2Byte("mhfo-hd.dll+DC6BB1A");
+
public override int ArmorChestID() => M.Read2Byte("mhfo-hd.dll+DC6BB22");
+
public override int ArmorChestDeco1ID() => M.Read2Byte("mhfo-hd.dll+DC6BB26");
+
public override int ArmorChestDeco2ID() => M.Read2Byte("mhfo-hd.dll+DC6BB28");
+
public override int ArmorChestDeco3ID() => M.Read2Byte("mhfo-hd.dll+DC6BB2A");
+
public override int ArmorArmsID() => M.Read2Byte("mhfo-hd.dll+DC6BB32");
+
public override int ArmorArmsDeco1ID() => M.Read2Byte("mhfo-hd.dll+DC6BB36");
+
public override int ArmorArmsDeco2ID() => M.Read2Byte("mhfo-hd.dll+DC6BB38");
+
public override int ArmorArmsDeco3ID() => M.Read2Byte("mhfo-hd.dll+DC6BB3A");
+
public override int ArmorWaistID() => M.Read2Byte("mhfo-hd.dll+DC6BB42");
+
public override int ArmorWaistDeco1ID() => M.Read2Byte("mhfo-hd.dll+DC6BB46");
+
public override int ArmorWaistDeco2ID() => M.Read2Byte("mhfo-hd.dll+DC6BB48");
+
public override int ArmorWaistDeco3ID() => M.Read2Byte("mhfo-hd.dll+DC6BB4A");
+
public override int ArmorLegsID() => M.Read2Byte("mhfo-hd.dll+DC6BAF2");
+
public override int ArmorLegsDeco1ID() => M.Read2Byte("mhfo-hd.dll+DC6BAF6");
+
public override int ArmorLegsDeco2ID() => M.Read2Byte("mhfo-hd.dll+DC6BAF8");
+
public override int ArmorLegsDeco3ID() => M.Read2Byte("mhfo-hd.dll+DC6BAFA");
+
public override int Cuff1ID() => M.Read2Byte("mhfo-hd.dll+DC6C482");
+
public override int Cuff2ID() => M.Read2Byte("mhfo-hd.dll+DC6C484");
+
public override int TotalDefense() => M.Read2Byte("mhfo-hd.dll+DC6BEF8");
+
public override int PouchItem1ID() => M.Read2Byte("mhfo-hd.dll+DC6C168");
+
public override int PouchItem1Qty() => M.Read2Byte("mhfo-hd.dll+DC6C16A");
+
public override int PouchItem2ID() => M.Read2Byte("mhfo-hd.dll+DC6C170");
+
public override int PouchItem2Qty() => M.Read2Byte("mhfo-hd.dll+DC6C172");
+
public override int PouchItem3ID() => M.Read2Byte("mhfo-hd.dll+DC6C178");
+
public override int PouchItem3Qty() => M.Read2Byte("mhfo-hd.dll+DC6C17A");
+
public override int PouchItem4ID() => M.Read2Byte("mhfo-hd.dll+DC6C180");
+
public override int PouchItem4Qty() => M.Read2Byte("mhfo-hd.dll+DC6C182");
+
public override int PouchItem5ID() => M.Read2Byte("mhfo-hd.dll+DC6C188");
+
public override int PouchItem5Qty() => M.Read2Byte("mhfo-hd.dll+DC6C18A");
+
public override int PouchItem6ID() => M.Read2Byte("mhfo-hd.dll+DC6C190");
+
public override int PouchItem6Qty() => M.Read2Byte("mhfo-hd.dll+DC6C192");
+
public override int PouchItem7ID() => M.Read2Byte("mhfo-hd.dll+DC6C198");
+
public override int PouchItem7Qty() => M.Read2Byte("mhfo-hd.dll+DC6C19A");
+
public override int PouchItem8ID() => M.Read2Byte("mhfo-hd.dll+DC6C1A0");
+
public override int PouchItem8Qty() => M.Read2Byte("mhfo-hd.dll+DC6C1A2");
+
public override int PouchItem9ID() => M.Read2Byte("mhfo-hd.dll+DC6C1A8");
+
public override int PouchItem9Qty() => M.Read2Byte("mhfo-hd.dll+DC6C1AA");
+
public override int PouchItem10ID() => M.Read2Byte("mhfo-hd.dll+DC6C1B0");
+
public override int PouchItem10Qty() => M.Read2Byte("mhfo-hd.dll+DC6C1B2");
+
public override int PouchItem11ID() => M.Read2Byte("mhfo-hd.dll+DC6C1B8");
+
public override int PouchItem11Qty() => M.Read2Byte("mhfo-hd.dll+DC6C1BA");
+
public override int PouchItem12ID() => M.Read2Byte("mhfo-hd.dll+DC6C1C0");
+
public override int PouchItem12Qty() => M.Read2Byte("mhfo-hd.dll+DC6C1C2");
+
public override int PouchItem13ID() => M.Read2Byte("mhfo-hd.dll+DC6C1C8");
+
public override int PouchItem13Qty() => M.Read2Byte("mhfo-hd.dll+DC6C1CA");
+
public override int PouchItem14ID() => M.Read2Byte("mhfo-hd.dll+DC6C1D0");
+
public override int PouchItem14Qty() => M.Read2Byte("mhfo-hd.dll+DC6C1D2");
+
public override int PouchItem15ID() => M.Read2Byte("mhfo-hd.dll+DC6C1D8");
+
public override int PouchItem15Qty() => M.Read2Byte("mhfo-hd.dll+DC6C1DA");
+
public override int PouchItem16ID() => M.Read2Byte("mhfo-hd.dll+DC6C1E0");
+
public override int PouchItem16Qty() => M.Read2Byte("mhfo-hd.dll+DC6C1E2");
+
public override int PouchItem17ID() => M.Read2Byte("mhfo-hd.dll+DC6C1E8");
+
public override int PouchItem17Qty() => M.Read2Byte("mhfo-hd.dll+DC6C1EA");
+
public override int PouchItem18ID() => M.Read2Byte("mhfo-hd.dll+DC6C1F0");
+
public override int PouchItem18Qty() => M.Read2Byte("mhfo-hd.dll+DC6C1F2");
+
public override int PouchItem19ID() => M.Read2Byte("mhfo-hd.dll+DC6C1F8");
+
public override int PouchItem19Qty() => M.Read2Byte("mhfo-hd.dll+DC6C1FA");
+
public override int PouchItem20ID() => M.Read2Byte("mhfo-hd.dll+DC6C200");
+
public override int PouchItem20Qty() => M.Read2Byte("mhfo-hd.dll+DC6C202");
+
public override int AmmoPouchItem1ID() => M.Read2Byte("mhfo-hd.dll+DC6C208");
+
public override int AmmoPouchItem1Qty() => M.Read2Byte("mhfo-hd.dll+DC6C20A");
+
public override int AmmoPouchItem2ID() => M.Read2Byte("mhfo-hd.dll+DC6C210");
+
public override int AmmoPouchItem2Qty() => M.Read2Byte("mhfo-hd.dll+DC6C212");
+
public override int AmmoPouchItem3ID() => M.Read2Byte("mhfo-hd.dll+DC6C218");
+
public override int AmmoPouchItem3Qty() => M.Read2Byte("mhfo-hd.dll+DC6C21A");
+
public override int AmmoPouchItem4ID() => M.Read2Byte("mhfo-hd.dll+DC6C220");
+
public override int AmmoPouchItem4Qty() => M.Read2Byte("mhfo-hd.dll+DC6C222");
+
public override int AmmoPouchItem5ID() => M.Read2Byte("mhfo-hd.dll+DC6C228");
+
public override int AmmoPouchItem5Qty() => M.Read2Byte("mhfo-hd.dll+DC6C22A");
+
public override int AmmoPouchItem6ID() => M.Read2Byte("mhfo-hd.dll+DC6C230");
+
public override int AmmoPouchItem6Qty() => M.Read2Byte("mhfo-hd.dll+DC6C232");
+
public override int AmmoPouchItem7ID() => M.Read2Byte("mhfo-hd.dll+DC6C238");
+
public override int AmmoPouchItem7Qty() => M.Read2Byte("mhfo-hd.dll+DC6C23A");
+
public override int AmmoPouchItem8ID() => M.Read2Byte("mhfo-hd.dll+DC6C240");
+
public override int AmmoPouchItem8Qty() => M.Read2Byte("mhfo-hd.dll+DC6C242");
+
public override int AmmoPouchItem9ID() => M.Read2Byte("mhfo-hd.dll+DC6C248");
+
public override int AmmoPouchItem9Qty() => M.Read2Byte("mhfo-hd.dll+DC6C24A");
+
public override int AmmoPouchItem10ID() => M.Read2Byte("mhfo-hd.dll+DC6C250");
+
public override int AmmoPouchItem10Qty() => M.Read2Byte("mhfo-hd.dll+DC6C252");
//slots
public override int ArmorSkill1() => M.Read2Byte("mhfo-hd.dll+DC6C31C");
+
public override int ArmorSkill2() => M.Read2Byte("mhfo-hd.dll+DC6C31E");
+
public override int ArmorSkill3() => M.Read2Byte("mhfo-hd.dll+DC6C320");
+
public override int ArmorSkill4() => M.Read2Byte("mhfo-hd.dll+DC6C322");
+
public override int ArmorSkill5() => M.Read2Byte("mhfo-hd.dll+DC6C324");
+
public override int ArmorSkill6() => M.Read2Byte("mhfo-hd.dll+DC6C326");
+
public override int ArmorSkill7() => M.Read2Byte("mhfo-hd.dll+DC6C328");
+
public override int ArmorSkill8() => M.Read2Byte("mhfo-hd.dll+DC6C32A");
+
public override int ArmorSkill9() => M.Read2Byte("mhfo-hd.dll+DC6C32C");
+
public override int ArmorSkill10() => M.Read2Byte("mhfo-hd.dll+DC6C32E");
+
public override int ArmorSkill11() => M.Read2Byte("mhfo-hd.dll+DC6C330");
+
public override int ArmorSkill12() => M.Read2Byte("mhfo-hd.dll+DC6C332");
+
public override int ArmorSkill13() => M.Read2Byte("mhfo-hd.dll+DC6C334");
+
public override int ArmorSkill14() => M.Read2Byte("mhfo-hd.dll+DC6C336");
+
public override int ArmorSkill15() => M.Read2Byte("mhfo-hd.dll+DC6C338");
+
public override int ArmorSkill16() => M.Read2Byte("mhfo-hd.dll+DC6C33A");
+
public override int ArmorSkill17() => M.Read2Byte("mhfo-hd.dll+DC6C33C");
+
public override int ArmorSkill18() => M.Read2Byte("mhfo-hd.dll+DC6C33E");
+
public override int ArmorSkill19() => M.Read2Byte("mhfo-hd.dll+DC6C340");
public override int BloatedWeaponAttack() => M.Read2Byte("mhfo-hd.dll+E7FE4F0");
public override int ZenithSkill1() => M.Read2Byte("mhfo-hd.dll+DCD1DC8");
+
public override int ZenithSkill2() => M.Read2Byte("mhfo-hd.dll+DCD1DCA");
+
public override int ZenithSkill3() => M.Read2Byte("mhfo-hd.dll+DCD1DCC");
+
public override int ZenithSkill4() => M.Read2Byte("mhfo-hd.dll+DCD1DCE");
+
public override int ZenithSkill5() => M.Read2Byte("mhfo-hd.dll+DCD1DD0");
+
public override int ZenithSkill6() => M.Read2Byte("mhfo-hd.dll+DCD1DD2");
+
public override int ZenithSkill7() => M.Read2Byte("mhfo-hd.dll+DCD1DD4");
public override int AutomaticSkillWeapon() => M.Read2Byte("mhfo-hd.dll+DC6C352");
+
public override int AutomaticSkillHead() => M.Read2Byte("mhfo-hd.dll+DC6C34A");
+
public override int AutomaticSkillChest() => M.Read2Byte("mhfo-hd.dll+DC6C34C");
+
public override int AutomaticSkillArms() => M.Read2Byte("mhfo-hd.dll+DC6C34E");
+
public override int AutomaticSkillWaist() => M.Read2Byte("mhfo-hd.dll+DC6C350");
+
public override int AutomaticSkillLegs() => M.Read2Byte("mhfo-hd.dll+DC6C346");
public override int StyleRank1() => M.ReadByte("mhfo-hd.dll+DC6C493");
+
public override int StyleRank2() => M.ReadByte("mhfo-hd.dll+DC6C55F");
public override int GRWeaponLv() => M.ReadByte("mhfo-hd.dll+DC6BB54");
+
public override int GRWeaponLvBowguns() => M.ReadByte("mhfo-hd.dll+DC6BB55");
public override int Sigil1Name1() => M.Read2Byte("mhfo-hd.dll+E830E14");
+
public override int Sigil1Value1() => M.Read2Byte("mhfo-hd.dll+E830E1A");
+
public override int Sigil1Name2() => M.Read2Byte("mhfo-hd.dll+E830E16");
+
public override int Sigil1Value2() => M.Read2Byte("mhfo-hd.dll+E830E1C");
+
public override int Sigil1Name3() => M.Read2Byte("mhfo-hd.dll+E830E18");
+
public override int Sigil1Value3() => M.Read2Byte("mhfo-hd.dll+E830E1E");
+
public override int Sigil2Name1() => M.Read2Byte("mhfo-hd.dll+E830E20");
+
public override int Sigil2Value1() => M.Read2Byte("mhfo-hd.dll+E830E26");
+
public override int Sigil2Name2() => M.Read2Byte("mhfo-hd.dll+E830E22");
+
public override int Sigil2Value2() => M.Read2Byte("mhfo-hd.dll+E830E28");
+
public override int Sigil2Name3() => M.Read2Byte("mhfo-hd.dll+E830E24");
+
public override int Sigil2Value3() => M.Read2Byte("mhfo-hd.dll+E830E2A");
+
public override int Sigil3Name1() => M.Read2Byte("mhfo-hd.dll+E831234");
+
public override int Sigil3Value1() => M.Read2Byte("mhfo-hd.dll+E83123A");
+
public override int Sigil3Name2() => M.Read2Byte("mhfo-hd.dll+E831236");
+
public override int Sigil3Value2() => M.Read2Byte("mhfo-hd.dll+E83123C");
+
public override int Sigil3Name3() => M.Read2Byte("mhfo-hd.dll+E831238");
+
public override int Sigil3Value3() => M.Read2Byte("mhfo-hd.dll+E83123E");
public override int RathianHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1AE");
+
public override int FatalisHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1B0");
+
public override int KelbiHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1B2");
+
public override int MosswineHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1B4");
+
public override int BullfangoHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1B6");
public override int YianKutKuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1B8");
+
public override int LaoShanLungHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1BA");
+
public override int CephadromeHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1BC");
+
public override int FelyneHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1BE");
+
public override int RathalosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1C2");
+
public override int AptonothHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1C4");
+
public override int GenpreyHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1C6");
+
public override int DiablosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1C8");
+
public override int KhezuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1CA");
+
public override int VelocipreyHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1CC");
+
public override int GraviosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1CE");
+
public override int VespoidHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1D2");
+
public override int GypcerosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1D4");
+
public override int PlesiothHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1D6");
+
public override int BasariosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1D8");
+
public override int MelynxHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1DA");
+
public override int HornetaurHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1DC");
+
public override int ApcerosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1DE");
+
public override int MonoblosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1E0");
+
public override int VelocidromeHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1E2");
+
public override int GendromeHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1E4");
+
public override int RocksHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1E6");
+
public override int IopreyHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1E8");
+
public override int IodromeHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1EA");
+
public override int KirinHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1EE");
+
public override int CephalosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1F0");
public override int GiapreyHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1F2");
+
public override int CrimsonFatalisHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1F4");
+
public override int PinkRathianHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1F6");
+
public override int BlueYianKutKuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1F8");
+
public override int PurpleGypcerosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1FA");
+
public override int YianGarugaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1FC");
+
public override int SilverRathalosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E1FE");
+
public override int GoldRathianHunted() => M.Read2Byte("mhfo-hd.dll+ED3E200");
+
public override int BlackDiablosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E202");
+
public override int WhiteMonoblosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E204");
+
public override int RedKhezuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E206");
+
public override int GreenPlesiothHunted() => M.Read2Byte("mhfo-hd.dll+ED3E208");
+
public override int BlackGraviosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E20A");
+
public override int DaimyoHermitaurHunted() => M.Read2Byte("mhfo-hd.dll+ED3E20C");
+
public override int AzureRathalosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E20E");
+
public override int AshenLaoShanLungHunted() => M.Read2Byte("mhfo-hd.dll+ED3E210");
+
public override int BlangongaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E212");
+
public override int CongalalaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E214");
+
public override int RajangHunted() => M.Read2Byte("mhfo-hd.dll+ED3E216");
public override int KushalaDaoraHunted() => M.Read2Byte("mhfo-hd.dll+ED3E218");
+
public override int ShenGaorenHunted() => M.Read2Byte("mhfo-hd.dll+ED3E21A");
+
public override int GreatThunderbugHunted() => M.Read2Byte("mhfo-hd.dll+ED3E21C");
public override int ShakalakaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E21E");
+
public override int YamaTsukamiHunted() => M.Read2Byte("mhfo-hd.dll+ED3E220");
+
public override int ChameleosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E222");
+
public override int RustedKushalaDaoraHunted() => M.Read2Byte("mhfo-hd.dll+ED3E224");
+
public override int BlangoHunted() => M.Read2Byte("mhfo-hd.dll+ED3E226");
+
public override int CongaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E228");
+
public override int RemobraHunted() => M.Read2Byte("mhfo-hd.dll+ED3E22A");
+
public override int LunastraHunted() => M.Read2Byte("mhfo-hd.dll+ED3E22C");
+
public override int TeostraHunted() => M.Read2Byte("mhfo-hd.dll+ED3E22E");
+
public override int HermitaurHunted() => M.Read2Byte("mhfo-hd.dll+ED3E230");
+
public override int ShogunCeanataurHunted() => M.Read2Byte("mhfo-hd.dll+ED3E232");
+
public override int BulldromeHunted() => M.Read2Byte("mhfo-hd.dll+ED3E234");
+
public override int AntekaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E236");
+
public override int PopoHunted() => M.Read2Byte("mhfo-hd.dll+ED3E238");
+
public override int WhiteFatalisHunted() => M.Read2Byte("mhfo-hd.dll+ED3E23A");
public override int CeanataurHunted() => M.Read2Byte("mhfo-hd.dll+ED3E23E");
+
public override int HypnocHunted() => M.Read2Byte("mhfo-hd.dll+ED3E240");
+
public override int VolganosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E242");
+
public override int TigrexHunted() => M.Read2Byte("mhfo-hd.dll+ED3E244");
+
public override int AkantorHunted() => M.Read2Byte("mhfo-hd.dll+ED3E246");
+
public override int BrightHypnocHunted() => M.Read2Byte("mhfo-hd.dll+ED3E248");
+
public override int RedVolganosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E24A");
+
public override int EspinasHunted() => M.Read2Byte("mhfo-hd.dll+ED3E24C");
+
public override int OrangeEspinasHunted() => M.Read2Byte("mhfo-hd.dll+ED3E24E");
+
public override int SilverHypnocHunted() => M.Read2Byte("mhfo-hd.dll+ED3E250");
+
public override int AkuraVashimuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E252");
+
public override int AkuraJebiaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E254");
public override int BerukyurosuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E256");
+
public override int CactusHunted() => M.Read2Byte("mhfo-hd.dll+ED3E258");
+
public override int GorgeObjectsHunted() => M.Read2Byte("mhfo-hd.dll+ED3E25A");
+
public override int PariapuriaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E25E");
+
public override int WhiteEspinasHunted() => M.Read2Byte("mhfo-hd.dll+ED3E260");
+
public override int KamuOrugaronHunted() => M.Read2Byte("mhfo-hd.dll+ED3E262");
+
public override int NonoOrugaronHunted() => M.Read2Byte("mhfo-hd.dll+ED3E264");
+
public override int DyuragauaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E268");
+
public override int DoragyurosuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E26A");
+
public override int GurenzeburuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E26C");
+
public override int BurukkuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E26E");
+
public override int ErupeHunted() => M.Read2Byte("mhfo-hd.dll+ED3E270");
+
public override int RukodioraHunted() => M.Read2Byte("mhfo-hd.dll+ED3E272");
+
public override int UnknownHunted() => M.Read2Byte("mhfo-hd.dll+ED3E274");
+
public override int GogomoaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E276");
+
public override int TaikunZamuzaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E27A");
+
public override int AbioruguHunted() => M.Read2Byte("mhfo-hd.dll+ED3E27C");
+
public override int KuarusepusuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E27E");
+
public override int OdibatorasuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E280");
+
public override int DisufiroaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E282");
+
public override int RebidioraHunted() => M.Read2Byte("mhfo-hd.dll+ED3E284");
+
public override int AnorupatisuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E286");
+
public override int HyujikikiHunted() => M.Read2Byte("mhfo-hd.dll+ED3E288");
+
public override int MidogaronHunted() => M.Read2Byte("mhfo-hd.dll+ED3E28A");
+
public override int GiaoruguHunted() => M.Read2Byte("mhfo-hd.dll+ED3E28C");
+
public override int MiRuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E28E");
+
public override int FarunokkuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E290");
+
public override int PokaradonHunted() => M.Read2Byte("mhfo-hd.dll+ED3E292");
+
public override int ShantienHunted() => M.Read2Byte("mhfo-hd.dll+ED3E294");
+
public override int PokaraHunted() => M.Read2Byte("mhfo-hd.dll+ED3E296");
+
public override int GoruganosuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E29A");
+
public override int AruganosuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E29C");
+
public override int BaruragaruHunted() => M.Read2Byte("mhfo-hd.dll+ED3E29E");
+
public override int ZerureusuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2A0");
+
public override int GougarfHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2A2");
+
public override int UrukiHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2A4");
+
public override int ForokururuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2A6");
+
public override int MeraginasuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2A8");
+
public override int DiorexHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2AA");
+
public override int GarubaDaoraHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2AC");
+
public override int InagamiHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2AE");
+
public override int VarusaburosuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2B0");
+
public override int PoborubarumuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2B2");
public override int GureadomosuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2C2");
+
public override int HarudomeruguHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2C4");
+
public override int ToridclessHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2C6");
+
public override int GasurabazuraHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2C8");
+
public override int KusubamiHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2CA");
+
public override int YamaKuraiHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2CC");
+
public override int ZinogreHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2D0");
+
public override int DeviljhoHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2D2");
+
public override int BrachydiosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2D4");
+
public override int ToaTesukatoraHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2D8");
+
public override int BariothHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2DA");
+
public override int UragaanHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2DC");
+
public override int StygianZinogreHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2DE");
+
public override int GuanzorumuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2E0");
+
public override int StarvingDeviljhoHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2E2");
+
public override int VoljangHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2E8");
+
public override int NargacugaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2EA");
+
public override int KeoaruboruHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2EC");
+
public override int ZenaserisuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2EE");
+
public override int GoreMagalaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2F0");
+
public override int BlinkingNargacugaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2F2");
+
public override int ShagaruMagalaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2F4");
+
public override int AmatsuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2F6");
+
public override int ElzelionHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2F8");
+
public override int ArrogantDuremudiraHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2FA");
+
public override int SeregiosHunted() => M.Read2Byte("mhfo-hd.dll+ED3E2FE");
+
public override int BogabadorumuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E300");
+
public override int BlitzkriegBogabadorumuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E304");
- public override int SparklingZerureusuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E308");
- public override int PSO2RappyHunted() => M.Read2Byte("mhfo-hd.dll+ED3E30A");
- public override int KingShakalakaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E30C");//
+ public override int SparklingZerureusuHunted() => M.Read2Byte("mhfo-hd.dll+ED3E308");
+ public override int PSO2RappyHunted() => M.Read2Byte("mhfo-hd.dll+ED3E30A");
+ public override int KingShakalakaHunted() => M.Read2Byte("mhfo-hd.dll+ED3E30C");
+//
public override int QuestState() => M.ReadByte("mhfo-hd.dll+ED52892");
public override int RoadDureSkill1Name() => M.ReadByte("mhfo-hd.dll+ED3E7DC");
+
public override int RoadDureSkill1Level() => M.ReadByte("mhfo-hd.dll+ED3E7DE");
+
public override int RoadDureSkill2Name() => M.ReadByte("mhfo-hd.dll+ED3E7E0");
+
public override int RoadDureSkill2Level() => M.ReadByte("mhfo-hd.dll+ED3E7E2");
+
public override int RoadDureSkill3Name() => M.ReadByte("mhfo-hd.dll+ED3E7E4");
+
public override int RoadDureSkill3Level() => M.ReadByte("mhfo-hd.dll+ED3E7E6");
+
public override int RoadDureSkill4Name() => M.ReadByte("mhfo-hd.dll+ED3E7E8");
+
public override int RoadDureSkill4Level() => M.ReadByte("mhfo-hd.dll+ED3E7EA");
+
public override int RoadDureSkill5Name() => M.ReadByte("mhfo-hd.dll+ED3E7EC");
+
public override int RoadDureSkill5Level() => M.ReadByte("mhfo-hd.dll+ED3E7EE");
+
public override int RoadDureSkill6Name() => M.ReadByte("mhfo-hd.dll+ED3E7F0");
+
public override int RoadDureSkill6Level() => M.ReadByte("mhfo-hd.dll+ED3E7F2");
+
public override int RoadDureSkill7Name() => M.ReadByte("mhfo-hd.dll+ED3E7F4");
+
public override int RoadDureSkill7Level() => M.ReadByte("mhfo-hd.dll+ED3E7F6");
+
public override int RoadDureSkill8Name() => M.ReadByte("mhfo-hd.dll+ED3E7F8");
+
public override int RoadDureSkill8Level() => M.ReadByte("mhfo-hd.dll+ED3E7FA");
+
public override int RoadDureSkill9Name() => M.ReadByte("mhfo-hd.dll+ED3E7FC");
+
public override int RoadDureSkill9Level() => M.ReadByte("mhfo-hd.dll+ED3E7FE");
+
public override int RoadDureSkill10Name() => M.ReadByte("mhfo-hd.dll+ED3E800");
+
public override int RoadDureSkill10Level() => M.ReadByte("mhfo-hd.dll+ED3E802");
+
public override int RoadDureSkill11Name() => M.ReadByte("mhfo-hd.dll+ED3E804");
+
public override int RoadDureSkill11Level() => M.ReadByte("mhfo-hd.dll+ED3E806");
+
public override int RoadDureSkill12Name() => M.ReadByte("mhfo-hd.dll+ED3E808");
+
public override int RoadDureSkill12Level() => M.ReadByte("mhfo-hd.dll+ED3E80A");
+
public override int RoadDureSkill13Name() => M.ReadByte("mhfo-hd.dll+ED3E80C");
+
public override int RoadDureSkill13Level() => M.ReadByte("mhfo-hd.dll+ED3E80E");
+
public override int RoadDureSkill14Name() => M.ReadByte("mhfo-hd.dll+ED3E810");
+
public override int RoadDureSkill14Level() => M.ReadByte("mhfo-hd.dll+ED3E812");
+
public override int RoadDureSkill15Name() => M.ReadByte("mhfo-hd.dll+ED3E814");
+
public override int RoadDureSkill15Level() => M.ReadByte("mhfo-hd.dll+ED3E816");
+
public override int RoadDureSkill16Name() => M.ReadByte("mhfo-hd.dll+ED3E818");
+
public override int RoadDureSkill16Level() => M.ReadByte("mhfo-hd.dll+ED3E81A");
public override int PartySize() => M.ReadByte("mhfo-hd.dll+E3CE388");
+
public override int PartySizeMax() => M.ReadByte("mhfo-hd.dll+EDF0828");
public override uint GSRP() => 1;
+
public override uint GRP() => 1;
public override int HunterHP() => M.Read2Byte("mhfo-hd.dll+E7FE178");
+
public override int HunterStamina() => M.Read2Byte("mhfo-hd.dll+DC6BF4C");
//farcaster doesnt count as used
public override int QuestItemsUsed() => M.Read2Byte("mhfo-hd.dll+E4229E4");
+
public override int AreaHitsTakenBlocked() => M.Read2Byte("mhfo-hd.dll+DC6BC38");
public override int PartnyaBagItem1ID() => M.Read2Byte("mhfo-hd.dll+E37D348");
+
public override int PartnyaBagItem1Qty() => M.Read2Byte("mhfo-hd.dll+E37D34A");
public override int PartnyaBagItem2ID() => M.Read2Byte("mhfo-hd.dll+E37D34C");
@@ -725,6 +1306,4 @@ public int LargeMonster2Road()
public override int PartnyaBagItem10ID() => M.Read2Byte("mhfo-hd.dll+E37D36C");
public override int PartnyaBagItem10Qty() => M.Read2Byte("mhfo-hd.dll+E37D36E");
-
-
}
diff --git a/MHFZ_Overlay/Models/Addresses/AddressModelNotHGE.cs b/MHFZ_Overlay/Models/Addresses/AddressModelNotHGE.cs
index c4dc28e4..d51908e7 100644
--- a/MHFZ_Overlay/Models/Addresses/AddressModelNotHGE.cs
+++ b/MHFZ_Overlay/Models/Addresses/AddressModelNotHGE.cs
@@ -2,7 +2,6 @@
// Use of this source code is governed by a MIT license that can be
// found in the LICENSE file.
-
// Most Addresses from https://github.com/suzaku01/
namespace MHFZ_Overlay.Models.Addresses;
@@ -10,7 +9,6 @@ namespace MHFZ_Overlay.Models.Addresses;
using Memory;
using MHFZ_Overlay.ViewModels;
-
///
/// Inherits from AddressModel and provides the memory address of the hit count value (etc.) when the game is running in non-High Grade Edition (HGE) mode.
///
@@ -22,181 +20,315 @@ public AddressModelNotHGE(Mem m) : base(m)
}
public override int HitCountInt() => M.Read2Byte("mhfo.dll+60792E6");
- //public override int TimeDefInt() => M.ReadInt("mhfo.dll+1B97780");
+
+ // public override int TimeDefInt() => M.ReadInt("mhfo.dll+1B97780");
public override int TimeDefInt() => M.ReadInt("mhfo.dll+28C2C70");
+
public override int TimeInt() => M.ReadInt("mhfo.dll+5BC6540");
+
// alternative timeint for dure? mhfo.dll+5BC7600
public override int WeaponRaw() => M.Read2Byte("mhfo.dll+503433A");
- //This is equipment slot number that goes from 0-255 repeatedly
- //"mhfo.dll+60FFCC6
- //"mhfo.dll+B7FF45
- //"mhfo.dll+182D3B93
- //"mhfo.dll+13E1FF45
+ // This is equipment slot number that goes from 0-255 repeatedly
+ // "mhfo.dll+60FFCC6
+ // "mhfo.dll+B7FF45
+ // "mhfo.dll+182D3B93
+ // "mhfo.dll+13E1FF45
public override int WeaponType() => M.ReadByte("mhfo.dll+5033B93");
+
public override bool IsNotRoad()
{
return M.ReadByte("mhfo.dll+509C8B0") == 0;
}
+
public override int LargeMonster1ID()
{
return GetNotRoad() ? M.ReadByte("mhfo.dll+1B97794") : LargeMonster1Road();
}
+
public override int LargeMonster2ID()
{
return GetNotRoad() ? M.ReadByte("mhfo.dll+1B9779C") : LargeMonster2Road();
}
+
public override int LargeMonster3ID() => M.ReadByte("mhfo.dll+1B977A4");
+
public override int LargeMonster4ID() => M.ReadByte("mhfo.dll+1B977AC");
+
public int LargeMonster1Road()
{
return M.ReadByte("mhfo.dll+509C8B8");
}
+
public int LargeMonster2Road()
{
return M.ReadByte("mhfo.dll+509C8D8");
}
+
public string Monster1BP1 { get => M.Read2Byte("mhfo.dll+60A3E58,348").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster1Part1() => M.Read2Byte("mhfo.dll+60A3E58,348");
+
public string Monster1BP2 { get => M.Read2Byte("mhfo.dll+60A3E58,350").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster1Part2() => M.Read2Byte("mhfo.dll+60A3E58,350");
+
public string Monster1BP3 { get => M.Read2Byte("mhfo.dll+60A3E58,358").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster1Part3() => M.Read2Byte("mhfo.dll+60A3E58,358");
+
public string Monster1BP4 { get => M.Read2Byte("mhfo.dll+60A3E58,360").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster1Part4() => M.Read2Byte("mhfo.dll+60A3E58,360");
+
public string Monster1BP5 { get => M.Read2Byte("mhfo.dll+60A3E58,368").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster1Part5() => M.Read2Byte("mhfo.dll+60A3E58,368");
+
public string Monster1BP6 { get => M.Read2Byte("mhfo.dll+60A3E58,370").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster1Part6() => M.Read2Byte("mhfo.dll+60A3E58,370");
+
public string Monster1BP7 { get => M.Read2Byte("mhfo.dll+60A3E58,378").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster1Part7() => M.Read2Byte("mhfo.dll+60A3E58,378");
+
public string Monster1BP8 { get => M.Read2Byte("mhfo.dll+60A3E58,380").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster1Part8() => M.Read2Byte("mhfo.dll+60A3E58,380");
+
public string Monster1BP9 { get => M.Read2Byte("mhfo.dll+60A3E58,388").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster1Part9() => M.Read2Byte("mhfo.dll+60A3E58,388");
+
public string Monster1BP10 { get => M.Read2Byte("mhfo.dll+60A3E58,390").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster1Part10() => M.Read2Byte("mhfo.dll+60A3E58,390");
+
public string Monster2BP1 { get => M.Read2Byte("mhfo.dll+60A3E58,1238").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster2Part1() => M.Read2Byte("mhfo.dll+60A3E58,1238");
+
public string Monster2BP2 { get => M.Read2Byte("mhfo.dll+60A3E58,1240").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster2Part2() => M.Read2Byte("mhfo.dll+60A3E58,1240");
+
public string Monster2BP3 { get => M.Read2Byte("mhfo.dll+60A3E58,1248").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster2Part3() => M.Read2Byte("mhfo.dll+60A3E58,1248");
+
public string Monster2BP4 { get => M.Read2Byte("mhfo.dll+60A3E58,1250").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster2Part4() => M.Read2Byte("mhfo.dll+60A3E58,1250");
+
public string Monster2BP5 { get => M.Read2Byte("mhfo.dll+60A3E58,1258").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster2Part5() => M.Read2Byte("mhfo.dll+60A3E58,1258");
+
public string Monster2BP6 { get => M.Read2Byte("mhfo.dll+60A3E58,1260").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster2Part6() => M.Read2Byte("mhfo.dll+60A3E58,1260");
+
public string Monster2BP7 { get => M.Read2Byte("mhfo.dll+60A3E58,1268").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster2Part7() => M.Read2Byte("mhfo.dll+60A3E58,1268");
+
public string Monster2BP8 { get => M.Read2Byte("mhfo.dll+60A3E58,1270").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster2Part8() => M.Read2Byte("mhfo.dll+60A3E58,1270");
+
public string Monster2BP9 { get => M.Read2Byte("mhfo.dll+60A3E58,1278").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster2Part9() => M.Read2Byte("mhfo.dll+60A3E58,1278");
+
public string Monster2BP10 { get => M.Read2Byte("mhfo.dll+60A3E58,1280").ToString(CultureInfo.InvariantCulture); }
+
public override int Monster2Part10() => M.Read2Byte("mhfo.dll+60A3E58,1280");
+
public override int Monster1HPInt() => M.Read2Byte("0043C600");
+
public override int Monster2HPInt() => M.Read2Byte("0043C604");
+
public override int Monster3HPInt() => M.Read2Byte("0043C608");
+
public override int Monster4HPInt() => M.Read2Byte("0043C60C");
+
public override string Monster1AtkMult() => M.ReadFloat("mhfo.dll+60A3E58,898").ToString(CultureInfo.InvariantCulture);
+
public override decimal Monster1DefMult() => (decimal)M.ReadFloat("mhfo.dll+60A3E58,89C", "", false);
+
public override int Monster1Poison() => M.Read2Byte("mhfo.dll+60A3E58,88A");
+
public override int Monster1PoisonNeed() => M.Read2Byte("mhfo.dll+60A3E58,888");
+
public override int Monster1Sleep() => M.Read2Byte("mhfo.dll+60A3E58,86C");
+
public override int Monster1SleepNeed() => M.Read2Byte("mhfo.dll+60A3E58,86A");
+
public override int Monster1Para() => M.Read2Byte("mhfo.dll+60A3E58,886");
+
public override int Monster1ParaNeed() => M.Read2Byte("mhfo.dll+60A3E58,880");
+
public override int Monster1Blast() => M.Read2Byte("mhfo.dll+60A3E58,D4A");
+
public override int Monster1BlastNeed() => M.Read2Byte("mhfo.dll+60A3E58,D48");
+
public override int Monster1Stun() => M.Read2Byte("mhfo.dll+60A3E58,872");
+
public override int Monster1StunNeed() => M.Read2Byte("mhfo.dll+60A3E58,A74");
+
public override string Monster1Size() => M.Read2Byte("mhfo.dll+2AFA784").ToString(CultureInfo.InvariantCulture) + "%";
+
public override string Monster2AtkMult() => M.ReadFloat("mhfo.dll+60A3E58,1788").ToString(CultureInfo.InvariantCulture);
+
public override decimal Monster2DefMult() => (decimal)M.ReadFloat("mhfo.dll+60A3E58,178C", "", false);
+
public override int Monster2Poison() => M.Read2Byte("mhfo.dll+60A3E58,177A");
+
public override int Monster2PoisonNeed() => M.Read2Byte("mhfo.dll+60A3E58,1778");
+
public override int Monster2Sleep() => M.Read2Byte("mhfo.dll+60A3E58,175C");
+
public override int Monster2SleepNeed() => M.Read2Byte("mhfo.dll+60A3E58,175A");
+
public override int Monster2Para() => M.Read2Byte("mhfo.dll+60A3E58,1776");
+
public override int Monster2ParaNeed() => M.Read2Byte("mhfo.dll+60A3E58,1770");
+
public override int Monster2Blast() => M.Read2Byte("mhfo.dll+60A3E58,1C3A");
+
public override int Monster2BlastNeed() => M.Read2Byte("mhfo.dll+60A3E58,1C38");
+
public override int Monster2Stun() => M.Read2Byte("mhfo.dll+60A3E58,1762");
+
public override int Monster2StunNeed() => M.Read2Byte("mhfo.dll+60A3E58,1964");
+
public override string Monster2Size() => M.Read2Byte("mhfo.dll+2AFA784").ToString(CultureInfo.InvariantCulture) + "%";
+
public override int DamageDealt() => M.Read2Byte("mhfo.dll+5CA3430");
+
public override int RoadSelectedMonster() => M.ReadByte("mhfo.dll+001B48F4,4");
//new addresses
public override int AreaID() => M.Read2Byte("mhfo.dll+5034388");
+
public override int RavienteAreaID() => M.Read2Byte("mhfo.dll+6124B6E");
+
public override int GRankNumber() => M.Read2Byte("mhfo.dll+613DD30");
+
public override int GSR() => M.Read2Byte("mhfo.dll+50349A2");
+
public override int RoadFloor() => M.Read2Byte("mhfo.dll+5C47600");
+
public override int WeaponStyle() => M.ReadByte("mhfo.dll+50348D2");
+
public override int QuestID() => M.Read2Byte("mhfo.dll+5FB4A4C");
+
public override int UrukiPachinkoFish() => M.ReadByte("mhfo.dll+61EC176");
+
public override int UrukiPachinkoMushroom() => M.ReadByte("mhfo.dll+61EC178");
+
public override int UrukiPachinkoSeed() => M.ReadByte("mhfo.dll+61EC17A");
+
public override int UrukiPachinkoMeat() => M.ReadByte("mhfo.dll+61EC174");
+
public override int UrukiPachinkoChain() => M.ReadByte("mhfo.dll+61EC160");
+
public override int UrukiPachinkoScore() => M.ReadInt("mhfo.dll+61EC16C");
+
public override int UrukiPachinkoBonusScore() => M.ReadInt("mhfo.dll+61EC170");
+
public override int NyanrendoScore() => M.ReadInt("mhfo.dll+61EC160");
+
public override int DokkanBattleCatsScore() => M.ReadInt("mhfo.dll+61EC158");
+
public override int DokkanBattleCatsScale() => M.ReadByte("mhfo.dll+61EC2EC");
+
public override int DokkanBattleCatsShell() => M.ReadByte("mhfo.dll+61EC2EE");
+
public override int DokkanBattleCatsCamp() => M.ReadByte("mhfo.dll+61EC2EA");
+
public override int GuukuScoopSmall() => M.ReadByte("mhfo.dll+61EC190");
+
public override int GuukuScoopMedium() => M.ReadByte("mhfo.dll+61EC194");
+
public override int GuukuScoopLarge() => M.ReadByte("mhfo.dll+61EC198");
+
public override int GuukuScoopGolden() => M.ReadByte("mhfo.dll+61EC19C");
+
public override int GuukuScoopScore() => M.ReadInt("mhfo.dll+61EC184");
+
public override int PanicHoneyScore() => M.ReadByte("mhfo.dll+61EC168");
+
public override int Sharpness() => M.Read2Byte("mhfo.dll+50346B6");
+
public override int CaravanPoints() => M.ReadInt("mhfo.dll+6101894");
+
public override int MezeportaFestivalPoints() => M.ReadInt("mhfo.dll+617FA4C");
+
public override int DivaBond() => M.Read2Byte("mhfo.dll+61033A8");
+
public override int DivaItemsGiven() => M.Read2Byte("mhfo.dll+61033AA");
+
public override int GCP() => M.ReadInt("mhfo.dll+58CFA18");
+
public override int RoadPoints() => M.ReadInt("mhfo.dll+61043F8");
+
public override int ArmorColor() => M.ReadByte("mhfo.dll+6100476");
+
public override int RaviGg() => M.ReadInt("mhfo.dll+6104188");
+
public override int Ravig() => M.ReadInt("mhfo.dll+61003A0");
+
public override int GZenny() => M.ReadInt("mhfo.dll+6100514");
+
public override int GuildFoodSkill() => M.Read2Byte("mhfo.dll+5BC70D8");
+
public override int GalleryEvaluationScore() => M.ReadInt("mhfo.dll+6103250");
+
public override int PoogiePoints() => M.ReadByte("mhfo.dll+6100350");
+
public override int PoogieItemUseID() => M.Read2Byte("mhfo.dll+61540F8");
- public override int PoogieCostume() => M.ReadByte("mhfo.dll+1A88392");
+ public override int PoogieCostume() => M.ReadByte("mhfo.dll+1A88392");
//zero-indexed
public override int CaravenGemLevel() => M.ReadByte("mhfo.dll+610037D");
-
public override int RoadMaxStagesMultiplayer() => M.Read2Byte("mhfo.dll+5C47688");
+
public override int RoadTotalStagesMultiplayer() => M.Read2Byte("mhfo.dll+5C47668");
+
public override int RoadTotalStagesSolo() => M.Read2Byte("mhfo.dll+5C4766C");
+
public override int RoadMaxStagesSolo() => M.Read2Byte("mhfo.dll+5C47690");
+
public override int RoadFatalisSlain() => M.Read2Byte("mhfo.dll+5C47670");
+
public override int RoadFatalisEncounters() => M.Read2Byte("mhfo.dll+5C47698");
+
public override int FirstDistrictDuremudiraEncounters() => M.Read2Byte("mhfo.dll+6104414");
+
public override int FirstDistrictDuremudiraSlays() => M.Read2Byte("mhfo.dll+6104FCC");
+
public override int SecondDistrictDuremudiraEncounters() => M.Read2Byte("mhfo.dll+6104418");
+
public override int SecondDistrictDuremudiraSlays() => M.Read2Byte("mhfo.dll+5C47678");
+
public override int DeliveryQuestPoints() => M.Read2Byte("mhfo.dll+6100A72");
//red is 0
public override int SharpnessLevel() => M.ReadByte("mhfo.dll+50346BF");
+
public override int PartnerLevel() => M.Read2Byte("mhfo.dll+574127E");
//as hex, consult addresses README.md
public override int ObjectiveType() => M.ReadInt("mhfo.dll+28C2C80");
+
public override int DivaSkillUsesLeft() => M.ReadByte("mhfo.dll+610436A");
+
public override int HalkFullness() => M.ReadByte("mhfo.dll+6101983");
+
public override int RankBand() => M.ReadByte("mhfo.dll+28C2BD8");
public override int PartnyaRankPoints() => M.ReadInt("mhfo.dll+5919554");
@@ -206,422 +338,770 @@ public int LargeMonster2Road()
public override int Objective1Quantity() => M.Read2Byte("mhfo.dll+28C2C86");
public override int Objective1CurrentQuantityMonster() => M.Read2Byte("mhfo.dll+60792E6");
+
public override int Objective1CurrentQuantityItem() => M.Read2Byte("mhfo.dll+5034732");
public override int RavienteTriggeredEvent() => M.Read2Byte("mhfo.dll+61005C6");
+
public override int GreatSlayingPoints() => M.ReadInt("mhfo.dll+5B45FF8");
+
public override int GreatSlayingPointsSaved() => M.ReadInt("mhfo.dll+61005C4");
public override int AlternativeMonster1HPInt() => 1;
+
public override int AlternativeMonster1AtkMult() => 1;
+
public override int AlternativeMonster1DefMult() => 1;
+
public override int AlternativeMonster1Size() => 1;
public override int AlternativeMonster1Poison() => 1;
+
public override int AlternativeMonster1PoisonNeed() => 1;
+
public override int AlternativeMonster1Sleep() => 1;
+
public override int AlternativeMonster1SleepNeed() => 1;
public override int AlternativeMonster1Para() => 1;
+
public override int AlternativeMonster1ParaNeed() => 1;
+
public override int AlternativeMonster1Blast() => 1;
+
public override int AlternativeMonster1BlastNeed() => 1;
public override int AlternativeMonster1Stun() => 1;
+
public override int AlternativeMonster1StunNeed() => 1;
public override int AlternativeMonster1Part1() => 1;
+
public override int AlternativeMonster1Part2() => 1;
+
public override int AlternativeMonster1Part3() => 1;
+
public override int AlternativeMonster1Part4() => 1;
+
public override int AlternativeMonster1Part5() => 1;
+
public override int AlternativeMonster1Part6() => 1;
+
public override int AlternativeMonster1Part7() => 1;
+
public override int AlternativeMonster1Part8() => 1;
+
public override int AlternativeMonster1Part9() => 1;
+
public override int AlternativeMonster1Part10() => 1;
public override int DivaSkill() => M.ReadByte("mhfo.dll+6104368");
+
public override int StarGrades() => M.ReadByte("mhfo.dll+5B3D086");
public override int CaravanSkill1() => M.ReadByte("mhfo.dll+5034888");
+
public override int CaravanSkill2() => M.ReadByte("mhfo.dll+503488A");
+
public override int CaravanSkill3() => M.ReadByte("mhfo.dll+503488C");
public override int CurrentFaints() => M.ReadByte("mhfo.dll+503479B");
+
public override int MaxFaints() => M.ReadByte("mhfo.dll+1AA899C");
+
public override int AlternativeMaxFaints() => M.ReadByte("mhfo.dll+28C2C64");
public override int CaravanScore() => M.ReadInt("mhfo.dll+6154FC4");
public override int CaravanMonster1ID() => M.ReadByte("mhfo.dll+28C2C84");
+
//unsure
public override int CaravanMonster2ID() => M.ReadByte("mhfo.dll+28C2C8C");
-
public override int BlademasterWeaponID() => M.Read2Byte("mhfo.dll+5033F92");
public override int GunnerWeaponID() => M.Read2Byte("mhfo.dll+5033F92");
+
//the deco addresses for the weapon includes the tower sigils
public override int WeaponDeco1ID() => M.Read2Byte("mhfo.dll+5033F96");
+
public override int WeaponDeco2ID() => M.Read2Byte("mhfo.dll+5033F98");
+
public override int WeaponDeco3ID() => M.Read2Byte("mhfo.dll+5033F9A");
+
public override int ArmorHeadID() => M.Read2Byte("mhfo.dll+5033F52");
+
public override int ArmorHeadDeco1ID() => M.Read2Byte("mhfo.dll+5033F56");
+
public override int ArmorHeadDeco2ID() => M.Read2Byte("mhfo.dll+5033F58");
+
public override int ArmorHeadDeco3ID() => M.Read2Byte("mhfo.dll+5033F5A");
+
public override int ArmorChestID() => M.Read2Byte("mhfo.dll+5033F62");
+
public override int ArmorChestDeco1ID() => M.Read2Byte("mhfo.dll+5033F66");
+
public override int ArmorChestDeco2ID() => M.Read2Byte("mhfo.dll+5033F68");
+
public override int ArmorChestDeco3ID() => M.Read2Byte("mhfo.dll+5033F6A");
+
public override int ArmorArmsID() => M.Read2Byte("mhfo.dll+5033F72");
+
public override int ArmorArmsDeco1ID() => M.Read2Byte("mhfo.dll+5033F76");
+
public override int ArmorArmsDeco2ID() => M.Read2Byte("mhfo.dll+5033F78");
+
public override int ArmorArmsDeco3ID() => M.Read2Byte("mhfo.dll+5033F7A");
+
public override int ArmorWaistID() => M.Read2Byte("mhfo.dll+5033F82");
+
public override int ArmorWaistDeco1ID() => M.Read2Byte("mhfo.dll+5033F86");
+
public override int ArmorWaistDeco2ID() => M.Read2Byte("mhfo.dll+5033F88");
+
public override int ArmorWaistDeco3ID() => M.Read2Byte("mhfo.dll+5033F8A");
+
public override int ArmorLegsID() => M.Read2Byte("mhfo.dll+5033F32");
+
public override int ArmorLegsDeco1ID() => M.Read2Byte("mhfo.dll+5033F36");
+
public override int ArmorLegsDeco2ID() => M.Read2Byte("mhfo.dll+5033F38");
+
public override int ArmorLegsDeco3ID() => M.Read2Byte("mhfo.dll+5033F3A");
+
public override int Cuff1ID() => M.Read2Byte("mhfo.dll+50348C2");
+
public override int Cuff2ID() => M.Read2Byte("mhfo.dll+50348C4");
+
//updates when checking guild card
public override int TotalDefense() => M.Read2Byte("mhfo.dll+5034338");
+
public override int PouchItem1ID() => M.Read2Byte("mhfo.dll+50345A8");
+
public override int PouchItem1Qty() => M.Read2Byte("mhfo.dll+50345AA");
+
public override int PouchItem2ID() => M.Read2Byte("mhfo.dll+50345B0");
+
public override int PouchItem2Qty() => M.Read2Byte("mhfo.dll+50345B2");
+
public override int PouchItem3ID() => M.Read2Byte("mhfo.dll+50345B8");
+
public override int PouchItem3Qty() => M.Read2Byte("mhfo.dll+50345BA");
+
public override int PouchItem4ID() => M.Read2Byte("mhfo.dll+50345C0");
+
public override int PouchItem4Qty() => M.Read2Byte("mhfo.dll+50345C2");
+
public override int PouchItem5ID() => M.Read2Byte("mhfo.dll+50345C8");
+
public override int PouchItem5Qty() => M.Read2Byte("mhfo.dll+50345CA");
+
public override int PouchItem6ID() => M.Read2Byte("mhfo.dll+50345D0");
+
public override int PouchItem6Qty() => M.Read2Byte("mhfo.dll+50345D2");
+
public override int PouchItem7ID() => M.Read2Byte("mhfo.dll+50345D8");
+
public override int PouchItem7Qty() => M.Read2Byte("mhfo.dll+610445A");
+
public override int PouchItem8ID() => M.Read2Byte("mhfo.dll+50345E0");
+
public override int PouchItem8Qty() => M.Read2Byte("mhfo.dll+50345E2");
+
public override int PouchItem9ID() => M.Read2Byte("mhfo.dll+50345E8");
+
public override int PouchItem9Qty() => M.Read2Byte("mhfo.dll+610446A");
+
public override int PouchItem10ID() => M.Read2Byte("mhfo.dll+50345F0");
+
public override int PouchItem10Qty() => M.Read2Byte("mhfo.dll+50345F2");
+
public override int PouchItem11ID() => M.Read2Byte("mhfo.dll+50345F8");
+
public override int PouchItem11Qty() => M.Read2Byte("mhfo.dll+50345FA");
+
public override int PouchItem12ID() => M.Read2Byte("mhfo.dll+5034600");
+
public override int PouchItem12Qty() => M.Read2Byte("mhfo.dll+5034602");
+
public override int PouchItem13ID() => M.Read2Byte("mhfo.dll+5034608");
+
public override int PouchItem13Qty() => M.Read2Byte("mhfo.dll+503460A");
+
public override int PouchItem14ID() => M.Read2Byte("mhfo.dll+5034610");
+
public override int PouchItem14Qty() => M.Read2Byte("mhfo.dll+5034612");
+
public override int PouchItem15ID() => M.Read2Byte("mhfo.dll+5034618");
+
public override int PouchItem15Qty() => M.Read2Byte("mhfo.dll+503461A");
+
public override int PouchItem16ID() => M.Read2Byte("mhfo.dll+5034620");
+
public override int PouchItem16Qty() => M.Read2Byte("mhfo.dll+5034622");
+
public override int PouchItem17ID() => M.Read2Byte("mhfo.dll+5034628");
+
public override int PouchItem17Qty() => M.Read2Byte("mhfo.dll+503462A");
+
public override int PouchItem18ID() => M.Read2Byte("mhfo.dll+5034630");
+
public override int PouchItem18Qty() => M.Read2Byte("mhfo.dll+5034632");
+
public override int PouchItem19ID() => M.Read2Byte("mhfo.dll+5034638");
+
public override int PouchItem19Qty() => M.Read2Byte("mhfo.dll+61044BA");
+
public override int PouchItem20ID() => M.Read2Byte("mhfo.dll+5034640");
+
public override int PouchItem20Qty() => M.Read2Byte("mhfo.dll+5034642");
+
public override int AmmoPouchItem1ID() => M.Read2Byte("mhfo.dll+5034648");
+
public override int AmmoPouchItem1Qty() => M.Read2Byte("mhfo.dll+503464A");
+
public override int AmmoPouchItem2ID() => M.Read2Byte("mhfo.dll+5034650");
+
public override int AmmoPouchItem2Qty() => M.Read2Byte("mhfo.dll+5034652");
+
public override int AmmoPouchItem3ID() => M.Read2Byte("mhfo.dll+5034658");
+
public override int AmmoPouchItem3Qty() => M.Read2Byte("mhfo.dll+503465A");
+
public override int AmmoPouchItem4ID() => M.Read2Byte("mhfo.dll+5034660");
+
public override int AmmoPouchItem4Qty() => M.Read2Byte("mhfo.dll+5034662");
+
public override int AmmoPouchItem5ID() => M.Read2Byte("mhfo.dll+5034668");
+
public override int AmmoPouchItem5Qty() => M.Read2Byte("mhfo.dll+503466A");
+
public override int AmmoPouchItem6ID() => M.Read2Byte("mhfo.dll+5034670");
+
public override int AmmoPouchItem6Qty() => M.Read2Byte("mhfo.dll+5034672");
+
public override int AmmoPouchItem7ID() => M.Read2Byte("mhfo.dll+5034678");
+
public override int AmmoPouchItem7Qty() => M.Read2Byte("mhfo.dll+503467A");
+
public override int AmmoPouchItem8ID() => M.Read2Byte("mhfo.dll+5034680");
+
public override int AmmoPouchItem8Qty() => M.Read2Byte("mhfo.dll+5034682");
+
public override int AmmoPouchItem9ID() => M.Read2Byte("mhfo.dll+5034688");
+
public override int AmmoPouchItem9Qty() => M.Read2Byte("mhfo.dll+503468A");
+
public override int AmmoPouchItem10ID() => M.Read2Byte("mhfo.dll+5034690");
+
public override int AmmoPouchItem10Qty() => M.Read2Byte("mhfo.dll+5034692");
- // TODO: cat pouch
+ // TODO: cat pouch
//slots
public override int ArmorSkill1() => M.Read2Byte("mhfo.dll+503475C");
+
public override int ArmorSkill2() => M.Read2Byte("mhfo.dll+503475E");
+
public override int ArmorSkill3() => M.Read2Byte("mhfo.dll+5034760");
+
public override int ArmorSkill4() => M.Read2Byte("mhfo.dll+5034762");
+
public override int ArmorSkill5() => M.Read2Byte("mhfo.dll+5034764");
+
public override int ArmorSkill6() => M.Read2Byte("mhfo.dll+5034766");
+
public override int ArmorSkill7() => M.Read2Byte("mhfo.dll+5034768");
+
public override int ArmorSkill8() => M.Read2Byte("mhfo.dll+503476A");
+
public override int ArmorSkill9() => M.Read2Byte("mhfo.dll+503476C");
+
public override int ArmorSkill10() => M.Read2Byte("mhfo.dll+503476E");
+
public override int ArmorSkill11() => M.Read2Byte("mhfo.dll+5034770");
+
public override int ArmorSkill12() => M.Read2Byte("mhfo.dll+5034772");
+
public override int ArmorSkill13() => M.Read2Byte("mhfo.dll+5034774");
+
public override int ArmorSkill14() => M.Read2Byte("mhfo.dll+5034776");
+
public override int ArmorSkill15() => M.Read2Byte("mhfo.dll+5034778");
+
public override int ArmorSkill16() => M.Read2Byte("mhfo.dll+503477A");
+
public override int ArmorSkill17() => M.Read2Byte("mhfo.dll+503477C");
+
public override int ArmorSkill18() => M.Read2Byte("mhfo.dll+503477E");
+
public override int ArmorSkill19() => M.Read2Byte("mhfo.dll+5034780");
public override int BloatedWeaponAttack() => M.Read2Byte("mhfo.dll+5BC68C8");
public override int ZenithSkill1() => M.ReadByte("mhfo.dll+51C16D8");
+
public override int ZenithSkill2() => M.ReadByte("mhfo.dll+51C16DA");
+
public override int ZenithSkill3() => M.ReadByte("mhfo.dll+51C16DC");
+
public override int ZenithSkill4() => M.ReadByte("mhfo.dll+51C16DE");
+
public override int ZenithSkill5() => M.ReadByte("mhfo.dll+51C16E0");
+
public override int ZenithSkill6() => M.ReadByte("mhfo.dll+51C16E2");
+
public override int ZenithSkill7() => M.ReadByte("mhfo.dll+51C16E4");
public override int AutomaticSkillWeapon() => M.Read2Byte("mhfo.dll+5034792");
+
public override int AutomaticSkillHead() => M.Read2Byte("mhfo.dll+503478A");
+
public override int AutomaticSkillChest() => M.Read2Byte("mhfo.dll+503478C");
+
public override int AutomaticSkillArms() => M.Read2Byte("mhfo.dll+503478E");
+
public override int AutomaticSkillWaist() => M.Read2Byte("mhfo.dll+5034790");
+
public override int AutomaticSkillLegs() => M.Read2Byte("mhfo.dll+5034786");
+
public override int StyleRank1() => M.ReadByte("mhfo.dll+50348D3");
+
public override int StyleRank2() => M.ReadByte("mhfo.dll+503499F");
public override int GRWeaponLv() => M.Read2Byte("mhfo.dll+5033F94");
+
public override int GRWeaponLvBowguns() => M.Read2Byte("mhfo.dll+5033F95");
public override int Sigil1Name1() => M.ReadByte("mhfo.dll+5BF91E4");
+
public override int Sigil1Value1() => M.ReadByte("mhfo.dll+5BF91EA");
+
public override int Sigil1Name2() => M.ReadByte("mhfo.dll+5BF91E6");
+
public override int Sigil1Value2() => M.ReadByte("mhfo.dll+5BF91EC");
+
public override int Sigil1Name3() => M.ReadByte("mhfo.dll+5BF91E8");
+
public override int Sigil1Value3() => M.ReadByte("mhfo.dll+5BF91EE");
+
public override int Sigil2Name1() => M.ReadByte("mhfo.dll+5BF91F0");
+
public override int Sigil2Value1() => M.ReadByte("mhfo.dll+5BF91F6");
+
public override int Sigil2Name2() => M.ReadByte("mhfo.dll+5BF91F2");
+
public override int Sigil2Value2() => M.ReadByte("mhfo.dll+5BF91F8");
+
public override int Sigil2Name3() => M.ReadByte("mhfo.dll+5BF91F4");
+
public override int Sigil2Value3() => M.ReadByte("mhfo.dll+5BF91FA");
+
public override int Sigil3Name1() => M.ReadByte("mhfo.dll+5BF9604");
+
public override int Sigil3Value1() => M.ReadByte("mhfo.dll+5BF960A");
+
public override int Sigil3Name2() => M.ReadByte("mhfo.dll+5BF9606");
+
public override int Sigil3Value2() => M.ReadByte("mhfo.dll+5BF960C");
+
public override int Sigil3Name3() => M.ReadByte("mhfo.dll+5BF9608");
- public override int Sigil3Value3() => M.ReadByte("mhfo.dll+5BF960E");
+ public override int Sigil3Value3() => M.ReadByte("mhfo.dll+5BF960E");
public override int FelyneHunted() => M.Read2Byte("mhfo.dll+6103A1E");
+
public override int MelynxHunted() => M.Read2Byte("mhfo.dll+6103A3A");
+
public override int ShakalakaHunted() => M.Read2Byte("mhfo.dll+6103A7E") + 0;
public override int VespoidHunted() => M.Read2Byte("mhfo.dll+6103A32");
+
public override int HornetaurHunted() => M.Read2Byte("mhfo.dll+6103A3C");
+
public override int GreatThunderbugHunted() => M.Read2Byte("mhfo.dll+6103A7C");
+
public override int KelbiHunted() => M.Read2Byte("mhfo.dll+6103A12");
+
public override int MosswineHunted() => M.Read2Byte("mhfo.dll+6103A14");
+
public override int AntekaHunted() => M.Read2Byte("mhfo.dll+6103A96");
+
public override int PopoHunted() => M.Read2Byte("mhfo.dll+6103A98");
+
public override int AptonothHunted() => M.Read2Byte("mhfo.dll+6103A24");
+
public override int ApcerosHunted() => M.Read2Byte("mhfo.dll+6103A3E");
+
public override int BurukkuHunted() => M.Read2Byte("mhfo.dll+6103ACE");
+
public override int ErupeHunted() => M.Read2Byte("mhfo.dll+6103AD0");
+
public override int VelocipreyHunted() => M.Read2Byte("mhfo.dll+6103A2C");
+
public override int VelocidromeHunted() => M.Read2Byte("mhfo.dll+6103A42");
+
public override int GenpreyHunted() => M.Read2Byte("mhfo.dll+6103A26");
+
public override int GendromeHunted() => M.Read2Byte("mhfo.dll+6103A44");
+
public override int IopreyHunted() => M.Read2Byte("mhfo.dll+6103A48");
+
public override int IodromeHunted() => M.Read2Byte("mhfo.dll+6103A4A");
+
public override int GiapreyHunted() => M.Read2Byte("mhfo.dll+6103A52");
+
public override int YianKutKuHunted() => M.Read2Byte("mhfo.dll+6103A18");
+
public override int BlueYianKutKuHunted() => M.Read2Byte("mhfo.dll+6103A58");
+
public override int YianGarugaHunted() => M.Read2Byte("mhfo.dll+6103A5C");
+
public override int GypcerosHunted() => M.Read2Byte("mhfo.dll+6103A34");
+
public override int PurpleGypcerosHunted() => M.Read2Byte("mhfo.dll+6103A5A");
+
public override int HypnocHunted() => M.Read2Byte("mhfo.dll+6103AA0");
+
public override int BrightHypnocHunted() => M.Read2Byte("mhfo.dll+6103AA8");
+
public override int SilverHypnocHunted() => M.Read2Byte("mhfo.dll+6103AB0");
+
public override int FarunokkuHunted() => M.Read2Byte("mhfo.dll+6103AF0");
+
public override int ForokururuHunted() => M.Read2Byte("mhfo.dll+6103B06");
+
public override int ToridclessHunted() => M.Read2Byte("mhfo.dll+6103B26");
+
public override int RemobraHunted() => M.Read2Byte("mhfo.dll+6103A8A");
+
public override int RathianHunted() => M.Read2Byte("mhfo.dll+6103A0E");
+
public override int PinkRathianHunted() => M.Read2Byte("mhfo.dll+6103A56");
+
public override int GoldRathianHunted() => M.Read2Byte("mhfo.dll+6103A60");
+
public override int RathalosHunted() => M.Read2Byte("mhfo.dll+6103A22");
+
public override int AzureRathalosHunted() => M.Read2Byte("mhfo.dll+6103A6E");
+
public override int SilverRathalosHunted() => M.Read2Byte("mhfo.dll+6103A5E");
+
public override int KhezuHunted() => M.Read2Byte("mhfo.dll+6103A2A");
+
public override int RedKhezuHunted() => M.Read2Byte("mhfo.dll+6103A66");
+
public override int BasariosHunted() => M.Read2Byte("mhfo.dll+6103A38");
+
public override int GraviosHunted() => M.Read2Byte("mhfo.dll+6103A2E");
+
public override int BlackGraviosHunted() => M.Read2Byte("mhfo.dll+6103A6A");
+
public override int MonoblosHunted() => M.Read2Byte("mhfo.dll+6103A40");
+
public override int WhiteMonoblosHunted() => M.Read2Byte("mhfo.dll+6103A64");
+
public override int DiablosHunted() => M.Read2Byte("mhfo.dll+6103A28");
+
public override int BlackDiablosHunted() => M.Read2Byte("mhfo.dll+6103A62");
+
public override int TigrexHunted() => M.Read2Byte("mhfo.dll+6103AA4");
+
public override int EspinasHunted() => M.Read2Byte("mhfo.dll+6103AAC");
+
public override int OrangeEspinasHunted() => M.Read2Byte("mhfo.dll+6103AAE");
+
public override int WhiteEspinasHunted() => M.Read2Byte("mhfo.dll+6103AC0");
+
public override int AkantorHunted() => M.Read2Byte("mhfo.dll+6103AA6");
+
public override int BerukyurosuHunted() => M.Read2Byte("mhfo.dll+6103AB6");
+
public override int DoragyurosuHunted() => M.Read2Byte("mhfo.dll+6103ACA");
+
public override int PariapuriaHunted() => M.Read2Byte("mhfo.dll+6103ABE");
+
public override int DyuragauaHunted() => M.Read2Byte("mhfo.dll+6103AC8");
+
public override int GurenzeburuHunted() => M.Read2Byte("mhfo.dll+6103ACC");
+
public override int OdibatorasuHunted() => M.Read2Byte("mhfo.dll+6103AE0");
+
public override int HyujikikiHunted() => M.Read2Byte("mhfo.dll+6103AE8");
+
public override int AnorupatisuHunted() => M.Read2Byte("mhfo.dll+6103AE6");
+
public override int ZerureusuHunted() => M.Read2Byte("mhfo.dll+6103B00") + 0;
public override int MeraginasuHunted() => M.Read2Byte("mhfo.dll+6103B08");
+
public override int DiorexHunted() => M.Read2Byte("mhfo.dll+6103B0A");
+
public override int PoborubarumuHunted() => M.Read2Byte("mhfo.dll+6103B12");
+
public override int VarusaburosuHunted() => M.Read2Byte("mhfo.dll+6103B10");
+
public override int GureadomosuHunted() => M.Read2Byte("mhfo.dll+6103B22");
+
public override int BariothHunted() => M.Read2Byte("mhfo.dll+6103B3A");
+
//musous are separate???
public override int NargacugaHunted() => M.Read2Byte("mhfo.dll+6103B4A") + 0;
public override int ZenaserisuHunted() => M.Read2Byte("mhfo.dll+6103B4E");
+
public override int SeregiosHunted() => M.Read2Byte("mhfo.dll+6103B5E");
+
public override int BogabadorumuHunted() => M.Read2Byte("mhfo.dll+6103B60");
+
public override int CephalosHunted() => M.Read2Byte("mhfo.dll+6103A50");
+
public override int CephadromeHunted() => M.Read2Byte("mhfo.dll+6103A1C");
+
public override int PlesiothHunted() => M.Read2Byte("mhfo.dll+6103A36");
+
public override int GreenPlesiothHunted() => M.Read2Byte("mhfo.dll+6103A68");
+
public override int VolganosHunted() => M.Read2Byte("mhfo.dll+6103AA2");
+
public override int RedVolganosHunted() => M.Read2Byte("mhfo.dll+6103AAA");
+
public override int HermitaurHunted() => M.Read2Byte("mhfo.dll+6103A90");
+
public override int DaimyoHermitaurHunted() => M.Read2Byte("mhfo.dll+6103A6C");
+
public override int CeanataurHunted() => M.Read2Byte("mhfo.dll+6103A9E");
+
public override int ShogunCeanataurHunted() => M.Read2Byte("mhfo.dll+6103A92");
+
public override int ShenGaorenHunted() => M.Read2Byte("mhfo.dll+6103A7A");
+
public override int AkuraVashimuHunted() => M.Read2Byte("mhfo.dll+6103AB2");
+
public override int AkuraJebiaHunted() => M.Read2Byte("mhfo.dll+6103AB4");
+
public override int TaikunZamuzaHunted() => M.Read2Byte("mhfo.dll+6103ADA");
+
public override int KusubamiHunted() => M.Read2Byte("mhfo.dll+6103B2A");
+
public override int BullfangoHunted() => M.Read2Byte("mhfo.dll+6103A16");
+
public override int BulldromeHunted() => M.Read2Byte("mhfo.dll+6103A94");
+
public override int CongaHunted() => M.Read2Byte("mhfo.dll+6103A88");
+
public override int CongalalaHunted() => M.Read2Byte("mhfo.dll+6103A74");
+
public override int BlangoHunted() => M.Read2Byte("mhfo.dll+6103A86");
+
public override int BlangongaHunted() => M.Read2Byte("mhfo.dll+6103A72");
+
public override int GogomoaHunted() => M.Read2Byte("mhfo.dll+6103AD6");
+
public override int RajangHunted() => M.Read2Byte("mhfo.dll+6103A76");
+
public override int KamuOrugaronHunted() => M.Read2Byte("mhfo.dll+6103AC2");
+
public override int NonoOrugaronHunted() => M.Read2Byte("mhfo.dll+6103AC4");
+
public override int MidogaronHunted() => M.Read2Byte("mhfo.dll+6103AEA");
+
public override int GougarfHunted() => M.Read2Byte("mhfo.dll+6103B02");
+
public override int VoljangHunted() => M.Read2Byte("mhfo.dll+6103B48");
+
public override int KirinHunted() => M.Read2Byte("mhfo.dll+6103A4E");
+
public override int KushalaDaoraHunted() => M.Read2Byte("mhfo.dll+6103A78");
+
public override int RustedKushalaDaoraHunted() => M.Read2Byte("mhfo.dll+6103A84");
+
public override int ChameleosHunted() => M.Read2Byte("mhfo.dll+6103A82");
+
public override int LunastraHunted() => M.Read2Byte("mhfo.dll+6103A8C");
+
public override int TeostraHunted() => M.Read2Byte("mhfo.dll+6103A8E");
+
public override int LaoShanLungHunted() => M.Read2Byte("mhfo.dll+6103A1A");
- public override int AshenLaoShanLungHunted() => M.Read2Byte("mhfo.dll+6103A70");//untested
+
+ public override int AshenLaoShanLungHunted() => M.Read2Byte("mhfo.dll+6103A70");
+
+ // untested
public override int YamaTsukamiHunted() => M.Read2Byte("mhfo.dll+6103A80");
+
public override int RukodioraHunted() => M.Read2Byte("mhfo.dll+6103AD2");
+
public override int RebidioraHunted() => M.Read2Byte("mhfo.dll+6103AE4");
+
public override int FatalisHunted() => M.Read2Byte("mhfo.dll+6103A10");
+
public override int ShantienHunted() => M.Read2Byte("mhfo.dll+6103AF4");
+
public override int DisufiroaHunted() => M.Read2Byte("mhfo.dll+6103AE2");
+
public override int GarubaDaoraHunted() => M.Read2Byte("mhfo.dll+6103B0C");
+
public override int InagamiHunted() => M.Read2Byte("mhfo.dll+6103B0E");
+
public override int HarudomeruguHunted() => M.Read2Byte("mhfo.dll+6103B24");
+
public override int YamaKuraiHunted() => M.Read2Byte("mhfo.dll+6103B2C");
+
public override int ToaTesukatoraHunted() => M.Read2Byte("mhfo.dll+6103B38");
+
public override int GuanzorumuHunted() => M.Read2Byte("mhfo.dll+6103B40");
+
public override int KeoaruboruHunted() => M.Read2Byte("mhfo.dll+6103B4C");
+
public override int ShagaruMagalaHunted() => M.Read2Byte("mhfo.dll+6103B54");
+
public override int ElzelionHunted() => M.Read2Byte("mhfo.dll+6103B58");
+
public override int AmatsuHunted() => M.Read2Byte("mhfo.dll+6103B56");
+
public override int AbioruguHunted() => M.Read2Byte("mhfo.dll+6103ADC");
+
public override int GiaoruguHunted() => M.Read2Byte("mhfo.dll+6103AEC");
+
public override int GasurabazuraHunted() => M.Read2Byte("mhfo.dll+6103B28");
+
public override int DeviljhoHunted() => M.Read2Byte("mhfo.dll+6103B32");
+
public override int BrachydiosHunted() => M.Read2Byte("mhfo.dll+6103B34");
+
public override int UragaanHunted() => M.Read2Byte("mhfo.dll+6103B3C");
+
public override int KuarusepusuHunted() => M.Read2Byte("mhfo.dll+6103ADE");
+
public override int PokaraHunted() => M.Read2Byte("mhfo.dll+6103AF6");
+
public override int PokaradonHunted() => M.Read2Byte("mhfo.dll+6103AF2");
+
public override int BaruragaruHunted() => M.Read2Byte("mhfo.dll+6103AFE");
+
public override int ZinogreHunted() => M.Read2Byte("mhfo.dll+6103B30");
+
public override int StygianZinogreHunted() => M.Read2Byte("mhfo.dll+6103B3E");
+
public override int GoreMagalaHunted() => M.Read2Byte("mhfo.dll+6103B50");
+
public override int BlitzkriegBogabadorumuHunted() => M.Read2Byte("mhfo.dll+6103B64");
+
public override int SparklingZerureusuHunted() => M.Read2Byte("mhfo.dll+6103B68");
+
public override int StarvingDeviljhoHunted() => M.Read2Byte("mhfo.dll+6103B42");
+
public override int CrimsonFatalisHunted() => M.Read2Byte("mhfo.dll+6103A54");
+
public override int WhiteFatalisHunted() => M.Read2Byte("mhfo.dll+6103A9A");
+
public override int CactusHunted() => M.Read2Byte("mhfo.dll+6103AB8");
- public override int ArrogantDuremudiraHunted() => M.Read2Byte("mhfo.dll+6103B5A");//untested
+
+ public override int ArrogantDuremudiraHunted() => M.Read2Byte("mhfo.dll+6103B5A");
+
+ // untested
public override int KingShakalakaHunted() => M.Read2Byte("mhfo.dll+6103B6C");
+
public override int MiRuHunted() => M.Read2Byte("mhfo.dll+6103AEE");
+
public override int UnknownHunted() => M.Read2Byte("mhfo.dll+6103AD4");
+
public override int GoruganosuHunted() => M.Read2Byte("mhfo.dll+6103AFA");
+
public override int AruganosuHunted() => M.Read2Byte("mhfo.dll+6103AFC");
+
public override int PSO2RappyHunted() => M.Read2Byte("mhfo.dll+6103B6A");
+
public override int RocksHunted() => M.Read2Byte("mhfo.dll+6103A46");
+
public override int UrukiHunted() => M.Read2Byte("mhfo.dll+6103B04");
+
public override int GorgeObjectsHunted() => M.Read2Byte("mhfo.dll+6103ABA");
- public override int BlinkingNargacugaHunted() => M.Read2Byte("mhfo.dll+6103B52");
+ public override int BlinkingNargacugaHunted() => M.Read2Byte("mhfo.dll+6103B52");
public override int QuestState() => M.ReadByte("mhfo.dll+61180F2");
-
public override int RoadDureSkill1Name() => M.ReadByte("mhfo.dll+610403C");
+
public override int RoadDureSkill1Level() => M.ReadByte("mhfo.dll+610403E");
+
public override int RoadDureSkill2Name() => M.ReadByte("mhfo.dll+6104040");
+
public override int RoadDureSkill2Level() => M.ReadByte("mhfo.dll+6104042");
+
public override int RoadDureSkill3Name() => M.ReadByte("mhfo.dll+6104044");
+
public override int RoadDureSkill3Level() => M.ReadByte("mhfo.dll+6104046");
+
public override int RoadDureSkill4Name() => M.ReadByte("mhfo.dll+6104048");
+
public override int RoadDureSkill4Level() => M.ReadByte("mhfo.dll+610404A");
+
public override int RoadDureSkill5Name() => M.ReadByte("mhfo.dll+610404C");
+
public override int RoadDureSkill5Level() => M.ReadByte("mhfo.dll+610404E");
+
public override int RoadDureSkill6Name() => M.ReadByte("mhfo.dll+6104050");
+
public override int RoadDureSkill6Level() => M.ReadByte("mhfo.dll+6104052");
+
public override int RoadDureSkill7Name() => M.ReadByte("mhfo.dll+6104054");
+
public override int RoadDureSkill7Level() => M.ReadByte("mhfo.dll+6104056");
+
public override int RoadDureSkill8Name() => M.ReadByte("mhfo.dll+6104058");
+
public override int RoadDureSkill8Level() => M.ReadByte("mhfo.dll+610405A");
+
public override int RoadDureSkill9Name() => M.ReadByte("mhfo.dll+610405C");
+
public override int RoadDureSkill9Level() => M.ReadByte("mhfo.dll+610405E");
+
public override int RoadDureSkill10Name() => M.ReadByte("mhfo.dll+6104060");
+
public override int RoadDureSkill10Level() => M.ReadByte("mhfo.dll+6104062");
+
public override int RoadDureSkill11Name() => M.ReadByte("mhfo.dll+6104064");
+
public override int RoadDureSkill11Level() => M.ReadByte("mhfo.dll+6104066");
+
public override int RoadDureSkill12Name() => M.ReadByte("mhfo.dll+6104068");
+
public override int RoadDureSkill12Level() => M.ReadByte("mhfo.dll+610406A");
+
public override int RoadDureSkill13Name() => M.ReadByte("mhfo.dll+610406C");
+
public override int RoadDureSkill13Level() => M.ReadByte("mhfo.dll+610406E");
+
public override int RoadDureSkill14Name() => M.ReadByte("mhfo.dll+6104070");
+
public override int RoadDureSkill14Level() => M.ReadByte("mhfo.dll+6104072");
+
public override int RoadDureSkill15Name() => M.ReadByte("mhfo.dll+6104074");
+
public override int RoadDureSkill15Level() => M.ReadByte("mhfo.dll+6104076");
+
public override int RoadDureSkill16Name() => M.ReadByte("mhfo.dll+6104078");
+
public override int RoadDureSkill16Level() => M.ReadByte("mhfo.dll+610407A");
public override int PartySize() => M.ReadByte("mhfo.dll+57967C8");
+
public override int PartySizeMax() => M.ReadByte("mhfo.dll+61B6088");
public override uint GSRP() => (uint)M.ReadInt("mhfo.dll+61041C8");
+
public override uint GRP() => (uint)M.ReadInt("mhfo.dll+5BC82F8");
public override int HunterHP() => M.Read2Byte("mhfo.dll+5BC6548");
+
public override int HunterStamina() => M.Read2Byte("mhfo.dll+503438C");
+
public override int QuestItemsUsed() => M.Read2Byte("mhfo.dll+57EAE24");
+
public override int AreaHitsTakenBlocked() => M.Read2Byte("mhfo.dll+5034078");
// TODO Untested
public override int PartnyaBagItem1ID() => M.Read2Byte("mhfo.dll+5745788");
+
public override int PartnyaBagItem1Qty() => M.Read2Byte("mhfo.dll+574578A");
public override int PartnyaBagItem2ID() => M.Read2Byte("mhfo.dll+574578C");
@@ -659,5 +1139,4 @@ public int LargeMonster2Road()
public override int PartnyaBagItem10ID() => M.Read2Byte("mhfo.dll+57457AC");
public override int PartnyaBagItem10Qty() => M.Read2Byte("mhfo.dll+57457AE");
-
}
diff --git a/MHFZ_Overlay/Models/Addresses/README.md b/MHFZ_Overlay/Models/Addresses/README.md
index 93401580..2719273e 100644
--- a/MHFZ_Overlay/Models/Addresses/README.md
+++ b/MHFZ_Overlay/Models/Addresses/README.md
@@ -7,9 +7,8 @@ For the addresses, check the respective files.
## IDs
-- [Dictionaries](../Core/Class/Dictionary)
-- [Bitfields and Enumerations](../Core/Enum)
-- [Lists](../Core/Class/List)
+- [Mappers](../Mappers)
+- [Bitfields and Enumerations](../Structures)
### Sigil Skills
diff --git a/MHFZ_Overlay/Models/BrushAnimation.cs b/MHFZ_Overlay/Models/BrushAnimation.cs
index f61ad0cb..37a8d516 100644
--- a/MHFZ_Overlay/Models/BrushAnimation.cs
+++ b/MHFZ_Overlay/Models/BrushAnimation.cs
@@ -29,22 +29,30 @@ public override object GetCurrentValue(object defaultOriginValue,
defaultDestinationValue as Brush,
animationClock);
}
+
public object GetCurrentValue(Brush? defaultOriginValue,
Brush? defaultDestinationValue,
AnimationClock animationClock)
{
if (!animationClock.CurrentProgress.HasValue)
+ {
return Brushes.Transparent;
+ }
- //use the standard values if From and To are not set
- //(it is the value of the given property)
+ // use the standard values if From and To are not set
+ // (it is the value of the given property)
defaultOriginValue = this.From ?? defaultOriginValue;
defaultDestinationValue = this.To ?? defaultDestinationValue;
if (animationClock.CurrentProgress.Value == 0 && defaultOriginValue != null)
+ {
return defaultOriginValue;
+ }
+
if (animationClock.CurrentProgress.Value == 1 && defaultDestinationValue != null)
+ {
return defaultDestinationValue;
+ }
return new VisualBrush(new Border()
{
@@ -78,6 +86,7 @@ public Brush To
public static readonly DependencyProperty FromProperty =
DependencyProperty.Register("From", typeof(Brush), typeof(BrushAnimation));
+
public static readonly DependencyProperty ToProperty =
DependencyProperty.Register("To", typeof(Brush), typeof(BrushAnimation));
}
diff --git a/MHFZ_Overlay/Models/ButtonPress.cs b/MHFZ_Overlay/Models/ButtonPress.cs
index 3ff25151..473ab0ad 100644
--- a/MHFZ_Overlay/Models/ButtonPress.cs
+++ b/MHFZ_Overlay/Models/ButtonPress.cs
@@ -6,6 +6,15 @@ namespace MHFZ_Overlay.Models;
public class ButtonPress
{
+ public ButtonPress(string buttonType, int row, int column, string icon, object content)
+ {
+ this.ButtonType = buttonType;
+ this.Row = row;
+ this.Column = column;
+ this.Icon = icon;
+ this.Content = content;
+ }
+
public string ButtonType { get; set; }
public int Row { get; set; }
@@ -15,13 +24,4 @@ public class ButtonPress
public string Icon { get; set; }
public object Content { get; set; }
-
- public ButtonPress(string buttonType, int row, int column, string icon, object content)
- {
- ButtonType = buttonType;
- Row = row;
- Column = column;
- Icon = icon;
- Content = content;
- }
}
diff --git a/MHFZ_Overlay/Models/Constant/ApplicationPaths.cs b/MHFZ_Overlay/Models/Constant/ApplicationPaths.cs
index ac47fc86..3c25a2cc 100644
--- a/MHFZ_Overlay/Models/Constant/ApplicationPaths.cs
+++ b/MHFZ_Overlay/Models/Constant/ApplicationPaths.cs
@@ -1,4 +1,4 @@
-// © 2023 The mhfz-overlay developers.
+// © 2023 The mhfz-overlay developers.
// Use of this source code is governed by a MIT license that can be
// found in the LICENSE file.
@@ -12,9 +12,9 @@ public static class ApplicationPaths
///
/// The Notepad path
///
- public const string NOTEPAD_PATH = @"C:\Windows\System32\notepad.exe";
+ public const string NotepadPath = @"C:\Windows\System32\notepad.exe";
///
/// The File Explorer path
///
- public const string EXPLORER_PATH = @"C:\Windows\explorer.exe";
+ public const string ExplorerPath = @"C:\Windows\explorer.exe";
}
diff --git a/MHFZ_Overlay/Models/Constant/Messages.cs b/MHFZ_Overlay/Models/Constant/Messages.cs
index 4c86ed21..3cb634d1 100644
--- a/MHFZ_Overlay/Models/Constant/Messages.cs
+++ b/MHFZ_Overlay/Models/Constant/Messages.cs
@@ -1,4 +1,4 @@
-// © 2023 The mhfz-overlay developers.
+// © 2023 The mhfz-overlay developers.
// Use of this source code is governed by a MIT license that can be
// found in the LICENSE file.
@@ -9,20 +9,39 @@ namespace MHFZ_Overlay.Models.Constant;
///
public static class Messages
{
- public const string RUN_NOT_FOUND = "Run Not Found";
- public const string QUEST_NOT_FOUND = "Quest Not Found";
- public const string INVALID_QUEST = "Invalid Quest";
- public const string NOT_A_NUMBER = "N/A";
- public const string TIMER_NOT_LOADED = "--:--.---";
- public const string FATAL_TITLE = "MHF-Z Overlay Fatal Error";
- public const string ERROR_TITLE = "MHF-Z Overlay Error";
- public const string WARNING_TITLE = "MHF-Z Overlay Warning";
- public const string INFO_TITLE = "MHF-Z Overlay Info";
- public const string DEBUG_TITLE = "MHF-Z Overlay Debug";
- public const string MONSTER_PART_NOT_LOADED = "None: 0";
- public const string RICK_ROLL_ID = "dQw4w9WgXcQ";
- public const string MAXIMUM_TIMER_PLACEHOLDER = "9999:59.999";
- public const string OVERLAY_MODE_PLACEHOLDER = "Standard";
- public const string MONSTER_IMAGE_NOT_LOADED = "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/none.png";
- public const string SECRET_ACHIEVEMENT = "???";
+ public const string RunNotFound = "Run Not Found";
+
+ public const string QuestNotFound = "Quest Not Found";
+
+ public const string InvalidQuest = "Invalid Quest";
+
+ public const string NotANumber = "N/A";
+
+ public const string TimerNotLoaded = "--:--.---";
+
+ public const string FatalTitle = "MHF-Z Overlay Fatal Error";
+
+ public const string ErrorTitle = "MHF-Z Overlay Error";
+
+ public const string WarningTitle = "MHF-Z Overlay Warning";
+
+ public const string InfoTitle = "MHF-Z Overlay Info";
+
+ public const string DebugTitle = "MHF-Z Overlay Debug";
+
+ public const string MonsterPartNotLoaded = "None: 0";
+
+ public const string RickRollID = "dQw4w9WgXcQ";
+
+ public const string MaximumTimerPlaceholder = "9999:59.999";
+
+ public const string OverlayModePlaceholder = "Standard";
+
+ public const string MonsterImageNotLoaded = "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/none.png";
+
+ public const string SecretAchievement = "???";
+
+ public const string UnknownMonsterIcon = "https://i.imgur.com/3pQEtzw.png";
+
+ public const string EmptyImage = "https://i.imgur.com/aAcPJGb.png";
}
diff --git a/MHFZ_Overlay/Models/Constant/Numbers.cs b/MHFZ_Overlay/Models/Constant/Numbers.cs
index aae915b8..c1ef4149 100644
--- a/MHFZ_Overlay/Models/Constant/Numbers.cs
+++ b/MHFZ_Overlay/Models/Constant/Numbers.cs
@@ -9,13 +9,17 @@ public static class Numbers
///
/// The frames per second in the game.
///
- public const int FRAMES_PER_SECOND = 30;
- public const int FRAMES_1_MINUTE = FRAMES_PER_SECOND * 60;
- public const int FRAMES_1_HOUR = FRAMES_1_MINUTE * 60;
+ public const int FramesPerSecond = 30;
- public const int REQUIRED_COMPLETIONS_MONSTER_SLAYER = 10;
- public const int REQUIRED_COMPLETIONS_MONSTER_ANNIHILATOR = 25;
- public const int REQUIRED_COMPLETIONS_MONSTER_EXTERMINATOR = 50;
+ public const int Frames1Minute = FramesPerSecond * 60;
+
+ public const int Frames1Hour = Frames1Minute * 60;
+
+ public const int RequiredCompletionsMonsterSlayer = 10;
+
+ public const int RequiredCompletionsMonsterAnnihilator = 25;
+
+ public const int RequiredCompletionsMonsterExterminator = 50;
/* Quest IDs
@@ -91,74 +95,142 @@ VR 53232
TODO replace the numbers in source code as necessary
*/
- public const int QUEST_ID_Z4_AKURA_VASHIMU = 23539;
- public const int QUEST_ID_Z4_ANORUPATISU = 23721;
- public const int QUEST_ID_Z4_BLANGONGA = 23519;
- public const int QUEST_ID_Z4_DAIMYO_HERMITAUR = 23479;
- public const int QUEST_ID_Z4_DORAGYUROSU = 23662;
- public const int QUEST_ID_Z4_ESPINAS = 23483;
- public const int QUEST_ID_Z4_GASURABAZURA = 23671;
- public const int QUEST_ID_Z4_GIAORUGU = 23613;
- public const int QUEST_ID_Z4_HYPNOCATRICE = 23471;
- public const int QUEST_ID_Z4_HYUJIKIKI = 23609;
- public const int QUEST_ID_Z4_INAGAMI = 23647;
- public const int QUEST_ID_Z4_KHEZU = 23475;
- public const int QUEST_ID_Z4_MIDOGARON = 23617;
- public const int QUEST_ID_Z4_PLESIOTH = 23625;
- public const int QUEST_ID_Z4_RATHALOS = 23523;
- public const int QUEST_ID_Z4_RUKODIORA = 23621;
- public const int QUEST_ID_Z4_TIGREX = 23543;
- public const int QUEST_ID_Z4_TORIDCLESS = 23658;
- public const int QUEST_ID_Z4_BARURAGARU = 23716;
- public const int QUEST_ID_Z4_BOGABADORUMU = 23708;
- public const int QUEST_ID_Z4_GRAVIOS = 23712;
- public const int QUEST_ID_Z4_HARUDOMERUGU = 55932;
- public const int QUEST_ID_Z4_TAIKUN_ZAMUZA = 55926;
- public const int QUEST_ID_LV9999_FATALIS = 23596;
- public const int QUEST_ID_LV9999_CRIMSON_FATALIS = 23601;
- public const int QUEST_ID_LV9999_SHANTIEN = 23588;
- public const int QUEST_ID_LV9999_DISUFIROA = 23592;
- public const int QUEST_ID_UPPER_SHITEN_UNKNOWN = 23605;
- public const int QUEST_ID_UPPER_SHITEN_DISUFIROA = 23603;
- public const int QUEST_ID_THIRSTY_PARIAPURIA = 55532;
- public const int QUEST_ID_RULING_GUANZORUMU = 55529;
- public const int QUEST_ID_SHIFTING_MI_RU = 55531;
- public const int QUEST_ID_BLINKING_NARGACUGA_FOREST = 55534;
- public const int QUEST_ID_BLINKING_NARGACUGA_HISTORIC = 55922;
- public const int QUEST_ID_HOWLING_ZINOGRE_FOREST = 55535;
- public const int QUEST_ID_HOWLING_ZINOGRE_HISTORIC = 55919;
- public const int QUEST_ID_SPARKLING_ZERUREUSU = 55951;
- public const int QUEST_ID_SPARKLING_ZERUREUSU_EVENT = 56106;
- public const int QUEST_ID_ARROGANT_DUREMUDIRA = 23649;
- public const int QUEST_ID_STARVING_DEVILJHO_ARENA = 55530;
- public const int QUEST_ID_STARVING_DEVILJHO_HISTORIC = 55917;
- public const int QUEST_ID_BLITZKRIEG_BOGABADORUMU = 55949;
- public const int QUEST_ID_BURNING_FREEZING_ELZELION_TOWER = 55714;
- public const int QUEST_ID_BURNING_FREEZING_ELZELION_HISTORIC = 55936;
- public const int QUEST_ID_VEGGIE_ELDER_LOVE = 53189;
- public const int QUEST_ID_PRODUCER_GOGOMOA_LR = 50748;
- public const int QUEST_ID_PRODUCER_GOGOMOA_HR = 53032;
- public const int QUEST_ID_FOUR_HEAVENLY_KING_MALE_1 = 40219;
- public const int QUEST_ID_FOUR_HEAVENLY_KING_MALE_2 = 40220;
- public const int QUEST_ID_FOUR_HEAVENLY_KING_FEMALE_1 = 40237;
- public const int QUEST_ID_FOUR_HEAVENLY_KING_FEMALE_2 = 40238;
- public const int QUEST_ID_HATSUNE_MIKU = 40230;
- public const int QUEST_ID_PSO2 = 40239;
- public const int QUEST_ID_MEGAMAN = 40240;
- public const int QUEST_ID_HIGANJIMA = 40217;
- public const int QUEST_ID_MHFQ = 53209;
- public const int QUEST_ID_HUGE_PLESIOTH = 53028;
- public const int QUEST_ID_SUNGLASSES_KUTKU = 53139;
- public const int QUEST_ID_CONGALALA_CURE = 50365;
- public const int QUEST_ID_JUNGLE_PUZZLE = 53208;
- public const int QUEST_ID_MULTIPLAYER_ROAD = 23527;
- public const int QUEST_ID_SECOND_DISTRICT_DUREMUDIRA = 21746;
- public const int QUEST_ID_TWINHEAD_RAJANGS_HISTORIC = 55937;
- public const int QUEST_ID_NUCLEAR_GYPCEROS = 63390;
- public const int QUEST_ID_MOSSWINE_REVENGE = 50143;
- public const int QUEST_ID_MOSSWINE_DUEL = 62793;
- public const int QUEST_ID_MOSSWINE_LAST_STAND = 53323;
- public const int QUEST_ID_HALLOWEEN_SPEEDSTER = 53325;
- public const int QUEST_ID_VR = 53232;
+ public const int QuestIDZ4AkuraVashimu = 23539;
+
+ public const int QuestIDZ4Anorupatisu = 23721;
+
+ public const int QuestIDZ4Blangonga = 23519;
+
+ public const int QuestIDZ4DaimyoHermitaur = 23479;
+
+ public const int QuestIDZ4Doragyurosu = 23662;
+
+ public const int QuestIDZ4Espinas = 23483;
+
+ public const int QuestIDZ4Gasurabazura = 23671;
+
+ public const int QuestIDZ4Giaorugu = 23613;
+
+ public const int QuestIDZ4Hypnocatrice = 23471;
+
+ public const int QuestIDZ4Hyujikiki = 23609;
+
+ public const int QuestIDZ4Inagami = 23647;
+
+ public const int QuestIDZ4Khezu = 23475;
+
+ public const int QuestIDZ4Midogaron = 23617;
+
+ public const int QuestIDZ4Plesioth = 23625;
+
+ public const int QuestIDZ4Rathalos = 23523;
+
+ public const int QuestIDZ4Rukodiora = 23621;
+
+ public const int QuestIDZ4Tigrex = 23543;
+
+ public const int QuestIDZ4Toridcless = 23658;
+
+ public const int QuestIDZ4Baruragaru = 23716;
+
+ public const int QuestIDZ4Bogabadorumu = 23708;
+
+ public const int QuestIDZ4Gravios = 23712;
+
+ public const int QuestIDZ4Harudomerugu = 55932;
+
+ public const int QuestIDZ4TaikunZamuza = 55926;
+
+ public const int QuestIDLV9999Fatalis = 23596;
+
+ public const int QuestIDLV9999CrimsonFatalis = 23601;
+
+ public const int QuestIDLV9999Shantien = 23588;
+
+ public const int QuestIDLV9999Disufiroa = 23592;
+
+ public const int QuestIDUpperShitenUnknown = 23605;
+
+ public const int QuestIDUpperShitenDisufiroa = 23603;
+
+ public const int QuestIDThirstyPariapuria = 55532;
+
+ public const int QuestIDRulingGuanzorumu = 55529;
+
+ public const int QuestIDShiftingMiRu = 55531;
+
+ public const int QuestIDBlinkingNargacugaForest = 55534;
+
+ public const int QuestIDBlinkingNargacugaHistoric = 55922;
+
+ public const int QuestIDHowlingZinogreForest = 55535;
+
+ public const int QuestIDHowlingZinogreHistoric = 55919;
+
+ public const int QuestIDSparklingZerureusu = 55951;
+
+ public const int QuestIDSparklingZerureusuEvent = 56106;
+
+ public const int QuestIDArrogantDuremudira = 23649;
+
+ public const int QuestIDStarvingDeviljhoArena = 55530;
+
+ public const int QuestIDStarvingDeviljhoHistoric = 55917;
+
+ public const int QuestIDBlitzkriegBogabadorumu = 55949;
+
+ public const int QuestIDBurningFreezingElzelionTower = 55714;
+
+ public const int QuestIDBurningFreezingElzelionHistoric = 55936;
+
+ public const int QuestIDVeggieElderLove = 53189;
+
+ public const int QuestIDProducerGogomoaLR = 50748;
+
+ public const int QuestIDProducerGogomoaHR = 53032;
+
+ public const int QuestIDFourHeavenlyKingMale1 = 40219;
+
+ public const int QuestIDFourHeavenlyKingMale2 = 40220;
+
+ public const int QuestIDFourHeavenlyKingFemale1 = 40237;
+
+ public const int QuestIDFourHeavenlyKingFemale2 = 40238;
+
+ public const int QuestIDHatsuneMiku = 40230;
+
+ public const int QuestIDPSO2 = 40239;
+
+ public const int QuestIDMegaman = 40240;
+
+ public const int QuestIDHiganjima = 40217;
+
+ public const int QuestIDMHFQ = 53209;
+
+ public const int QuestIDHugePlesioth = 53028;
+
+ public const int QuestIDSunglassesKutKu = 53139;
+
+ public const int QuestIDCongalalaCure = 50365;
+
+ public const int QuestIDJunglePuzzle = 53208;
+
+ public const int QuestIDMultiplayerRoad = 23527;
+
+ public const int QuestIDSecondDistrictDuremudira = 21746;
+
+ public const int QuestIDTwinheadRajangsHistoric = 55937;
+
+ public const int QuestIDNuclearGypceros = 63390;
+
+ public const int QuestIDMosswineRevenge = 50143;
+
+ public const int QuestIDMosswineDuel = 62793;
+
+ public const int QuestIDMosswineLastStand = 53323;
+
+ public const int QuestIDHalloweenSpeedster = 53325;
+
+ public const int QuestIDVR = 53232;
}
diff --git a/MHFZ_Overlay/Models/Constant/TimeFormats.cs b/MHFZ_Overlay/Models/Constant/TimeFormats.cs
index 96362339..a720f904 100644
--- a/MHFZ_Overlay/Models/Constant/TimeFormats.cs
+++ b/MHFZ_Overlay/Models/Constant/TimeFormats.cs
@@ -9,7 +9,7 @@ namespace MHFZ_Overlay.Models.Constant;
///
public static class TimeFormats
{
- public const string HOURS_MINUTES_SECONDS_MILLISECONDS = @"hh\:mm\:ss\.fff";
+ public const string HoursMinutesSecondsMilliseconds = @"hh\:mm\:ss\.fff";
- public const string MINUTES_SECONDS_MILLISECONDS = @"mm\:ss\.fff";
+ public const string MinutesSecondsMilliseconds = @"mm\:ss\.fff";
}
diff --git a/MHFZ_Overlay/Models/FastestRun.cs b/MHFZ_Overlay/Models/FastestRun.cs
index 879a9bb0..0aaef5c1 100644
--- a/MHFZ_Overlay/Models/FastestRun.cs
+++ b/MHFZ_Overlay/Models/FastestRun.cs
@@ -9,7 +9,7 @@ namespace MHFZ_Overlay.Models;
public class FastestRun
{
- public string ObjectiveImage { get; set; } = Messages.MONSTER_IMAGE_NOT_LOADED;
+ public string ObjectiveImage { get; set; } = Messages.MonsterImageNotLoaded;
public string QuestName { get; set; } = string.Empty;
@@ -17,9 +17,9 @@ public class FastestRun
public long QuestID { get; set; }
- public string YoutubeID { get; set; } = Messages.RICK_ROLL_ID;
+ public string YoutubeID { get; set; } = Messages.RickRollID;
- public string FinalTimeDisplay { get; set; } = Messages.MAXIMUM_TIMER_PLACEHOLDER;
+ public string FinalTimeDisplay { get; set; } = Messages.MaximumTimerPlaceholder;
public DateTime Date { get; set; }
}
diff --git a/MHFZ_Overlay/Models/Mappers/AchievementsMapper.cs b/MHFZ_Overlay/Models/Mappers/AchievementsMapper.cs
index 2cd0104e..4d9c86e9 100644
--- a/MHFZ_Overlay/Models/Mappers/AchievementsMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/AchievementsMapper.cs
@@ -22,40 +22,48 @@ public static class AchievementsMapper
///
public static IReadOnlyDictionary IDAchievement { get; } = new Dictionary
{
- {0, new Achievement(){
- CompletionDate = DateTime.UnixEpoch,
- Title = "Akura Vashimu Slain",
- Description = string.Empty,
- Rank = AchievementRank.Bronze,
- Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_red2.jpg",
- Objective = "Complete 1 Zenith★4 Akura Vashimu quest.",
- IsSecret = false,
- Hint = string.Empty
- }
- },
- {1, new Achievement(){
- CompletionDate = DateTime.UnixEpoch,
- Title = "Akura Vashimu Slayer",
- Description = string.Empty,
- Rank = AchievementRank.Silver,
- Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_white2.jpg",
- Objective = "Complete 10 Zenith★4 Akura Vashimu quests.",
- IsSecret = false,
- Hint = string.Empty
- }
- },
- {2, new Achievement(){
- CompletionDate = DateTime.UnixEpoch,
- Title = "Akura Vashimu Annihilator",
- Description = string.Empty,
- Rank = AchievementRank.Gold,
- Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_yellow.jpg",
- Objective = "Complete 25 Zenith★4 Akura Vashimu quests.",
- IsSecret = false,
- Hint = string.Empty
- }
- },
- {3, new Achievement(){
+ {
+ 0, new Achievement()
+ {
+ CompletionDate = DateTime.UnixEpoch,
+ Title = "Akura Vashimu Slain",
+ Description = string.Empty,
+ Rank = AchievementRank.Bronze,
+ Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_red2.jpg",
+ Objective = "Complete 1 Zenith★4 Akura Vashimu quest.",
+ IsSecret = false,
+ Hint = string.Empty,
+ }
+ },
+ {
+ 1, new Achievement()
+ {
+ CompletionDate = DateTime.UnixEpoch,
+ Title = "Akura Vashimu Slayer",
+ Description = string.Empty,
+ Rank = AchievementRank.Silver,
+ Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_white2.jpg",
+ Objective = "Complete 10 Zenith★4 Akura Vashimu quests.",
+ IsSecret = false,
+ Hint = string.Empty,
+ }
+ },
+ {
+ 2, new Achievement()
+ {
+ CompletionDate = DateTime.UnixEpoch,
+ Title = "Akura Vashimu Annihilator",
+ Description = string.Empty,
+ Rank = AchievementRank.Gold,
+ Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_yellow.jpg",
+ Objective = "Complete 25 Zenith★4 Akura Vashimu quests.",
+ IsSecret = false,
+ Hint = string.Empty,
+ }
+ },
+ {
+ 3, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Akura Vashimu Exterminator",
Description = string.Empty,
@@ -63,10 +71,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_blue2.jpg",
Objective = "Complete 50 Zenith★4 Akura Vashimu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {4, new Achievement(){
+ {
+ 4, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Akura Vashimu's Nightmare",
Description = string.Empty,
@@ -74,10 +84,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_white2.jpg",
Objective = "Complete 1 Zenith★4 Akura Vashimu quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {5, new Achievement(){
+ {
+ 5, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Anorupatisu Slain",
Description = string.Empty,
@@ -85,10 +97,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_red2.jpg",
Objective = "Complete 1 Zenith★4 Anorupatisu quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {6, new Achievement(){
+ {
+ 6, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Anorupatisu Slayer",
Description = string.Empty,
@@ -96,10 +110,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_white2.jpg",
Objective = "Complete 10 Zenith★4 Anorupatisu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {7, new Achievement(){
+ {
+ 7, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Anorupatisu Annihilator",
Description = string.Empty,
@@ -107,10 +123,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_yellow.jpg",
Objective = "Complete 25 Zenith★4 Anorupatisu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {8, new Achievement(){
+ {
+ 8, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Anorupatisu Exterminator",
Description = string.Empty,
@@ -118,10 +136,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_blue2.jpg",
Objective = "Complete 50 Zenith★4 Anorupatisu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {9, new Achievement(){
+ {
+ 9, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Anorupatisu's Nightmare",
Description = string.Empty,
@@ -129,10 +149,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_white2.jpg",
Objective = "Complete 1 Zenith★4 Anorupatisu quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {10, new Achievement(){
+ {
+ 10, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Blangonga Slain",
Description = string.Empty,
@@ -140,10 +162,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_red2.jpg",
Objective = "Complete 1 Zenith★4 Blangonga quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {11, new Achievement(){
+ {
+ 11, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Blangonga Slayer",
Description = string.Empty,
@@ -151,10 +175,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_white2.jpg",
Objective = "Complete 10 Zenith★4 Blangonga quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {12, new Achievement(){
+ {
+ 12, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Blangonga Annihilator",
Description = string.Empty,
@@ -162,10 +188,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_yellow.jpg",
Objective = "Complete 25 Zenith★4 Blangonga quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {13, new Achievement(){
+ {
+ 13, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Blangonga Exterminator",
Description = string.Empty,
@@ -173,10 +201,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_blue2.jpg",
Objective = "Complete 50 Zenith★4 Blangonga quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {14, new Achievement(){
+ {
+ 14, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Blangonga's Nightmare",
Description = string.Empty,
@@ -184,10 +214,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_white2.jpg",
Objective = "Complete 1 Zenith★4 Blangonga quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {15, new Achievement(){
+ {
+ 15, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Daimyo Hermitaur Slain",
Description = string.Empty,
@@ -195,10 +227,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_red2.jpg",
Objective = "Complete 1 Zenith★4 Daimyo Hermitaur quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {16, new Achievement(){
+ {
+ 16, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Daimyo Hermitaur Slayer",
Description = string.Empty,
@@ -206,10 +240,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_white2.jpg",
Objective = "Complete 10 Zenith★4 Daimyo Hermitaur quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {17, new Achievement(){
+ {
+ 17, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Daimyo Hermitaur Annihilator",
Description = string.Empty,
@@ -217,10 +253,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_yellow.jpg",
Objective = "Complete 25 Zenith★4 Daimyo Hermitaur quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {18, new Achievement(){
+ {
+ 18, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Daimyo Hermitaur Exterminator",
Description = string.Empty,
@@ -228,10 +266,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_blue2.jpg",
Objective = "Complete 50 Zenith★4 Daimyo Hermitaur quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {19, new Achievement(){
+ {
+ 19, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Daimyo Hermitaur's Nightmare",
Description = string.Empty,
@@ -239,10 +279,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_white2.jpg",
Objective = "Complete 1 Zenith★4 Daimyo Hermitaur quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {20, new Achievement(){
+ {
+ 20, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Doragyurosu Slain",
Description = string.Empty,
@@ -250,10 +292,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_red2.jpg",
Objective = "Complete 1 Zenith★4 Doragyurosu quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {21, new Achievement(){
+ {
+ 21, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Doragyurosu Slayer",
Description = string.Empty,
@@ -261,10 +305,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_white2.jpg",
Objective = "Complete 10 Zenith★4 Doragyurosu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {22, new Achievement(){
+ {
+ 22, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Doragyurosu Annihilator",
Description = string.Empty,
@@ -272,10 +318,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_yellow.jpg",
Objective = "Complete 25 Zenith★4 Doragyurosu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {23, new Achievement(){
+ {
+ 23, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Doragyurosu Exterminator",
Description = string.Empty,
@@ -283,10 +331,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_blue2.jpg",
Objective = "Complete 50 Zenith★4 Doragyurosu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {24, new Achievement(){
+ {
+ 24, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Doragyurosu's Nightmare",
Description = string.Empty,
@@ -294,10 +344,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_white2.jpg",
Objective = "Complete 1 Zenith★4 Doragyurosu quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {25, new Achievement(){
+ {
+ 25, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Espinas Slain",
Description = string.Empty,
@@ -305,10 +357,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_red2.jpg",
Objective = "Complete 1 Zenith★4 Espinas quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {26, new Achievement(){
+ {
+ 26, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Espinas Slayer",
Description = string.Empty,
@@ -316,10 +370,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_white2.jpg",
Objective = "Complete 10 Zenith★4 Espinas quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {27, new Achievement(){
+ {
+ 27, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Espinas Annihilator",
Description = string.Empty,
@@ -327,10 +383,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_yellow.jpg",
Objective = "Complete 25 Zenith★4 Espinas quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {28, new Achievement(){
+ {
+ 28, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Espinas Exterminator",
Description = string.Empty,
@@ -338,10 +396,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_blue2.jpg",
Objective = "Complete 50 Zenith★4 Espinas quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {29, new Achievement(){
+ {
+ 29, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Espinas' Nightmare",
Description = string.Empty,
@@ -349,10 +409,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_white2.jpg",
Objective = "Complete 1 Zenith★4 Espinas quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {30, new Achievement(){
+ {
+ 30, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gasurabazura Slain",
Description = string.Empty,
@@ -360,10 +422,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_red2.jpg",
Objective = "Complete 1 Zenith★4 Gasurabazura quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {31, new Achievement(){
+ {
+ 31, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gasurabazura Slayer",
Description = string.Empty,
@@ -371,10 +435,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/monster_white2.jpg",
Objective = "Complete 10 Zenith★4 Gasurabazura quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {32, new Achievement(){
+ {
+ 32, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gasurabazura Annihilator",
Description = string.Empty,
@@ -383,10 +449,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith★4 Gasurabazura quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {33, new Achievement(){
+ {
+ 33, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gasurabazura Exterminator",
Description = string.Empty,
@@ -395,10 +463,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Zenith★4 Gasurabazura quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {34, new Achievement(){
+ {
+ 34, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gasurabazura's Nightmare",
Description = string.Empty,
@@ -407,10 +477,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Gasurabazura quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {35, new Achievement(){
+ {
+ 35, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Giaorugu Slain",
Description = string.Empty,
@@ -419,10 +491,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Giaorugu quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {36, new Achievement(){
+ {
+ 36, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Giaorugu Slayer",
Description = string.Empty,
@@ -431,10 +505,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Zenith★4 Giaorugu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {37, new Achievement(){
+ {
+ 37, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Giaorugu Annihilator",
Description = string.Empty,
@@ -443,10 +519,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith★4 Giaorugu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {38, new Achievement(){
+ {
+ 38, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Giaorugu Exterminator",
Description = string.Empty,
@@ -455,10 +533,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Zenith★4 Giaorugu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {39, new Achievement(){
+ {
+ 39, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Giaorugu's Nightmare",
Description = string.Empty,
@@ -467,10 +547,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Giaorugu quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {40, new Achievement(){
+ {
+ 40, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Hypnocatrice Slain",
Description = string.Empty,
@@ -479,10 +561,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Hypnocatrice quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {41, new Achievement(){
+ {
+ 41, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Hypnocatrice Slayer",
Description = string.Empty,
@@ -491,10 +575,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Zenith★4 Hypnocatrice quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {42, new Achievement(){
+ {
+ 42, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Hypnocatrice Annihilator",
Description = string.Empty,
@@ -503,10 +589,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith★4 Hypnocatrice quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {43, new Achievement(){
+ {
+ 43, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Hypnocatrice Exterminator",
Description = string.Empty,
@@ -515,10 +603,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Zenith★4 Hypnocatrice quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {44, new Achievement(){
+ {
+ 44, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Hypnocatrice's Nightmare",
Description = string.Empty,
@@ -527,10 +617,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Hypnocatrice quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {45, new Achievement(){
+ {
+ 45, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Hyujikiki Slain",
Description = string.Empty,
@@ -539,10 +631,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Hyujikiki quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {46, new Achievement(){
+ {
+ 46, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Hyujikiki Slayer",
Description = string.Empty,
@@ -551,10 +645,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Zenith★4 Hyujikiki quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {47, new Achievement(){
+ {
+ 47, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Hyujikiki Annihilator",
Description = string.Empty,
@@ -563,10 +659,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith★4 Hyujikiki quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {48, new Achievement(){
+ {
+ 48, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Hyujikiki Exterminator",
Description = string.Empty,
@@ -575,10 +673,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Zenith★4 Hyujikiki quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {49, new Achievement(){
+ {
+ 49, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Hyujikiki's Nightmare",
Description = string.Empty,
@@ -587,10 +687,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Hyujikiki quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {50, new Achievement(){
+ {
+ 50, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Inagami Slain",
Description = string.Empty,
@@ -599,10 +701,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Inagami quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {51, new Achievement(){
+ {
+ 51, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Inagami Slayer",
Description = string.Empty,
@@ -611,10 +715,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Zenith★4 Inagami quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {52, new Achievement(){
+ {
+ 52, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Inagami Annihilator",
Description = string.Empty,
@@ -623,10 +729,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith★4 Inagami quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {53, new Achievement(){
+ {
+ 53, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Inagami Exterminator",
Description = string.Empty,
@@ -635,10 +743,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Zenith★4 Inagami quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {54, new Achievement(){
+ {
+ 54, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Inagami's Nightmare",
Description = string.Empty,
@@ -647,10 +757,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Inagami quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {55, new Achievement(){
+ {
+ 55, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Khezu Slain",
Description = string.Empty,
@@ -659,10 +771,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Khezu quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {56, new Achievement(){
+ {
+ 56, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Khezu Slayer",
Description = string.Empty,
@@ -671,10 +785,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Zenith★4 Khezu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {57, new Achievement(){
+ {
+ 57, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Khezu Annihilator",
Description = string.Empty,
@@ -683,10 +799,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith★4 Khezu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {58, new Achievement(){
+ {
+ 58, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Khezu Exterminator",
Description = string.Empty,
@@ -695,10 +813,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Zenith★4 Khezu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {59, new Achievement(){
+ {
+ 59, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Khezu's Nightmare",
Description = string.Empty,
@@ -707,10 +827,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Khezu quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {60, new Achievement(){
+ {
+ 60, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Midogaron Slain",
Description = string.Empty,
@@ -719,10 +841,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Midogaron quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {61, new Achievement(){
+ {
+ 61, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Midogaron Slayer",
Description = string.Empty,
@@ -731,10 +855,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Zenith★4 Midogaron quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {62, new Achievement(){
+ {
+ 62, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Midogaron Annihilator",
Description = string.Empty,
@@ -743,10 +869,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith★4 Midogaron quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {63, new Achievement(){
+ {
+ 63, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Midogaron Exterminator",
Description = string.Empty,
@@ -755,10 +883,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Zenith★4 Midogaron quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {64, new Achievement(){
+ {
+ 64, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Midogaron's Nightmare",
Description = string.Empty,
@@ -767,10 +897,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Midogaron quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {65, new Achievement(){
+ {
+ 65, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Plesioth Slain",
Description = string.Empty,
@@ -779,10 +911,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Plesioth quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {66, new Achievement(){
+ {
+ 66, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Plesioth Slayer",
Description = string.Empty,
@@ -791,10 +925,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Zenith★4 Plesioth quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {67, new Achievement(){
+ {
+ 67, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Plesioth Annihilator",
Description = string.Empty,
@@ -803,10 +939,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith★4 Plesioth quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {68, new Achievement(){
+ {
+ 68, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Plesioth Exterminator",
Description = string.Empty,
@@ -815,10 +953,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Zenith★4 Plesioth quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {69, new Achievement(){
+ {
+ 69, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Plesioth's Nightmare",
Description = string.Empty,
@@ -827,10 +967,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Plesioth quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {70, new Achievement(){
+ {
+ 70, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Rathalos Slain",
Description = string.Empty,
@@ -839,10 +981,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Rathalos quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {71, new Achievement(){
+ {
+ 71, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Rathalos Slayer",
Description = string.Empty,
@@ -851,10 +995,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Zenith★4 Rathalos quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {72, new Achievement(){
+ {
+ 72, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Rathalos Annihilator",
Description = string.Empty,
@@ -863,10 +1009,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith★4 Rathalos quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {73, new Achievement(){
+ {
+ 73, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Rathalos Exterminator",
Description = string.Empty,
@@ -875,10 +1023,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Zenith★4 Rathalos quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {74, new Achievement(){
+ {
+ 74, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Rathalos' Nightmare",
Description = string.Empty,
@@ -887,10 +1037,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Rathalos quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {75, new Achievement(){
+ {
+ 75, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Rukodiora Slain",
Description = string.Empty,
@@ -899,10 +1051,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Rukodiora quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {76, new Achievement(){
+ {
+ 76, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Rukodiora Slayer",
Description = string.Empty,
@@ -911,10 +1065,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Zenith★4 Rukodiora quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {77, new Achievement(){
+ {
+ 77, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Rukodiora Annihilator",
Description = string.Empty,
@@ -923,10 +1079,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith★4 Rukodiora quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {78, new Achievement(){
+ {
+ 78, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Rukodiora Exterminator",
Description = string.Empty,
@@ -935,10 +1093,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Zenith★4 Rukodiora quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {79, new Achievement(){
+ {
+ 79, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Rukodiora's Nightmare",
Description = string.Empty,
@@ -947,10 +1107,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Rukodiora quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {80, new Achievement(){
+ {
+ 80, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Tigrex Slain",
Description = string.Empty,
@@ -959,10 +1121,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Tigrex quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {81, new Achievement(){
+ {
+ 81, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Tigrex Slayer",
Description = string.Empty,
@@ -971,10 +1135,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Zenith★4 Tigrex quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {82, new Achievement(){
+ {
+ 82, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Tigrex Annihilator",
Description = string.Empty,
@@ -983,10 +1149,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith★4 Tigrex quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {83, new Achievement(){
+ {
+ 83, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Tigrex Exterminator",
Description = string.Empty,
@@ -995,10 +1163,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Zenith★4 Tigrex quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {84, new Achievement(){
+ {
+ 84, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Tigrex's Nightmare",
Description = string.Empty,
@@ -1007,10 +1177,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Tigrex quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {85, new Achievement(){
+ {
+ 85, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Toridcless Slain",
Description = string.Empty,
@@ -1019,10 +1191,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Toridcless quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {86, new Achievement(){
+ {
+ 86, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Toridcless Slayer",
Description = string.Empty,
@@ -1031,10 +1205,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Zenith★4 Toridcless quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {87, new Achievement(){
+ {
+ 87, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Toridcless Annihilator",
Description = string.Empty,
@@ -1043,10 +1219,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith★4 Toridcless quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {88, new Achievement(){
+ {
+ 88, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Toridcless Exterminator",
Description = string.Empty,
@@ -1055,10 +1233,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Zenith★4 Toridcless quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {89, new Achievement(){
+ {
+ 89, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Toridcless' Nightmare",
Description = string.Empty,
@@ -1067,10 +1247,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Toridcless quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {90, new Achievement(){
+ {
+ 90, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Baruragaru Slain",
Description = string.Empty,
@@ -1079,10 +1261,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Baruragaru quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {91, new Achievement(){
+ {
+ 91, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Baruragaru Slayer",
Description = string.Empty,
@@ -1091,10 +1275,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Zenith★4 Baruragaru quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {92, new Achievement(){
+ {
+ 92, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Baruragaru Annihilator",
Description = string.Empty,
@@ -1103,10 +1289,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith★4 Baruragaru quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {93, new Achievement(){
+ {
+ 93, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Baruragaru Exterminator",
Description = string.Empty,
@@ -1115,10 +1303,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Zenith★4 Baruragaru quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {94, new Achievement(){
+ {
+ 94, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Baruragaru's Nightmare",
Description = string.Empty,
@@ -1127,10 +1317,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Baruragaru quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {95, new Achievement(){
+ {
+ 95, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Bogabadorumu Slain",
Description = string.Empty,
@@ -1139,10 +1331,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Bogabadorumu quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {96, new Achievement(){
+ {
+ 96, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Bogabadorumu Slayer",
Description = string.Empty,
@@ -1151,10 +1345,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Zenith★4 Bogabadorumu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {97, new Achievement(){
+ {
+ 97, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Bogabadorumu Annihilator",
Description = string.Empty,
@@ -1163,10 +1359,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith★4 Bogabadorumu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {98, new Achievement(){
+ {
+ 98, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Bogabadorumu Exterminator",
Description = string.Empty,
@@ -1175,10 +1373,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Zenith★4 Bogabadorumu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {99, new Achievement(){
+ {
+ 99, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Bogabadorumu's Nightmare",
Description = string.Empty,
@@ -1187,10 +1387,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Bogabadorumu quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {100, new Achievement(){
+ {
+ 100, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gravios Slain",
Description = string.Empty,
@@ -1199,10 +1401,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Gravios quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {101, new Achievement(){
+ {
+ 101, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gravios Slayer",
Description = string.Empty,
@@ -1211,10 +1415,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Zenith★4 Gravios quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {102, new Achievement(){
+ {
+ 102, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gravios Annihilator",
Description = string.Empty,
@@ -1223,10 +1429,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith★4 Gravios quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {103, new Achievement(){
+ {
+ 103, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gravios Exterminator",
Description = string.Empty,
@@ -1235,10 +1443,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Zenith★4 Gravios quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {104, new Achievement(){
+ {
+ 104, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gravios' Nightmare",
Description = string.Empty,
@@ -1247,10 +1457,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Gravios quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {105, new Achievement(){
+ {
+ 105, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Harudomerugu Slain",
Description = string.Empty,
@@ -1259,10 +1471,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Harudomerugu quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {106, new Achievement(){
+ {
+ 106, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Harudomerugu Slayer",
Description = string.Empty,
@@ -1271,10 +1485,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Zenith★4 Harudomerugu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {107, new Achievement(){
+ {
+ 107, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Harudomerugu Annihilator",
Description = string.Empty,
@@ -1283,10 +1499,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith★4 Harudomerugu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {108, new Achievement(){
+ {
+ 108, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Harudomerugu Exterminator",
Description = string.Empty,
@@ -1295,10 +1513,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Zenith★4 Harudomerugu quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {109, new Achievement(){
+ {
+ 109, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Harudomerugu's Nightmare",
Description = string.Empty,
@@ -1307,10 +1527,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Harudomerugu quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {110, new Achievement(){
+ {
+ 110, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Taikun Zamuza Slain",
Description = string.Empty,
@@ -1319,10 +1541,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Taikun Zamuza quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {111, new Achievement(){
+ {
+ 111, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Taikun Zamuza Slayer",
Description = string.Empty,
@@ -1331,10 +1555,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Zenith★4 Taikun Zamuza quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {112, new Achievement(){
+ {
+ 112, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Taikun Zamuza Annihilator",
Description = string.Empty,
@@ -1343,10 +1569,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith★4 Taikun Zamuza quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {113, new Achievement(){
+ {
+ 113, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Taikun Zamuza Exterminator",
Description = string.Empty,
@@ -1355,10 +1583,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Zenith★4 Taikun Zamuza quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {114, new Achievement(){
+ {
+ 114, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Taikun Zamuza's Nightmare",
Description = string.Empty,
@@ -1367,10 +1597,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Taikun Zamuza quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {115, new Achievement(){
+ {
+ 115, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Fatalis Slain",
Description = string.Empty,
@@ -1379,10 +1611,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Fatalis quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {116, new Achievement(){
+ {
+ 116, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Fatalis Slayer",
Description = string.Empty,
@@ -1391,10 +1625,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Lv9999 Fatalis quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {117, new Achievement(){
+ {
+ 117, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Fatalis Annihilator",
Description = string.Empty,
@@ -1403,10 +1639,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Lv9999 Fatalis quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {118, new Achievement(){
+ {
+ 118, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Fatalis Exterminator",
Description = string.Empty,
@@ -1415,10 +1653,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Lv9999 Fatalis quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {119, new Achievement(){
+ {
+ 119, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Fatalis' Nightmare",
Description = string.Empty,
@@ -1427,10 +1667,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Fatalis quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {120, new Achievement(){
+ {
+ 120, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Crimson Fatalis Slain",
Description = string.Empty,
@@ -1439,10 +1681,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Crimson Fatalis quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {121, new Achievement(){
+ {
+ 121, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Crimson Fatalis Slayer",
Description = string.Empty,
@@ -1451,10 +1695,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Lv9999 Crimson Fatalis quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {122, new Achievement(){
+ {
+ 122, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Crimson Fatalis Annihilator",
Description = string.Empty,
@@ -1463,10 +1709,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Lv9999 Crimson Fatalis quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {123, new Achievement(){
+ {
+ 123, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Crimson Fatalis Exterminator",
Description = string.Empty,
@@ -1475,10 +1723,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Lv9999 Crimson Fatalis quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {124, new Achievement(){
+ {
+ 124, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Crimson Fatalis' Nightmare",
Description = string.Empty,
@@ -1487,10 +1737,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Crimson Fatalis quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {125, new Achievement(){
+ {
+ 125, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Shantien Slain",
Description = string.Empty,
@@ -1499,10 +1751,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Shantien quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {126, new Achievement(){
+ {
+ 126, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Shantien Slayer",
Description = string.Empty,
@@ -1511,10 +1765,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Lv9999 Shantien quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {127, new Achievement(){
+ {
+ 127, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Shantien Annihilator",
Description = string.Empty,
@@ -1523,10 +1779,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Lv9999 Shantien quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {128, new Achievement(){
+ {
+ 128, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Shantien Exterminator",
Description = string.Empty,
@@ -1535,10 +1793,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Lv9999 Shantien quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {129, new Achievement(){
+ {
+ 129, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Shantien's Nightmare",
Description = string.Empty,
@@ -1547,10 +1807,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Shantien quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {130, new Achievement(){
+ {
+ 130, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Disufiroa Slain",
Description = string.Empty,
@@ -1559,10 +1821,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Disufiroa quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {131, new Achievement(){
+ {
+ 131, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Disufiroa Slayer",
Description = string.Empty,
@@ -1571,10 +1835,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Lv9999 Disufiroa quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {132, new Achievement(){
+ {
+ 132, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Disufiroa Annihilator",
Description = string.Empty,
@@ -1583,10 +1849,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Lv9999 Disufiroa quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {133, new Achievement(){
+ {
+ 133, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Disufiroa Exterminator",
Description = string.Empty,
@@ -1595,10 +1863,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Lv9999 Disufiroa quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {134, new Achievement(){
+ {
+ 134, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Disufiroa's Nightmare",
Description = string.Empty,
@@ -1607,10 +1877,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Disufiroa quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {135, new Achievement(){
+ {
+ 135, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "UNKNOWN Slain",
Description = string.Empty,
@@ -1619,10 +1891,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Upper Shiten Unknown quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {136, new Achievement(){
+ {
+ 136, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "UNKNOWN Slayer",
Description = string.Empty,
@@ -1631,10 +1905,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Upper Shiten Unknown quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {137, new Achievement(){
+ {
+ 137, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "UNKNOWN Annihilator",
Description = string.Empty,
@@ -1643,10 +1919,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Upper Shiten Unknown quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {138, new Achievement(){
+ {
+ 138, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "UNKNOWN Exterminator",
Description = string.Empty,
@@ -1655,10 +1933,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Upper Shiten Unknown quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {139, new Achievement(){
+ {
+ 139, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "UNKNOWN's Nightmare",
Description = string.Empty,
@@ -1667,10 +1947,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Upper Shiten Unknown quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {140, new Achievement(){
+ {
+ 140, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "At World's End",
Description = string.Empty,
@@ -1679,10 +1961,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Upper Shiten Disufiroa quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {141, new Achievement(){
+ {
+ 141, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Apocalyptic Red Moon",
Description = string.Empty,
@@ -1691,10 +1975,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Upper Shiten Disufiroa quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {142, new Achievement(){
+ {
+ 142, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Disufiroa's Last Stand",
Description = string.Empty,
@@ -1703,10 +1989,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Upper Shiten Disufiroa quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {143, new Achievement(){
+ {
+ 143, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Blood Moon Emperor",
Description = string.Empty,
@@ -1715,10 +2003,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Upper Shiten Disufiroa quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {144, new Achievement(){
+ {
+ 144, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Eclipse Conqueror",
Description = string.Empty,
@@ -1727,10 +2017,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Upper Shiten Disufiroa quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {145, new Achievement(){
+ {
+ 145, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Pariapuria Slain",
Description = string.Empty,
@@ -1739,10 +2031,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Thirsty Pariapuria quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {146, new Achievement(){
+ {
+ 146, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Pariapuria Slayer",
Description = string.Empty,
@@ -1751,10 +2045,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Thirsty Pariapuria quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {147, new Achievement(){
+ {
+ 147, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Pariapuria Annihilator",
Description = string.Empty,
@@ -1763,10 +2059,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Thirsty Pariapuria quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {148, new Achievement(){
+ {
+ 148, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Pariapuria Exterminator",
Description = string.Empty,
@@ -1775,10 +2073,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Thirsty Pariapuria quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {149, new Achievement(){
+ {
+ 149, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Pariapuria's Nightmare",
Description = string.Empty,
@@ -1787,10 +2087,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Thirsty Pariapuria quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {150, new Achievement(){
+ {
+ 150, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Guanzorumu Slain",
Description = string.Empty,
@@ -1799,10 +2101,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Ruling Guanzorumu True Slay quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {151, new Achievement(){
+ {
+ 151, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Guanzorumu Slayer",
Description = string.Empty,
@@ -1811,10 +2115,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Ruling Guanzorumu True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {152, new Achievement(){
+ {
+ 152, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Guanzorumu Annihilator",
Description = string.Empty,
@@ -1823,10 +2129,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Ruling Guanzorumu True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {153, new Achievement(){
+ {
+ 153, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Guanzorumu Exterminator",
Description = string.Empty,
@@ -1835,10 +2143,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Ruling Guanzorumu True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {154, new Achievement(){
+ {
+ 154, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Guanzorumu's Nightmare",
Description = string.Empty,
@@ -1847,10 +2157,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Ruling Guanzorumu True Slay quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {155, new Achievement(){
+ {
+ 155, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Mi Ru Slain",
Description = string.Empty,
@@ -1859,10 +2171,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Shifting Mi Ru quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {156, new Achievement(){
+ {
+ 156, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Mi Ru Slayer",
Description = string.Empty,
@@ -1871,10 +2185,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Shifting Mi Ru quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {157, new Achievement(){
+ {
+ 157, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Mi Ru Annihilator",
Description = string.Empty,
@@ -1883,10 +2199,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Shifting Mi Ru quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {158, new Achievement(){
+ {
+ 158, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Mi Ru Exterminator",
Description = string.Empty,
@@ -1895,10 +2213,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Shifting Mi Ru quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {159, new Achievement(){
+ {
+ 159, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Mi Ru's Nightmare",
Description = string.Empty,
@@ -1907,10 +2227,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Shifting Mi Ru quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {160, new Achievement(){
+ {
+ 160, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Nargacuga Slain",
Description = string.Empty,
@@ -1919,10 +2241,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Blinking Nargacuga True Slay quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {161, new Achievement(){
+ {
+ 161, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Nargacuga Slayer",
Description = string.Empty,
@@ -1931,10 +2255,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Blinking Nargacuga True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {162, new Achievement(){
+ {
+ 162, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Nargacuga Annihilator",
Description = string.Empty,
@@ -1943,10 +2269,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Blinking Nargacuga True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {163, new Achievement(){
+ {
+ 163, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Nargacuga Exterminator",
Description = string.Empty,
@@ -1955,10 +2283,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Blinking Nargacuga True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {164, new Achievement(){
+ {
+ 164, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Nargacuga's Nightmare",
Description = string.Empty,
@@ -1967,10 +2297,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Blinking Nargacuga True Slay quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {165, new Achievement(){
+ {
+ 165, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Zinogre Slain",
Description = string.Empty,
@@ -1979,10 +2311,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Howling Zinogre True Slay quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {166, new Achievement(){
+ {
+ 166, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Zinogre Slayer",
Description = string.Empty,
@@ -1991,10 +2325,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Howling Zinogre True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {167, new Achievement(){
+ {
+ 167, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Zinogre Annihilator",
Description = string.Empty,
@@ -2003,10 +2339,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Howling Zinogre True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {168, new Achievement(){
+ {
+ 168, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Zinogre Exterminator",
Description = string.Empty,
@@ -2015,10 +2353,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Howling Zinogre True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {169, new Achievement(){
+ {
+ 169, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Zinogre's Nightmare",
Description = string.Empty,
@@ -2027,10 +2367,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Howling Zinogre True Slay quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {170, new Achievement(){
+ {
+ 170, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Deviljho Slain",
Description = string.Empty,
@@ -2039,10 +2381,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Starving Deviljho True Slay quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {171, new Achievement(){
+ {
+ 171, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Deviljho Slayer",
Description = string.Empty,
@@ -2051,10 +2395,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Starving Deviljho True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {172, new Achievement(){
+ {
+ 172, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Deviljho Annihilator",
Description = string.Empty,
@@ -2063,10 +2409,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Starving Deviljho True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {173, new Achievement(){
+ {
+ 173, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Deviljho Exterminator",
Description = string.Empty,
@@ -2075,10 +2423,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Starving Deviljho True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {174, new Achievement(){
+ {
+ 174, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Deviljho's Nightmare",
Description = string.Empty,
@@ -2087,10 +2437,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Starving Deviljho True Slay quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {175, new Achievement(){
+ {
+ 175, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Zerureusu Slain",
Description = string.Empty,
@@ -2099,10 +2451,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Sparkling Zerureusu True Slay quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {176, new Achievement(){
+ {
+ 176, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Zerureusu Slayer",
Description = string.Empty,
@@ -2111,10 +2465,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Sparkling Zerureusu True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {177, new Achievement(){
+ {
+ 177, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Zerureusu Annihilator",
Description = string.Empty,
@@ -2123,10 +2479,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Sparkling Zerureusu True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {178, new Achievement(){
+ {
+ 178, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Zerureusu Exterminator",
Description = string.Empty,
@@ -2135,10 +2493,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Sparkling Zerureusu True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {179, new Achievement(){
+ {
+ 179, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Zerureusu's Nightmare",
Description = string.Empty,
@@ -2147,10 +2507,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Sparkling Zerureusu True Slay quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {180, new Achievement(){
+ {
+ 180, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Duremudira Slain",
Description = string.Empty,
@@ -2159,10 +2521,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Arrogant Duremudira True Slay quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {181, new Achievement(){
+ {
+ 181, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Duremudira Slayer",
Description = string.Empty,
@@ -2171,10 +2535,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Arrogant Duremudira True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {182, new Achievement(){
+ {
+ 182, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Duremudira Annihilator",
Description = string.Empty,
@@ -2183,10 +2549,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Arrogant Duremudira True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {183, new Achievement(){
+ {
+ 183, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Duremudira Exterminator",
Description = string.Empty,
@@ -2195,10 +2563,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Arrogant Duremudira True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {184, new Achievement(){
+ {
+ 184, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Duremudira's Nightmare",
Description = string.Empty,
@@ -2207,10 +2577,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Arrogant Duremudira True Slay quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {185, new Achievement(){
+ {
+ 185, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Bombardier",
Description = string.Empty,
@@ -2219,10 +2591,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Blitzkrieg Bogabadorumu True Slay quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {186, new Achievement(){
+ {
+ 186, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Blitzkrieg",
Description = string.Empty,
@@ -2231,10 +2605,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Blitzkrieg Bogabadorumu True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {187, new Achievement(){
+ {
+ 187, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Boggy",
Description = string.Empty,
@@ -2243,10 +2619,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Blitzkrieg Bogabadorumu True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {188, new Achievement(){
+ {
+ 188, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Boggers",
Description = string.Empty,
@@ -2255,10 +2633,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Blitzkrieg Bogabadorumu True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {189, new Achievement(){
+ {
+ 189, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Explosion!",
Description = string.Empty,
@@ -2267,10 +2647,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Blitzkrieg Bogabadorumu True Slay quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {190, new Achievement(){
+ {
+ 190, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Elzelion Slain",
Description = string.Empty,
@@ -2279,10 +2661,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Burning Freezing Elzelion True Slay quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {191, new Achievement(){
+ {
+ 191, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Elzelion Slayer",
Description = string.Empty,
@@ -2291,10 +2675,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Burning Freezing Elzelion True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {192, new Achievement(){
+ {
+ 192, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Elzelion Annihilator",
Description = string.Empty,
@@ -2303,10 +2689,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Burning Freezing Elzelion True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {193, new Achievement(){
+ {
+ 193, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Elzelion Exterminator",
Description = string.Empty,
@@ -2315,10 +2703,12 @@ public static class AchievementsMapper
Objective = "Complete 50 Burning Freezing Elzelion True Slay quests.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {194, new Achievement(){
+ {
+ 194, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Elzelion's Nightmare",
Description = string.Empty,
@@ -2327,10 +2717,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Burning Freezing Elzelion True Slay quest solo (Speedrun/Zen).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {195, new Achievement(){
+ {
+ 195, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Seriously Thirsty",
Description = string.Empty,
@@ -2339,10 +2731,12 @@ public static class AchievementsMapper
Objective = "Complete a Thirsty Pariapuria quest with a Serious Drink Affinity in your inventory.",
IsSecret = true,
- Hint = "I wish I had something to drink...seriously!"
+ Hint = "I wish I had something to drink...seriously!",
}
},
- {196, new Achievement(){
+ {
+ 196, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Back to the Past",
Description = string.Empty,
@@ -2351,10 +2745,12 @@ public static class AchievementsMapper
Objective = "Complete a Ruling Guanzorumu True Slay quest with a non-extreme style.",
IsSecret = true,
- Hint = "Do I really need to run to beat this monster?"
+ Hint = "Do I really need to run to beat this monster?",
}
},
- {197, new Achievement(){
+ {
+ 197, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Shifty",
Description = string.Empty,
@@ -2363,10 +2759,12 @@ public static class AchievementsMapper
Objective = "Complete a Shifting Mi Ru quest while having pressed Shift at the start.",
IsSecret = true,
- Hint = "What if the hunter is also shifting?"
+ Hint = "What if the hunter is also shifting?",
}
},
- {198, new Achievement(){
+ {
+ 198, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Ultra Instinct",
Description = string.Empty,
@@ -2375,10 +2773,12 @@ public static class AchievementsMapper
Objective = "Complete a Blinking Nargacuga True Slay quest without getting hit (including blocks)",
IsSecret = true,
- Hint = "Do you have the instinct to dodge everything?"
+ Hint = "Do you have the instinct to dodge everything?",
}
},
- {199, new Achievement(){
+ {
+ 199, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "A lonely and starving wolf",
Description = string.Empty,
@@ -2387,10 +2787,12 @@ public static class AchievementsMapper
Objective = "Complete a Howling Zinogre True Slay quest solo with 40 max stamina.",
IsSecret = true,
- Hint = "I'm starving and lonely."
+ Hint = "I'm starving and lonely.",
}
},
- {200, new Achievement(){
+ {
+ 200, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Majestic Lord of Ice and Fire",
Description = string.Empty,
@@ -2399,10 +2801,12 @@ public static class AchievementsMapper
Objective = "Complete a Burning Freezing Elzelion True Slay quest with Blazing Majesty and Ice Age",
IsSecret = true,
- Hint = "Fire and flame? No, ice and blaze!"
+ Hint = "Fire and flame? No, ice and blaze!",
}
},
- {201, new Achievement(){
+ {
+ 201, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Bombardment",
Description = string.Empty,
@@ -2411,10 +2815,12 @@ public static class AchievementsMapper
Objective = "Complete a Blitzkrieg Bogabadorumu True Slay quest with a Large Barrel Bomb in your inventory.",
IsSecret = true,
- Hint = "We are going to need bigger bombs for this guy..."
+ Hint = "We are going to need bigger bombs for this guy...",
}
},
- {202, new Achievement(){
+ {
+ 202, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Oblivion Negated",
Description = string.Empty,
@@ -2423,10 +2829,12 @@ public static class AchievementsMapper
Objective = "Complete an Arrogant Duremudira True Slay quest with Soul Revival equipped.",
IsSecret = true,
- Hint = "This thunder brings oblivion! Unless..."
+ Hint = "This thunder brings oblivion! Unless...",
}
},
- {203, new Achievement(){
+ {
+ 203, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Lovely Vegetables",
Description = string.Empty,
@@ -2435,10 +2843,12 @@ public static class AchievementsMapper
Objective = "Complete a certain quest on February 14th.",
IsSecret = true,
- Hint = "Veggie Elder! How I missed you..."
+ Hint = "Veggie Elder! How I missed you...",
}
},
- {204, new Achievement(){
+ {
+ 204, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Ultimate Gunlance Duel",
Description = string.Empty,
@@ -2447,10 +2857,12 @@ public static class AchievementsMapper
Objective = "Defeat Producer Gogomoa with a Gunlance",
IsSecret = true,
- Hint = "If he uses a Gunlance, so do I!"
+ Hint = "If he uses a Gunlance, so do I!",
}
},
- {205, new Achievement(){
+ {
+ 205, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Emperor of Fire",
Description = string.Empty,
@@ -2459,10 +2871,12 @@ public static class AchievementsMapper
Objective = "Complete a Four Heavenly King Deviljho quest.",
IsSecret = true,
- Hint = "Slay an emperor of fire."
+ Hint = "Slay an emperor of fire.",
}
},
- {206, new Achievement(){
+ {
+ 206, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Dancing Gopher",
Description = string.Empty,
@@ -2471,10 +2885,12 @@ public static class AchievementsMapper
Objective = "Complete a Hatsune Miku quest.",
IsSecret = true,
- Hint = "Erupe thinks we should dance!"
+ Hint = "Erupe thinks we should dance!",
}
},
- {207, new Achievement(){
+ {
+ 207, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Singing Rappy",
Description = string.Empty,
@@ -2483,10 +2899,12 @@ public static class AchievementsMapper
Objective = "Complete a PSO2 quest.",
IsSecret = true,
- Hint = "Rappy thinks we should sing!"
+ Hint = "Rappy thinks we should sing!",
}
},
- {208, new Achievement(){
+ {
+ 208, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gears of Destiny",
Description = string.Empty,
@@ -2495,10 +2913,12 @@ public static class AchievementsMapper
Objective = "Complete a Megaman quest.",
IsSecret = true,
- Hint = "Obtain the Gears of Destiny."
+ Hint = "Obtain the Gears of Destiny.",
}
},
- {209, new Achievement(){
+ {
+ 209, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Higanjima",
Description = string.Empty,
@@ -2507,10 +2927,12 @@ public static class AchievementsMapper
Objective = "Complete a Higanjima quest.",
IsSecret = true,
- Hint = "Higanjima."
+ Hint = "Higanjima.",
}
},
- {210, new Achievement(){
+ {
+ 210, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Plesioth Transformation",
Description = string.Empty,
@@ -2519,10 +2941,12 @@ public static class AchievementsMapper
Objective = "Defeat the huge Plesioth.",
IsSecret = true,
- Hint = "Don't let the Plesioth grow."
+ Hint = "Don't let the Plesioth grow.",
}
},
- {211, new Achievement(){
+ {
+ 211, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Oh noes! My sunglasses!",
Description = string.Empty,
@@ -2531,10 +2955,12 @@ public static class AchievementsMapper
Objective = "Defeat Sunglasses Kut-Ku.",
IsSecret = true,
- Hint = "I need a new pair of sunglasses..."
+ Hint = "I need a new pair of sunglasses...",
}
},
- {212, new Achievement(){
+ {
+ 212, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Quiz Time!",
Description = string.Empty,
@@ -2543,10 +2969,12 @@ public static class AchievementsMapper
Objective = "Complete 1 MHF-Q quest.",
IsSecret = true,
- Hint = "You need an extreme amount of knowledge to complete this quest."
+ Hint = "You need an extreme amount of knowledge to complete this quest.",
}
},
- {213, new Achievement(){
+ {
+ 213, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Smell No Evil",
Description = string.Empty,
@@ -2555,10 +2983,12 @@ public static class AchievementsMapper
Objective = "Complete a certain Congalala quest.",
IsSecret = true,
- Hint = "See no evil, hear no evil, speak no evil."
+ Hint = "See no evil, hear no evil, speak no evil.",
}
},
- {214, new Achievement(){
+ {
+ 214, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Zenny Galore",
Description = string.Empty,
@@ -2567,10 +2997,12 @@ public static class AchievementsMapper
Objective = "Get the maximum amount of GZenny",
IsSecret = true,
- Hint = "I should probably hunt a Zenith Hypnoc."
+ Hint = "I should probably hunt a Zenith Hypnoc.",
}
},
- {215, new Achievement(){
+ {
+ 215, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Diva's Friend",
Description = string.Empty,
@@ -2579,10 +3011,12 @@ public static class AchievementsMapper
Objective = "Get the maximum amount of Diva Bond",
IsSecret = true,
- Hint = "Do you like fluffy cakes?"
+ Hint = "Do you like fluffy cakes?",
}
},
- {216, new Achievement(){
+ {
+ 216, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "#1",
Description = string.Empty,
@@ -2591,10 +3025,12 @@ public static class AchievementsMapper
Objective = "Obtain S Rank in all single-player MezFes minigames",
IsSecret = true,
- Hint = "Do you like minigames?"
+ Hint = "Do you like minigames?",
}
},
- {217, new Achievement(){
+ {
+ 217, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Caravaneer",
Description = string.Empty,
@@ -2606,7 +3042,9 @@ public static class AchievementsMapper
Hint = "Carry me Caravan take me away",
}
},
- {218, new Achievement(){
+ {
+ 218, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Road Champion",
Description = string.Empty,
@@ -2615,10 +3053,12 @@ public static class AchievementsMapper
Objective = "Get to Multiplayer Road Floor 50.",
IsSecret = true,
- Hint = "A long road ahead..."
+ Hint = "A long road ahead...",
}
},
- {219, new Achievement(){
+ {
+ 219, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Rengoku",
Description = string.Empty,
@@ -2627,10 +3067,12 @@ public static class AchievementsMapper
Objective = "Get to Multiplayer Road Floor 100.",
IsSecret = true,
- Hint = "End of the road?"
+ Hint = "End of the road?",
}
},
- {220, new Achievement(){
+ {
+ 220, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Expert Companion",
Description = string.Empty,
@@ -2639,10 +3081,12 @@ public static class AchievementsMapper
Objective = "Obtain a Max Level partner.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {221, new Achievement(){
+ {
+ 221, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Solid Determination",
Description = string.Empty,
@@ -2651,10 +3095,12 @@ public static class AchievementsMapper
Objective = "Attempt a quest 1000 times.",
IsSecret = true,
- Hint = "You need a strong determination for doing this quest this many times."
+ Hint = "You need a strong determination for doing this quest this many times.",
}
},
- {222, new Achievement(){
+ {
+ 222, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Compensation",
Description = string.Empty,
@@ -2663,10 +3109,12 @@ public static class AchievementsMapper
Objective = "Attempt a personal best 100 times.",
IsSecret = true,
- Hint = "You haven't gotten a new record yet, hopefully this cheers you up."
+ Hint = "You haven't gotten a new record yet, hopefully this cheers you up.",
}
},
- {223, new Achievement(){
+ {
+ 223, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Chilling Monster Count",
Description = string.Empty,
@@ -2675,10 +3123,12 @@ public static class AchievementsMapper
Objective = "Defeat 2nd District duremudira 100 times.",
IsSecret = true,
- Hint = "You killed that many monsters?!"
+ Hint = "You killed that many monsters?!",
}
},
- {224, new Achievement(){
+ {
+ 224, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Emperor's Final Roar",
Description = string.Empty,
@@ -2687,10 +3137,12 @@ public static class AchievementsMapper
Objective = "Defeat Road Fatalis 100 times.",
IsSecret = true,
- Hint = "How many times will this monster roar?!"
+ Hint = "How many times will this monster roar?!",
}
},
- {225, new Achievement(){
+ {
+ 225, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Fumo",
Description = string.Empty,
@@ -2699,10 +3151,12 @@ public static class AchievementsMapper
Objective = "Click a Fumo.",
IsSecret = true,
- Hint = "Fumo."
+ Hint = "Fumo.",
}
},
- {226, new Achievement(){
+ {
+ 226, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Monkey Bomb",
Description = string.Empty,
@@ -2711,10 +3165,12 @@ public static class AchievementsMapper
Objective = "Defeat the Twinhead Rajangs.",
IsSecret = true,
- Hint = "You will need to go even further beyond in order to beat this quest."
+ Hint = "You will need to go even further beyond in order to beat this quest.",
}
},
- {227, new Achievement(){
+ {
+ 227, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Akura Vashimu's Nemesis",
Description = string.Empty,
@@ -2723,10 +3179,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Akura Vashimu quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {228, new Achievement(){
+ {
+ 228, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Anorupatisu's Nemesis",
Description = string.Empty,
@@ -2735,10 +3193,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Anorupatisu quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {229, new Achievement(){
+ {
+ 229, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Blangonga's Nemesis",
Description = string.Empty,
@@ -2747,10 +3207,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Blangonga quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {230, new Achievement(){
+ {
+ 230, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Daimyo Hermitaur's Nemesis",
Description = string.Empty,
@@ -2759,10 +3221,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Daimyo Hermitaur quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {231, new Achievement(){
+ {
+ 231, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Doragyurosu's Nemesis",
Description = string.Empty,
@@ -2771,10 +3235,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Doragyurosu quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {232, new Achievement(){
+ {
+ 232, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Espinas' Nemesis",
Description = string.Empty,
@@ -2783,10 +3249,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Espinas quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {233, new Achievement(){
+ {
+ 233, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gasurabazura's Nemesis",
Description = string.Empty,
@@ -2795,10 +3263,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Gasurabazura quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {234, new Achievement(){
+ {
+ 234, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Giaorugu's Nemesis",
Description = string.Empty,
@@ -2807,10 +3277,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Giaorugu quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {235, new Achievement(){
+ {
+ 235, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Hypnocatrice's Nemesis",
Description = string.Empty,
@@ -2819,10 +3291,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Hypnocatrice quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {236, new Achievement(){
+ {
+ 236, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Hyujikiki's Nemesis",
Description = string.Empty,
@@ -2831,10 +3305,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Hyujikiki quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {237, new Achievement(){
+ {
+ 237, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Inagami's Nemesis",
Description = string.Empty,
@@ -2843,10 +3319,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Inagami quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {238, new Achievement(){
+ {
+ 238, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Khezu's Nemesis",
Description = string.Empty,
@@ -2855,10 +3333,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Khezu quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {239, new Achievement(){
+ {
+ 239, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Midogaron's Nemesis",
Description = string.Empty,
@@ -2867,10 +3347,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Midogaron quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {240, new Achievement(){
+ {
+ 240, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Plesioth's Nemesis",
Description = string.Empty,
@@ -2879,10 +3361,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Plesioth quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {241, new Achievement(){
+ {
+ 241, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Rathalos' Nemesis",
Description = string.Empty,
@@ -2891,10 +3375,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Rathalos quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {242, new Achievement(){
+ {
+ 242, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Rukodiora's Nemesis",
Description = string.Empty,
@@ -2903,10 +3389,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Rukodiora quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {243, new Achievement(){
+ {
+ 243, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Tigrex's Nemesis",
Description = string.Empty,
@@ -2915,10 +3403,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Tigrex quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {244, new Achievement(){
+ {
+ 244, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Toridcless' Nemesis",
Description = string.Empty,
@@ -2927,10 +3417,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Toridcless quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {245, new Achievement(){
+ {
+ 245, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Baruragaru's Nemesis",
Description = string.Empty,
@@ -2939,10 +3431,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Baruragaru quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {246, new Achievement(){
+ {
+ 246, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Bogabadorumu's Nemesis",
Description = string.Empty,
@@ -2951,10 +3445,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Bogabadorumu quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {247, new Achievement(){
+ {
+ 247, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gravios' Nemesis",
Description = string.Empty,
@@ -2963,10 +3459,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Gravios quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {248, new Achievement(){
+ {
+ 248, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Harudomerugu's Nemesis",
Description = string.Empty,
@@ -2975,10 +3473,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Harudomerugu quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {249, new Achievement(){
+ {
+ 249, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Taikun Zamuza's Nemesis",
Description = string.Empty,
@@ -2987,10 +3487,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Taikun Zamuza quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {250, new Achievement(){
+ {
+ 250, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Fatalis' Nemesis",
Description = string.Empty,
@@ -2999,10 +3501,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Fatalis quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {251, new Achievement(){
+ {
+ 251, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Crimson Fatalis' Nemesis",
Description = string.Empty,
@@ -3011,10 +3515,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Crimson Fatalis quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {252, new Achievement(){
+ {
+ 252, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Shantien's Nemesis",
Description = string.Empty,
@@ -3023,10 +3529,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Shantien quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {253, new Achievement(){
+ {
+ 253, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Disufiroa's Nemesis",
Description = string.Empty,
@@ -3035,10 +3543,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Disufiroa quest under 10 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {254, new Achievement(){
+ {
+ 254, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Akura Vashimu's Archenemy",
Description = string.Empty,
@@ -3047,10 +3557,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Akura Vashimu quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {255, new Achievement(){
+ {
+ 255, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Anorupatisu's Archenemy",
Description = string.Empty,
@@ -3059,10 +3571,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Anorupatisu quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {256, new Achievement(){
+ {
+ 256, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Blangonga's Archenemy",
Description = string.Empty,
@@ -3071,10 +3585,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Blangonga quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {257, new Achievement(){
+ {
+ 257, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Daimyo Hermitaur's Archenemy",
Description = string.Empty,
@@ -3083,10 +3599,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Daimyo Hermitaur quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {258, new Achievement(){
+ {
+ 258, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Doragyurosu's Archenemy",
Description = string.Empty,
@@ -3095,10 +3613,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Doragyurosu quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {259, new Achievement(){
+ {
+ 259, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Espinas' Archenemy",
Description = string.Empty,
@@ -3107,10 +3627,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Espinas quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {260, new Achievement(){
+ {
+ 260, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gasurabazura's Archenemy",
Description = string.Empty,
@@ -3119,10 +3641,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Gasurabazura quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {261, new Achievement(){
+ {
+ 261, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Giaorugu's Archenemy",
Description = string.Empty,
@@ -3131,10 +3655,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Giaorugu quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {262, new Achievement(){
+ {
+ 262, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Hypnocatrice's Archenemy",
Description = string.Empty,
@@ -3143,10 +3669,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Hypnocatrice quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {263, new Achievement(){
+ {
+ 263, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Hyujikiki's Archenemy",
Description = string.Empty,
@@ -3155,10 +3683,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Hyujikiki quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {264, new Achievement(){
+ {
+ 264, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Inagami's Archenemy",
Description = string.Empty,
@@ -3167,10 +3697,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Inagami quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {265, new Achievement(){
+ {
+ 265, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Khezu's Archenemy",
Description = string.Empty,
@@ -3179,10 +3711,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Khezu quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {266, new Achievement(){
+ {
+ 266, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Midogaron's Archenemy",
Description = string.Empty,
@@ -3191,10 +3725,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Midogaron quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {267, new Achievement(){
+ {
+ 267, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Plesioth's Archenemy",
Description = string.Empty,
@@ -3203,10 +3739,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Plesioth quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {268, new Achievement(){
+ {
+ 268, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Rathalos' Archenemy",
Description = string.Empty,
@@ -3215,10 +3753,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Rathalos quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {269, new Achievement(){
+ {
+ 269, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Rukodiora's Archenemy",
Description = string.Empty,
@@ -3227,10 +3767,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Rukodiora quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {270, new Achievement(){
+ {
+ 270, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Tigrex's Archenemy",
Description = string.Empty,
@@ -3239,10 +3781,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Tigrex quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {271, new Achievement(){
+ {
+ 271, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Toridcless's Archenemy",
Description = string.Empty,
@@ -3251,10 +3795,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Toridcless quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {272, new Achievement(){
+ {
+ 272, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Baruragaru's Archenemy",
Description = string.Empty,
@@ -3263,10 +3809,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Baruragaru quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {273, new Achievement(){
+ {
+ 273, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Bogabadorumu's Archenemy",
Description = string.Empty,
@@ -3275,10 +3823,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Bogabadorumu quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {274, new Achievement(){
+ {
+ 274, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gravios's Archenemy",
Description = string.Empty,
@@ -3287,10 +3837,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Gravios quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {275, new Achievement(){
+ {
+ 275, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Harudomerugu's Archenemy",
Description = string.Empty,
@@ -3299,10 +3851,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Harudomerugu quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {276, new Achievement(){
+ {
+ 276, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Taikun Zamuza's Archenemy",
Description = string.Empty,
@@ -3311,10 +3865,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Taikun Zamuza quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {277, new Achievement(){
+ {
+ 277, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Fatalis' Archenemy",
Description = string.Empty,
@@ -3323,10 +3879,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Fatalis quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {278, new Achievement(){
+ {
+ 278, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Crimson Fatalis' Archenemy",
Description = string.Empty,
@@ -3335,10 +3893,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Crimson Fatalis quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {279, new Achievement(){
+ {
+ 279, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Shantien's Archenemy",
Description = string.Empty,
@@ -3347,10 +3907,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Shantien quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {280, new Achievement(){
+ {
+ 280, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Disufiroa's Archenemy",
Description = string.Empty,
@@ -3359,10 +3921,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Disufiroa quest under 8 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {281, new Achievement(){
+ {
+ 281, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Akura Vashimu's Bane",
Description = string.Empty,
@@ -3371,10 +3935,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Akura Vashimu quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {282, new Achievement(){
+ {
+ 282, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Anorupatisu's Bane",
Description = string.Empty,
@@ -3383,10 +3949,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Anorupatisu quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {283, new Achievement(){
+ {
+ 283, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Blangonga's Bane",
Description = string.Empty,
@@ -3395,10 +3963,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Blangonga quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {284, new Achievement(){
+ {
+ 284, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Daimyo Hermitaur's Bane",
Description = string.Empty,
@@ -3407,10 +3977,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Daimyo Hermitaur quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {285, new Achievement(){
+ {
+ 285, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Doragyurosu's Bane",
Description = string.Empty,
@@ -3419,10 +3991,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Doragyurosu quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {286, new Achievement(){
+ {
+ 286, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Espinas' Bane",
Description = string.Empty,
@@ -3431,10 +4005,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Espinas quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {287, new Achievement(){
+ {
+ 287, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gasurabazura's Bane",
Description = string.Empty,
@@ -3443,10 +4019,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Gasurabazura quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {288, new Achievement(){
+ {
+ 288, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Giaorugu's Bane",
Description = string.Empty,
@@ -3455,10 +4033,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Giaorugu quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {289, new Achievement(){
+ {
+ 289, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Hypnocatrice's Bane",
Description = string.Empty,
@@ -3467,10 +4047,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Hypnocatrice quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {290, new Achievement(){
+ {
+ 290, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Hyujikiki's Bane",
Description = string.Empty,
@@ -3479,10 +4061,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Hyujikiki quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {291, new Achievement(){
+ {
+ 291, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Inagami's Bane",
Description = string.Empty,
@@ -3491,10 +4075,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Inagami quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {292, new Achievement(){
+ {
+ 292, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Khezu's Bane",
Description = string.Empty,
@@ -3503,10 +4089,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Khezu quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {293, new Achievement(){
+ {
+ 293, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Midogaron's Bane",
Description = string.Empty,
@@ -3515,10 +4103,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Midogaron quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {294, new Achievement(){
+ {
+ 294, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Plesioth's Bane",
Description = string.Empty,
@@ -3527,10 +4117,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Plesioth quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {295, new Achievement(){
+ {
+ 295, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Rathalos' Bane",
Description = string.Empty,
@@ -3539,10 +4131,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Rathalos quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {296, new Achievement(){
+ {
+ 296, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Rukodiora's Bane",
Description = string.Empty,
@@ -3551,10 +4145,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Rukodiora quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {297, new Achievement(){
+ {
+ 297, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Tigrex's Bane",
Description = string.Empty,
@@ -3563,10 +4159,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Tigrex quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {298, new Achievement(){
+ {
+ 298, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Toridcless' Bane",
Description = string.Empty,
@@ -3575,10 +4173,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Toridcless quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {299, new Achievement(){
+ {
+ 299, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Baruragaru' Bane",
Description = string.Empty,
@@ -3587,10 +4187,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Baruragaru quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {300, new Achievement(){
+ {
+ 300, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Bogabadorumu's Bane",
Description = string.Empty,
@@ -3599,10 +4201,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Bogabadorumu quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {301, new Achievement(){
+ {
+ 301, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gravios' Bane",
Description = string.Empty,
@@ -3611,10 +4215,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Gravios quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {302, new Achievement(){
+ {
+ 302, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Harudomerugu's Bane",
Description = string.Empty,
@@ -3623,10 +4229,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Harudomerugu quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {303, new Achievement(){
+ {
+ 303, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Taikun Zamuza's Bane",
Description = string.Empty,
@@ -3635,10 +4243,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith★4 Taikun Zamuza quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {304, new Achievement(){
+ {
+ 304, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Fatalis' Bane",
Description = string.Empty,
@@ -3647,10 +4257,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Fatalis quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {305, new Achievement(){
+ {
+ 305, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Crimson Fatalis' Bane",
Description = string.Empty,
@@ -3659,10 +4271,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Crimson Fatalis quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {306, new Achievement(){
+ {
+ 306, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Shantien's Bane",
Description = string.Empty,
@@ -3671,10 +4285,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Shantien quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {307, new Achievement(){
+ {
+ 307, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Disufiroa's Bane",
Description = string.Empty,
@@ -3683,10 +4299,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Lv9999 Disufiroa quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {308, new Achievement(){
+ {
+ 308, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Pariapuria's Bane",
Description = string.Empty,
@@ -3695,10 +4313,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Thirsty Pariapuria quest under 3 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {309, new Achievement(){
+ {
+ 309, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Mi Ru's Bane",
Description = string.Empty,
@@ -3707,10 +4327,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Shifting Mi Ru quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {310, new Achievement(){
+ {
+ 310, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Guanzorumu's Bane",
Description = string.Empty,
@@ -3719,10 +4341,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Ruling Guanzorumu True Slay quest under 5 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {311, new Achievement(){
+ {
+ 311, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Nargacuga's Bane",
Description = string.Empty,
@@ -3731,10 +4355,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Blinking Nargacuga True Slay quest under 7 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {312, new Achievement(){
+ {
+ 312, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Zinogre's Bane",
Description = string.Empty,
@@ -3743,10 +4369,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Howling Zinogre True Slay quest under 7 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {313, new Achievement(){
+ {
+ 313, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Zerureusu's Bane",
Description = string.Empty,
@@ -3755,10 +4383,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Sparkling Zerureusu True Slay quest under 9 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {314, new Achievement(){
+ {
+ 314, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Deviljho's Bane",
Description = string.Empty,
@@ -3767,10 +4397,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Starving Deviljho True Slay quest under 9 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {315, new Achievement(){
+ {
+ 315, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Duremudira's Bane",
Description = string.Empty,
@@ -3779,10 +4411,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Arrogant Duremudira True Slay quest under 9 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {316, new Achievement(){
+ {
+ 316, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Come on Big Guy!",
Description = string.Empty,
@@ -3791,10 +4425,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Blitzkrieg Bogabadorumu True Slay quest under 9 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {317, new Achievement(){
+ {
+ 317, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Elzelion's Bane",
Description = string.Empty,
@@ -3803,10 +4439,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Burning Freezing Elzelion True Slay quest under 9 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {318, new Achievement(){
+ {
+ 318, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "UNKNOWN's Bane",
Description = string.Empty,
@@ -3815,10 +4453,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Upper Shiten Unknown quest under 9 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {319, new Achievement(){
+ {
+ 319, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Bloodthirsty Moon",
Description = string.Empty,
@@ -3827,10 +4467,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Upper Shiten Disufiroa quest under 9 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {320, new Achievement(){
+ {
+ 320, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Well, that was easy!",
Description = string.Empty,
@@ -3839,10 +4481,12 @@ public static class AchievementsMapper
Objective = "Complete Bingo (Easy).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {321, new Achievement(){
+ {
+ 321, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Ramping Up The Difficulty",
Description = string.Empty,
@@ -3851,10 +4495,12 @@ public static class AchievementsMapper
Objective = "Complete Bingo (Medium).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {322, new Achievement(){
+ {
+ 322, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Bingo!",
Description = string.Empty,
@@ -3863,10 +4509,12 @@ public static class AchievementsMapper
Objective = "Complete Bingo (Hard).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {323, new Achievement(){
+ {
+ 323, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "B I N G O",
Description = string.Empty,
@@ -3875,10 +4523,12 @@ public static class AchievementsMapper
Objective = "Complete Bingo (Extreme).",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {324, new Achievement(){
+ {
+ 324, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Shiny!",
Description = string.Empty,
@@ -3887,10 +4537,12 @@ public static class AchievementsMapper
Objective = "Obtain a Gacha Card.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {325, new Achievement(){
+ {
+ 325, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Getting the hang of it",
Description = string.Empty,
@@ -3899,10 +4551,12 @@ public static class AchievementsMapper
Objective = "Obtain 100 Gacha Cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {326, new Achievement(){
+ {
+ 326, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gacha Collector",
Description = string.Empty,
@@ -3911,10 +4565,12 @@ public static class AchievementsMapper
Objective = "Obtain 1000 Gacha Cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {327, new Achievement(){
+ {
+ 327, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gacha Overlord",
Description = string.Empty,
@@ -3923,10 +4579,12 @@ public static class AchievementsMapper
Objective = "Obtain all Gacha Cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {328, new Achievement(){
+ {
+ 328, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "This is just the beginning",
Description = string.Empty,
@@ -3935,10 +4593,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Zenith Gauntlet.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {329, new Achievement(){
+ {
+ 329, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Pinnacle of Hunting",
Description = string.Empty,
@@ -3947,10 +4607,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Zenith Gauntlets.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {330, new Achievement(){
+ {
+ 330, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Zenith Exterminator",
Description = string.Empty,
@@ -3959,10 +4621,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Zenith Gauntlets.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {331, new Achievement(){
+ {
+ 331, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Speedster",
Description = string.Empty,
@@ -3971,10 +4635,12 @@ public static class AchievementsMapper
Objective = "Complete a Zenith Gauntlet under 4 hours.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {332, new Achievement(){
+ {
+ 332, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Conqueror",
Description = string.Empty,
@@ -3983,10 +4649,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Solstice Gauntlet.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {333, new Achievement(){
+ {
+ 333, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Supreme Conqueror",
Description = string.Empty,
@@ -3995,10 +4663,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Solstice Gauntlets.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {334, new Achievement(){
+ {
+ 334, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Solstice Conqueror",
Description = string.Empty,
@@ -4007,10 +4677,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Solstice Gauntlets.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {335, new Achievement(){
+ {
+ 335, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Marathon Runner",
Description = string.Empty,
@@ -4019,10 +4691,12 @@ public static class AchievementsMapper
Objective = "Complete a Solstice Gauntlet under an hour.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {336, new Achievement(){
+ {
+ 336, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Unstoppable",
Description = string.Empty,
@@ -4031,10 +4705,12 @@ public static class AchievementsMapper
Objective = "Complete 1 Musou Gauntlet.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {337, new Achievement(){
+ {
+ 337, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Peerless",
Description = string.Empty,
@@ -4043,10 +4719,12 @@ public static class AchievementsMapper
Objective = "Complete 10 Musou Gauntlets.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {338, new Achievement(){
+ {
+ 338, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Musou",
Description = string.Empty,
@@ -4055,10 +4733,12 @@ public static class AchievementsMapper
Objective = "Complete 25 Musou Gauntlets.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {339, new Achievement(){
+ {
+ 339, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Speedrunner",
Description = string.Empty,
@@ -4067,10 +4747,12 @@ public static class AchievementsMapper
Objective = "Complete a Musou Gauntlet under 100 minutes.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {340, new Achievement(){
+ {
+ 340, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "We Gamin' Bois",
Description = string.Empty,
@@ -4079,10 +4761,12 @@ public static class AchievementsMapper
Objective = "Enable Discord Rich Presence",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {341, new Achievement(){
+ {
+ 341, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "No Distractions",
Description = string.Empty,
@@ -4091,10 +4775,12 @@ public static class AchievementsMapper
Objective = "Enable Zen mode",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {342, new Achievement(){
+ {
+ 342, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Speed",
Description = string.Empty,
@@ -4103,10 +4789,12 @@ public static class AchievementsMapper
Objective = "Enable one of the Speedrun modes",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {343, new Achievement(){
+ {
+ 343, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Yummy",
Description = string.Empty,
@@ -4115,10 +4803,12 @@ public static class AchievementsMapper
Objective = "Complete 50 quests with Guild Food",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {344, new Achievement(){
+ {
+ 344, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "More Skills!",
Description = string.Empty,
@@ -4127,10 +4817,12 @@ public static class AchievementsMapper
Objective = "Complete 50 quests with a Diva Skill",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {345, new Achievement(){
+ {
+ 345, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "The Best Gallery",
Description = string.Empty,
@@ -4139,10 +4831,12 @@ public static class AchievementsMapper
Objective = "Earn 100,000 or more evaluation points in the gallery competition in My Gallery.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {346, new Achievement(){
+ {
+ 346, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Monster Hunter",
Description = string.Empty,
@@ -4151,10 +4845,12 @@ public static class AchievementsMapper
Objective = "Hunt 1000 Large Monsters.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {347, new Achievement(){
+ {
+ 347, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Dedicated",
Description = string.Empty,
@@ -4163,10 +4859,12 @@ public static class AchievementsMapper
Objective = "Have a total hunt time of 100 hours.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {348, new Achievement(){
+ {
+ 348, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "20% more damage for 99% more effort",
Description = string.Empty,
@@ -4174,10 +4872,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/berserk_raviente.jpg",
Objective = "Complete a quest with a Z100 weapon.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {349, new Achievement(){
+ {
+ 349, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Mosswine's Revenge",
Description = string.Empty,
@@ -4185,10 +4885,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/unknown_white.jpg",
Objective = "Find a very peculiar mosswine.",
IsSecret = true,
- Hint = "I have no gear and I'm hunting a White Fatalis?!"
+ Hint = "I have no gear and I'm hunting a White Fatalis?!",
}
},
- {350, new Achievement(){
+ {
+ 350, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Jungle Puzzle",
Description = string.Empty,
@@ -4196,10 +4898,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/unknown_white.jpg",
Objective = "Complete the Jungle Puzzle quest.",
IsSecret = true,
- Hint = "I found some rocks in this jungle, I wonder what they are for..."
+ Hint = "I found some rocks in this jungle, I wonder what they are for...",
}
},
- {351, new Achievement(){
+ {
+ 351, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Poogie's Best Friend",
Description = string.Empty,
@@ -4207,10 +4911,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/poogie.jpg",
Objective = "Complete 100 quests having used a Poogie item",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {352, new Achievement(){
+ {
+ 352, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gypceros' Judgment",
Description = string.Empty,
@@ -4218,10 +4924,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/unknown_white.jpg",
Objective = "Defeat Nuclear Gypceros",
IsSecret = true,
- Hint = "Can you survive the nuclear explosion?"
+ Hint = "Can you survive the nuclear explosion?",
}
},
- {353, new Achievement(){
+ {
+ 353, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Mosswine's Rage",
Description = string.Empty,
@@ -4229,10 +4937,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/unknown_white.jpg",
Objective = "Defeat Mosswine in an arena",
IsSecret = true,
- Hint = "This mosswine wants a duel."
+ Hint = "This mosswine wants a duel.",
}
},
- {354, new Achievement(){
+ {
+ 354, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Mosswine's Last Stand",
Description = string.Empty,
@@ -4240,10 +4950,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/unknown_black.jpg",
Objective = "Defeat the mosswine on the top of tower",
IsSecret = true,
- Hint = "You escaped from the White Fatalis, but can you reach the top back in time?"
+ Hint = "You escaped from the White Fatalis, but can you reach the top back in time?",
}
},
- {355, new Achievement(){
+ {
+ 355, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Winter General",
Description = string.Empty,
@@ -4251,10 +4963,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/unknown_blue.jpg",
Objective = "Complete the Halloween Speedster quest",
IsSecret = true,
- Hint = "Can you place the guild flags on this snowy mountain fast enough?"
+ Hint = "Can you place the guild flags on this snowy mountain fast enough?",
}
},
- {356, new Achievement(){
+ {
+ 356, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "The Perfect Bingo",
Description = string.Empty,
@@ -4262,10 +4976,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain 1000 Bingo points or more in 1 bingo card completion.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {357, new Achievement(){
+ {
+ 357, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Bingo Beginner",
Description = string.Empty,
@@ -4273,10 +4989,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Complete a bingo card.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {358, new Achievement(){
+ {
+ 358, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Bingo Enthusiast",
Description = string.Empty,
@@ -4284,10 +5002,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Complete 10 bingo cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {359, new Achievement(){
+ {
+ 359, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Bingo Expert",
Description = string.Empty,
@@ -4295,10 +5015,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Complete 25 bingo cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {360, new Achievement(){
+ {
+ 360, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Bingo Maniac",
Description = string.Empty,
@@ -4306,10 +5028,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Complete 50 bingo cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {361, new Achievement(){
+ {
+ 361, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gacha Beginner",
Description = string.Empty,
@@ -4317,10 +5041,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/zenny.jpg",
Objective = "Generate 1 gacha pull.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {362, new Achievement(){
+ {
+ 362, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gacha Enthusiast",
Description = string.Empty,
@@ -4328,10 +5054,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/zenny.jpg",
Objective = "Generate 10 gacha pulls.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {363, new Achievement(){
+ {
+ 363, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gacha Expert",
Description = string.Empty,
@@ -4339,10 +5067,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/zenny.jpg",
Objective = "Generate 100 gacha pulls.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {364, new Achievement(){
+ {
+ 364, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gacha Maniac",
Description = string.Empty,
@@ -4350,10 +5080,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/zenny.jpg",
Objective = "Generate 1000 gacha pulls.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {365, new Achievement(){
+ {
+ 365, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gacha God",
Description = string.Empty,
@@ -4361,10 +5093,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/zenny.jpg",
Objective = "Generate 10000 gacha pulls.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {366, new Achievement(){
+ {
+ 366, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "B O N U S",
Description = string.Empty,
@@ -4372,10 +5106,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/zenny.jpg",
Objective = "Generate a gacha pull using gacha bonus coins.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {367, new Achievement(){
+ {
+ 367, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Shimmering Coins",
Description = string.Empty,
@@ -4383,10 +5119,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/zenny.jpg",
Objective = "Generate a gacha pull using gacha prismatic coins.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {368, new Achievement(){
+ {
+ 368, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "The First Generation",
Description = string.Empty,
@@ -4394,10 +5132,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all gacha cards from MH1, MH1G and MHF1.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {369, new Achievement(){
+ {
+ 369, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "The Second Generation",
Description = string.Empty,
@@ -4405,10 +5145,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all gacha cards from MH2, MHF2 and MHFU.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {370, new Achievement(){
+ {
+ 370, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "The Third Generation",
Description = string.Empty,
@@ -4416,10 +5158,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all gacha cards from MH3, MHP3 and MH3U.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {371, new Achievement(){
+ {
+ 371, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "The Fourth Generation",
Description = string.Empty,
@@ -4427,10 +5171,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all gacha cards from MH4, MH4U, MHG and MHGU.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {372, new Achievement(){
+ {
+ 372, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "The Fifth Generation",
Description = string.Empty,
@@ -4438,10 +5184,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all gacha cards from MHW, MHWI, MHR and MHRS.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {373, new Achievement(){
+ {
+ 373, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "The Spinoffs",
Description = string.Empty,
@@ -4449,10 +5197,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all gacha cards from MHXR, MHST and MHST2.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {374, new Achievement(){
+ {
+ 374, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Online",
Description = string.Empty,
@@ -4460,10 +5210,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all gacha cards from Monster Hunter Online.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {375, new Achievement(){
+ {
+ 375, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "In search of a new frontier",
Description = string.Empty,
@@ -4471,10 +5223,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all gacha cards from Monster Hunter Frontier",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {376, new Achievement(){
+ {
+ 376, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "PRI",
Description = string.Empty,
@@ -4482,10 +5236,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain a ★1 gacha card.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {377, new Achievement(){
+ {
+ 377, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "DUO",
Description = string.Empty,
@@ -4493,10 +5249,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain 2 ★2 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {378, new Achievement(){
+ {
+ 378, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "TRI",
Description = string.Empty,
@@ -4504,10 +5262,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain 3 ★3 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {379, new Achievement(){
+ {
+ 379, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "TET",
Description = string.Empty,
@@ -4515,10 +5275,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain 4 ★4 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {380, new Achievement(){
+ {
+ 380, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "PEN",
Description = string.Empty,
@@ -4526,10 +5288,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain 5 ★5 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {381, new Achievement(){
+ {
+ 381, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "HEX",
Description = string.Empty,
@@ -4537,10 +5301,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain 6 ★6 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {382, new Achievement(){
+ {
+ 382, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "HEP",
Description = string.Empty,
@@ -4548,10 +5314,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain 7 ★7 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {383, new Achievement(){
+ {
+ 383, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "OCT",
Description = string.Empty,
@@ -4559,10 +5327,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain 8 ★8 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {384, new Achievement(){
+ {
+ 384, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "NON",
Description = string.Empty,
@@ -4570,10 +5340,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain 9 ★9 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {385, new Achievement(){
+ {
+ 385, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "DEC",
Description = string.Empty,
@@ -4581,10 +5353,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain 10 ★10 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {386, new Achievement(){
+ {
+ 386, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "UND",
Description = string.Empty,
@@ -4592,10 +5366,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain 11 ★11 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {387, new Achievement(){
+ {
+ 387, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "DOD",
Description = string.Empty,
@@ -4603,10 +5379,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain 12 ★12 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {388, new Achievement(){
+ {
+ 388, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "One star to rule them all",
Description = string.Empty,
@@ -4614,10 +5392,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all ★1 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {389, new Achievement(){
+ {
+ 389, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Two stars make a supernova",
Description = string.Empty,
@@ -4625,10 +5405,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all ★2 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {390, new Achievement(){
+ {
+ 390, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Alpha Centauri",
Description = string.Empty,
@@ -4636,10 +5418,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all ★3 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {391, new Achievement(){
+ {
+ 391, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Cosmic Tesseract",
Description = string.Empty,
@@ -4647,10 +5431,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all ★4 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {392, new Achievement(){
+ {
+ 392, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "A 5-Star collection",
Description = string.Empty,
@@ -4658,10 +5444,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all ★5 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {393, new Achievement(){
+ {
+ 393, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gacha Hexagram",
Description = string.Empty,
@@ -4669,10 +5457,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all ★6 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {394, new Achievement(){
+ {
+ 394, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "777",
Description = string.Empty,
@@ -4680,10 +5470,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all ★7 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {395, new Achievement(){
+ {
+ 395, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gacha Octagram",
Description = string.Empty,
@@ -4691,10 +5483,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all ★8 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {396, new Achievement(){
+ {
+ 396, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gacha Enneagram",
Description = string.Empty,
@@ -4702,10 +5496,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all ★9 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {397, new Achievement(){
+ {
+ 397, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Ten",
Description = string.Empty,
@@ -4713,10 +5509,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all ★10 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {398, new Achievement(){
+ {
+ 398, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gacha up to eleven",
Description = string.Empty,
@@ -4724,10 +5522,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all ★11 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {399, new Achievement(){
+ {
+ 399, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "12",
Description = string.Empty,
@@ -4735,10 +5535,12 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/stamp.jpg",
Objective = "Obtain all ★12 gacha cards.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
},
- {400, new Achievement(){
+ {
+ 400, new Achievement()
+ {
CompletionDate = DateTime.UnixEpoch,
Title = "Gacha Bonus",
Description = string.Empty,
@@ -4746,7 +5548,7 @@ public static class AchievementsMapper
Image = @"pack://application:,,,/MHFZ_Overlay;component/Assets/Icons/achievement/zenny.jpg",
Objective = "Complete a gacha bonus quest.",
IsSecret = false,
- Hint = string.Empty
+ Hint = string.Empty,
}
}
};
diff --git a/MHFZ_Overlay/Models/Mappers/AreaIconMapper.cs b/MHFZ_Overlay/Models/Mappers/AreaIconMapper.cs
index 6e4b99a5..f9eca2d0 100644
--- a/MHFZ_Overlay/Models/Mappers/AreaIconMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/AreaIconMapper.cs
@@ -6,7 +6,6 @@ namespace MHFZ_Overlay.Models.Mappers;
using System.Collections.Generic;
-
///
///The area icon list
///
@@ -15,70 +14,102 @@ public static class AreaIconMapper
public static IReadOnlyDictionary, string> AreaIconID { get; } = new Dictionary, string>
{
// Loading
- {new List{0 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/entrance.png" },
- //Jungle areas
- {new List{1,2,3,4,5,18,19,22,23,26,110,111,112,113,114,115,116,117,118,119,120,212,213 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/jungle.png" },
+ { new List { 0 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/entrance.png" },
+
+ // Jungle areas
+ { new List { 1, 2,3, 4,5, 18, 19, 22, 23, 26, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 212, 213 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/jungle.png" },
+
//Snowy mountain areas
- {new List{6,15,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,218,219 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/snowy_mountains.png" },
- //Desert areas
- {new List{7,24,45,47,48,49,50,51,52,53,54,55,56,140,141,142,143,144,145,146,147,148,149,150,214,215 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/desert.png" },
- //Volcano areas
- {new List{8,27,58,59,60,61,62,63,64,65,74,161,162,163,164,165,166,167,169,216,217,220,221,222,223 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/volcano.png" },
- //Swamp areas
- {new List{9,16,29,44,67,68,69,70,71,72,73,75,151,152,153,154,155,156,157,158,159,160 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/swamp.png" },
- //Forest and Hills areas
- {new List{21,32,33,34,35,36,37,38,39,40,41,42,43,184,185,186,187,188,189,190,191,192,193,194,195,196 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/forest_and_hills.png" },
+ { new List { 6, 15, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 218, 219 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/snowy_mountains.png" },
+
+ // Desert areas
+ { new List { 7, 24, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 214, 215 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/desert.png" },
+
+ // Volcano areas
+ { new List { 8, 27, 58, 59, 60, 61, 62, 63, 64, 65, 74, 161, 162, 163, 164, 165, 166, 167, 169, 216, 217, 220, 221, 222, 223 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/volcano.png" },
+
+ // Swamp areas
+ { new List { 9, 16, 29, 44, 67, 68, 69, 70, 71, 72, 73, 75, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/swamp.png" },
+
+ // Forest and Hills areas
+ { new List { 21, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/forest_and_hills.png" },
+
//Great Forest areas
- {new List{224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/great_forest.png" },
- //Highlands areas
- {new List{247,248,249,250,251,252,253,254,255,302,303,304,305,306,307,308 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/highlands.png" },
- //Tidal Island areas
- {new List{322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/tidal_island.png" },
- //Polar Sea areas
- {new List{345,346,347,348,349,350,351,352,353,354,355,356,357,358 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/polar_sea.png" },
- //Flower Field areas
- {new List{361,362,363,364,365,366,367,368,369,370,371,372 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/flower_fields.png" },
+ { new List { 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/great_forest.png" },
+
+ // Highlands areas
+ { new List { 247, 248, 249, 250, 251, 252, 253, 254, 255, 302, 303, 304, 305, 306, 307, 308 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/highlands.png" },
+
+ // Tidal Island areas
+ { new List {322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/tidal_island.png" },
+
+ // Polar Sea areas
+ { new List {345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/polar_sea.png" },
+
+ // Flower Field areas
+ { new List { 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/flower_fields.png" },
+
// Sky Corridor / Tower
- {new List{390,391,392,393,394,415,416 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/tower.png" },
+ { new List { 390, 391, 392, 393, 394, 415, 416 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/tower.png" },
+
// Duremudira Areas
- {new List{399,414 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/dure.gif" },
+ { new List { 399, 414 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/dure.gif" },
+
// White Lake
- {new List{400,401,402,403,404,405,406,407,408,409,410,411,412,413 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/white_lake.png" },
- //Painted Falls areas
- {new List{423,424,425,426,427,428,429,430,431,432,433,434,435,436 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/painted_falls.png" },
+ { new List { 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/white_lake.png" },
+
+ // Painted Falls areas
+ { new List { 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/painted_falls.png" },
+
// road
- {new List{459 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/rengoku.png" },
- //Gorge areas
- {new List{288,289,290,291,292,293,294,295,296,297,298,299,300,301 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/gorge.png" },
- //Mezeporta
- {new List{200,397 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/cattleya.png" },
- //my houses
- {new List{173,174,175 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/my_house.png" },
- //hairdresser
- {new List{201 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/tent.png" },
- //guild halls
- {new List{202,203,204 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/guild_hall.png" },
+ { new List { 459 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/rengoku.png" },
+
+ // Gorge areas
+ { new List { 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/gorge.png" },
+
+ // Mezeporta
+ { new List { 200, 397 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/cattleya.png" },
+
+ // my houses
+ { new List { 173, 174, 175 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/my_house.png" },
+
+ // hairdresser
+ { new List { 201 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/tent.png" },
+
+ // guild halls
+ { new List { 202, 203, 204 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/guild_hall.png" },
+
// my tore / poogie farm
- {new List{205 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/my_tore.png" },
+ { new List { 205 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/my_tore.png" },
+
// bars
- {new List{210,211 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/rasta_bar.png" },
+ { new List { 210, 211 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/rasta_bar.png" },
+
// caravan / pallone
- {new List{256,260,261,262,263 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/pallone_caravan.png" },
+ { new List { 256, 260, 261, 262, 263 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/pallone_caravan.png" },
+
// blacksmith
- {new List{257 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/blacksmith.png" },
+ { new List { 257 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/blacksmith.png" },
+
// gallery
- {new List{264 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/my_gallery.png" },
+ { new List { 264 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/my_gallery.png" },
+
// guuku farm/garden
- {new List{265 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/my_garden.png" },
+ { new List { 265 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/my_garden.png" },
+
// halk area
- {new List{283 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/my_support.png" },
+ { new List { 283 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/my_support.png" },
+
// PvP room
- {new List{286 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/pvp.png" },
+ { new List { 286 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/pvp.png" },
+
// sr rooms
- {new List{340,341 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/my_missions.png" },
+ { new List { 340, 341 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/my_missions.png" },
+
// diva halls/fountain
- {new List{379,445 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/diva_fountain.png" },
+ { new List { 379, 445 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/diva_fountain.png" },
+
// MezFes areas
- {new List{462,463,464,465,466,467,468,469 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/mezfes.png" },
+ { new List { 462, 463, 464, 465, 466, 467, 468, 469 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/icon/mezfes.png" },
};
}
diff --git a/MHFZ_Overlay/Models/Mappers/BerserkRavienteTriggerEventsMapper.cs b/MHFZ_Overlay/Models/Mappers/BerserkRavienteTriggerEventsMapper.cs
index 31d3587c..c58fd3fd 100644
--- a/MHFZ_Overlay/Models/Mappers/BerserkRavienteTriggerEventsMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/BerserkRavienteTriggerEventsMapper.cs
@@ -6,7 +6,6 @@ namespace MHFZ_Overlay.Models.Mappers;
using System.Collections.Generic;
-
///
/// The Berserk Raviente Practice Trigger Events list
///
@@ -25,7 +24,7 @@ public static class BerserkRavientePracticeTriggerEvents
{8, "Sedation 5" },
{9, "Sedation 6" },
};
-};
+}
///
/// The Berserk Raviente Trigger Events list
@@ -49,4 +48,4 @@ public static class BerserkRavienteTriggerEvents
{12, "Destruction 7" },
{13, "Slay Done" }
};
-};
+}
diff --git a/MHFZ_Overlay/Models/Mappers/BingoMonsterMapper.cs b/MHFZ_Overlay/Models/Mappers/BingoMonsterMapper.cs
index 8969b402..b8e9fd77 100644
--- a/MHFZ_Overlay/Models/Mappers/BingoMonsterMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/BingoMonsterMapper.cs
@@ -17,7 +17,9 @@ public static class BingoMonsterMapper
// TODO make a function with input monster name and output dictionary monsterID rankbandID
// TODO i should use questid instead and use monster names as comments
// Extreme difficulty is same as hard difficulty but the bingo board is twice as big.
- {Difficulty.Easy, new List{
+ {
+ Difficulty.Easy, new List
+ {
"Elzelion",
"Zenaserisu",
"Zinogre",
@@ -101,7 +103,9 @@ public static class BingoMonsterMapper
"Zenith★2 Bogabadorumu",
}
},
- {Difficulty.Medium, new List{
+ {
+ Difficulty.Medium, new List
+ {
"Zenith★3 Espinas",
"Zenith★3 Hypnoc",
"Zenith★3 Khezu",
@@ -132,10 +136,12 @@ public static class BingoMonsterMapper
"Lv9999 Fatalis",
"Lv9999 Crimson Fatalis",
"Lv9999 Shantien",
- "2nd District Duremudira"
+ "2nd District Duremudira",
}
},
- {Difficulty.Hard, new List{
+ {
+ Difficulty.Hard, new List
+ {
"Zenith★4 Espinas",
"Zenith★4 Hypnoc",
"Zenith★4 Khezu",
@@ -167,7 +173,7 @@ public static class BingoMonsterMapper
"Blitzkrieg Bogabadorumu",
"Golden Deviljho",
"Upper Shiten Unknown",
- "Upper Shiten Disufiroa"
+ "Upper Shiten Disufiroa",
}
}
};
diff --git a/MHFZ_Overlay/Models/Mappers/CatppuccinMochaColorsMapper.cs b/MHFZ_Overlay/Models/Mappers/CatppuccinMochaColorsMapper.cs
index 1da8ad1a..ddb905d9 100644
--- a/MHFZ_Overlay/Models/Mappers/CatppuccinMochaColorsMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/CatppuccinMochaColorsMapper.cs
@@ -6,66 +6,65 @@ namespace MHFZ_Overlay.Models.Mappers;
using System.Collections.Generic;
-
///
///The color list
///
-/// /// Labels Hex RGB HSL
-//Rosewater #f5e0dc rgb(245, 224, 220) hsl(10, 56%, 91%)
-//Flamingo #f2cdcd rgb(242, 205, 205) hsl(0, 59%, 88%)
-//Pink #f5c2e7 rgb(245, 194, 231) hsl(316, 72%, 86%)
-//Mauve #cba6f7 rgb(203, 166, 247) hsl(267, 84%, 81%)
-//Red #f38ba8 rgb(243, 139, 168) hsl(343, 81%, 75%)
-//Maroon #eba0ac rgb(235, 160, 172) hsl(350, 65%, 77%)
-//Peach #fab387 rgb(250, 179, 135) hsl(23, 92%, 75%)
-//Yellow #f9e2af rgb(249, 226, 175) hsl(41, 86%, 83%)
-//Green #a6e3a1 rgb(166, 227, 161) hsl(115, 54%, 76%)
-//Teal #94e2d5 rgb(148, 226, 213) hsl(170, 57%, 73%)
-//Sky #89dceb rgb(137, 220, 235) hsl(189, 71%, 73%)
-//Sapphire #74c7ec rgb(116, 199, 236) hsl(199, 76%, 69%)
-//Blue #89b4fa rgb(137, 180, 250) hsl(217, 92%, 76%)
-//Lavender #b4befe rgb(180, 190, 254) hsl(232, 97%, 85%)
-//Text #cdd6f4 rgb(205, 214, 244) hsl(226, 64%, 88%)
-//Subtext1 #bac2de rgb(186, 194, 222) hsl(227, 35%, 80%)
-//Subtext0 #a6adc8 rgb(166, 173, 200) hsl(228, 24%, 72%)
-//Overlay2 #9399b2 rgb(147, 153, 178) hsl(228, 17%, 64%)
-//Overlay1 #7f849c rgb(127, 132, 156) hsl(230, 13%, 55%)
-//Overlay0 #6c7086 rgb(108, 112, 134) hsl(231, 11%, 47%)
-//Surface2 #585b70 rgb(88, 91, 112) hsl(233, 12%, 39%)
-//Surface1 #45475a rgb(69, 71, 90) hsl(234, 13%, 31%)
-//Surface0 #313244 rgb(49, 50, 68) hsl(237, 16%, 23%)
-//Base #1e1e2e rgb(30, 30, 46) hsl(240, 21%, 15%)
-//Mantle #181825 rgb(24, 24, 37) hsl(240, 21%, 12%)
-//Crust #11111b rgb(17, 17, 27) hsl(240, 23%, 9%)
+// Labels Hex RGB HSL
+// Rosewater #f5e0dc rgb(245, 224, 220) hsl(10, 56%, 91%)
+// Flamingo #f2cdcd rgb(242, 205, 205) hsl(0, 59%, 88%)
+// Pink #f5c2e7 rgb(245, 194, 231) hsl(316, 72%, 86%)
+// Mauve #cba6f7 rgb(203, 166, 247) hsl(267, 84%, 81%)
+// Red #f38ba8 rgb(243, 139, 168) hsl(343, 81%, 75%)
+// Maroon #eba0ac rgb(235, 160, 172) hsl(350, 65%, 77%)
+// Peach #fab387 rgb(250, 179, 135) hsl(23, 92%, 75%)
+// Yellow #f9e2af rgb(249, 226, 175) hsl(41, 86%, 83%)
+// Green #a6e3a1 rgb(166, 227, 161) hsl(115, 54%, 76%)
+// Teal #94e2d5 rgb(148, 226, 213) hsl(170, 57%, 73%)
+// Sky #89dceb rgb(137, 220, 235) hsl(189, 71%, 73%)
+// Sapphire #74c7ec rgb(116, 199, 236) hsl(199, 76%, 69%)
+// Blue #89b4fa rgb(137, 180, 250) hsl(217, 92%, 76%)
+// Lavender #b4befe rgb(180, 190, 254) hsl(232, 97%, 85%)
+// Text #cdd6f4 rgb(205, 214, 244) hsl(226, 64%, 88%)
+// Subtext1 #bac2de rgb(186, 194, 222) hsl(227, 35%, 80%)
+// Subtext0 #a6adc8 rgb(166, 173, 200) hsl(228, 24%, 72%)
+// Overlay2 #9399b2 rgb(147, 153, 178) hsl(228, 17%, 64%)
+// Overlay1 #7f849c rgb(127, 132, 156) hsl(230, 13%, 55%)
+// Overlay0 #6c7086 rgb(108, 112, 134) hsl(231, 11%, 47%)
+// Surface2 #585b70 rgb(88, 91, 112) hsl(233, 12%, 39%)
+// Surface1 #45475a rgb(69, 71, 90) hsl(234, 13%, 31%)
+// Surface0 #313244 rgb(49, 50, 68) hsl(237, 16%, 23%)
+// Base #1e1e2e rgb(30, 30, 46) hsl(240, 21%, 15%)
+// Mantle #181825 rgb(24, 24, 37) hsl(240, 21%, 12%)
+// Crust #11111b rgb(17, 17, 27) hsl(240, 23%, 9%)
public static class CatppuccinMochaColorsMapper
{
public static IReadOnlyDictionary CatppuccinMochaColors { get; } = new Dictionary
{
- { "Rosewater","#f5e0dc" },
- { "Flamingo","#f2cdcd" },
- { "Pink","#f5c2e7" },
- { "Mauve","#cba6f7" },
- { "Red","#f38ba8" },
- { "Maroon","#eba0ac" },
- { "Peach","#fab387" },
- { "Yellow","#f9e2af" },
- { "Green","#a6e3a1" },
- { "Teal","#94e2d5" },
- { "Sky","#89dceb" },
- { "Sapphire","#74c7ec" },
- { "Blue","#89b4fa" },
- { "Lavender","#b4befe" },
- { "Text","#cdd6f4" },
- { "Subtext1","#bac2de" },
- { "Subtext0","#a6adc8" },
- { "Overlay2","#9399b2" },
- { "Overlay1","#7f849c" },
- { "Overlay0","#6c7086" },
- { "Surface2","#585b70" },
- { "Surface1","#45475a" },
- { "Surface0","#313244" },
- { "Base","#1e1e2e" },
- { "Mantle","#181825" },
- { "Crust","#11111b" }
+ { "Rosewater", "#f5e0dc" },
+ { "Flamingo", "#f2cdcd" },
+ { "Pink", "#f5c2e7" },
+ { "Mauve", "#cba6f7" },
+ { "Red", "#f38ba8" },
+ { "Maroon", "#eba0ac" },
+ { "Peach", "#fab387" },
+ { "Yellow", "#f9e2af" },
+ { "Green", "#a6e3a1" },
+ { "Teal", "#94e2d5" },
+ { "Sky", "#89dceb" },
+ { "Sapphire", "#74c7ec" },
+ { "Blue", "#89b4fa" },
+ { "Lavender", "#b4befe" },
+ { "Text", "#cdd6f4" },
+ { "Subtext1", "#bac2de" },
+ { "Subtext0", "#a6adc8" },
+ { "Overlay2", "#9399b2" },
+ { "Overlay1", "#7f849c" },
+ { "Overlay0", "#6c7086" },
+ { "Surface2", "#585b70" },
+ { "Surface1", "#45475a" },
+ { "Surface0", "#313244" },
+ { "Base", "#1e1e2e" },
+ { "Mantle", "#181825" },
+ { "Crust", "#11111b" },
};
}
diff --git a/MHFZ_Overlay/Models/Mappers/DPadImageMapper.cs b/MHFZ_Overlay/Models/Mappers/DPadImageMapper.cs
index 5c50b481..01ab4558 100644
--- a/MHFZ_Overlay/Models/Mappers/DPadImageMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/DPadImageMapper.cs
@@ -19,7 +19,7 @@ public static class DPadImageMapper
{ Direction.Down, "Assets/Icons/png/gamepad_dpad_down.png" },
{ Direction.DownLeft, "Assets/Icons/png/gamepad_dpad_downleft.png" },
{ Direction.Left, "Assets/Icons/png/gamepad_dpad_left.png" },
- { Direction.UpLeft, "Assets/Icons/png/gamepad_dpad_upleft.png" }
+ { Direction.UpLeft, "Assets/Icons/png/gamepad_dpad_upleft.png" },
};
public static string GetImage(Direction direction)
diff --git a/MHFZ_Overlay/Models/Mappers/DiscordServersMapper.cs b/MHFZ_Overlay/Models/Mappers/DiscordServersMapper.cs
index 62782d54..9735c8d9 100644
--- a/MHFZ_Overlay/Models/Mappers/DiscordServersMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/DiscordServersMapper.cs
@@ -6,7 +6,6 @@ namespace MHFZ_Overlay.Models.Mappers;
using System.Collections.Generic;
-
///
///The discord servers list
///
@@ -20,6 +19,6 @@ public static class DiscordServersMapper
{ 759022449743495170, "Monster Hunter [Ancient_Warriors]" },
{ 973963573619486740, "MezeLounge" },
{ 288170871908990976, "Hunsterverse" },
- { 967058504403808356, "Arca" }
+ { 967058504403808356, "Arca" },
};
-};
+}
diff --git a/MHFZ_Overlay/Models/Mappers/GatheringMapMapper.cs b/MHFZ_Overlay/Models/Mappers/GatheringMapMapper.cs
index eb32b3f3..d367b740 100644
--- a/MHFZ_Overlay/Models/Mappers/GatheringMapMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/GatheringMapMapper.cs
@@ -5,7 +5,7 @@
namespace MHFZ_Overlay.Models.Mappers;
using System.Collections.Generic;
-
+using MHFZ_Overlay.Models.Constant;
///
///The gathering map list
@@ -15,70 +15,102 @@ public static class GatheringMapMapper
public static IReadOnlyDictionary, string> GatheringMapID { get; } = new Dictionary, string>
{
// Loading
- {new List{ 0 }, "https://i.imgur.com/aAcPJGb.png" },
- //Jungle areas
- {new List{ 1,2,3,4,5,18,19,22,23,26,110,111,112,113,114,115,116,117,118,119,120,212,213 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/jungle_map.png" },
- //Snowy mountain areas
- {new List{ 6,15,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,218,219 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/snowy_mountains_map.png" },
- //Desert areas
- {new List{ 7,24,45,47,48,49,50,51,52,53,54,55,56,140,141,142,143,144,145,146,147,148,149,150,214,215 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/desert_map.png" },
- //Volcano areas
- {new List{ 8,27,58,59,60,61,62,63,64,65,74,161,162,163,164,165,166,167,169,216,217,220,221,222,223 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/volcano_map.png" },
- //Swamp areas
- {new List{ 9,16,29,44,67,68,69,70,71,72,73,75,151,152,153,154,155,156,157,158,159,160 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/swamp_map.png" },
- //Forest and Hills areas
- {new List{ 21,32,33,34,35,36,37,38,39,40,41,42,43,184,185,186,187,188,189,190,191,192,193,194,195,196 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/forest_and_hills_map.png" },
- //Great Forest areas
- {new List{ 224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/great_forest_map.png" },
- //Highlands areas
- {new List{ 247,248,249,250,251,252,253,254,255,302,303,304,305,306,307,308 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/highlands_map.png" },
- //Tidal Island areas
- {new List{ 322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/tidal_island_map.png" },
- //Polar Sea areas
- {new List{ 345,346,347,348,349,350,351,352,353,354,355,356,357,358 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/polar_sea_map.png" },
- //Flower Field areas
- {new List{ 361,362,363,364,365,366,367,368,369,370,371,372 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/flower_fields_.png" },
+ { new List { 0 }, Messages.EmptyImage },
+
+ // Jungle areas
+ { new List { 1, 2,3, 4,5, 18, 19, 22, 23, 26, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 212, 213 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/jungle_map.png" },
+
+ // Snowy mountain areas
+ { new List { 6, 15, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 218, 219 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/snowy_mountains_map.png" },
+
+ // Desert areas
+ { new List { 7, 24, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 214, 215 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/desert_map.png" },
+
+ // Volcano areas
+ { new List { 8, 27, 58, 59, 60, 61, 62, 63, 64, 65, 74, 161, 162, 163, 164, 165, 166, 167, 169, 216, 217, 220, 221, 222, 223 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/volcano_map.png" },
+
+ // Swamp areas
+ { new List { 9, 16, 29, 44, 67, 68, 69, 70, 71, 72, 73, 75, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/swamp_map.png" },
+
+ // Forest and Hills areas
+ { new List { 21, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/forest_and_hills_map.png" },
+
+ // Great Forest areas
+ { new List { 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/great_forest_map.png" },
+
+ // Highlands areas
+ { new List { 247, 248, 249, 250, 251, 252, 253, 254, 255, 302, 303, 304, 305, 306, 307, 308 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/highlands_map.png" },
+
+ // Tidal Island areas
+ { new List { 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/tidal_island_map.png" },
+
+ // Polar Sea areas
+ { new List { 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/polar_sea_map.png" },
+
+ // Flower Field areas
+ { new List { 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/flower_fields_.png" },
+
// Sky Corridor / Tower
- {new List{ 390,391,392,393,394,415,416 }, "https://i.imgur.com/aAcPJGb.png" },
+ { new List { 390, 391, 392, 393, 394, 415, 416 }, Messages.EmptyImage },
+
// Duremudira Areas
- {new List{ 399,414 }, "https://i.imgur.com/aAcPJGb.png" },
+ { new List { 399, 414 }, Messages.EmptyImage },
+
// White Lake
- {new List{ 400,401,402,403,404,405,406,407,408,409,410,411,412,413 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/white_lake_map.png" },
- //Painted Falls areas
- {new List{ 423,424,425,426,427,428,429,430,431,432,433,434,435,436 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/painted_falls_map.png" },
+ { new List { 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/white_lake_map.png" },
+
+ // Painted Falls areas
+ { new List { 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/painted_falls_map.png" },
+
// road
- {new List{ 459 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/road_map.png" },
- //Gorge areas
- {new List{ 288,289,290,291,292,293,294,295,296,297,298,299,300,301 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/gorge_map.png" },
- //Mezeporta
- {new List{ 200,397 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/mezeporta_map.png" },
- //my houses
- {new List{ 173,174,175 }, "https://i.imgur.com/aAcPJGb.png" },
- //hairdresser
- {new List{ 201 }, "https://i.imgur.com/aAcPJGb.png" },
- //guild halls
- {new List{ 202,203,204 }, "https://i.imgur.com/aAcPJGb.png" },
+ { new List { 459 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/road_map.png" },
+
+ // Gorge areas
+ { new List { 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/gorge_map.png" },
+
+ // Mezeporta
+ { new List { 200, 397 }, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/map/mezeporta_map.png" },
+
+ // my houses
+ { new List { 173, 174, 175 }, Messages.EmptyImage },
+
+ // hairdresser
+ { new List { 201 }, Messages.EmptyImage },
+
+ // guild halls
+ { new List { 202, 203, 204 }, Messages.EmptyImage },
+
// my tore / poogie farm
- {new List{ 205 }, "https://i.imgur.com/aAcPJGb.png" },
+ { new List { 205 }, Messages.EmptyImage },
+
// bars
- {new List{ 210,211 }, "https://i.imgur.com/aAcPJGb.png" },
+ { new List { 210, 211 }, Messages.EmptyImage },
+
// caravan / pallone
- {new List{ 256,260,261,262,263 }, "https://i.imgur.com/aAcPJGb.png" },
+ { new List { 256, 260, 261, 262, 263 }, Messages.EmptyImage },
+
// blacksmith
- {new List{ 257 }, "https://i.imgur.com/aAcPJGb.png" },
+ { new List { 257 }, Messages.EmptyImage },
+
// gallery
- {new List{ 264 }, "https://i.imgur.com/aAcPJGb.png" },
+ { new List { 264 }, Messages.EmptyImage },
+
// guuku farm/garden
- {new List{ 265 }, "https://i.imgur.com/aAcPJGb.png" },
+ { new List { 265 }, Messages.EmptyImage },
+
// halk area
- {new List{ 283 }, "https://i.imgur.com/aAcPJGb.png" },
+ { new List { 283 }, Messages.EmptyImage },
+
// PvP room
- {new List{ 286 }, "https://i.imgur.com/aAcPJGb.png" },
+ { new List { 286 }, Messages.EmptyImage },
+
// sr rooms
- {new List{ 340,341 }, "https://i.imgur.com/aAcPJGb.png" },
+ { new List { 340, 341 }, Messages.EmptyImage },
+
// diva halls/fountain
- {new List{ 379,445 }, "https://i.imgur.com/aAcPJGb.png" },
+ { new List { 379, 445 }, Messages.EmptyImage },
+
// MezFes areas
- {new List{ 462,463,464,465,466,467,468,469 }, "https://i.imgur.com/aAcPJGb.png" },
+ { new List { 462, 463, 464, 465, 466, 467, 468, 469 }, Messages.EmptyImage },
};
}
diff --git a/MHFZ_Overlay/Models/Mappers/JoystickImageMapper.cs b/MHFZ_Overlay/Models/Mappers/JoystickImageMapper.cs
index fac93738..2ef9ed55 100644
--- a/MHFZ_Overlay/Models/Mappers/JoystickImageMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/JoystickImageMapper.cs
@@ -19,7 +19,7 @@ public static class JoystickImageMapper
{ Direction.Down, "Assets/Icons/png/gamepad_joystick_down.png" },
{ Direction.DownLeft, "Assets/Icons/png/gamepad_joystick_downleft.png" },
{ Direction.Left, "Assets/Icons/png/gamepad_joystick_left.png" },
- { Direction.UpLeft, "Assets/Icons/png/gamepad_joystick_upleft.png" }
+ { Direction.UpLeft, "Assets/Icons/png/gamepad_joystick_upleft.png" },
};
public static string GetImage(Direction direction)
diff --git a/MHFZ_Overlay/Models/Mappers/MezFesMinigameMapper.cs b/MHFZ_Overlay/Models/Mappers/MezFesMinigameMapper.cs
index 96b29c3d..3e24f913 100644
--- a/MHFZ_Overlay/Models/Mappers/MezFesMinigameMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/MezFesMinigameMapper.cs
@@ -22,4 +22,4 @@ public static class MezFesMinigameMapper
{ 468,"Panic Honey" },
{ 469,"Dokkan Battle Cats" },
};
-};
+}
diff --git a/MHFZ_Overlay/Models/Mappers/MonsterColorMapper.cs b/MHFZ_Overlay/Models/Mappers/MonsterColorMapper.cs
index df91a966..3cadbee8 100644
--- a/MHFZ_Overlay/Models/Mappers/MonsterColorMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/MonsterColorMapper.cs
@@ -6,219 +6,217 @@ namespace MHFZ_Overlay.Models.Mappers;
using System.Collections.Generic;
-
///
///The monster color list
///
public static class MonsterColorMapper
{
- /// /// Labels Hex RGB HSL
- //Rosewater #f5e0dc rgb(245, 224, 220) hsl(10, 56%, 91%)
- //Flamingo #f2cdcd rgb(242, 205, 205) hsl(0, 59%, 88%)
- //Pink #f5c2e7 rgb(245, 194, 231) hsl(316, 72%, 86%)
- //Mauve #cba6f7 rgb(203, 166, 247) hsl(267, 84%, 81%)
- //Red #f38ba8 rgb(243, 139, 168) hsl(343, 81%, 75%)
- //Maroon #eba0ac rgb(235, 160, 172) hsl(350, 65%, 77%)
- //Peach #fab387 rgb(250, 179, 135) hsl(23, 92%, 75%)
- //Yellow #f9e2af rgb(249, 226, 175) hsl(41, 86%, 83%)
- //Green #a6e3a1 rgb(166, 227, 161) hsl(115, 54%, 76%)
- //Teal #94e2d5 rgb(148, 226, 213) hsl(170, 57%, 73%)
- //Sky #89dceb rgb(137, 220, 235) hsl(189, 71%, 73%)
- //Sapphire #74c7ec rgb(116, 199, 236) hsl(199, 76%, 69%)
- //Blue #89b4fa rgb(137, 180, 250) hsl(217, 92%, 76%)
- //Lavender #b4befe rgb(180, 190, 254) hsl(232, 97%, 85%)
- //Text #cdd6f4 rgb(205, 214, 244) hsl(226, 64%, 88%)
- //Subtext1 #bac2de rgb(186, 194, 222) hsl(227, 35%, 80%)
- //Subtext0 #a6adc8 rgb(166, 173, 200) hsl(228, 24%, 72%)
- //Overlay2 #9399b2 rgb(147, 153, 178) hsl(228, 17%, 64%)
- //Overlay1 #7f849c rgb(127, 132, 156) hsl(230, 13%, 55%)
- //Overlay0 #6c7086 rgb(108, 112, 134) hsl(231, 11%, 47%)
- //Surface2 #585b70 rgb(88, 91, 112) hsl(233, 12%, 39%)
- //Surface1 #45475a rgb(69, 71, 90) hsl(234, 13%, 31%)
- //Surface0 #313244 rgb(49, 50, 68) hsl(237, 16%, 23%)
- //Base #1e1e2e rgb(30, 30, 46) hsl(240, 21%, 15%)
- //Mantle #181825 rgb(24, 24, 37) hsl(240, 21%, 12%)
- //Crust #11111b rgb(17, 17, 27) hsl(240, 23%, 9%)
-
+ // Labels Hex RGB HSL
+ // Rosewater #f5e0dc rgb(245, 224, 220) hsl(10, 56%, 91%)
+ // Flamingo #f2cdcd rgb(242, 205, 205) hsl(0, 59%, 88%)
+ // Pink #f5c2e7 rgb(245, 194, 231) hsl(316, 72%, 86%)
+ // Mauve #cba6f7 rgb(203, 166, 247) hsl(267, 84%, 81%)
+ // Red #f38ba8 rgb(243, 139, 168) hsl(343, 81%, 75%)
+ // Maroon #eba0ac rgb(235, 160, 172) hsl(350, 65%, 77%)
+ // Peach #fab387 rgb(250, 179, 135) hsl(23, 92%, 75%)
+ // Yellow #f9e2af rgb(249, 226, 175) hsl(41, 86%, 83%)
+ // Green #a6e3a1 rgb(166, 227, 161) hsl(115, 54%, 76%)
+ // Teal #94e2d5 rgb(148, 226, 213) hsl(170, 57%, 73%)
+ // Sky #89dceb rgb(137, 220, 235) hsl(189, 71%, 73%)
+ // Sapphire #74c7ec rgb(116, 199, 236) hsl(199, 76%, 69%)
+ // Blue #89b4fa rgb(137, 180, 250) hsl(217, 92%, 76%)
+ // Lavender #b4befe rgb(180, 190, 254) hsl(232, 97%, 85%)
+ // Text #cdd6f4 rgb(205, 214, 244) hsl(226, 64%, 88%)
+ // Subtext1 #bac2de rgb(186, 194, 222) hsl(227, 35%, 80%)
+ // Subtext0 #a6adc8 rgb(166, 173, 200) hsl(228, 24%, 72%)
+ // Overlay2 #9399b2 rgb(147, 153, 178) hsl(228, 17%, 64%)
+ // Overlay1 #7f849c rgb(127, 132, 156) hsl(230, 13%, 55%)
+ // Overlay0 #6c7086 rgb(108, 112, 134) hsl(231, 11%, 47%)
+ // Surface2 #585b70 rgb(88, 91, 112) hsl(233, 12%, 39%)
+ // Surface1 #45475a rgb(69, 71, 90) hsl(234, 13%, 31%)
+ // Surface0 #313244 rgb(49, 50, 68) hsl(237, 16%, 23%)
+ // Base #1e1e2e rgb(30, 30, 46) hsl(240, 21%, 15%)
+ // Mantle #181825 rgb(24, 24, 37) hsl(240, 21%, 12%)
+ // Crust #11111b rgb(17, 17, 27) hsl(240, 23%, 9%)
public static IReadOnlyDictionary MonsterColorID { get; } = new Dictionary
{
- { 0, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 1, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"]},
- { 2, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Base"]},
- { 3, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Surface0"]},
- { 4, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"]},
- { 5, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mauve"]},
- { 6, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Pink"]},
- { 7, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"]},
- { 8, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 9, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 10, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 11, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"]},
- { 12, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Overlay0"]},
- { 13, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 14, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 15, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Surface0"]},
- { 16, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"]},
- { 17, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mantle"]},
- { 18, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 19, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 20, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mauve"]},
- { 21, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Teal"]},
- { 22, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Surface1"]},
- { 23, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mantle"]},
- { 24, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 25, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 26, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 27, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"]},
- { 28, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 29, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 30, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"]},
- { 31, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"]},
- { 32, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 33, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"]},
- { 34, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 35, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sky"]},
- { 36, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"]},
- { 37, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Pink"]},
- { 38, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"]},
- { 39, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mauve"]},
- { 40, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Lavender"]},
- { 41, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Subtext1"]},
- { 42, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Yellow"]},
- { 43, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mantle"]},
- { 44, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"]},
- { 45, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"]},
- { 46, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"]},
- { 47, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Crust"]},
- { 48, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Peach"]},
- { 49, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sky"]},
- { 50, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"]},
- { 51, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"]},
- { 52, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Pink"]},
- { 53, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Crust"]},
- { 54, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Subtext1"]},
- { 55, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Overlay2"]},
- { 56, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 57, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 58, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"]},
- { 59, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Lavender"]},
- { 60, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"]},
- { 61, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"]},
- { 62, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Pink"]},
- { 63, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Overlay1"]},
- { 64, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"]},
- { 65, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"]}, // teo
- { 66, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"]},
- { 67, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"]},
- { 68, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"]},
- { 69, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 70, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 71, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"]},
- { 72, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"]},
- { 73, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"]},
- { 74, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Peach"]},
- { 75, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"]},
- { 76, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 77, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"]},
- { 78, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Pink"]},
- { 79, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"]},
- { 80, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"]},
- { 81, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Peach"]},
- { 82, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"]},
- { 83, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Lavender"]},
- { 84, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mauve"]},
- { 85, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Yellow"]},
- { 86, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"]},
- { 87, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 88, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 89, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"]}, // paria
- { 90, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"]},
- { 91, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Base"]},
- { 92, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"]},
- { 93, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Peach"]},
- { 94, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"]},
- { 95, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mauve"]}, // dora
- { 96, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"]},
- { 97, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 98, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 99, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Peach"]},
- { 100, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Crust"]},
- { 101, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"]},
- { 102, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"]},
- { 103, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Peach"]},
- { 104, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"]},
- { 105, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"]},
- { 106, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"]}, // odi
- { 107, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Subtext1"]},
- { 108, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Teal"]},
- { 109, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sapphire"]},
- { 110, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 111, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"]},
- { 112, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sapphire"]},
- { 113, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Crust"]}, // mi ru
- { 114, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Teal"]},
- { 115, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Subtext1"]},
- { 116, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sapphire"]},
- { 117, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sapphire"]},
- { 118, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 119, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Yellow"]},
- { 120, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Subtext1"]},
- { 121, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Subtext1"]},
- { 122, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sky"]},
- { 123, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Lavender"]},
- { 124, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 125, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"]},
- { 126, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Yellow"]},
- { 127, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sapphire"]},
- { 128, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Yellow"]},
- { 129, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"]},
- { 130, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"]},
- { 131, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"]},
- { 132, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"]},
- { 133, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 134, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 135, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 136, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 137, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"]},
- { 138, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 139, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"]},
- { 140, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"]},
- { 141, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sapphire"]},
- { 142, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 143, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 144, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"]},
- { 145, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Lavender"]},
- { 146, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sky"]}, // zin
- { 147, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"]},
- { 148, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"]},
- { 149, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Crust"]},
- { 150, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sapphire"]},
- { 151, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"]},
- { 152, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Yellow"]},
- { 153, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"]},
- { 154, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Peach"]}, // guanzo
- { 155, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"]}, // starving
- { 156, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 157, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 158, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Peach"]},
- { 159, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Base"]},
- { 160, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Subtext1"]},
- { 161, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"]},
- { 162, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mantle"]},
- { 163, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"]},
- { 164, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Subtext1"]},
- { 165, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"]},
- { 166, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mauve"]}, // elzelion
- { 167, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Lavender"]},
- { 168, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 169, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 170, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"]},
- { 171, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 172, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"]},
- { 173, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 174, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"]},
- { 175, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
- { 176, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"]},
+ { 0, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 1, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"] },
+ { 2, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Base"] },
+ { 3, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Surface0"] },
+ { 4, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"] },
+ { 5, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mauve"] },
+ { 6, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Pink"] },
+ { 7, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"] },
+ { 8, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 9, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 10, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 11, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"] },
+ { 12, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Overlay0"] },
+ { 13, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 14, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 15, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Surface0"] },
+ { 16, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"] },
+ { 17, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mantle"] },
+ { 18, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 19, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 20, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mauve"] },
+ { 21, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Teal"] },
+ { 22, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Surface1"] },
+ { 23, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mantle"] },
+ { 24, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 25, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 26, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 27, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"] },
+ { 28, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 29, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 30, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"] },
+ { 31, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"] },
+ { 32, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 33, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"] },
+ { 34, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 35, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sky"] },
+ { 36, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"] },
+ { 37, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Pink"] },
+ { 38, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"] },
+ { 39, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mauve"] },
+ { 40, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Lavender"] },
+ { 41, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Subtext1"] },
+ { 42, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Yellow"] },
+ { 43, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mantle"] },
+ { 44, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"] },
+ { 45, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"] },
+ { 46, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"] },
+ { 47, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Crust"] },
+ { 48, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Peach"] },
+ { 49, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sky"] },
+ { 50, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"] },
+ { 51, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"] },
+ { 52, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Pink"] },
+ { 53, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Crust"] },
+ { 54, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Subtext1"] },
+ { 55, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Overlay2"] },
+ { 56, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 57, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 58, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"] },
+ { 59, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Lavender"] },
+ { 60, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"] },
+ { 61, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"] },
+ { 62, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Pink"] },
+ { 63, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Overlay1"] },
+ { 64, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"] },
+ { 65, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"] }, // teo
+ { 66, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"] },
+ { 67, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"] },
+ { 68, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"] },
+ { 69, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 70, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 71, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"] },
+ { 72, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"] },
+ { 73, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"] },
+ { 74, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Peach"] },
+ { 75, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"] },
+ { 76, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 77, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"] },
+ { 78, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Pink"] },
+ { 79, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"] },
+ { 80, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"] },
+ { 81, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Peach"] },
+ { 82, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"] },
+ { 83, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Lavender"] },
+ { 84, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mauve"] },
+ { 85, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Yellow"] },
+ { 86, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"] },
+ { 87, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 88, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 89, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"] }, // paria
+ { 90, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"] },
+ { 91, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Base"] },
+ { 92, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"] },
+ { 93, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Peach"] },
+ { 94, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"] },
+ { 95, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mauve"] }, // dora
+ { 96, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"] },
+ { 97, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 98, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 99, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Peach"] },
+ { 100, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Crust"] },
+ { 101, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"] },
+ { 102, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"] },
+ { 103, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Peach"] },
+ { 104, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"] },
+ { 105, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"] },
+ { 106, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"] }, // odi
+ { 107, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Subtext1"] },
+ { 108, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Teal"] },
+ { 109, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sapphire"] },
+ { 110, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 111, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"] },
+ { 112, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sapphire"] },
+ { 113, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Crust"] }, // mi ru
+ { 114, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Teal"] },
+ { 115, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Subtext1"] },
+ { 116, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sapphire"] },
+ { 117, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sapphire"] },
+ { 118, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 119, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Yellow"] },
+ { 120, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Subtext1"] },
+ { 121, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Subtext1"] },
+ { 122, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sky"] },
+ { 123, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Lavender"] },
+ { 124, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 125, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"] },
+ { 126, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Yellow"] },
+ { 127, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sapphire"] },
+ { 128, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Yellow"] },
+ { 129, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"] },
+ { 130, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"] },
+ { 131, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"] },
+ { 132, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"] },
+ { 133, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 134, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 135, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 136, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 137, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"] },
+ { 138, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 139, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Green"] },
+ { 140, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"] },
+ { 141, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sapphire"] },
+ { 142, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 143, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 144, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"] },
+ { 145, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Lavender"] },
+ { 146, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sky"] }, // zin
+ { 147, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"] },
+ { 148, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"] },
+ { 149, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Crust"] },
+ { 150, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Sapphire"] },
+ { 151, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"] },
+ { 152, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Yellow"] },
+ { 153, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"] },
+ { 154, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Peach"] }, // guanzo
+ { 155, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Maroon"] }, // starving
+ { 156, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 157, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 158, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Peach"] },
+ { 159, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Base"] },
+ { 160, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Subtext1"] },
+ { 161, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"] },
+ { 162, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mantle"] },
+ { 163, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"] },
+ { 164, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Subtext1"] },
+ { 165, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Text"] },
+ { 166, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Mauve"] }, // elzelion
+ { 167, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Lavender"] },
+ { 168, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 169, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 170, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"] },
+ { 171, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 172, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Blue"] },
+ { 173, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 174, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Red"] },
+ { 175, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
+ { 176, CatppuccinMochaColorsMapper.CatppuccinMochaColors["Rosewater"] },
};
}
diff --git a/MHFZ_Overlay/Models/Mappers/MonsterImageMapper.cs b/MHFZ_Overlay/Models/Mappers/MonsterImageMapper.cs
index f03c4383..45be44c5 100644
--- a/MHFZ_Overlay/Models/Mappers/MonsterImageMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/MonsterImageMapper.cs
@@ -6,7 +6,6 @@ namespace MHFZ_Overlay.Models.Mappers;
using System.Collections.Generic;
-
///
///The monster image list
///
@@ -17,85 +16,85 @@ public static class MonsterImageMapper
{ 0, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/none.png" },
{ 1, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/rathian.png" },
{ 3, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kelbi.png" },
- { 4,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/mosswine.png" },
- { 5,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/bullfango.png" },
- { 6,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/yian_kut-ku.png" },
- { 7,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/lao-shan_lung.png" },
- { 8,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/cephadrome.png" },
- { 9,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/felyne.png" },
- { 10,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/random.png" },
- { 12,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/aptonoth.png" },
- { 13,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/genprey.png" },
- { 14,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/diablos.png" },
- { 16,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/velociprey.png" },
- { 18,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/felyne.png" },
- { 19,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/vespoid.png" },
- { 20,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gypceros.png" },
- { 22,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/basarios.png" },
- { 23,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/melynx.png" },
- { 24,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/hornetaur.png" },
- { 25,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/apceros.png" },
- { 26,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/monoblos.png" },
- { 27,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/velocidrome.png" },
- { 28,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gendrome.png" },
- { 29,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/random.png" },
- { 30,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/ioprey.png" },
- { 31,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/iodrome.png" },
- { 32,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/random.png" },
- { 33,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kirin.png" },
- { 34,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/cephalos.png" },
- { 35,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/giaprey.png" },
- { 37,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/pink_rathian.png" },
- { 38,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/blue_yian_kut-ku.png" },
- { 39,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/purple_gypceros.png" },
- { 40,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/yian_garuga.png" },
- { 41,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/silver_rathalos.png" },
- { 42,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gold_rathian.png" },
- { 43,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/black_diablos.png" },
- { 44,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/white_monoblos.png" },
- { 45,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/red_khezu.png" },
- { 46,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/green_plesioth.png" },
- { 47,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/black_gravios.png" },
- { 49,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/azure_rathalos.png" },
- { 50,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/ashen_lao-shan_lung.png" },
- { 52,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/congalala.png" },
- { 54,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kushala_daora.png" },
- { 55,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shen_gaoren.png" },
- { 56,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/great_thunderbug.png" },
- { 57,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shakalaka.png" },
- { 58,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/yama_tsukami.png" },
- { 59,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/chameleos.png" },
- { 60,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/rusted_kushala_daora.png" },
- { 61,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/blango.png" },
- { 62,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/conga.png" },
- { 63,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/remobra.png" },
- { 64,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/lunastra.png" },
- { 66,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/hermitaur.png" },
- { 67,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shogun_ceanataur.png" },
- { 68,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/bulldrome.png" },
- { 69,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/anteka.png" },
- { 70,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/popo.png" },
- { 72,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/yama_tsukami.png" },
- { 73,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/ceanataur.png" },
- { 75,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/lavasioth.png" },
- { 77,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/akantor.png" },
- { 78,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/bright_hypnoc.png" },
- { 79,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/red_lavasioth.png" },
- { 81,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/orange_espinas.png" },
- { 82,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/silver_hypnoc.png" },
- { 84,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/akura_jebia.png" },
- { 85,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/berukyurosu.png" },
- { 86,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/cactus.png" },
- { 87,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/random.png" },
- { 88,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/random.png" },
- { 90,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/white_espinas.png" },
- { 91,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kamu_orugaron.png" },
- { 92,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/nono_orugaron.png" },
- { 93,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/raviente.png" },
- { 94,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/dyuragaua.png" },
- { 96,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gurenzeburu.png" },
- { 97,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/burukku.png" },
- { 98,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/erupe.png" },
+ { 4, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/mosswine.png" },
+ { 5, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/bullfango.png" },
+ { 6, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/yian_kut-ku.png" },
+ { 7, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/lao-shan_lung.png" },
+ { 8, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/cephadrome.png" },
+ { 9, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/felyne.png" },
+ { 10, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/random.png" },
+ { 12, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/aptonoth.png" },
+ { 13, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/genprey.png" },
+ { 14, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/diablos.png" },
+ { 16, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/velociprey.png" },
+ { 18, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/felyne.png" },
+ { 19, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/vespoid.png" },
+ { 20, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gypceros.png" },
+ { 22, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/basarios.png" },
+ { 23, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/melynx.png" },
+ { 24, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/hornetaur.png" },
+ { 25, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/apceros.png" },
+ { 26, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/monoblos.png" },
+ { 27, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/velocidrome.png" },
+ { 28, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gendrome.png" },
+ { 29, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/random.png" },
+ { 30, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/ioprey.png" },
+ { 31, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/iodrome.png" },
+ { 32, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/random.png" },
+ { 33, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kirin.png" },
+ { 34, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/cephalos.png" },
+ { 35, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/giaprey.png" },
+ { 37, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/pink_rathian.png" },
+ { 38, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/blue_yian_kut-ku.png" },
+ { 39, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/purple_gypceros.png" },
+ { 40, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/yian_garuga.png" },
+ { 41, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/silver_rathalos.png" },
+ { 42, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gold_rathian.png" },
+ { 43, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/black_diablos.png" },
+ { 44, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/white_monoblos.png" },
+ { 45, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/red_khezu.png" },
+ { 46, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/green_plesioth.png" },
+ { 47, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/black_gravios.png" },
+ { 49, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/azure_rathalos.png" },
+ { 50, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/ashen_lao-shan_lung.png" },
+ { 52, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/congalala.png" },
+ { 54, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kushala_daora.png" },
+ { 55, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shen_gaoren.png" },
+ { 56, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/great_thunderbug.png" },
+ { 57, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shakalaka.png" },
+ { 58, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/yama_tsukami.png" },
+ { 59, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/chameleos.png" },
+ { 60, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/rusted_kushala_daora.png" },
+ { 61, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/blango.png" },
+ { 62, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/conga.png" },
+ { 63, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/remobra.png" },
+ { 64, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/lunastra.png" },
+ { 66, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/hermitaur.png" },
+ { 67, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shogun_ceanataur.png" },
+ { 68, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/bulldrome.png" },
+ { 69, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/anteka.png" },
+ { 70, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/popo.png" },
+ { 72, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/yama_tsukami.png" },
+ { 73, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/ceanataur.png" },
+ { 75, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/lavasioth.png" },
+ { 77, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/akantor.png" },
+ { 78, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/bright_hypnoc.png" },
+ { 79, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/red_lavasioth.png" },
+ { 81, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/orange_espinas.png" },
+ { 82, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/silver_hypnoc.png" },
+ { 84, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/akura_jebia.png" },
+ { 85, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/berukyurosu.png" },
+ { 86, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/cactus.png" },
+ { 87, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/random.png" },
+ { 88, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/random.png" },
+ { 90, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/white_espinas.png" },
+ { 91, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kamu_orugaron.png" },
+ { 92, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/nono_orugaron.png" },
+ { 93, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/raviente.png" },
+ { 94, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/dyuragaua.png" },
+ { 96, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gurenzeburu.png" },
+ { 97, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/burukku.png" },
+ { 98, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/erupe.png" },
{ 101, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gogomoa.png" },
{ 102, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gogomoa.png" },
{ 104, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/abiorugu.png" },
@@ -104,7 +103,7 @@ public static class MonsterImageMapper
{ 114, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/farunokku.png" },
{ 115, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/pokaradon.png" },
{ 117, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/pokara.png" },
- { 118,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/random.png" },
+ { 118, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/random.png" },
{ 119, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/supremacy_goruganosu.gif" },
{ 120, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/supremacy_aruganosu.gif" },
{ 122, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zerureusu.png" },
diff --git a/MHFZ_Overlay/Models/Mappers/MonsterMapper.cs b/MHFZ_Overlay/Models/Mappers/MonsterMapper.cs
index e3c7f358..941cbcaa 100644
--- a/MHFZ_Overlay/Models/Mappers/MonsterMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/MonsterMapper.cs
@@ -6,7 +6,6 @@ namespace MHFZ_Overlay.Models.Mappers;
using System.Collections.Generic;
-
///
///The monster ID list
///is the same as monsternamedictionary seemingly. could use this for something else.
@@ -193,4 +192,4 @@ public static class MonsterMapper
{ 175, "PSO2 Rappy" },
{ 176, "King Shakalaka" },
};
-};
+}
diff --git a/MHFZ_Overlay/Models/Mappers/MonsterNameMapper.cs b/MHFZ_Overlay/Models/Mappers/MonsterNameMapper.cs
index 5dce7f9c..aa54e02c 100644
--- a/MHFZ_Overlay/Models/Mappers/MonsterNameMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/MonsterNameMapper.cs
@@ -6,9 +6,8 @@ namespace MHFZ_Overlay.Models.Mappers;
using System.Collections.Generic;
-
///
-///The monster name list
+///The monster name list. Not the full list.
///
public static class MonsterNameMapper
{
@@ -79,7 +78,6 @@ public static class MonsterNameMapper
{ 62, "Conga" },
{ 63, "Remobra" },
{ 64, "Lunastra" },
-
{ 66, "Hermitaur" },
{ 67, "Shogun Ceanataur" },
{ 68, "Bulldrome" },
@@ -103,13 +101,11 @@ public static class MonsterNameMapper
{ 86, "Cactus" },
{ 87, "Gorge Object" },
{ 88, "Gorge Rock" },
-
{ 90, "White Espinas" },
{ 91, "Kamu Orugaron" },
{ 92, "Nono Orugaron" },
{ 93, "Raviente" },
{ 94, "Dyuragaua" },
-
{ 96, "Gurenzeburu" },
{ 97, "Burukku" },
{ 98, "Erupe" },
@@ -120,14 +116,12 @@ public static class MonsterNameMapper
{ 103, "Taikun Zamuza" },
{ 104, "Abiorugu" },
{ 105, "Kuarusepusu" },
-
{ 107, "Disufiroa" },
{ 108, "Rebidiora" },
{ 109, "Anorupatisu" },
{ 110, "Hyujikiki" },
{ 111, "Midogaron" },
{ 112, "Giaorugu" },
-
{ 114, "Farunokku" },
{ 115, "Pokaradon" },
{ 116, "Shantien" },
@@ -160,7 +154,6 @@ public static class MonsterNameMapper
{ 143, "Kusubami" },
{ 144, "Yama Kurai" },
{ 145, "3rd Phase Duremudira" },
-
{ 147, "Deviljho" },
{ 148, "Brachydios" },
{ 149, "Berserk Raviente" },
@@ -168,7 +161,6 @@ public static class MonsterNameMapper
{ 151, "Barioth" },
{ 152, "Uragaan" },
{ 153, "Stygian Zinogre" },
-
{ 156, "UNK" },
{ 157, "Egyurasu" },
{ 158, "Voljang" },
@@ -179,7 +171,6 @@ public static class MonsterNameMapper
{ 163, "Blinking Nargacuga" },
{ 164, "Shagaru Magala" },
{ 165, "Amatsu" },
-
{ 167, "Arrogant Duremudira" },
{ 168, "Rocks" },
{ 169, "Seregios" },
diff --git a/MHFZ_Overlay/Models/Mappers/MonsterRenderMapper.cs b/MHFZ_Overlay/Models/Mappers/MonsterRenderMapper.cs
index b795f97f..219a410a 100644
--- a/MHFZ_Overlay/Models/Mappers/MonsterRenderMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/MonsterRenderMapper.cs
@@ -13,207 +13,205 @@ public static class MonsterRenderMapper
{
public static IReadOnlyDictionary MonsterRender { get; } = new Dictionary
{
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/none.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/none.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/rathian.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/rathian.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kelbi.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/kelbi.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/mosswine.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/mosswine.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/bullfango.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/bullfango.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/yian_kut-ku.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/yian_kut-ku.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/lao-shan_lung.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/lao-shan_lung.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/cephadrome.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/cephadrome.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/felyne.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/felyne.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/random.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/random.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/aptonoth.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/aptonoth.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/genprey.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/genprey.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/diablos.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/diablos.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/velociprey.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/velociprey.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/vespoid.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/vespoid.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gypceros.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gypceros.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/basarios.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/basarios.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/melynx.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/melynx.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/hornetaur.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/hornetaur.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/apceros.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/apceros.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/monoblos.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/monoblos.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/velocidrome.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/velocidrome.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gendrome.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gendrome.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/ioprey.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/ioprey.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/iodrome.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/iodrome.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kirin.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/kirin.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/cephalos.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/cephalos.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/giaprey.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/giaprey.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/pink_rathian.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/pink_rathian.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/blue_yian_kut-ku.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/blue_yian_kut-ku.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/purple_gypceros.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/purple_gypceros.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/yian_garuga.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/yian_garuga.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/silver_rathalos.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/silver_rathalos.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gold_rathian.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gold_rathian.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/black_diablos.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/black_diablos.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/white_monoblos.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/white_monoblos.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/red_khezu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/red_khezu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/green_plesioth.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/green_plesioth.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/black_gravios.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/black_gravios.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/azure_rathalos.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/azure_rathalos.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/ashen_lao-shan_lung.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/ashen_lao-shan_lung.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/congalala.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/congalala.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kushala_daora.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/kushala_daora.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shen_gaoren.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shen_gaoren.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/great_thunderbug.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/great_thunderbug.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shakalaka.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shakalaka.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/yama_tsukami.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/yama_tsukami.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/chameleos.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/chameleos.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/rusted_kushala_daora.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/rusted_kushala_daora.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/blango.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/blango.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/conga.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/conga.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/remobra.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/remobra.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/lunastra.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/lunastra.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/hermitaur.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/hermitaur.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shogun_ceanataur.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shogun_ceanataur.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/bulldrome.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/bulldrome.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/anteka.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/anteka.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/popo.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/popo.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/ceanataur.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/ceanataur.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/lavasioth.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/lavasioth.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/akantor.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/akantor.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/bright_hypnoc.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/bright_hypnoc.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/red_lavasioth.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/red_lavasioth.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/orange_espinas.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/orange_espinas.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/silver_hypnoc.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/silver_hypnoc.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/akura_jebia.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/akura_jebia.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/berukyurosu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/berukyurosu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/cactus.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/cactus.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/white_espinas.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/white_espinas.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kamu_orugaron.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/kamu_orugaron.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/nono_orugaron.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/nono_orugaron.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/raviente.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/raviente.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/dyuragaua.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/dyuragaua.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gurenzeburu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gurenzeburu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/burukku.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/burukku.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/erupe.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/erupe.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gogomoa.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gogomoa.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/abiorugu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/abiorugu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kuarusepusu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/kuarusepusu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/rebidiora.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/rebidiora.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/farunokku.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/farunokku.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/pokaradon.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/pokaradon.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/pokara.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/pokara.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/supremacy_goruganosu.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/goruganosu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/supremacy_aruganosu.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/aruganosu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zerureusu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zerureusu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gougarf.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gougarf.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/uruki.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/uruki.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/forokururu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/forokururu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/meraginasu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/meragniasu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/diorex.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/diorex.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/garuba_daora.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/garuba_daora.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/varusaburosu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/varusaburosu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/poborubarumu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/poborubarumu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/duremudira.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/duremudira.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gureadomosu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gureadomosu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kusubami.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/kusubami.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/yama_kurai.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/yama_kurai.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/deviljho.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/deviljho.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/brachydios.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/brachydios.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/berserk_raviente.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/berserk_raviente.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/toa_tesukatora.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/toa_tesukatora.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/barioth.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/barioth.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/uragaan.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/uragaan.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/stygian_zinogre.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/stygian_zinogre.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/voljang.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/voljang.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/nargacuga.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/nargacuga.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/keoaruboru.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/keoaruboru.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenaserisu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenaserisu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gore_magala.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gore_magala.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/blinking_nargacuga.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/blinking_nargacuga.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shagaru_magala.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shagaru_magala.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/amatsu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/amatsu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/arrogant_duremudira.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/arrogant_duremudira.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/seregios.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/seregios.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_bogabadorumu.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_bogabadorumu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/blitzkrieg_bogabadorumu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/blitzkrieg_bogabadorumu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/sparkling_zerureusu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/sparkling_zerureusu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/pso2_rappy.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/pso2_rappy.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/king_shakalaka.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/king_shakalaka.png" },
-
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/none.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/none.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/rathian.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/rathian.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kelbi.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/kelbi.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/mosswine.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/mosswine.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/bullfango.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/bullfango.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/yian_kut-ku.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/yian_kut-ku.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/lao-shan_lung.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/lao-shan_lung.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/cephadrome.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/cephadrome.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/felyne.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/felyne.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/random.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/random.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/aptonoth.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/aptonoth.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/genprey.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/genprey.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/diablos.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/diablos.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/velociprey.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/velociprey.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/vespoid.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/vespoid.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gypceros.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gypceros.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/basarios.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/basarios.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/melynx.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/melynx.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/hornetaur.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/hornetaur.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/apceros.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/apceros.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/monoblos.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/monoblos.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/velocidrome.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/velocidrome.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gendrome.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gendrome.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/ioprey.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/ioprey.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/iodrome.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/iodrome.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kirin.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/kirin.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/cephalos.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/cephalos.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/giaprey.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/giaprey.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/pink_rathian.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/pink_rathian.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/blue_yian_kut-ku.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/blue_yian_kut-ku.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/purple_gypceros.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/purple_gypceros.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/yian_garuga.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/yian_garuga.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/silver_rathalos.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/silver_rathalos.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gold_rathian.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gold_rathian.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/black_diablos.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/black_diablos.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/white_monoblos.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/white_monoblos.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/red_khezu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/red_khezu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/green_plesioth.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/green_plesioth.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/black_gravios.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/black_gravios.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/azure_rathalos.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/azure_rathalos.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/ashen_lao-shan_lung.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/ashen_lao-shan_lung.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/congalala.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/congalala.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kushala_daora.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/kushala_daora.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shen_gaoren.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shen_gaoren.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/great_thunderbug.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/great_thunderbug.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shakalaka.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shakalaka.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/yama_tsukami.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/yama_tsukami.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/chameleos.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/chameleos.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/rusted_kushala_daora.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/rusted_kushala_daora.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/blango.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/blango.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/conga.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/conga.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/remobra.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/remobra.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/lunastra.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/lunastra.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/hermitaur.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/hermitaur.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shogun_ceanataur.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shogun_ceanataur.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/bulldrome.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/bulldrome.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/anteka.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/anteka.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/popo.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/popo.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/ceanataur.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/ceanataur.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/lavasioth.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/lavasioth.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/akantor.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/akantor.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/bright_hypnoc.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/bright_hypnoc.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/red_lavasioth.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/red_lavasioth.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/orange_espinas.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/orange_espinas.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/silver_hypnoc.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/silver_hypnoc.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/akura_jebia.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/akura_jebia.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/berukyurosu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/berukyurosu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/cactus.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/cactus.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/white_espinas.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/white_espinas.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kamu_orugaron.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/kamu_orugaron.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/nono_orugaron.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/nono_orugaron.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/raviente.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/raviente.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/dyuragaua.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/dyuragaua.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gurenzeburu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gurenzeburu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/burukku.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/burukku.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/erupe.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/erupe.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gogomoa.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gogomoa.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/abiorugu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/abiorugu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kuarusepusu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/kuarusepusu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/rebidiora.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/rebidiora.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/farunokku.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/farunokku.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/pokaradon.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/pokaradon.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/pokara.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/pokara.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/supremacy_goruganosu.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/goruganosu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/supremacy_aruganosu.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/aruganosu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zerureusu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zerureusu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gougarf.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gougarf.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/uruki.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/uruki.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/forokururu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/forokururu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/meraginasu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/meragniasu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/diorex.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/diorex.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/garuba_daora.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/garuba_daora.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/varusaburosu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/varusaburosu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/poborubarumu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/poborubarumu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/duremudira.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/duremudira.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gureadomosu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gureadomosu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/kusubami.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/kusubami.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/yama_kurai.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/yama_kurai.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/deviljho.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/deviljho.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/brachydios.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/brachydios.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/berserk_raviente.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/berserk_raviente.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/toa_tesukatora.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/toa_tesukatora.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/barioth.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/barioth.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/uragaan.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/uragaan.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/stygian_zinogre.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/stygian_zinogre.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/voljang.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/voljang.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/nargacuga.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/nargacuga.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/keoaruboru.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/keoaruboru.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenaserisu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenaserisu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gore_magala.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gore_magala.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/blinking_nargacuga.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/blinking_nargacuga.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shagaru_magala.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shagaru_magala.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/amatsu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/amatsu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/arrogant_duremudira.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/arrogant_duremudira.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/seregios.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/seregios.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_bogabadorumu.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_bogabadorumu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/blitzkrieg_bogabadorumu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/blitzkrieg_bogabadorumu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/sparkling_zerureusu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/sparkling_zerureusu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/pso2_rappy.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/pso2_rappy.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/king_shakalaka.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/king_shakalaka.png" },
// alternate
{ "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/conquest_fatalis.png" ,"https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/conquest_fatalis.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/fatalis.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/fatalis.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_rathalos.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_rathalos.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/rathalos.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/rathalos.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_khezu.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_khezu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/khezu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/khezu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_gravios.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_gravios.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gravios.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gravios.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_plesioth.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_plesioth.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/plesioth.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/plesioth.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/conquest_crimson_fatalis.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/conquest_crimson_fatalis.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/crimson_fatalis.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/crimson_fatalis.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_daimyo_hermitaur.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_daimyo_hermitaur.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/daimyo_hermitaur.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/daimyo_hermitaur.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_blangonga.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_blangonga.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/blangonga.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/blangonga.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/twinhead_rajang.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/hc_rajang.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/rajang.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/rajang.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/supremacy_teostra.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/supremacy_teostra.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/teostra.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/teostra.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/road_white_fatalis.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/road_white_fatalis.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/white_fatalis.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/white_fatalis.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_hypnoc.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_hypnoc.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/hypnoc.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/hypnoc.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_tigrex.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_tigrex.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/tigrex.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/tigrex.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_espinas.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_espinas.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/espinas.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/espinas.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_akura_vashimu.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_akura_vashimu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/akura_vashimu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/akura_vashimu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/thirsty_pariapuria.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/thirsty_pariapuria.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/pariapuria.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/pariapuria.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_doragyurosu.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_doragyurosu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/supremacy_doragyurosu.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/supremacy_doragyurosu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/doragyurosu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/doragyurosu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_rukodiora.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_rukodiora.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/rukodiora.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/rukodiora.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shiten_unknown.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shiten_unknown.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/unknown.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/unknown.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_taikun_zamuza.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_taikun_zamuza.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/taikun_zamuza.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/taikun_zamuza.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/supremacy_odibatorasu.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/supremacy_odibatorasu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/odibatorasu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/odibatorasu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shiten_disufiroa.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shiten_disufiroa.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/disufiroa.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/disufiroa.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_anorupatisu.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_anorupatisu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/anorupatisu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/anorupatisu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_hyujikiki.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_hyujikiki.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/hyujikiki.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/hyujikiki.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_midogaron.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_midogaron.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/midogaron.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/midogaron.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_giaorugu.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_giaorugu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/giaorugu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/giaorugu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shifting_mi_ru.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shifting_mi_ru.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/mi_ru.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/mi_ru.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/conquest_shantien.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shantien.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shantien.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shantien.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_baruragaru.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_baruragaru.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/baruragaru.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/baruragaru.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_inagami.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_inagami.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/inagami.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/inagami.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_harudomerugu.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_harudomerugu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/harudomerugu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/harudomerugu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_toridcless.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_toridcless.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/toridcless.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/toridcless.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_gasurabazura.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_gasurabazura.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gasurabazura.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gasurabazura.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/howling_zinogre.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/howling_zinogre.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zinogre.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zinogre.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/ruling_guanzorumu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/ruling_guanzorumu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/guanzorumu.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/guanzorumu.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/golden_deviljho.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/golden_deviljho.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/starving_deviljho.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/starving_deviljho.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/burning_freezing_elzelion.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/burning_freezing_elzelion.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/elzelion.png","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/elzelion.png" },
-
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/supremacy_pariapuria.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/thirsty_pariapuria.png" },
- { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/supremacy_unknown.gif","https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/supremacy_unknown.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/fatalis.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/fatalis.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_rathalos.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_rathalos.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/rathalos.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/rathalos.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_khezu.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_khezu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/khezu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/khezu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_gravios.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_gravios.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gravios.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gravios.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_plesioth.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_plesioth.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/plesioth.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/plesioth.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/conquest_crimson_fatalis.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/conquest_crimson_fatalis.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/crimson_fatalis.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/crimson_fatalis.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_daimyo_hermitaur.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_daimyo_hermitaur.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/daimyo_hermitaur.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/daimyo_hermitaur.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_blangonga.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_blangonga.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/blangonga.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/blangonga.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/twinhead_rajang.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/hc_rajang.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/rajang.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/rajang.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/supremacy_teostra.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/supremacy_teostra.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/teostra.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/teostra.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/road_white_fatalis.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/road_white_fatalis.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/white_fatalis.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/white_fatalis.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_hypnoc.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_hypnoc.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/hypnoc.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/hypnoc.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_tigrex.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_tigrex.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/tigrex.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/tigrex.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_espinas.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_espinas.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/espinas.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/espinas.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_akura_vashimu.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_akura_vashimu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/akura_vashimu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/akura_vashimu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/thirsty_pariapuria.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/thirsty_pariapuria.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/pariapuria.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/pariapuria.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_doragyurosu.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_doragyurosu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/supremacy_doragyurosu.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/supremacy_doragyurosu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/doragyurosu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/doragyurosu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_rukodiora.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_rukodiora.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/rukodiora.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/rukodiora.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shiten_unknown.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shiten_unknown.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/unknown.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/unknown.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_taikun_zamuza.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_taikun_zamuza.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/taikun_zamuza.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/taikun_zamuza.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/supremacy_odibatorasu.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/supremacy_odibatorasu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/odibatorasu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/odibatorasu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shiten_disufiroa.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shiten_disufiroa.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/disufiroa.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/disufiroa.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_anorupatisu.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_anorupatisu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/anorupatisu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/anorupatisu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_hyujikiki.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_hyujikiki.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/hyujikiki.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/hyujikiki.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_midogaron.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_midogaron.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/midogaron.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/midogaron.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_giaorugu.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_giaorugu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/giaorugu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/giaorugu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shifting_mi_ru.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shifting_mi_ru.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/mi_ru.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/mi_ru.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/conquest_shantien.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shantien.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/shantien.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/shantien.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_baruragaru.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_baruragaru.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/baruragaru.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/baruragaru.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_inagami.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_inagami.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/inagami.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/inagami.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_harudomerugu.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_harudomerugu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/harudomerugu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/harudomerugu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_toridcless.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_toridcless.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/toridcless.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/toridcless.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zenith_gasurabazura.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zenith_gasurabazura.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/gasurabazura.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/gasurabazura.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/howling_zinogre.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/howling_zinogre.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/zinogre.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/zinogre.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/ruling_guanzorumu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/ruling_guanzorumu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/guanzorumu.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/guanzorumu.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/golden_deviljho.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/golden_deviljho.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/starving_deviljho.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/starving_deviljho.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/burning_freezing_elzelion.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/burning_freezing_elzelion.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/elzelion.png", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/elzelion.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/supremacy_pariapuria.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/thirsty_pariapuria.png" },
+ { "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/supremacy_unknown.gif", "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/monster/render/supremacy_unknown.png" },
};
}
diff --git a/MHFZ_Overlay/Models/Mappers/PersonalBestsMapper.cs b/MHFZ_Overlay/Models/Mappers/PersonalBestsMapper.cs
index 64a00571..3a2b07a6 100644
--- a/MHFZ_Overlay/Models/Mappers/PersonalBestsMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/PersonalBestsMapper.cs
@@ -6,23 +6,27 @@ namespace MHFZ_Overlay.Models.Mappers;
using System;
-
public class PersonalBestsMapper
{
- public string WeaponType { get; set; }
- public long Attempts { get; set; }
- public DateTime CreatedAt { get; set; }
- public string ActualOverlayMode { get; set; }
- public long RunID { get; set; }
- public long TimeLeft { get; set; }
-
- public PersonalBestsMapper(string weaponType, long attempts, DateTime createdAt, string ActualOverlayMode, long runID, long timeLeft)
+ public PersonalBestsMapper(string weaponType, long attempts, DateTime createdAt, string actualOverlayMode, long runID, long timeLeft)
{
this.WeaponType = weaponType;
this.Attempts = attempts;
this.CreatedAt = createdAt;
- this.ActualOverlayMode = ActualOverlayMode;
+ this.ActualOverlayMode = actualOverlayMode;
this.RunID = runID;
this.TimeLeft = timeLeft;
}
+
+ public string WeaponType { get; set; }
+
+ public long Attempts { get; set; }
+
+ public DateTime CreatedAt { get; set; }
+
+ public string ActualOverlayMode { get; set; }
+
+ public long RunID { get; set; }
+
+ public long TimeLeft { get; set; }
}
diff --git a/MHFZ_Overlay/Models/Mappers/PlayersMapper.cs b/MHFZ_Overlay/Models/Mappers/PlayersMapper.cs
index 4192b01f..4f261c0b 100644
--- a/MHFZ_Overlay/Models/Mappers/PlayersMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/PlayersMapper.cs
@@ -16,8 +16,9 @@ public static class PlayersList
public static IReadOnlyDictionary> PlayerIDs { get; } = new Dictionary>
{
// No Player
- { 0, new List{ DateTime.UnixEpoch.Date.ToString(CultureInfo.InvariantCulture), "None","NoGuild","0","Unknown","Japan" } },
+ { 0, new List{ DateTime.UnixEpoch.Date.ToString(CultureInfo.InvariantCulture), "None", "NoGuild", "0", "Unknown", "Japan" } },
+
// Local Player
- { 1, new List{ DateTime.UtcNow.Date.ToString(CultureInfo.InvariantCulture), "HunterName","GuildName","0","Unknown","Japan" } },
+ { 1, new List{ DateTime.UtcNow.Date.ToString(CultureInfo.InvariantCulture), "HunterName", "GuildName","0", "Unknown", "Japan" } },
};
-};
+}
diff --git a/MHFZ_Overlay/Models/Mappers/WeaponIconsMapper.cs b/MHFZ_Overlay/Models/Mappers/WeaponIconsMapper.cs
index 5b0842f0..d77c0a02 100644
--- a/MHFZ_Overlay/Models/Mappers/WeaponIconsMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/WeaponIconsMapper.cs
@@ -13,7 +13,6 @@ public static class WeaponIcons
{
public static IReadOnlyDictionary WeaponIconID { get; } = new Dictionary
{
-
{ 0, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/weapon/gs.png" },
{ 1, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/weapon/hbg.png" },
{ 2, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/weapon/hammer.png" },
@@ -29,5 +28,4 @@ public static class WeaponIcons
{ 12, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/weapon/saf.png" },
{ 13, "https://raw.githubusercontent.com/DorielRivalet/mhfz-overlay/main/img/weapon/ms.png" },
};
-
-};
+}
diff --git a/MHFZ_Overlay/Models/Mappers/WeaponUsageMapper.cs b/MHFZ_Overlay/Models/Mappers/WeaponUsageMapper.cs
index ca058f5b..ddae0b76 100644
--- a/MHFZ_Overlay/Models/Mappers/WeaponUsageMapper.cs
+++ b/MHFZ_Overlay/Models/Mappers/WeaponUsageMapper.cs
@@ -6,16 +6,16 @@ namespace MHFZ_Overlay.Models.Mappers;
public class WeaponUsageMapper
{
- public string WeaponType { get; set; }
-
- public string Style { get; set; }
-
- public long RunCount { get; set; }
-
public WeaponUsageMapper(string weaponType, string style, int runCount)
{
this.WeaponType = weaponType;
this.Style = style;
this.RunCount = runCount;
}
+
+ public string WeaponType { get; set; }
+
+ public string Style { get; set; }
+
+ public long RunCount { get; set; }
}
diff --git a/MHFZ_Overlay/Models/Monster/MonsterInfo.cs b/MHFZ_Overlay/Models/Monster/MonsterInfo.cs
index 22ae6548..f214706a 100644
--- a/MHFZ_Overlay/Models/Monster/MonsterInfo.cs
+++ b/MHFZ_Overlay/Models/Monster/MonsterInfo.cs
@@ -12,6 +12,13 @@ namespace MHFZ_Overlay.Models.Monster;
///
public class MonsterInfo
{
+ public MonsterInfo(string name, string feriaslink, Dictionary matchups, string wikilink)
+ {
+ this.Name = name;
+ this.FeriasLink = feriaslink;
+ this.WeaponMatchups = matchups;
+ this.WikiLink = wikilink;
+ }
public string Name { get; set; }
@@ -20,12 +27,4 @@ public class MonsterInfo
public string WikiLink { get; set; }
public string FeriasLink { get; set; }
-
- public MonsterInfo(string name, string feriaslink, Dictionary matchups, string wikilink)
- {
- Name = name;
- FeriasLink = feriaslink;
- WeaponMatchups = matchups;
- WikiLink = wikilink;
- }
}
diff --git a/MHFZ_Overlay/Models/Monster/MonsterLog.cs b/MHFZ_Overlay/Models/Monster/MonsterLog.cs
index 91cab460..2d402b16 100644
--- a/MHFZ_Overlay/Models/Monster/MonsterLog.cs
+++ b/MHFZ_Overlay/Models/Monster/MonsterLog.cs
@@ -9,6 +9,14 @@ namespace MHFZ_Overlay.Models.Monster;
///
public class MonsterLog
{
+ public MonsterLog(int id, string name, string image, int hunted, bool islarge = false)
+ {
+ this.ID = id;
+ this.Name = name;
+ this.MonsterImage = image;
+ this.Hunted = hunted;
+ this.IsLarge = islarge;
+ }
public string Name { get; set; }
@@ -19,14 +27,4 @@ public class MonsterLog
public bool IsLarge { get; set; }
public string MonsterImage { get; set; }
-
- public MonsterLog(int id, string name, string image, int hunted, bool islarge = false)
- {
- ID = id;
- Name = name;
- MonsterImage = image;
- Hunted = hunted;
- IsLarge = islarge;
- }
-
}
diff --git a/MHFZ_Overlay/Models/MonsterInfoList.cs b/MHFZ_Overlay/Models/MonsterInfoList.cs
index aaed6a06..f9035d5f 100644
--- a/MHFZ_Overlay/Models/MonsterInfoList.cs
+++ b/MHFZ_Overlay/Models/MonsterInfoList.cs
@@ -13,1805 +13,2025 @@ namespace MHFZ_Overlay.Models;
///
public static class MonsterInfoList
{
- private static string RickRoll = string.Empty;
+ private static string rickRoll = string.Empty;
public static IReadOnlyList MonsterInfoIDs { get; } = new List
{
- new MonsterInfo("[Musou] Arrogant Duremudira",
+ new MonsterInfo(
+ "[Musou] Arrogant Duremudira",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/dolem_n.htm",
new Dictionary()
{
- { "Sword and Shield","https://www.youtube.com/embed/jqaUPZ8DVfw" },
- { "Dual Swords","https://www.youtube.com/embed/qa6LfcOr_S0" },
- { "Great Sword","https://www.youtube.com/embed/MQit-3HZLhM" },
- { "Long Sword","https://www.youtube.com/embed/8letGMGpjbU" },
- { "Hammer","https://www.youtube.com/embed/Z2OwUAWROio" },
- { "Hunting Horn","" },
- { "Lance","https://www.youtube.com/embed/laa4x-V_qrQ" },
- { "Gunlance","https://www.youtube.com/embed/68WK1F69fMo" },
- { "Tonfa","https://www.youtube.com/embed/ry1faWMTdtQ" },
- { "Switch Axe F","https://www.youtube.com/embed/HV8qzOGYEoM" },
- { "Magnet Spike","https://www.youtube.com/embed/0Av3vuNs1pA" },
- { "Light Bowgun","https://www.youtube.com/embed/aWsO7pdp8OU" },
- { "Heavy Bowgun","" },
- { "Bow","https://www.youtube.com/embed/9UVFdkZT6SQ" },
- },
- "https://monsterhunter.fandom.com/wiki/Arrogant_Duremudira"
- ),
-
- new MonsterInfo("[Musou] Blinking Nargacuga",
+ { "Sword and Shield", "https://www.youtube.com/embed/jqaUPZ8DVfw" },
+ { "Dual Swords", "https://www.youtube.com/embed/qa6LfcOr_S0" },
+ { "Great Sword", "https://www.youtube.com/embed/MQit-3HZLhM" },
+ { "Long Sword", "https://www.youtube.com/embed/8letGMGpjbU" },
+ { "Hammer", "https://www.youtube.com/embed/Z2OwUAWROio" },
+ { "Hunting Horn", string.Empty },
+ { "Lance", "https://www.youtube.com/embed/laa4x-V_qrQ" },
+ { "Gunlance", "https://www.youtube.com/embed/68WK1F69fMo" },
+ { "Tonfa", "https://www.youtube.com/embed/ry1faWMTdtQ" },
+ { "Switch Axe F", "https://www.youtube.com/embed/HV8qzOGYEoM" },
+ { "Magnet Spike", "https://www.youtube.com/embed/0Av3vuNs1pA" },
+ { "Light Bowgun", "https://www.youtube.com/embed/aWsO7pdp8OU" },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", "https://www.youtube.com/embed/9UVFdkZT6SQ" },
+ },
+ "https://monsterhunter.fandom.com/wiki/Arrogant_Duremudira"),
+
+ new MonsterInfo(
+ "[Musou] Blinking Nargacuga",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/nalgaK_n.htm",
new Dictionary()
{
- { "Sword and Shield","https://www.youtube.com/embed/baWvEuLLwxk" },
- { "Dual Swords","https://www.youtube.com/embed/dlBMmEwCO6k" },
- { "Great Sword","https://www.youtube.com/embed/MA46kDZpDEs" },
- { "Long Sword","https://www.youtube.com/embed/qHCVjd0Ov7E" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","https://www.youtube.com/embed/TwWPTcuwK4o" },
- { "Gunlance","https://www.youtube.com/embed/IQRRyzkUSew" },
- { "Tonfa","https://www.youtube.com/embed/Q1bnA9LnWlU" },
- { "Switch Axe F","https://www.youtube.com/embed/n6SdO7Cpugg" },
- { "Magnet Spike","https://www.youtube.com/embed/n6SdO7Cpugg" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","https://www.youtube.com/embed/pXPh2uqvFD8" },
- },
- "https://monsterhunter.fandom.com/wiki/Blinking_Nargacuga"
- ),
-
- new MonsterInfo("[Musou] Blitzkrieg Bogabadorumu",
+ { "Sword and Shield", "https://www.youtube.com/embed/baWvEuLLwxk" },
+ { "Dual Swords", "https://www.youtube.com/embed/dlBMmEwCO6k" },
+ { "Great Sword", "https://www.youtube.com/embed/MA46kDZpDEs" },
+ { "Long Sword", "https://www.youtube.com/embed/qHCVjd0Ov7E" },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", "https://www.youtube.com/embed/TwWPTcuwK4o" },
+ { "Gunlance", "https://www.youtube.com/embed/IQRRyzkUSew" },
+ { "Tonfa", "https://www.youtube.com/embed/Q1bnA9LnWlU" },
+ { "Switch Axe F", "https://www.youtube.com/embed/n6SdO7Cpugg" },
+ { "Magnet Spike", "https://www.youtube.com/embed/n6SdO7Cpugg" },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", "https://www.youtube.com/embed/pXPh2uqvFD8" },
+ },
+ "https://monsterhunter.fandom.com/wiki/Blinking_Nargacuga"),
+
+ new MonsterInfo(
+ "[Musou] Blitzkrieg Bogabadorumu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/bogaK_n.htm",
new Dictionary()
{
- { "Sword and Shield","https://youtube.com/embed/ak1o6N06V6U" },
- { "Dual Swords","https://youtube.com/embed/XAIvnGBVIp8" },
- { "Great Sword","https://youtube.com/embed/huULgUrupPM" },
- { "Long Sword","https://youtube.com/embed/X49Z85BCVIk" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","https://youtube.com/embed/kL1Zkhoa9eg" },
- { "Gunlance","https://youtube.com/embed/Lc3fS_010Ws" },
- { "Tonfa","https://youtube.com/embed/SyVWewqI1nw" },
- { "Switch Axe F","https://youtube.com/embed/LXaYqpRonrk" },
- { "Magnet Spike","https://www.youtube.com/embed/60UlLymak2k" },
- { "Light Bowgun","https://www.youtube.com/embed/_D5UqIjNm4Q" },
- { "Heavy Bowgun","" },
- { "Bow","https://www.youtube.com/embed/3aHSjPo90Vc" },
- },
- "https://monsterhunter.fandom.com/wiki/Bombardier_Bogabadorumu"
- ),
-
- new MonsterInfo("[Musou] Burning Freezing Elzelion",
+ { "Sword and Shield", "https://youtube.com/embed/ak1o6N06V6U" },
+ { "Dual Swords", "https://youtube.com/embed/XAIvnGBVIp8" },
+ { "Great Sword", "https://youtube.com/embed/huULgUrupPM" },
+ { "Long Sword", "https://youtube.com/embed/X49Z85BCVIk" },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", "https://youtube.com/embed/kL1Zkhoa9eg" },
+ { "Gunlance", "https://youtube.com/embed/Lc3fS_010Ws" },
+ { "Tonfa", "https://youtube.com/embed/SyVWewqI1nw" },
+ { "Switch Axe F", "https://youtube.com/embed/LXaYqpRonrk" },
+ { "Magnet Spike", "https://www.youtube.com/embed/60UlLymak2k" },
+ { "Light Bowgun", "https://www.youtube.com/embed/_D5UqIjNm4Q" },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", "https://www.youtube.com/embed/3aHSjPo90Vc" },
+ },
+ "https://monsterhunter.fandom.com/wiki/Bombardier_Bogabadorumu"),
+
+ new MonsterInfo(
+ "[Musou] Burning Freezing Elzelion",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/elze_n.htm",
new Dictionary()
{
- { "Sword and Shield","https://www.youtube.com/embed/RAdft8GHKvU" },
- { "Dual Swords","https://www.youtube.com/embed/X6F2uywrZiE" },
- { "Great Sword","https://www.youtube.com/embed/lN-4yfgd9y0" },
- { "Long Sword","https://www.youtube.com/embed/5EC60bXCUZ8" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","https://www.youtube.com/embed/vXkz-JgDWJQ" },
- { "Gunlance","https://www.youtube.com/embed/KxNao8p8eYw" },
- { "Tonfa","https://www.youtube.com/embed/4TmtciKAJyg" },
- { "Switch Axe F","https://www.youtube.com/embed/H5e7TYB1B9A" },
- { "Magnet Spike","https://www.youtube.com/embed/n27VlF1r894" },
- { "Light Bowgun","https://www.youtube.com/embed/lWZaWexqzxE" },
- { "Heavy Bowgun","https://www.youtube.com/embed/yGLLnEDVZoY" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Burning_Freezing_Eruzerion"
- ),
-
+ { "Sword and Shield", "https://www.youtube.com/embed/RAdft8GHKvU" },
+ { "Dual Swords", "https://www.youtube.com/embed/X6F2uywrZiE" },
+ { "Great Sword", "https://www.youtube.com/embed/lN-4yfgd9y0" },
+ { "Long Sword", "https://www.youtube.com/embed/5EC60bXCUZ8" },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", "https://www.youtube.com/embed/vXkz-JgDWJQ" },
+ { "Gunlance", "https://www.youtube.com/embed/KxNao8p8eYw" },
+ { "Tonfa", "https://www.youtube.com/embed/4TmtciKAJyg" },
+ { "Switch Axe F", "https://www.youtube.com/embed/H5e7TYB1B9A" },
+ { "Magnet Spike", "https://www.youtube.com/embed/n27VlF1r894" },
+ { "Light Bowgun", "https://www.youtube.com/embed/lWZaWexqzxE" },
+ { "Heavy Bowgun", "https://www.youtube.com/embed/yGLLnEDVZoY" },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Burning_Freezing_Eruzerion"),
- new MonsterInfo("[Musou] Howling Zinogre",
+ new MonsterInfo(
+ "[Musou] Howling Zinogre",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/zin_ng.htm",
new Dictionary()
{
- { "Sword and Shield","https://www.youtube.com/embed/wc8lCUg0pko" },
- { "Dual Swords","https://www.youtube.com/embed/QOK1Kg5fzHk" },
- { "Great Sword","https://www.youtube.com/embed/sjBwjTN1VVg" },
- { "Long Sword","https://www.youtube.com/embed/C5eJ4wk9fYk" },
- { "Hammer","https://www.youtube.com/embed/R1rpbYzrCnQ" },
- { "Hunting Horn","https://www.youtube.com/embed/8GRK_r4al_Y" },
- { "Lance","https://www.youtube.com/embed/fii-JAZACQM" },
- { "Gunlance","https://www.youtube.com/embed/hawNX97Xp28" },
- { "Tonfa","https://www.youtube.com/embed/I8BbYtfJZdI" },
- { "Switch Axe F","https://www.youtube.com/embed/Dg9xQkCzqmo" },
- { "Magnet Spike","https://www.youtube.com/embed/bUpRnWAlpUw" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","https://www.youtube.com/embed/GqMh_KUJx4E" },
- },
- "https://monsterhunter.fandom.com/wiki/Howling_Zinogre"
- ),
-
- new MonsterInfo("[Musou] Ruling Guanzorumu",
+ { "Sword and Shield", "https://www.youtube.com/embed/wc8lCUg0pko" },
+ { "Dual Swords", "https://www.youtube.com/embed/QOK1Kg5fzHk" },
+ { "Great Sword", "https://www.youtube.com/embed/sjBwjTN1VVg" },
+ { "Long Sword", "https://www.youtube.com/embed/C5eJ4wk9fYk" },
+ { "Hammer", "https://www.youtube.com/embed/R1rpbYzrCnQ" },
+ { "Hunting Horn", "https://www.youtube.com/embed/8GRK_r4al_Y" },
+ { "Lance", "https://www.youtube.com/embed/fii-JAZACQM" },
+ { "Gunlance", "https://www.youtube.com/embed/hawNX97Xp28" },
+ { "Tonfa", "https://www.youtube.com/embed/I8BbYtfJZdI" },
+ { "Switch Axe F", "https://www.youtube.com/embed/Dg9xQkCzqmo" },
+ { "Magnet Spike", "https://www.youtube.com/embed/bUpRnWAlpUw" },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", "https://www.youtube.com/embed/GqMh_KUJx4E" },
+ },
+ "https://monsterhunter.fandom.com/wiki/Howling_Zinogre"),
+
+ new MonsterInfo(
+ "[Musou] Ruling Guanzorumu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/guan_ng.htm",
new Dictionary()
{
- { "Sword and Shield","https://www.youtube.com/embed/UzLiZrO9CDE" },
- { "Dual Swords","https://www.youtube.com/embed/vMfgFOYoO3Q" },
- { "Great Sword","https://www.youtube.com/embed/3OUgl9HnTUQ" },
- { "Long Sword","https://www.youtube.com/embed/8OhtxYRlTIg" },
- { "Hammer","" },
- { "Hunting Horn","https://www.youtube.com/embed/DPX1MMBNojc" },
- { "Lance","" },
- { "Gunlance","https://www.youtube.com/embed/m4tZGBrdZWo" },
- { "Tonfa","https://www.youtube.com/embed/r7kPtv2v_m0" },
- { "Switch Axe F","https://www.youtube.com/embed/YNxAe0emonY" },
- { "Magnet Spike","https://www.youtube.com/embed/ZrGuUhbS06M" },
- { "Light Bowgun","https://www.youtube.com/embed/YjPCAW2VVcE" },
- { "Heavy Bowgun","https://www.youtube.com/embed/S5UYDotONl0" },
- { "Bow","https://www.youtube.com/embed/DXjkOqzyll8" },
- },
- "https://monsterhunter.fandom.com/wiki/Ruler_Guanzorumu"
- ),
-
- new MonsterInfo("[Musou] Shifting Mi Ru",
+ { "Sword and Shield", "https://www.youtube.com/embed/UzLiZrO9CDE" },
+ { "Dual Swords", "https://www.youtube.com/embed/vMfgFOYoO3Q" },
+ { "Great Sword", "https://www.youtube.com/embed/3OUgl9HnTUQ" },
+ { "Long Sword", "https://www.youtube.com/embed/8OhtxYRlTIg" },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", "https://www.youtube.com/embed/DPX1MMBNojc" },
+ { "Lance", string.Empty },
+ { "Gunlance", "https://www.youtube.com/embed/m4tZGBrdZWo" },
+ { "Tonfa", "https://www.youtube.com/embed/r7kPtv2v_m0" },
+ { "Switch Axe F", "https://www.youtube.com/embed/YNxAe0emonY" },
+ { "Magnet Spike", "https://www.youtube.com/embed/ZrGuUhbS06M" },
+ { "Light Bowgun", "https://www.youtube.com/embed/YjPCAW2VVcE" },
+ { "Heavy Bowgun", "https://www.youtube.com/embed/S5UYDotONl0" },
+ { "Bow", "https://www.youtube.com/embed/DXjkOqzyll8" },
+ },
+ "https://monsterhunter.fandom.com/wiki/Ruler_Guanzorumu"),
+
+ new MonsterInfo(
+ "[Musou] Shifting Mi Ru",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/mi-ru_n.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","https://www.youtube.com/embed/V8YpNhcqJdE" },
- { "Great Sword","https://www.youtube.com/embed/7FwFQgJdumc" },
- { "Long Sword","https://www.youtube.com/embed/DpXkiVAvxYs" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","https://www.youtube.com/embed/4KbAyc9PElo" },
- { "Switch Axe F","https://www.youtube.com/embed/FyfYV8uuR9Q" },
- { "Magnet Spike","https://www.youtube.com/embed/ZP-IYyGhzu0" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","https://www.youtube.com/embed/6UPpgA1V2n8" },
- },
- "https://monsterhunter.fandom.com/wiki/Mysterious_Mi_Ru"
- ),
-
- new MonsterInfo("[Musou] Sparkling Zerureusu",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", "https://www.youtube.com/embed/V8YpNhcqJdE" },
+ { "Great Sword", "https://www.youtube.com/embed/7FwFQgJdumc" },
+ { "Long Sword", "https://www.youtube.com/embed/DpXkiVAvxYs" },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", "https://www.youtube.com/embed/4KbAyc9PElo" },
+ { "Switch Axe F", "https://www.youtube.com/embed/FyfYV8uuR9Q" },
+ { "Magnet Spike", "https://www.youtube.com/embed/ZP-IYyGhzu0" },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", "https://www.youtube.com/embed/6UPpgA1V2n8" },
+ },
+ "https://monsterhunter.fandom.com/wiki/Mysterious_Mi_Ru"),
+
+ new MonsterInfo(
+ "[Musou] Sparkling Zerureusu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/zeruK_n.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","https://www.youtube.com/embed/kTIjBZtjZvk" },
- { "Great Sword","https://www.youtube.com/embed/J49O7mh3Zyo" },
- { "Long Sword","https://www.youtube.com/embed/fTdHHEkZ6ho" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","https://www.youtube.com/embed/xRsJPgvGeLo" },
- { "Gunlance","https://www.youtube.com/embed/mMmweo6r5_Y" },
- { "Tonfa","https://www.youtube.com/embed/Tog0m5RnMzg" },
- { "Switch Axe F","https://www.youtube.com/embed/QJSEa9tle4U" },
- { "Magnet Spike","https://www.youtube.com/embed/xCSTBXjhE_4" },
- { "Light Bowgun","https://www.youtube.com/embed/Amg_AoLuabw" },
- { "Heavy Bowgun","" },
- { "Bow","https://www.youtube.com/embed/w3tjb5NNHQA" },
- },
- "https://monsterhunter.fandom.com/wiki/Sparkling_Zerureusu"
- ),
-
- new MonsterInfo("[Musou] Starving Deviljho",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", "https://www.youtube.com/embed/kTIjBZtjZvk" },
+ { "Great Sword", "https://www.youtube.com/embed/J49O7mh3Zyo" },
+ { "Long Sword", "https://www.youtube.com/embed/fTdHHEkZ6ho" },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", "https://www.youtube.com/embed/xRsJPgvGeLo" },
+ { "Gunlance", "https://www.youtube.com/embed/mMmweo6r5_Y" },
+ { "Tonfa", "https://www.youtube.com/embed/Tog0m5RnMzg" },
+ { "Switch Axe F", "https://www.youtube.com/embed/QJSEa9tle4U" },
+ { "Magnet Spike", "https://www.youtube.com/embed/xCSTBXjhE_4" },
+ { "Light Bowgun", "https://www.youtube.com/embed/Amg_AoLuabw" },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", "https://www.youtube.com/embed/w3tjb5NNHQA" },
+ },
+ "https://monsterhunter.fandom.com/wiki/Sparkling_Zerureusu"),
+
+ new MonsterInfo(
+ "[Musou] Starving Deviljho",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/joeK_n.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","https://www.youtube.com/embed/RMiSqvbCaPA" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","https://www.youtube.com/embed/9jOg_zTG0X8" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Starving_Deviljho"
- ),
-
- new MonsterInfo("[Musou] Thirsty Pariapuria",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", "https://www.youtube.com/embed/RMiSqvbCaPA" },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", "https://www.youtube.com/embed/9jOg_zTG0X8" },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Starving_Deviljho"),
+
+ new MonsterInfo(
+ "[Musou] Thirsty Pariapuria",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/paria_ng.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","https://www.youtube.com/embed/_B6E8ijgFis" },
- { "Great Sword","https://www.youtube.com/embed/ySVMaA0LdiM" },
- { "Long Sword","https://www.youtube.com/embed/TGyS7w7dbuc" },
- { "Hammer","https://www.youtube.com/embed/onsSrWl1kfE" },
- { "Hunting Horn","https://www.youtube.com/embed/M_j4qp9efYs" },
- { "Lance","https://www.youtube.com/embed/TkriXHXyMWw" },
- { "Gunlance","" },
- { "Tonfa","https://www.youtube.com/embed/wVdgUosZvZc" },
- { "Switch Axe F","https://www.youtube.com/embed/55Wfapp4eDI" },
- { "Magnet Spike","https://www.youtube.com/embed/myyS3hL7XT0" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","https://www.youtube.com/embed/5kZF5LIWT3A" },
- { "Bow","https://www.youtube.com/embed/Y3YY1v4afJA" },
- },
- "https://monsterhunter.fandom.com/wiki/Thirsty_Pariapuria"
- ),
-
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", "https://www.youtube.com/embed/_B6E8ijgFis" },
+ { "Great Sword", "https://www.youtube.com/embed/ySVMaA0LdiM" },
+ { "Long Sword", "https://www.youtube.com/embed/TGyS7w7dbuc" },
+ { "Hammer", "https://www.youtube.com/embed/onsSrWl1kfE" },
+ { "Hunting Horn", "https://www.youtube.com/embed/M_j4qp9efYs" },
+ { "Lance", "https://www.youtube.com/embed/TkriXHXyMWw" },
+ { "Gunlance", string.Empty },
+ { "Tonfa", "https://www.youtube.com/embed/wVdgUosZvZc" },
+ { "Switch Axe F", "https://www.youtube.com/embed/55Wfapp4eDI" },
+ { "Magnet Spike", "https://www.youtube.com/embed/myyS3hL7XT0" },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", "https://www.youtube.com/embed/5kZF5LIWT3A" },
+ { "Bow", "https://www.youtube.com/embed/Y3YY1v4afJA" },
+ },
+ "https://monsterhunter.fandom.com/wiki/Thirsty_Pariapuria"),
- new MonsterInfo("Zenith Akura Vashimu",
+ new MonsterInfo(
+ "Zenith Akura Vashimu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/aqura_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Akura_Vashimu"
- ),
- new MonsterInfo("Zenith Anorupatisu",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Akura_Vashimu"),
+
+ new MonsterInfo(
+ "Zenith Anorupatisu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/anolu_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Anorupatisu"
- ),
- new MonsterInfo("Zenith Baruragaru",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Anorupatisu"),
+
+ new MonsterInfo(
+ "Zenith Baruragaru",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/bal_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Baruragaru"
- ),
- new MonsterInfo("Zenith Blangonga",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Baruragaru"),
+
+ new MonsterInfo(
+ "Zenith Blangonga",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/dodobura_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Blangonga"
- ),
- new MonsterInfo("Zenith Daimyo Hermitaur",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Blangonga"),
+
+ new MonsterInfo(
+ "Zenith Daimyo Hermitaur",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/daimyo_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Daimyo_Hermitaur"
- ),
- new MonsterInfo("Zenith Doragyurosu",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Daimyo_Hermitaur"),
+
+ new MonsterInfo(
+ "Zenith Doragyurosu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/doragyu_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Doragyurosu"
- ),
-
- new MonsterInfo("Zenith Espinas",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Doragyurosu"),
+
+ new MonsterInfo(
+ "Zenith Espinas",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/esp_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Espinas"
- ),
- new MonsterInfo("Zenith Gasurabazura",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Espinas"),
+
+ new MonsterInfo(
+ "Zenith Gasurabazura",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/gasra_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Gasurabazura"
- ),
- new MonsterInfo("Zenith Giaorugu",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Gasurabazura"),
+
+ new MonsterInfo(
+ "Zenith Giaorugu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/giao_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Giaorugu"
- ),
- new MonsterInfo("Zenith Gravios",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Giaorugu"),
+
+ new MonsterInfo(
+ "Zenith Gravios",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/gura_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Gravios"
- ),
-
- new MonsterInfo("Zenith Harudomerugu",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Gravios"),
+
+ new MonsterInfo(
+ "Zenith Harudomerugu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/hald_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Harudomerugu"
- ),
- new MonsterInfo("Zenith Hypnoc",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Harudomerugu"),
+
+ new MonsterInfo(
+ "Zenith Hypnoc",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/hipu_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Hypnocatrice"
- ),
- new MonsterInfo("Zenith Hyujikiki",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Hypnocatrice"),
+
+ new MonsterInfo(
+ "Zenith Hyujikiki",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/hyuji_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Hyujikiki"
- ),
- new MonsterInfo("Zenith Inagami",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Hyujikiki"),
+
+ new MonsterInfo(
+ "Zenith Inagami",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/ina_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Inagami"
- ),
- new MonsterInfo("Zenith Khezu",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Inagami"),
+
+ new MonsterInfo(
+ "Zenith Khezu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/furu_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Khezu"
- ),
-
- new MonsterInfo("Zenith Midogaron",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Khezu"),
+
+ new MonsterInfo(
+ "Zenith Midogaron",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/mido_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Midogaron"
- ),
-
- new MonsterInfo("Zenith Plesioth",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Midogaron"),
+
+ new MonsterInfo(
+ "Zenith Plesioth",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/gano_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Plesioth"
- ),
- new MonsterInfo("Zenith Rathalos",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Plesioth"),
+
+ new MonsterInfo(
+ "Zenith Rathalos",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/reusu_ni.htm",
new Dictionary()
{
- { "Sword and Shield","https://www.youtube.com/embed/pGqYN1ks5AQ" },
- { "Dual Swords","" },
- { "Great Sword","https://www.youtube.com/embed/LQra_886zSA" },
- { "Long Sword","https://www.youtube.com/embed/2rKIOjUx1wU" },
- { "Hammer","https://www.youtube.com/embed/Dmmr6rrRkXg" },
- { "Hunting Horn","https://www.youtube.com/embed/cKe1_xqLGm8" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","https://www.youtube.com/embed/Xt96sulv-Wc" },
- { "Switch Axe F","https://www.youtube.com/embed/mI2WKvwVKXU" },
- { "Magnet Spike","https://www.youtube.com/embed/gQT9DiO7BJ4" },
- { "Light Bowgun","https://www.youtube.com/embed/R9kK5AmjcHk" },
- { "Heavy Bowgun","" },
- { "Bow","https://www.youtube.com/embed/bsQ-skmpe4Q" },
- },
- "https://monsterhunter.fandom.com/wiki/Rathalos"
- ),
- new MonsterInfo("Zenith Rukodiora",
+ { "Sword and Shield", "https://www.youtube.com/embed/pGqYN1ks5AQ" },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", "https://www.youtube.com/embed/LQra_886zSA" },
+ { "Long Sword", "https://www.youtube.com/embed/2rKIOjUx1wU" },
+ { "Hammer", "https://www.youtube.com/embed/Dmmr6rrRkXg" },
+ { "Hunting Horn", "https://www.youtube.com/embed/cKe1_xqLGm8" },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", "https://www.youtube.com/embed/Xt96sulv-Wc" },
+ { "Switch Axe F", "https://www.youtube.com/embed/mI2WKvwVKXU" },
+ { "Magnet Spike", "https://www.youtube.com/embed/gQT9DiO7BJ4" },
+ { "Light Bowgun", "https://www.youtube.com/embed/R9kK5AmjcHk" },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", "https://www.youtube.com/embed/bsQ-skmpe4Q" },
+ },
+ "https://monsterhunter.fandom.com/wiki/Rathalos"),
+
+ new MonsterInfo(
+ "Zenith Rukodiora",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/ruco_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Rukodiora"
- ),
- new MonsterInfo("Zenith Taikun Zamuza",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Rukodiora"),
+
+ new MonsterInfo(
+ "Zenith Taikun Zamuza",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/taikun_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Taikun_Zamuza"
- ),
- new MonsterInfo("Zenith Tigrex",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Taikun_Zamuza"),
+
+ new MonsterInfo(
+ "Zenith Tigrex",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/tiga_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Tigrex"
- ),
- new MonsterInfo("Zenith Toridcless",
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Tigrex"),
+
+ new MonsterInfo(
+ "Zenith Toridcless",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/torid_ni.htm",
new Dictionary()
{
- { "Sword and Shield","" },
- { "Dual Swords","" },
- { "Great Sword","" },
- { "Long Sword","" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","" },
- { "Gunlance","" },
- { "Tonfa","" },
- { "Switch Axe F","" },
- { "Magnet Spike","" },
- { "Light Bowgun","" },
- { "Heavy Bowgun","" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Zenith_Toridcless"
- ),
+ { "Sword and Shield", string.Empty },
+ { "Dual Swords", string.Empty },
+ { "Great Sword", string.Empty },
+ { "Long Sword", string.Empty },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", string.Empty },
+ { "Gunlance", string.Empty },
+ { "Tonfa", string.Empty },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", string.Empty },
+ { "Light Bowgun", string.Empty },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Zenith_Toridcless"),
-
- new MonsterInfo("1st District Duremudira",
+ new MonsterInfo(
+ "1st District Duremudira",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/dolem1_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Duremudira"
- ), new MonsterInfo("2nd District Duremudira",
+ "https://monsterhunter.fandom.com/wiki/Duremudira"),
+
+ new MonsterInfo(
+ "2nd District Duremudira",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/dolem2_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Duremudira"
- ), new MonsterInfo("Abiorugu",
+ "https://monsterhunter.fandom.com/wiki/Duremudira"),
+
+ new MonsterInfo(
+ "Abiorugu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/abio_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Abiorugu"
- ), new MonsterInfo("Akantor",
+ "https://monsterhunter.fandom.com/wiki/Abiorugu"),
+ new MonsterInfo(
+ "Akantor",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/akamu_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Akantor"
- ), new MonsterInfo("Akura Jebia",
+ "https://monsterhunter.fandom.com/wiki/Akantor"),
+
+ new MonsterInfo(
+ "Akura Jebia",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/aquraj_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Akura_Jebia"
- ), new MonsterInfo("Akura Vashimu",
+ "https://monsterhunter.fandom.com/wiki/Akura_Jebia"),
+ new MonsterInfo(
+ "Akura Vashimu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/aqura_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Akura_Vashimu"
- ), new MonsterInfo("Amatsu",
+ "https://monsterhunter.fandom.com/wiki/Akura_Vashimu"),
+
+ new MonsterInfo(
+ "Amatsu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/amatsu_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Amatsu"
- ), new MonsterInfo("Anorupatisu",
+ "https://monsterhunter.fandom.com/wiki/Amatsu"),
+
+ new MonsterInfo(
+ "Anorupatisu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/anolu_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Anorupatisu"
- ), new MonsterInfo("Anteka",
+ "https://monsterhunter.fandom.com/wiki/Anorupatisu"),
+
+ new MonsterInfo(
+ "Anteka",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/gau_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Anteka"
- ), new MonsterInfo("Apceros",
+ "https://monsterhunter.fandom.com/wiki/Anteka"),
+
+ new MonsterInfo(
+ "Apceros",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/apuke_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Apceros"
- ), new MonsterInfo("Aptonoth",
+ "https://monsterhunter.fandom.com/wiki/Apceros"),
+
+ new MonsterInfo(
+ "Aptonoth",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/apono_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Aptonoth"
- ), new MonsterInfo("Aruganosu",
+ "https://monsterhunter.fandom.com/wiki/Aptonoth"),
+
+ new MonsterInfo(
+ "Aruganosu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/volgin_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Aruganosu"
- ), new MonsterInfo("Ashen Lao-Shan Lung",
+ "https://monsterhunter.fandom.com/wiki/Aruganosu"),
+
+ new MonsterInfo(
+ "Ashen Lao-Shan Lung",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/raoao_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Ashen_Lao-Shan_Lung"
- ), new MonsterInfo("Azure Rathalos",
+ "https://monsterhunter.fandom.com/wiki/Ashen_Lao-Shan_Lung"),
+
+ new MonsterInfo(
+ "Azure Rathalos",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/reusuao_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Azure_Rathalos"
- ), new MonsterInfo("Barioth",
+ "https://monsterhunter.fandom.com/wiki/Azure_Rathalos"),
+
+ new MonsterInfo(
+ "Barioth",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/berio_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Barioth"
- ), new MonsterInfo("Baruragaru",
+ "https://monsterhunter.fandom.com/wiki/Barioth"),
+
+ new MonsterInfo(
+ "Baruragaru",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/bal_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Baruragaru"
- ),
- new MonsterInfo("Basarios",
+ "https://monsterhunter.fandom.com/wiki/Baruragaru"),
+
+ new MonsterInfo(
+ "Basarios",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/basa_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Basarios"
- ),new MonsterInfo("Berserk Raviente",
+ "https://monsterhunter.fandom.com/wiki/Basarios"),
+
+ new MonsterInfo(
+ "Berserk Raviente",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/lavieG_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Berserk_Raviente"
- ),new MonsterInfo("Berukyurosu",
+ "https://monsterhunter.fandom.com/wiki/Berserk_Raviente"),
+
+ new MonsterInfo(
+ "Berukyurosu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/beru_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Berukyurosu"
- ),new MonsterInfo("Black Diablos",
+ "https://monsterhunter.fandom.com/wiki/Berukyurosu"),
+
+ new MonsterInfo(
+ "Black Diablos",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/deakuro_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Black_Diablos"
- ),new MonsterInfo("Black Gravios",
+ "https://monsterhunter.fandom.com/wiki/Black_Diablos"),
+
+ new MonsterInfo(
+ "Black Gravios",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/gurakuro_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Black_Gravios"
- ),new MonsterInfo("Blango",
+ "https://monsterhunter.fandom.com/wiki/Black_Gravios"),
+
+ new MonsterInfo(
+ "Blango",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/bura_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Blango"
- ),new MonsterInfo("Blangonga",
+ "https://monsterhunter.fandom.com/wiki/Blango"),
+
+ new MonsterInfo(
+ "Blangonga",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/dodobura_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Blangonga"
- ),new MonsterInfo("Blue Yian Kut-Ku",
+ "https://monsterhunter.fandom.com/wiki/Blangonga"),
+
+ new MonsterInfo(
+ "Blue Yian Kut-Ku",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/kukkuao_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Blue_Yian_Kut-Ku"
- ),new MonsterInfo("Bogabadorumu",
+ "https://monsterhunter.fandom.com/wiki/Blue_Yian_Kut-Ku"),
+
+ new MonsterInfo(
+ "Bogabadorumu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/boga_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Bogabadorumu"
- ),new MonsterInfo("Brachydios",
+ "https://monsterhunter.fandom.com/wiki/Bogabadorumu"),
+
+ new MonsterInfo(
+ "Brachydios",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/buraki_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Brachydios"
- ),new MonsterInfo("Bright Hypnoc",
+ "https://monsterhunter.fandom.com/wiki/Brachydios"),
+
+ new MonsterInfo(
+ "Bright Hypnoc",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/hipuao_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Breeding_Season_Hypnocatrice"
- ),new MonsterInfo("Bulldrome",
+ "https://monsterhunter.fandom.com/wiki/Breeding_Season_Hypnocatrice"),
+
+ new MonsterInfo(
+ "Bulldrome",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/dosburu_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Bulldrome"
- ),new MonsterInfo("Bullfango",
+ "https://monsterhunter.fandom.com/wiki/Bulldrome"),
+
+ new MonsterInfo(
+ "Bullfango",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/buru_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Bullfango"
- ),new MonsterInfo("Burukku",
+ "https://monsterhunter.fandom.com/wiki/Bullfango"),
+
+ new MonsterInfo(
+ "Burukku",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/brook_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Burukku"
- ),new MonsterInfo("Ceanataur",
+ "https://monsterhunter.fandom.com/wiki/Burukku"),
+
+ new MonsterInfo(
+ "Ceanataur",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/yao_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Ceanataur"
- ),new MonsterInfo("Cephadrome",
+ "https://monsterhunter.fandom.com/wiki/Ceanataur"),
+
+ new MonsterInfo(
+ "Cephadrome",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/dosgare_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Cephadrome"
- ),new MonsterInfo("Cephalos",
+ "https://monsterhunter.fandom.com/wiki/Cephadrome"),
+
+ new MonsterInfo(
+ "Cephalos",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/gare_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Cephalos"
- ),new MonsterInfo("Chameleos",
+ "https://monsterhunter.fandom.com/wiki/Cephalos"),
+
+ new MonsterInfo(
+ "Chameleos",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/oo_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Chameleos"
- ),new MonsterInfo("Conga",
+ "https://monsterhunter.fandom.com/wiki/Chameleos"),
+
+ new MonsterInfo(
+ "Conga",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/konga_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Conga"
- ),new MonsterInfo("Congalala",
+ "https://monsterhunter.fandom.com/wiki/Conga"),
+
+ new MonsterInfo(
+ "Congalala",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/babakonga_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Congalala"
- ),new MonsterInfo("Crimson Fatalis",
+ "https://monsterhunter.fandom.com/wiki/Congalala"),
+
+ new MonsterInfo(
+ "Crimson Fatalis",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/miraval_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Crimson_Fatalis"
- ),new MonsterInfo("Daimyo Hermitaur",
+ "https://monsterhunter.fandom.com/wiki/Crimson_Fatalis"),
+
+ new MonsterInfo(
+ "Daimyo Hermitaur",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/daimyo_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Daimyo_Hermitaur"
- ),new MonsterInfo("Deviljho",
+ "https://monsterhunter.fandom.com/wiki/Daimyo_Hermitaur"),
+
+ new MonsterInfo(
+ "Deviljho",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/joe_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Deviljho"
- ),new MonsterInfo("Diablos",
+ "https://monsterhunter.fandom.com/wiki/Deviljho"),
+
+ new MonsterInfo(
+ "Diablos",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/dea_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Diablos"
- ),new MonsterInfo("Diorex",
+ "https://monsterhunter.fandom.com/wiki/Diablos"),
+
+ new MonsterInfo(
+ "Diorex",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/dio_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Diorekkusu"
- ),new MonsterInfo("Disufiroa",
+ "https://monsterhunter.fandom.com/wiki/Diorekkusu"),
+
+ new MonsterInfo(
+ "Disufiroa",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/disf_n.htm",
new Dictionary()
{
- { "Sword and Shield","https://www.youtube.com/embed/leNWg4HoAbQ" },
- { "Dual Swords","https://www.youtube.com/embed/obcm9-ebei8" },
- { "Great Sword","https://www.youtube.com/embed/obcm9-ebei8" },
- { "Long Sword","https://www.youtube.com/embed/3dJR6YqTZcM" },
- { "Hammer","" },
- { "Hunting Horn","" },
- { "Lance","https://www.youtube.com/embed/TTj9T6Tskcg" },
- { "Gunlance","https://www.youtube.com/embed/wgR1Bf-kApo" },
- { "Tonfa","https://www.youtube.com/embed/1sjynMO0CJk" },
- { "Switch Axe F","" },
- { "Magnet Spike","https://www.youtube.com/embed/FYS_yi7EQmA" },
- { "Light Bowgun","https://www.youtube.com/embed/TPR4nYlWFgY" },
- { "Heavy Bowgun","https://www.youtube.com/embed/MHf2R504_xc" },
- { "Bow","" },
- },
- "https://monsterhunter.fandom.com/wiki/Disufiroa"
- ),new MonsterInfo("Doragyurosu",
+ { "Sword and Shield", "https://www.youtube.com/embed/leNWg4HoAbQ" },
+ { "Dual Swords", "https://www.youtube.com/embed/obcm9-ebei8" },
+ { "Great Sword", "https://www.youtube.com/embed/obcm9-ebei8" },
+ { "Long Sword", "https://www.youtube.com/embed/3dJR6YqTZcM" },
+ { "Hammer", string.Empty },
+ { "Hunting Horn", string.Empty },
+ { "Lance", "https://www.youtube.com/embed/TTj9T6Tskcg" },
+ { "Gunlance", "https://www.youtube.com/embed/wgR1Bf-kApo" },
+ { "Tonfa", "https://www.youtube.com/embed/1sjynMO0CJk" },
+ { "Switch Axe F", string.Empty },
+ { "Magnet Spike", "https://www.youtube.com/embed/FYS_yi7EQmA" },
+ { "Light Bowgun", "https://www.youtube.com/embed/TPR4nYlWFgY" },
+ { "Heavy Bowgun", "https://www.youtube.com/embed/MHf2R504_xc" },
+ { "Bow", string.Empty },
+ },
+ "https://monsterhunter.fandom.com/wiki/Disufiroa"),
+
+ new MonsterInfo(
+ "Doragyurosu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/doragyu_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Doragyurosu"
- ),new MonsterInfo("Dyuragaua",
+ "https://monsterhunter.fandom.com/wiki/Doragyurosu"),
+
+ new MonsterInfo(
+ "Dyuragaua",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/dura_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Dyuragaua"
- ),new MonsterInfo("Egyurasu",
+ "https://monsterhunter.fandom.com/wiki/Dyuragaua"),
+
+ new MonsterInfo(
+ "Egyurasu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/egura_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Egyurasu"
- ),new MonsterInfo("Elzelion",
+ "https://monsterhunter.fandom.com/wiki/Egyurasu"),
+
+ new MonsterInfo(
+ "Elzelion",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/elze_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Eruzerion"
- ),new MonsterInfo("Erupe",
+ "https://monsterhunter.fandom.com/wiki/Eruzerion"),
+
+ new MonsterInfo(
+ "Erupe",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/erupe_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Erupe"
- ),new MonsterInfo("Espinas",
+ "https://monsterhunter.fandom.com/wiki/Erupe"),
+
+ new MonsterInfo(
+ "Espinas",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/esp_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Espinas"
- ),new MonsterInfo("Farunokku",
+ "https://monsterhunter.fandom.com/wiki/Espinas"),
+
+ new MonsterInfo(
+ "Farunokku",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/faru_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Farunokku"
- ),new MonsterInfo("Fatalis",
+ "https://monsterhunter.fandom.com/wiki/Farunokku"),
+
+ new MonsterInfo(
+ "Fatalis",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/mira_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Fatalis"
- ),new MonsterInfo("Felyne",
+ "https://monsterhunter.fandom.com/wiki/Fatalis"),
+
+ new MonsterInfo(
+ "Felyne",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/airu_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Felyne"
- ),new MonsterInfo("Forokururu",
+ "https://monsterhunter.fandom.com/wiki/Felyne"),
+
+ new MonsterInfo(
+ "Forokururu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/folo_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Forokururu"
- ),new MonsterInfo("Garuba Daora",
+ "https://monsterhunter.fandom.com/wiki/Forokururu"),
+
+ new MonsterInfo(
+ "Garuba Daora",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/galba_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Garuba_Daora"
- ),new MonsterInfo("Gasurabazura",
+ "https://monsterhunter.fandom.com/wiki/Garuba_Daora"),
+
+ new MonsterInfo(
+ "Gasurabazura",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/gasra_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Gasurabazura"
- ),new MonsterInfo("Gendrome",
+ "https://monsterhunter.fandom.com/wiki/Gasurabazura"),
+
+ new MonsterInfo(
+ "Gendrome",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/dosgene_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Gendrome"
- ),new MonsterInfo("Genprey",
+ "https://monsterhunter.fandom.com/wiki/Gendrome"),
+
+ new MonsterInfo(
+ "Genprey",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/gene_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Genprey"
- ),new MonsterInfo("Giaorugu",
+ "https://monsterhunter.fandom.com/wiki/Genprey"),
+
+ new MonsterInfo(
+ "Giaorugu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/giao_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Giaorugu"
- ),new MonsterInfo("Giaprey",
+ "https://monsterhunter.fandom.com/wiki/Giaorugu"),
+ new MonsterInfo(
+ "Giaprey",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/giano_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Giaprey"
- ),new MonsterInfo("Gogomoa",
+ "https://monsterhunter.fandom.com/wiki/Giaprey"),
+ new MonsterInfo(
+ "Gogomoa",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/gogo_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Gogomoa"
- ),new MonsterInfo("Gold Rathian",
+ "https://monsterhunter.fandom.com/wiki/Gogomoa"),
+ new MonsterInfo(
+ "Gold Rathian",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/reiakin_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Gold_Rathian"
- ),new MonsterInfo("Gore Magala",
+ "https://monsterhunter.fandom.com/wiki/Gold_Rathian"),
+ new MonsterInfo(
+ "Gore Magala",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/goa_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Gore_Magala"
- ),new MonsterInfo("Goruganosu",
+ "https://monsterhunter.fandom.com/wiki/Gore_Magala"),
+ new MonsterInfo(
+ "Goruganosu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/volkin_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Goruganosu"
- ),new MonsterInfo("Gougarf, Ray",
+ "https://monsterhunter.fandom.com/wiki/Goruganosu"),
+ new MonsterInfo(
+ "Gougarf, Ray",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/goglf_r_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Ray_Gougarf"
- ),new MonsterInfo("Gougarf, Lolo",
+ "https://monsterhunter.fandom.com/wiki/Ray_Gougarf"),
+ new MonsterInfo(
+ "Gougarf, Lolo",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/goglf_l_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Lolo_Gougarf"
- ),new MonsterInfo("Gravios",
+ "https://monsterhunter.fandom.com/wiki/Lolo_Gougarf"),
+ new MonsterInfo(
+ "Gravios",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/gura_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Gravios"
- ),new MonsterInfo("Great Thunderbug",
+ "https://monsterhunter.fandom.com/wiki/Gravios"),
+ new MonsterInfo(
+ "Great Thunderbug",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/raikou_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Great_Thunderbug"
- ),new MonsterInfo("Green Plesioth",
+ "https://monsterhunter.fandom.com/wiki/Great_Thunderbug"),
+ new MonsterInfo(
+ "Green Plesioth",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/ganomidori_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Green_Plesioth"
- ),new MonsterInfo("Guanzorumu",
+ "https://monsterhunter.fandom.com/wiki/Green_Plesioth"),
+ new MonsterInfo(
+ "Guanzorumu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/guan_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Guanzorumu"
- ),new MonsterInfo("Gureadomosu",
+ "https://monsterhunter.fandom.com/wiki/Guanzorumu"),
+ new MonsterInfo(
+ "Gureadomosu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/glare_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Gureadomosu"
- ),new MonsterInfo("Gurenzeburu",
+ "https://monsterhunter.fandom.com/wiki/Gureadomosu"),
+ new MonsterInfo(
+ "Gurenzeburu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/guren_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Gurenzeburu"
- ),new MonsterInfo("Gypceros",
+ "https://monsterhunter.fandom.com/wiki/Gurenzeburu"),
+ new MonsterInfo(
+ "Gypceros",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/geryo_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Gypceros"
- ),new MonsterInfo("Harudomerugu",
+ "https://monsterhunter.fandom.com/wiki/Gypceros"),
+ new MonsterInfo(
+ "Harudomerugu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/hald_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Harudomerugu"
- ),new MonsterInfo("Hermitaur",
+ "https://monsterhunter.fandom.com/wiki/Harudomerugu"),
+ new MonsterInfo(
+ "Hermitaur",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/gami_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Hermitaur"
- ),new MonsterInfo("Hornetaur",
+ "https://monsterhunter.fandom.com/wiki/Hermitaur"),
+ new MonsterInfo(
+ "Hornetaur",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/kanta_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Hornetaur"
- ),new MonsterInfo("Hypnoc",
+ "https://monsterhunter.fandom.com/wiki/Hornetaur"),
+ new MonsterInfo(
+ "Hypnoc",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/hipu_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Hypnocatrice"
- ),new MonsterInfo("Hyujikiki",
+ "https://monsterhunter.fandom.com/wiki/Hypnocatrice"),
+ new MonsterInfo(
+ "Hyujikiki",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/hyuji_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Hyujikiki"
- ),new MonsterInfo("Inagami",
+ "https://monsterhunter.fandom.com/wiki/Hyujikiki"),
+ new MonsterInfo(
+ "Inagami",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/ina_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Inagami"
- ),new MonsterInfo("Iodrome",
+ "https://monsterhunter.fandom.com/wiki/Inagami"),
+ new MonsterInfo(
+ "Iodrome",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/dosios_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Iodrome"
- ),new MonsterInfo("Ioprey",
+ "https://monsterhunter.fandom.com/wiki/Iodrome"),
+ new MonsterInfo(
+ "Ioprey",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/ios_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Ioprey"
- ),new MonsterInfo("Kamu Orugaron",
+ "https://monsterhunter.fandom.com/wiki/Ioprey"),
+ new MonsterInfo(
+ "Kamu Orugaron",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/olgk_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Kamu_Orugaron"
- ),new MonsterInfo("Kelbi",
+ "https://monsterhunter.fandom.com/wiki/Kamu_Orugaron"),
+ new MonsterInfo(
+ "Kelbi",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/kerubi_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Kelbi"
- ),new MonsterInfo("Keoaruboru",
+ "https://monsterhunter.fandom.com/wiki/Kelbi"),
+ new MonsterInfo(
+ "Keoaruboru",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/keoa_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Keoaruboru"
- ),new MonsterInfo("Khezu",
+ "https://monsterhunter.fandom.com/wiki/Keoaruboru"),
+ new MonsterInfo(
+ "Khezu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/furu_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Khezu"
- ),new MonsterInfo("King Shakalaka",
+ "https://monsterhunter.fandom.com/wiki/Khezu"),
+ new MonsterInfo(
+ "King Shakalaka",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/cyacyaKing_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/King_Shakalaka"
- ),new MonsterInfo("Kirin",
+ "https://monsterhunter.fandom.com/wiki/King_Shakalaka"),
+ new MonsterInfo(
+ "Kirin",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/kirin_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Kirin"
- ),new MonsterInfo("Kokomoa",
+ "https://monsterhunter.fandom.com/wiki/Kirin"),
+ new MonsterInfo(
+ "Kokomoa",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/koko_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Gogomoa"
- ),new MonsterInfo("Kuarusepusu",
+ "https://monsterhunter.fandom.com/wiki/Gogomoa"),
+ new MonsterInfo(
+ "Kuarusepusu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/qual_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Kuarusepusu"
- ),new MonsterInfo("Kushala Daora",
+ "https://monsterhunter.fandom.com/wiki/Kuarusepusu"),
+ new MonsterInfo(
+ "Kushala Daora",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/kusha_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Kushala_Daora"
- ),new MonsterInfo("Kusubami",
+ "https://monsterhunter.fandom.com/wiki/Kushala_Daora"),
+ new MonsterInfo(
+ "Kusubami",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/kusb_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Kusubami"
- ),new MonsterInfo("Lao-Shan Lung",
+ "https://monsterhunter.fandom.com/wiki/Kusubami"),
+ new MonsterInfo(
+ "Lao-Shan Lung",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/rao_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Lao-Shan_Lung"
- ),new MonsterInfo("Lavasioth",
+ "https://monsterhunter.fandom.com/wiki/Lao-Shan_Lung"),
+ new MonsterInfo(
+ "Lavasioth",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/vol_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Lavasioth"
- ),new MonsterInfo("Lunastra",
+ "https://monsterhunter.fandom.com/wiki/Lavasioth"),
+ new MonsterInfo(
+ "Lunastra",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/nana_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Lunastra"
- ),new MonsterInfo("Melynx",
+ "https://monsterhunter.fandom.com/wiki/Lunastra"),
+ new MonsterInfo(
+ "Melynx",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/merura_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Melynx"
- ),new MonsterInfo("Meraginasu",
+ "https://monsterhunter.fandom.com/wiki/Melynx"),
+ new MonsterInfo(
+ "Meraginasu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/mera_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Meraginasu"
- ),new MonsterInfo("Mi Ru",
+ "https://monsterhunter.fandom.com/wiki/Meraginasu"),
+ new MonsterInfo(
+ "Mi Ru",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/mi-ru_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Mi_Ru"
- ),new MonsterInfo("Midogaron",
+ "https://monsterhunter.fandom.com/wiki/Mi_Ru"),
+ new MonsterInfo(
+ "Midogaron",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/mido_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Midogaron"
- ),new MonsterInfo("Monoblos",
+ "https://monsterhunter.fandom.com/wiki/Midogaron"),
+ new MonsterInfo(
+ "Monoblos",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/mono_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Monoblos"
- ),new MonsterInfo("Mosswine",
+ "https://monsterhunter.fandom.com/wiki/Monoblos"),
+ new MonsterInfo(
+ "Mosswine",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/mos_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Mosswine"
- ),new MonsterInfo("Nargacuga",
+ "https://monsterhunter.fandom.com/wiki/Mosswine"),
+ new MonsterInfo(
+ "Nargacuga",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/nalga_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Nargacuga"
- ),new MonsterInfo("Nono Orugaron",
+ "https://monsterhunter.fandom.com/wiki/Nargacuga"),
+ new MonsterInfo(
+ "Nono Orugaron",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/olgn_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Nono_Orugaron"
- ),new MonsterInfo("Odibatorasu",
+ "https://monsterhunter.fandom.com/wiki/Nono_Orugaron"),
+ new MonsterInfo(
+ "Odibatorasu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/odiva_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Odibatorasu"
- ),new MonsterInfo("Orange Espinas",
+ "https://monsterhunter.fandom.com/wiki/Odibatorasu"),
+ new MonsterInfo(
+ "Orange Espinas",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/espcya_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Flaming_Espinas"
- ),new MonsterInfo("Pariapuria",
+ "https://monsterhunter.fandom.com/wiki/Flaming_Espinas"),
+ new MonsterInfo(
+ "Pariapuria",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/paria_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Pariapuria"
- ),new MonsterInfo("Pink Rathian",
+ "https://monsterhunter.fandom.com/wiki/Pariapuria"),
+ new MonsterInfo(
+ "Pink Rathian",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/reiasa_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Pink_Rathian"
- ),new MonsterInfo("Plesioth",
+ "https://monsterhunter.fandom.com/wiki/Pink_Rathian"),
+ new MonsterInfo(
+ "Plesioth",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/gano_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Plesioth"
- ),new MonsterInfo("Poborubarumu",
+ "https://monsterhunter.fandom.com/wiki/Plesioth"),
+ new MonsterInfo(
+ "Poborubarumu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/pobol_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Poborubarumu"
- ),new MonsterInfo("Pokara",
+ "https://monsterhunter.fandom.com/wiki/Poborubarumu"),
+ new MonsterInfo(
+ "Pokara",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/pokara_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Pokara"
- ),new MonsterInfo("Pokaradon",
+ "https://monsterhunter.fandom.com/wiki/Pokara"),
+ new MonsterInfo(
+ "Pokaradon",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/pokaradon_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Pokaradon"
- ),new MonsterInfo("Popo",
+ "https://monsterhunter.fandom.com/wiki/Pokaradon"),
+ new MonsterInfo(
+ "Popo",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/popo_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Popo"
- ),new MonsterInfo("PSO2 Rappy",
+ "https://monsterhunter.fandom.com/wiki/Popo"),
+ new MonsterInfo(
+ "PSO2 Rappy",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/lappy_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- RickRoll
- ),new MonsterInfo("Purple Gypceros",
+ rickRoll),
+ new MonsterInfo(
+ "Purple Gypceros",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/geryoao_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Purple_Gypceros"
- ),new MonsterInfo("Rajang",
+ "https://monsterhunter.fandom.com/wiki/Purple_Gypceros"),
+ new MonsterInfo(
+ "Rajang",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/ra_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Rajang"
- ),new MonsterInfo("Rathalos",
+ "https://monsterhunter.fandom.com/wiki/Rajang"),
+ new MonsterInfo(
+ "Rathalos",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/reusu_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Rathalos"
- ),new MonsterInfo("Rathian",
+ "https://monsterhunter.fandom.com/wiki/Rathalos"),
+ new MonsterInfo(
+ "Rathian",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/reia_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Rathian"
- ),new MonsterInfo("Raviente",
+ "https://monsterhunter.fandom.com/wiki/Rathian"),
+ new MonsterInfo(
+ "Raviente",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/lavie_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Raviente"
- ),new MonsterInfo("Rebidiora",
+ "https://monsterhunter.fandom.com/wiki/Raviente"),
+ new MonsterInfo(
+ "Rebidiora",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/levy_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Rebidiora"
- ),new MonsterInfo("Red Khezu",
+ "https://monsterhunter.fandom.com/wiki/Rebidiora"),
+ new MonsterInfo(
+ "Red Khezu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/furuaka_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Red_Khezu"
- ),new MonsterInfo("Red Lavasioth",
+ "https://monsterhunter.fandom.com/wiki/Red_Khezu"),
+ new MonsterInfo(
+ "Red Lavasioth",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/volaka_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Red_Volganos"
- ),new MonsterInfo("Remobra",
+ "https://monsterhunter.fandom.com/wiki/Red_Volganos"),
+ new MonsterInfo(
+ "Remobra",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/gabu_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Remobra"
- ),new MonsterInfo("Rocks",
+ "https://monsterhunter.fandom.com/wiki/Remobra"),
+ new MonsterInfo(
+ "Rocks",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/iwa_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- RickRoll
- ),new MonsterInfo("Rukodiora",
+ rickRoll),
+ new MonsterInfo(
+ "Rukodiora",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/ruco_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Rukodiora"
- ),new MonsterInfo("Rusted Kushala Daora",
+ "https://monsterhunter.fandom.com/wiki/Rukodiora"),
+ new MonsterInfo(
+ "Rusted Kushala Daora",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/kushasabi_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Rusted_Kushala_Daora"
- ),new MonsterInfo("Seregios",
+ "https://monsterhunter.fandom.com/wiki/Rusted_Kushala_Daora"),
+ new MonsterInfo(
+ "Seregios",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/sell_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Seregios"
- ),new MonsterInfo("Shagaru Magala",
+ "https://monsterhunter.fandom.com/wiki/Seregios"),
+ new MonsterInfo(
+ "Shagaru Magala",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/shagal_nh.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Shagaru_Magala"
- ),new MonsterInfo("Shakalaka",
+ "https://monsterhunter.fandom.com/wiki/Shagaru_Magala"),
+ new MonsterInfo(
+ "Shakalaka",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/cyacya_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Shakalaka"
- ),new MonsterInfo("Shantien",
+ "https://monsterhunter.fandom.com/wiki/Shakalaka"),
+ new MonsterInfo(
+ "Shantien",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/shan_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Shantien"
- ),new MonsterInfo("Shen Gaoren",
+ "https://monsterhunter.fandom.com/wiki/Shantien"),
+ new MonsterInfo(
+ "Shen Gaoren",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/shen_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Rathian"
- ),new MonsterInfo("Shogun Ceanataur",
+ "https://monsterhunter.fandom.com/wiki/Rathian"),
+ new MonsterInfo(
+ "Shogun Ceanataur",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/syougun_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Shogun_Ceanataur"
- ),new MonsterInfo("Silver Hypnoc",
+ "https://monsterhunter.fandom.com/wiki/Shogun_Ceanataur"),
+ new MonsterInfo(
+ "Silver Hypnoc",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/hipusiro_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Silver_Hypnocatrice"
- ),new MonsterInfo("Silver Rathalos",
+ "https://monsterhunter.fandom.com/wiki/Silver_Hypnocatrice"),
+ new MonsterInfo(
+ "Silver Rathalos",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/reusugin_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Silver_Rathalos"
- ),new MonsterInfo("Stygian Zinogre",
+ "https://monsterhunter.fandom.com/wiki/Silver_Rathalos"),
+ new MonsterInfo(
+ "Stygian Zinogre",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/zingoku_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Stygian_Zinogre"
- ),new MonsterInfo("Taikun Zamuza",
+ "https://monsterhunter.fandom.com/wiki/Stygian_Zinogre"),
+ new MonsterInfo(
+ "Taikun Zamuza",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/taikun_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Taikun_Zamuza"
- ),new MonsterInfo("Teostra",
+ "https://monsterhunter.fandom.com/wiki/Taikun_Zamuza"),
+ new MonsterInfo(
+ "Teostra",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/teo_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Teostra"
- ),new MonsterInfo("Tigrex",
+ "https://monsterhunter.fandom.com/wiki/Teostra"),
+ new MonsterInfo(
+ "Tigrex",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/tiga_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Tigrex"
- ),new MonsterInfo("Toa Tesukatora",
+ "https://monsterhunter.fandom.com/wiki/Tigrex"),
+ new MonsterInfo(
+ "Toa Tesukatora",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/toa_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Toa_Tesukatora"
- ),new MonsterInfo("Toridcless",
+ "https://monsterhunter.fandom.com/wiki/Toa_Tesukatora"),
+ new MonsterInfo(
+ "Toridcless",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/torid_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Toridcless"
- ),new MonsterInfo("UNKNOWN",
+ "https://monsterhunter.fandom.com/wiki/Toridcless"),
+ new MonsterInfo(
+ "UNKNOWN",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/ra-ro_n.htm",
new Dictionary()
{
- { "Sword and Shield","https://www.youtube.com/embed/REF3OBNu4Wo" },
- { "Dual Swords","https://www.youtube.com/embed/fAremzgKfos" },
- { "Great Sword","https://www.youtube.com/embed/xX7KH0r68f4" },
- { "Long Sword","https://www.youtube.com/embed/6G8865fllSo" },
- { "Hammer","https://www.youtube.com/embed/A6pqZgrA-9o" },
- { "Hunting Horn","https://www.youtube.com/embed/-qMOOTOOnrw" },
- { "Lance","https://www.youtube.com/embed/m66unQSZzIc" },
- { "Gunlance","https://www.youtube.com/embed/yCz_sigKiGs" },
- { "Tonfa","https://www.youtube.com/embed/sj_jMp0T3Pc" },
- { "Switch Axe F","https://www.youtube.com/embed/hZvxtDsqSf4" },
- { "Magnet Spike","https://www.youtube.com/embed/FLmxy-xCoqM" },
- { "Light Bowgun","https://www.youtube.com/embed/xTvTlPkIp3w" },
- { "Heavy Bowgun","" },
- { "Bow","https://www.youtube.com/embed/gp48Gk-y_JY" },
- },
- "https://monsterhunter.fandom.com/wiki/Unknown_(Black_Flying_Wyvern)"
- ),new MonsterInfo("Uragaan",
+ { "Sword and Shield", "https://www.youtube.com/embed/REF3OBNu4Wo" },
+ { "Dual Swords", "https://www.youtube.com/embed/fAremzgKfos" },
+ { "Great Sword", "https://www.youtube.com/embed/xX7KH0r68f4" },
+ { "Long Sword", "https://www.youtube.com/embed/6G8865fllSo" },
+ { "Hammer", "https://www.youtube.com/embed/A6pqZgrA-9o" },
+ { "Hunting Horn", "https://www.youtube.com/embed/-qMOOTOOnrw" },
+ { "Lance", "https://www.youtube.com/embed/m66unQSZzIc" },
+ { "Gunlance", "https://www.youtube.com/embed/yCz_sigKiGs" },
+ { "Tonfa", "https://www.youtube.com/embed/sj_jMp0T3Pc" },
+ { "Switch Axe F", "https://www.youtube.com/embed/hZvxtDsqSf4" },
+ { "Magnet Spike", "https://www.youtube.com/embed/FLmxy-xCoqM" },
+ { "Light Bowgun", "https://www.youtube.com/embed/xTvTlPkIp3w" },
+ { "Heavy Bowgun", string.Empty },
+ { "Bow", "https://www.youtube.com/embed/gp48Gk-y_JY" },
+ },
+ "https://monsterhunter.fandom.com/wiki/Unknown_(Black_Flying_Wyvern)"),
+ new MonsterInfo(
+ "Uragaan",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/ura_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Uragaan"
- ),new MonsterInfo("Uruki",
+ "https://monsterhunter.fandom.com/wiki/Uragaan"),
+ new MonsterInfo(
+ "Uruki",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/ulky_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Uruki"
- ),new MonsterInfo("Varusaburosu",
+ "https://monsterhunter.fandom.com/wiki/Uruki"),
+ new MonsterInfo(
+ "Varusaburosu",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/valsa_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Varusaburosu"
- ),new MonsterInfo("Velocidrome",
+ "https://monsterhunter.fandom.com/wiki/Varusaburosu"),
+ new MonsterInfo(
+ "Velocidrome",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/dosran_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Velocidrome"
- ),new MonsterInfo("Velociprey",
+ "https://monsterhunter.fandom.com/wiki/Velocidrome"),
+ new MonsterInfo(
+ "Velociprey",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/ran_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Velociprey"
- ),new MonsterInfo("Vespoid",
+ "https://monsterhunter.fandom.com/wiki/Velociprey"),
+ new MonsterInfo(
+ "Vespoid",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/rango_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Vespoid"
- ),new MonsterInfo("Voljang",
+ "https://monsterhunter.fandom.com/wiki/Vespoid"),
+ new MonsterInfo(
+ "Voljang",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/Vau_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Voljang"
- ),new MonsterInfo("White Espinas",
+ "https://monsterhunter.fandom.com/wiki/Voljang"),
+ new MonsterInfo(
+ "White Espinas",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/espsiro_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Espinas_Rare_Species"
- ),new MonsterInfo("White Fatalis",
+ "https://monsterhunter.fandom.com/wiki/Espinas_Rare_Species"),
+ new MonsterInfo(
+ "White Fatalis",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/miraru_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/White_Fatalis"
- ),new MonsterInfo("White Monoblos",
+ "https://monsterhunter.fandom.com/wiki/White_Fatalis"),
+ new MonsterInfo(
+ "White Monoblos",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/monosiro_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/White_Monoblos"
- ),new MonsterInfo("Yama Kurai",
+ "https://monsterhunter.fandom.com/wiki/White_Monoblos"),
+ new MonsterInfo(
+ "Yama Kurai",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/yamac_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Yama_Kurai"
- ),new MonsterInfo("Yama Tsukami",
+ "https://monsterhunter.fandom.com/wiki/Yama_Kurai"),
+ new MonsterInfo(
+ "Yama Tsukami",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/yama_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Yama_Tsukami"
- ),new MonsterInfo("Yian Garuga",
+ "https://monsterhunter.fandom.com/wiki/Yama_Tsukami"),
+ new MonsterInfo(
+ "Yian Garuga",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/garuru_n.htm",
new Dictionary()
{
- { "","" },
+ { string.Empty,string.Empty },
},
- "https://monsterhunter.fandom.com/wiki/Yian_Garuga"
- ),new MonsterInfo("Yian Kut-Ku",
+ "https://monsterhunter.fandom.com/wiki/Yian_Garuga"),
+ new MonsterInfo(
+ "Yian Kut-Ku",
"https://dorielrivalet.github.io/mhfz-ferias-english-project/mons/kukku_n.htm",
new Dictionary