Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scoresheets wording and double negation problems fixed #874

Merged
merged 2 commits into from
Dec 21, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions libs/season/src/lib/data/scoresheet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,22 +249,26 @@ export const scoresheet: ScoresheetSchema = {
],
validators: [
missions => {
const planktonInBoat = ensureArray(missions['m15'][0]).includes('plankton-sample');
if (planktonInBoat && !missions['m14'][1]) throw new ScoresheetError('e1');
const waterSampleInBoat = ensureArray(missions['m15'][0]).includes('water-sample');
if (waterSampleInBoat && missions['m14'][0] === false) throw new ScoresheetError('e3');
},
missions => {
const seabedInBoat = ensureArray(missions['m15'][0]).includes('seabed-sample');
if (seabedInBoat && !missions['m14'][2]) throw new ScoresheetError('e2');
if (seabedInBoat && missions['m14'][1] === false) throw new ScoresheetError('e2');
},
missions => {
const planktonInBoat = ensureArray(missions['m15'][0]).includes('plankton-sample');
if (planktonInBoat && missions['m14'][2] === false) throw new ScoresheetError('e1');
},
missions => {
const tridentPartsInBoat = ensureArray(missions['m15'][0]).filter(item =>
item.includes('trident')
).length;
if (tridentPartsInBoat > Number(missions['m14'][3])) throw new ScoresheetError('e3');
if (tridentPartsInBoat > Number(missions['m14'][3])) throw new ScoresheetError('e4');
},
missions => {
const treasureChestInBoat = ensureArray(missions['m15'][0]).includes('treasure-chest');
if (treasureChestInBoat && !missions['m07'][0]) throw new ScoresheetError('e4');
if (treasureChestInBoat && !missions['m07'][0]) throw new ScoresheetError('e5');
}
]
};
19 changes: 10 additions & 9 deletions libs/season/src/lib/localization/scoresheet/scoresheet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export const localizedScoresheet: LocalizedScoresheet = {
description: 'התורן של הספינה הטרופה הורם לחלוטין:'
}
],
remarks: ['התורן של הספינה הטרופה נחשב למורם כאשר התפס מונע ממנו לחזור למיקום ההתחלתי שלו.']
remarks: ['התורן של הספינה הטרופה נחשב למורם כאשר הוא פונה כלפי מעלה והתפס מונע ממנו לחזור למיקום ההתחלתי שלו.']
},
{
id: 'm07',
Expand Down Expand Up @@ -148,7 +148,7 @@ export const localizedScoresheet: LocalizedScoresheet = {
}
],
remarks: [
'לקבוצות אסור לחסום את הקבוצה בזירה השנייה. לא ניתן לקבל נקודות בונוס אם אין קבוצה מולכם.'
'לקבוצות אסור לחסום את הקבוצה בזירה השנייה.'
]
},
{
Expand Down Expand Up @@ -240,21 +240,22 @@ export const localizedScoresheet: LocalizedScoresheet = {
errors: [
{
id: 'e1',
description:
'לא ייתכן שדגימת קרקעית הים עדיין נוגעת בקרקעית הים (M14) ונמצאת בתוך ספינת המחקר.'
description: 'לא ייתכן שדגימת הפלנקטון עדיין נוגעת ביער האצות (M14) ונמצאת בתוך ספינת המחקר.'
},
{
id: 'e2',
description: 'לא ייתכן שדגימת הפלנקטון עדיין נוגעת ביער האצות (M14) ונמצאת בתוך ספינת המחקר.'
description: 'לא ייתכן שדגימת קרקעית הים עדיין נוגעת בקרקעית הים (M14) ונמצאת בתוך ספינת המחקר.'
},
{
id: 'e3',
description:
'לא ייתכן שעדיין נמצאים יותר חלקי קלשון בתוך ספינת המחקר מאשר חלקי קלשון שלא נוגעים בספינה הטרופה (M14).'
description: 'לא ייתכן שדגימת המים עדיין נמצאת באזור דגימת המים (M14) ונמצאת בתוך ספינת המחקר.'
},
{
id: 'e4',
description: 'לא ייתכן שתיבת האוצר עדיין נמצאת בתוך קן הקראקן (M07) וגם בתוך ספינת המחקר.'
}
description: 'לא ייתכן שעדיין נמצאים יותר חלקי קלשון בתוך ספינת המחקר מאשר חלקי קלשון שלא נוגעים בספינה הטרופה (M14).'
},
{
id: 'e5',
description: 'לא ייתכן שתיבת האוצר עדיין נמצאת בתוך קן הקראקן (M07) וגם בתוך ספינת המחקר.' }
]
};
Loading