mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2026-05-15 17:10:18 +00:00
Désactivation yaml temporaire
This commit is contained in:
parent
fe667f2f30
commit
31874b007d
3350 changed files with 3401 additions and 440389 deletions
|
|
@ -262,7 +262,8 @@ namespace AideDeJeuLib
|
|||
{
|
||||
get
|
||||
{
|
||||
return $"---\n{Yaml}---\n{CleanMarkdown}";
|
||||
//return $"---\n{Yaml}---\n{CleanMarkdown}";
|
||||
return CleanMarkdown;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2,34 +2,34 @@
|
|||
|
||||
namespace AideDeJeuLib
|
||||
{
|
||||
interface IRaceItem : IItem
|
||||
{
|
||||
string FullName { get; set; }
|
||||
bool HasSubRaces { get; set; }
|
||||
//interface IRaceItem : IItem
|
||||
//{
|
||||
// string FullName { get; set; }
|
||||
// bool HasSubRaces { get; set; }
|
||||
|
||||
string StrengthBonus { get; set; }
|
||||
string DexterityBonus { get; set; }
|
||||
string ConstitutionBonus { get; set; }
|
||||
string IntelligenceBonus { get; set; }
|
||||
string WisdomBonus { get; set; }
|
||||
string CharismaBonus { get; set; }
|
||||
// string StrengthBonus { get; set; }
|
||||
// string DexterityBonus { get; set; }
|
||||
// string ConstitutionBonus { get; set; }
|
||||
// string IntelligenceBonus { get; set; }
|
||||
// string WisdomBonus { get; set; }
|
||||
// string CharismaBonus { get; set; }
|
||||
|
||||
string DispatchedBonus { get; set; }
|
||||
string MaxDispatchedStrengthBonus { get; set; }
|
||||
string MaxDispatchedDexterityBonus { get; set; }
|
||||
string MaxDispatchedConstitutionBonus { get; set; }
|
||||
string MaxDispatchedIntelligenceBonus { get; set; }
|
||||
string MaxDispatchedWisdomBonus { get; set; }
|
||||
string MaxDispatchedCharismaBonus { get; set; }
|
||||
// string DispatchedBonus { get; set; }
|
||||
// string MaxDispatchedStrengthBonus { get; set; }
|
||||
// string MaxDispatchedDexterityBonus { get; set; }
|
||||
// string MaxDispatchedConstitutionBonus { get; set; }
|
||||
// string MaxDispatchedIntelligenceBonus { get; set; }
|
||||
// string MaxDispatchedWisdomBonus { get; set; }
|
||||
// string MaxDispatchedCharismaBonus { get; set; }
|
||||
|
||||
string AbilityScoreIncrease { get; set; }
|
||||
string Age { get; set; }
|
||||
string Alignment { get; set; }
|
||||
string Size { get; set; }
|
||||
string Speed { get; set; }
|
||||
string Darkvision { get; set; }
|
||||
string Languages { get; set; }
|
||||
}
|
||||
// string AbilityScoreIncrease { get; set; }
|
||||
// string Age { get; set; }
|
||||
// string Alignment { get; set; }
|
||||
// string Size { get; set; }
|
||||
// string Speed { get; set; }
|
||||
// string Darkvision { get; set; }
|
||||
// string Languages { get; set; }
|
||||
//}
|
||||
public class RaceItem : Item
|
||||
{
|
||||
[DataMember]
|
||||
|
|
@ -50,7 +50,19 @@ namespace AideDeJeuLib
|
|||
[DataMember]
|
||||
public virtual string CharismaBonus { get; set; }
|
||||
[DataMember]
|
||||
public virtual string AnyAbilityBonus { get; set; }
|
||||
public virtual string DispatchedBonus { get; set; }
|
||||
[DataMember]
|
||||
public virtual string MaxDispatchedStrengthBonus { get; set; }
|
||||
[DataMember]
|
||||
public virtual string MaxDispatchedDexterityBonus { get; set; }
|
||||
[DataMember]
|
||||
public virtual string MaxDispatchedConstitutionBonus { get; set; }
|
||||
[DataMember]
|
||||
public virtual string MaxDispatchedIntelligenceBonus { get; set; }
|
||||
[DataMember]
|
||||
public virtual string MaxDispatchedWisdomBonus { get; set; }
|
||||
[DataMember]
|
||||
public virtual string MaxDispatchedCharismaBonus { get; set; }
|
||||
|
||||
[DataMember]
|
||||
public virtual string AbilityScoreIncrease { get; set; }
|
||||
|
|
|
|||
|
|
@ -27,5 +27,20 @@ namespace AideDeJeu.Cmd
|
|||
{
|
||||
return Path.Combine(Path.GetDirectoryName(Assembly.GetEntryAssembly().Location), $@"..\..\..\..\..\Data\{databaseName}.db");
|
||||
}
|
||||
|
||||
public Task SaveStreamAsync(string filename, Stream stream)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public Stream CreateStream(string filename)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public Task LaunchFileAsync(string title, string message, string filePath)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue