forked from Imulion/MHFZ_Overlay
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c6416dc
commit 5640f0e
Showing
9 changed files
with
290 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
// © 2023 The mhfz-overlay developers. | ||
// Use of this source code is governed by a MIT license that can be | ||
// found in the LICENSE file. | ||
|
||
namespace MHFZ_Overlay.Models.Collections; | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.ObjectModel; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
public static class Challenges | ||
{ | ||
public static List<Challenge> ChallengeList { get; private set; } = new List<Challenge> | ||
{ | ||
{ | ||
new Challenge() | ||
{ | ||
Name = "Bingo", | ||
AchievementIDRequired = 214, // Zenny Galore | ||
AchievementsBronzeRequired = 10, | ||
AchievementsSilverRequired = 5, | ||
AchievementsGoldRequired = 1, | ||
AchievementsPlatinumRequired = 0, | ||
ChallengeDataTemplateKey = null, | ||
Description = "CURRENTLY UNAVAILABLE. You are presented with a variable sized grid depending on the bingo difficulty. In each grid is a monster icon which upon hunting marks the square as completed. Try to complete a fully diagonal, vertical or horizontal line in order to finish the game, and strive for the maximum bingo points!", | ||
} | ||
}, | ||
{ | ||
new Challenge() | ||
{ | ||
Name = "Gacha", | ||
AchievementIDRequired = 218, // Road Champion | ||
AchievementsBronzeRequired = 20, | ||
AchievementsSilverRequired = 10, | ||
AchievementsGoldRequired = 5, | ||
AchievementsPlatinumRequired = 1, | ||
ChallengeDataTemplateKey = null, | ||
Description = "CURRENTLY UNAVAILABLE. This is a minigame where you collect gacha cards and buy many sorts of upgrades with gacha coins (of the overlay) in order to help you get more cards! Can you get every single card?", | ||
} | ||
}, | ||
{ | ||
new Challenge() | ||
{ | ||
Name = "Zenith Gauntlet", | ||
AchievementIDRequired = 34, // Gasura nightmare | ||
AchievementsBronzeRequired = 50, | ||
AchievementsSilverRequired = 20, | ||
AchievementsGoldRequired = 10, | ||
AchievementsPlatinumRequired = 5, | ||
ChallengeDataTemplateKey = null, | ||
Description = "CURRENTLY UNAVAILABLE. A challenge only for the best of hunters. You have to hunt all 23 Zenith★4 monsters in any order you want, all in one go! Includes a real-time timer.", | ||
} | ||
}, | ||
{ | ||
new Challenge() | ||
{ | ||
Name = "Solstice Gauntlet", | ||
AchievementIDRequired = 319, // Bloodthirsty Moon | ||
AchievementsBronzeRequired = 60, | ||
AchievementsSilverRequired = 50, | ||
AchievementsGoldRequired = 20, | ||
AchievementsPlatinumRequired = 10, | ||
ChallengeDataTemplateKey = null, | ||
Description = "CURRENTLY UNAVAILABLE. A supreme challenge that tests the limits of even the most skilled hunters. This challenge demands the defeat of all Conquest Lv9999 and Upper Shiten monsters in a relentless, back-to-back confrontation. Only those who can conquer this formidable trial in one go shall earn the right to claim victory under the Bloodthirsty Moon.", | ||
} | ||
}, | ||
{ | ||
new Challenge() | ||
{ | ||
Name = "Musou Gauntlet", | ||
AchievementIDRequired = 317, // Elze bane | ||
AchievementsBronzeRequired = 70, | ||
AchievementsSilverRequired = 60, | ||
AchievementsGoldRequired = 50, | ||
AchievementsPlatinumRequired = 20, | ||
ChallengeDataTemplateKey = null, | ||
Description = "CURRENTLY UNAVAILABLE. Embark on a herculean trial that pushes hunters to the brink of their abilities. This challenge commands the defeat of all Musou monsters in an unyielding, consecutive battle. This merciless gauntlet demands more than mere strength; it calls for tactical finesse and the will to triumph against insurmountable odds. Only those who can surmount this grueling challenge shall earn the title of Unstoppable, showcasing their prowess to the world.", | ||
} | ||
}, | ||
}; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters