测试三阵营
This commit is contained in:
@@ -34,6 +34,24 @@ namespace TcgEngine
|
||||
return CompareInt(target.mana, oper, value);
|
||||
}
|
||||
|
||||
// 新增:火系法力值检查
|
||||
if (type == ConditionStatType.ManaFire)
|
||||
{
|
||||
return CompareInt(target.mana_fire, oper, value);
|
||||
}
|
||||
|
||||
// 新增:森林法力值检查
|
||||
if (type == ConditionStatType.ManaForest)
|
||||
{
|
||||
return CompareInt(target.mana_forest, oper, value);
|
||||
}
|
||||
|
||||
// 新增:水系法力值检查
|
||||
if (type == ConditionStatType.ManaWater)
|
||||
{
|
||||
return CompareInt(target.mana_water, oper, value);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user