muffin v6.12
This commit is contained in:
parent
060278c1b7
commit
155fbee291
59 changed files with 40083 additions and 58104 deletions
43
Questionable/Questionable.Model/AethernetQuestInfo.cs
Normal file
43
Questionable/Questionable.Model/AethernetQuestInfo.cs
Normal file
|
@ -0,0 +1,43 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Immutable;
|
||||
using LLib.GameData;
|
||||
using Questionable.Model.Questing;
|
||||
|
||||
namespace Questionable.Model;
|
||||
|
||||
internal sealed class AethernetQuestInfo : IQuestInfo
|
||||
{
|
||||
public ElementId QuestId { get; }
|
||||
|
||||
public string Name { get; }
|
||||
|
||||
public uint IssuerDataId { get; }
|
||||
|
||||
public bool IsRepeatable => false;
|
||||
|
||||
public ImmutableList<PreviousQuestInfo> PreviousQuests => ImmutableList.Create(default(ReadOnlySpan<PreviousQuestInfo>));
|
||||
|
||||
public EQuestJoin PreviousQuestJoin => EQuestJoin.All;
|
||||
|
||||
public ushort Level => 1;
|
||||
|
||||
public EAlliedSociety AlliedSociety => EAlliedSociety.None;
|
||||
|
||||
public uint? JournalGenre => null;
|
||||
|
||||
public ushort SortKey => 0;
|
||||
|
||||
public bool IsMainScenarioQuest => false;
|
||||
|
||||
public IReadOnlyList<EClassJob> ClassJobs => Array.Empty<EClassJob>();
|
||||
|
||||
public EExpansionVersion Expansion => EExpansionVersion.ARealmReborn;
|
||||
|
||||
public AethernetQuestInfo(AethernetId aethernetId, string name, uint issuerDataId = 0u)
|
||||
{
|
||||
QuestId = aethernetId;
|
||||
Name = name;
|
||||
IssuerDataId = issuerDataId;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue