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
b76b8ce
commit d7f2527
Showing
13 changed files
with
706 additions
and
22 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
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,17 @@ | ||
// © 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; | ||
|
||
using System; | ||
|
||
// TODO: ORM | ||
public sealed class QuestsActiveFeature | ||
{ | ||
public long? QuestsActiveFeatureID { get; set; } | ||
|
||
public long? ActiveFeature { get; set; } | ||
|
||
public long? RunID { get; set; } | ||
} |
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,17 @@ | ||
// © 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; | ||
|
||
using System; | ||
|
||
// TODO: ORM | ||
public sealed class QuestsCourse | ||
{ | ||
public long? QuestsCourseID { get; set; } | ||
|
||
public long? Rights { get; set; } | ||
|
||
public long? RunID { get; set; } | ||
} |
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,23 @@ | ||
// © 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; | ||
|
||
using System; | ||
|
||
// TODO: ORM | ||
public sealed class QuestsDiva | ||
{ | ||
public long? QuestsDivaID { get; set; } | ||
public bool? DivaSongBuffOn { get; set; } | ||
public long? DivaPrayerGemRedSkill { get; set; } | ||
public long? DivaPrayerGemRedLevel { get; set; } | ||
public long? DivaPrayerGemYellowSkill { get; set; } | ||
public long? DivaPrayerGemYellowLevel { get; set; } | ||
public long? DivaPrayerGemGreenSkill { get; set; } | ||
public long? DivaPrayerGemGreenLevel { get; set; } | ||
public long? DivaPrayerGemBlueSkill { get; set; } | ||
public long? DivaPrayerGemBlueLevel { get; set; } | ||
public long? RunID { get; set; } | ||
} |
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,21 @@ | ||
// © 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; | ||
|
||
using System; | ||
|
||
// TODO: ORM | ||
public sealed class QuestsGuildPoogie | ||
{ | ||
public long? QuestsGuildPoogieID { get; set; } | ||
|
||
public long? GuildPoogie1Skill { get; set; } | ||
|
||
public long? GuildPoogie2Skill { get; set; } | ||
|
||
public long? GuildPoogie3Skill { get; set; } | ||
|
||
public long? RunID { get; set; } | ||
} |
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,57 @@ | ||
// © 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; | ||
|
||
using System; | ||
|
||
// TODO: ORM | ||
public sealed class QuestsHalk | ||
{ | ||
public long? QuestsHalkID { get; set; } | ||
|
||
public bool? HalkOn { get; set; } | ||
|
||
public bool? HalkPotEffectOn { get; set; } | ||
|
||
public long? HalkFullness { get; set; } | ||
|
||
public long? HalkLevel { get; set; } | ||
|
||
public long? HalkIntimacy { get; set; } | ||
|
||
public long? HalkHealth { get; set; } | ||
|
||
public long? HalkAttack { get; set; } | ||
|
||
public long? HalkDefense { get; set; } | ||
|
||
public long? HalkIntelligence { get; set; } | ||
|
||
public long? HalkSkill1 { get; set; } | ||
|
||
public long? HalkSkill2 { get; set; } | ||
|
||
public long? HalkSkill3 { get; set; } | ||
|
||
public long? HalkElementNone { get; set; } | ||
|
||
public long? HalkFire { get; set; } | ||
|
||
public long? HalkThunder { get; set; } | ||
|
||
public long? HalkWater { get; set; } | ||
|
||
public long? HalkIce { get; set; } | ||
|
||
public long? HalkDragon { get; set; } | ||
|
||
public long? HalkSleep { get; set; } | ||
|
||
public long? HalkParalysis { get; set; } | ||
|
||
public long? HalkPoison { get; set; } | ||
|
||
public long? RunID { get; set; } | ||
} |
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
Oops, something went wrong.