[Fix] Name & add meta

This commit is contained in:
2026-03-01 16:23:41 +07:00
parent 3c50415111
commit 85d639aa70
36 changed files with 98 additions and 98 deletions
@@ -7,7 +7,7 @@ using YachtDice.Modifiers.Runtime;
namespace YachtDice.Modifiers.Conditions
{
[CreateAssetMenu(fileName = "CategoryCondition", menuName = "YachtDice/Modifiers/Conditions/Category")]
public class CategoryCondition : ConditionSO
public class CategoryCondition : Condition
{
[SerializeField] private CategoryDefinition requiredCategory;
@@ -6,7 +6,7 @@ using YachtDice.Modifiers.Runtime;
namespace YachtDice.Modifiers.Conditions
{
[CreateAssetMenu(fileName = "DiceCountCondition", menuName = "YachtDice/Modifiers/Conditions/Dice Count")]
public class DiceCountCondition : ConditionSO
public class DiceCountCondition : Condition
{
[Tooltip("Die face value to count (1-6). 0 = any value.")]
[SerializeField, Range(0, 6)] private int targetValue;
@@ -6,7 +6,7 @@ using YachtDice.Modifiers.Runtime;
namespace YachtDice.Modifiers.Conditions
{
[CreateAssetMenu(fileName = "DieValueCondition", menuName = "YachtDice/Modifiers/Conditions/Die Value")]
public class DieValueCondition : ConditionSO
public class DieValueCondition : Condition
{
[SerializeField, Range(1, 6)] private int targetValue = 1;
[SerializeField] private int minCount = 1;
@@ -6,7 +6,7 @@ using YachtDice.Modifiers.Runtime;
namespace YachtDice.Modifiers.Conditions
{
[CreateAssetMenu(fileName = "MinScoreCondition", menuName = "YachtDice/Modifiers/Conditions/Min Score")]
public class MinScoreCondition : ConditionSO
public class MinScoreCondition : Condition
{
[SerializeField] private int minimumBaseScore;