This commit is contained in:
Putoo
2026-07-03 18:16:47 +08:00
parent 5eb0bfd792
commit ea32e7046e
29 changed files with 390 additions and 75 deletions

View File

@@ -0,0 +1,7 @@
namespace Application.Domain.Entity;
public class FightAwardModel
{
public string code { get; set; }
public object award { get; set; }
}

View File

@@ -8,4 +8,6 @@ public class MapMonsterModel
/// 0地图怪物 1生成怪物
/// </summary>
public int type { get; set; }
public string sign { get; set; }
}

View File

@@ -0,0 +1,7 @@
namespace Application.Domain.Entity;
public class MonsterAwardModel
{
public string type { get; set; }
public RandomModel award { get; set; }
}

View File

@@ -8,11 +8,14 @@
public int isCopy { get; set; }
public string viceId { get; set; }
public string name { get; set; }
public int figState { get; set; }
public string sex { get; set; }
public string code { get; set; }
public string remark { get; set; }
public string TmImg { get; set; }
public string tips { get; set; }
public decimal addExp { get; set; }
public decimal addGold { get; set; }
public decimal burst { get; set; }//爆率
public decimal luck { get; set; }//幸运
public int weight { get; set; }//负重
public int lev { get; set; }//等级
public int minAtk { get; set; }//最小攻击
public int maxAtk { get; set; }//最大攻击