Skip to content

Commit

Permalink
fix: area name for house lv2
Browse files Browse the repository at this point in the history
  • Loading branch information
DorielRivalet committed Oct 10, 2022
1 parent a923bfe commit b7e1d94
Show file tree
Hide file tree
Showing 6 changed files with 671 additions and 6 deletions.
2 changes: 1 addition & 1 deletion MHFZ_Overlay/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@
<value>Male</value>
</setting>
<setting name="GouBoostExport" serializeAs="String">
<value>True</value>
<value>False</value>
</setting>
</MHFZ_Overlay.Settings>
</userSettings>
Expand Down
174 changes: 172 additions & 2 deletions MHFZ_Overlay/Dictionary.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1074,8 +1074,8 @@ public class MapAreaList
{170,"Broken" },
{171,"Broken" },
{172,"Broken" },
{173,"My House (original)" },
{174,"Broken" },
{173,"My House (Lv1)" },
{174,"My House (Lv2)" },
{175,"My House (MAX)" },//also house
{176,"Dundorma Fort 03" },
{177,"Dundorma Fort 02" },
Expand Down Expand Up @@ -2060,5 +2060,175 @@ public class ZenithSkillList
{51, "Ceaseless Up"},
{52, "Rush Up"},
};
};

///<summary>
///The SR skills list
///</summary>
public class StyleRankSkillList
{
public static Dictionary<int, string> StyleRankSkillID = new Dictionary<int, string>()
{
//Todo: number values (tfw no sr999)
{0, "Nothing"},
{1, ""},
{2, ""},
{3, ""},
{4, ""},
{5, ""},
{6, ""},
{7, ""},
{8, ""},
{9, ""},
{10, "Defense+110"},
{11, "Conquest Def+330"},
{12, "Conquest Atk+115"},
{13, "Passive Master"},
{14, "Soul Revival"},
{15, "Secret Tech"},
{16, "Sharpening Up"},
{17, "Max Sharpen"},
{18, ""},
{19, ""},
{20, ""},
{21, ""},
{22, "Def+10"},//idk
{23, "Def+20"},
{24, "Def+30"},
{25, "Def+40"},
{26, "Def+50"},
{27, "Def+60"},//start
{28, ""},
{29, ""},
{30, ""},
{31, "Def+100"},//after nosus
{32, "Def+110"},
{33, "Def+120"},//120. then 121,... (from bonus) (+10 from magnet spike)
{34, "Def+180"},
{35, ""},
{36, ""},
{37, ""},
{38, ""},
{39, ""},
{40, ""},
{41, ""},
{42, ""},
{43, ""},
{44, "Fire Res+15"},//start
{45, ""},//todo
{46, ""},
{47, ""},
{48, "Fire Res+20"},
{49, "Fire Res+22"},
{50, "Fire Res+24"},
{51, "Fire Res+35"},
{52, ""},
{53, ""},
{54, ""},
{55, ""},
{56, ""},
{57, ""},
{58, ""},
{59, ""},
{60, ""},
{61, "Water Res+15"},
{62, ""},
{63, ""},
{64, ""},
{65, "Water Res+20"},//after nosus
{66, "Water Res+22"},//todo
{67, "Water Res+24"},
{68, "Water Res+35"},
{69, ""},
{70, ""},
{71, ""},
{72, ""},
{73, ""},
{74, ""},
{75, ""},
{76, ""},
{77, ""},
{78, "Thunder Res+15"},//start
{79, ""},
{80, ""},
{81, ""},
{82, "Thunder Res+20"},
{83, "Thunder Res+22"},
{84, "Thunder Res+24"},
{85, "Thunder Res+35"},
{86, ""},
{87, ""},
{88, ""},
{89, ""},
{90, ""},
{91, ""},
{92, ""},
{93, ""},
{94, ""},
{95, "Ice Res+15"},
{96, ""},
{97, ""},
{98, ""},
{99, "Ice Res+20"},
{100, "Ice Res+22"},
{101, "Ice Res+24"},
{102, "Ice Res+35"},
{103, ""},
{104, ""},
{105, ""},
{106, ""},
{107, ""},
{108, ""},
{109, ""},
{110, ""},
{111, ""},
{112, "Dragon Res+15"},
{113, ""},
{114, ""},
{115, ""},
{116, "Dragon Res+20"},
{117, "Dragon Res+22"},
{118, "Dragon Res+24"},
{119, "Dragon Res+35"},
{120, ""},
{121, ""},
{122, ""},
{123, ""},
{124, "All Res+7"},
{125, "All Res+8"},//untested
{126, "All Res+9"},//untested
{127, "All Res+10"},//from 7 to 10
{128, "All Res+12"},
{129, "All Res+14"},
{130, ""},
{131, ""},
{132, ""},
{133, ""},
{134, ""},
{135, ""},
{136, ""},
{137, ""},
{138, ""},
{139, ""},
{140, ""},
{141, ""},
{142, ""},
{143, ""},
{144, ""},
{145, ""},
{146, ""},
{147, ""},
{148, ""},
{149, ""},
{150, ""},
{151, ""},
{152, ""},
{153, ""},
{154, ""},
{155, "Affinity+20"},//everything in this dictionary needs testing
{156, "Affinity+22"},
{157, "Affinity+24"},
{158, "Affinity+26"}
};
}
}
2 changes: 1 addition & 1 deletion MHFZ_Overlay/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MHFZ_Overlay/Settings.settings
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@
<Value Profile="(Default)">Male</Value>
</Setting>
<Setting Name="GouBoostExport" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
<Value Profile="(Default)">False</Value>
</Setting>
</Settings>
</SettingsFile>
Loading

0 comments on commit b7e1d94

Please sign in to comment.