Skip to content

Commit

Permalink
chore: update conditions.ts (#719)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kitzunu committed May 24, 2020
1 parent 660f414 commit e520ca4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/shared/constants/options/conditions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ export const CONDITION_HP_VAL_CV2: Option[] = [
{ value: 1, name: 'HP must be higher' },
{ value: 2, name: 'HP must be lower' },
{ value: 3, name: 'HP must be equal or higher' },
{ value: 3, name: 'HP must be equal or lower' },
{ value: 4, name: 'HP must be equal or lower' },
];

export const CONDITION_HP_PCT_CV2: Option[] = [
{ value: 0, name: 'Percentage of max HP must be equal' },
{ value: 1, name: 'Percentage of max HP must be higher' },
{ value: 2, name: 'Percentage of max HP must be lower' },
{ value: 3, name: 'Percentage of max HP must be equal or higher' },
{ value: 3, name: 'Percentage of max HP must be equal or lower' },
{ value: 4, name: 'Percentage of max HP must be equal or lower' },
];

export const CONDITION_STAND_STATE_CV2: Option[] = [
Expand All @@ -61,7 +61,7 @@ export const CONDITION_DISTANCE_TO_CV3: Option[] = [
{ value: 1, name: 'Distance must be higher than ConditionValue2' },
{ value: 2, name: 'Distance must be lower than ConditionValue2' },
{ value: 3, name: 'distance must be equal to or higher than ConditionValue2' },
{ value: 3, name: 'distance must be equal to or lower than ConditionValue2' },
{ value: 4, name: 'distance must be equal to or lower than ConditionValue2' },
];

export const CONDITION_NEAR_CREATURE_CV3: Option[] = [
Expand Down

0 comments on commit e520ca4

Please sign in to comment.