Skip to content

Commit

Permalink
raidboss: p12s classical concepts tcxs order (#5868)
Browse files Browse the repository at this point in the history
My group always uses triangle circle cross square for playstation
symbols because we have a group member named tox and it's easy for us to
remember. We call it TOXS strat.
  • Loading branch information
amasover authored Oct 24, 2023
1 parent 873b946 commit b0ac36a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ui/raidboss/data/06-ew/raid/p12s.ts
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ export type LimitCutCombatantState = PluginCombatantState & {
export interface Data extends RaidbossData {
readonly triggerSetConfig: {
engravement1DropTower: 'quadrant' | 'clockwise' | 'tower' | 'tetherbase';
classicalConceptsPairOrder: 'xsct' | 'cxts' | 'ctsx' | 'ctxs' | 'shapeAndDebuff';
classicalConceptsPairOrder: 'xsct' | 'cxts' | 'ctsx' | 'ctxs' | 'tcxs' | 'shapeAndDebuff';
classicalConcepts2ActualNoFlip: true | false;
pangenesisFirstTower: 'agnostic' | 'not' | 'one';
};
Expand Down Expand Up @@ -457,27 +457,31 @@ const triggerSet: TriggerSet<Data> = {
'○XΔ□ (Lines)': 'cxts',
'○Δ□X (Rocketship)': 'ctsx',
'○ΔX□ (Rainbow)': 'ctxs',
'Δ○X□ (TOXS)': 'tcxs',
'Just call shape and debuff': 'shapeAndDebuff',
},
de: {
'X□○Δ (BLOG)': 'xsct',
'○XΔ□ (Linien)': 'cxts',
'○Δ□X (Raketenschiff)': 'ctsx',
'○ΔX□ (Regenbogen)': 'ctxs',
'Δ○X□ (TOXS)': 'tcxs',
'Just call shape and debuff': 'shapeAndDebuff', // FIXME
},
cn: {
'X□○Δ (BPOG)': 'xsct',
'○XΔ□ (1234笔画)': 'cxts',
'○Δ□X (Rocketship)': 'ctsx',
'○ΔX□ (彩虹)': 'ctxs',
'Δ○X□ (TOXS)': 'tcxs',
'只报形状和debuff': 'shapeAndDebuff',
},
ko: {
'X□○Δ (파보빨초)': 'xsct',
'○XΔ□ (1234)': 'cxts',
'○Δ□X (동세네엑)': 'ctsx',
'○ΔX□ (무지개)': 'ctxs',
'Δ○X□ (TOXS)': 'tcxs',
'모양과 디버프만 알림': 'shapeAndDebuff',
},
},
Expand Down Expand Up @@ -3152,6 +3156,7 @@ const triggerSet: TriggerSet<Data> = {
cxts: ['circle', 'cross', 'triangle', 'square'],
ctsx: ['circle', 'triangle', 'square', 'cross'],
ctxs: ['circle', 'triangle', 'cross', 'square'],
tcxs: ['triangle', 'circle', 'cross', 'square'],
};
const columnOrder =
columnOrderFromConfig[data.triggerSetConfig.classicalConceptsPairOrder];
Expand Down

0 comments on commit b0ac36a

Please sign in to comment.