generated from goatcorp/SamplePlugin
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
only index mobs that actually belong to the hunts
the notorious monster sheet is the list of hunt marks
- Loading branch information
Showing
4 changed files
with
43 additions
and
7 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
18 changes: 18 additions & 0 deletions
18
ScoutHelperTests/TestUtils/MoqHelpers/MockNotoriousMonster.cs
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,18 @@ | ||
using Lumina.Data; | ||
using Lumina.Excel; | ||
using Lumina.Excel.GeneratedSheets2; | ||
using ScoutHelper.Utils; | ||
using static ScoutHelperTests.TestUtils.MoqHelpers.MoqUtils; | ||
|
||
namespace ScoutHelperTests.TestUtils.MoqHelpers; | ||
|
||
public class MockNotoriousMonster : NotoriousMonster, IMockExcelRow { | ||
private MockNotoriousMonster(uint rowId, uint bnpcNameId) { | ||
RowId = rowId; | ||
this.SetProperty("BNpcName", MockLazyRow<BNpcName>(bnpcNameId)); | ||
} | ||
|
||
public static MockNotoriousMonster Create(uint rowId, uint bnpcNameId) { | ||
return new MockNotoriousMonster(rowId, bnpcNameId); | ||
} | ||
} |
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