Skip to content

Commit

Permalink
Merge pull request #9 from rob-coco/patch-1
Browse files Browse the repository at this point in the history
Added NOF SPAR as a debate type
  • Loading branch information
Ashwagandhae authored Feb 18, 2024
2 parents 1fe0e7c + 5774141 commit a2259de
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 27 deletions.
42 changes: 16 additions & 26 deletions src/lib/models/debateStyle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const debateStyleMap = [
'congress',
'worldSchools',
'bigQuestions',
'spar'
'nofSpar'
] as const;

export type DebateStyleKey = (typeof debateStyleMap)[number];
Expand Down Expand Up @@ -365,57 +365,47 @@ export const debateStyles: {
],
prepTime: 3 * 60 * 1000
},
spar: {
nofSpar: {
primary: {
name: 'aff',
columns: ['AC', 'NC/NR', 'AR', 'NCS', 'ACS'],
name: 'pro',
columns: ['PC', 'CC', 'PR', 'CR'],
invert: false
},
secondary: {
name: 'neg',
columns: ['NC/NR', 'AR', 'NCS', 'ACS'],
name: 'con',
columns: ['CC','PR','CR'],
invert: true
},
timerSpeeches: [
{
name: 'AC',
time: 3 * 60 * 1000,
name: 'PREP',
time: 2 * 60 * 1000,
secondary: false
},
{
name: 'CX',
time: 1.5 * 60 * 1000,
name: 'PC',
time: 2 * 60 * 1000,
secondary: false
},
{
name: 'NC',
time: 3 * 60 * 1000,
name: 'CC',
time: 2 * 60 * 1000,
secondary: true
},
{
name: 'CX',
time: 1.5 * 60 * 1000,
secondary: true
},
{
name: 'NR',
time: 2 * 60 * 1000,
secondary: true
time: 4 * 60 * 1000,
secondary: false
},
{
name: 'AR',
name: 'PR',
time: 2 * 60 * 1000,
secondary: false
},
{
name: 'NCS',
name: 'CR',
time: 2 * 60 * 1000,
secondary: true
},
{
name: 'ACS',
time: 2 * 60 * 1000,
secondary: false
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/models/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export const settings: Settings = new Settings({
'Congress',
'World Schools',
'Big Questions',
'Spar'
'NOF SPAR'
]
},
info: "Already created flows won't be affected by this setting"
Expand Down

0 comments on commit a2259de

Please sign in to comment.