mirror of
https://github.com/morbalint/kemkas.git
synced 2026-07-18 03:13:46 +00:00
feat: 2e save character initial implementation WIP
2e is hidden behind url navigation hiding, so hoping that nobody found it yet. Note: DB migration make this commit a bit risky!
This commit is contained in:
@@ -4,6 +4,9 @@ using Kemkas.Web.Db.Enums;
|
||||
|
||||
namespace Kemkas.Web.Db.Models;
|
||||
|
||||
/// <summary>
|
||||
/// 1st edition character sheet
|
||||
/// </summary>
|
||||
public class V1Karakter
|
||||
{
|
||||
[Key] public Guid Id { get; set; }
|
||||
@@ -15,8 +18,8 @@ public class V1Karakter
|
||||
public double? Kor { get; set; }
|
||||
public Jellem Jellem { get; set; } = Jellem.Semleges;
|
||||
public string? Isten { get; set; }
|
||||
public Faj Faj { get; set; } = Faj.Ember;
|
||||
public Osztaly Osztaly { get; set; }
|
||||
public Faj1E Faj { get; set; } = Faj1E.Ember;
|
||||
public Osztaly1E Osztaly { get; set; }
|
||||
public byte Ero { get; set; }
|
||||
public byte Ugyesseg { get; set; }
|
||||
public byte Egeszseg { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user