muffin v7.4.12
This commit is contained in:
parent
e3e5a401c3
commit
0f9f445830
38 changed files with 13646 additions and 10442 deletions
|
|
@ -202,6 +202,22 @@ public sealed class ActionConverter : EnumConverter<EAction>
|
|||
{
|
||||
EAction.TreatersTrick,
|
||||
"Treater's Trick"
|
||||
},
|
||||
{
|
||||
EAction.CheerRhythmRed,
|
||||
"Cheer Rhythm: Red"
|
||||
},
|
||||
{
|
||||
EAction.CheerRhythmBlue,
|
||||
"Cheer Rhythm: Blue"
|
||||
},
|
||||
{
|
||||
EAction.CheerRhythmGreen,
|
||||
"Cheer Rhythm: Green"
|
||||
},
|
||||
{
|
||||
EAction.CheerRhythmYellow,
|
||||
"Cheer Rhythm: Yellow"
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -126,6 +126,10 @@ public sealed class InteractionTypeConverter : EnumConverter<EInteractionType>
|
|||
{
|
||||
EInteractionType.CompleteQuest,
|
||||
"CompleteQuest"
|
||||
},
|
||||
{
|
||||
EInteractionType.FateAction,
|
||||
"FateAction"
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -5,11 +5,17 @@ namespace Questionable.Model.Questing.Converter;
|
|||
|
||||
public sealed class StatusConverter : EnumConverter<EStatus>
|
||||
{
|
||||
private static readonly Dictionary<EStatus, string> Values = new Dictionary<EStatus, string> {
|
||||
private static readonly Dictionary<EStatus, string> Values = new Dictionary<EStatus, string>
|
||||
{
|
||||
EStatus.Hidden,
|
||||
"Hidden"
|
||||
} };
|
||||
{
|
||||
EStatus.Hidden,
|
||||
"Hidden"
|
||||
},
|
||||
{
|
||||
EStatus.FaceInTheCrowd,
|
||||
"FaceInTheCrowd"
|
||||
}
|
||||
};
|
||||
|
||||
public StatusConverter()
|
||||
: base((IReadOnlyDictionary<EStatus, string>)Values)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue