Update prompts, LS entry name

This commit is contained in:
Dominic Zimmer 2024-03-29 01:07:23 +01:00
parent 3d3872ea57
commit 2e48c23eaa
2 changed files with 4 additions and 4 deletions

View File

@ -4,8 +4,8 @@ import './App.css';
import {prompts} from './prompts'; import {prompts} from './prompts';
const alphabet = "ABCDEFGHIKLMNOPQRSTUVWXYZ"; const alphabet = "ABCDEFGHIKLMNOPQRSTUVWXYZ";
const lskey_prompts = "cs_bingo_prompts"; const lskey_prompts = "cs_bingo_prompts-day2";
const lskey_ticked = "cs_bingo_ticked"; const lskey_ticked = "cs_bingo_ticked-day2";
const shuffle = <T,>(array: T[]): T[] => { const shuffle = <T,>(array: T[]): T[] => {
return array return array

View File

@ -10,14 +10,13 @@ export const prompts: [Categories, string][] = [
["fails", "Ninja Defuse"], ["fails", "Ninja Defuse"],
["fails", "Eco win vs Full Buy"], ["fails", "Eco win vs Full Buy"],
["fails", "Trigger discipline moment"], ["fails", "Trigger discipline moment"],
["fails", "Knife try"],
["fails", "Underestimated bomb radius"], ["fails", "Underestimated bomb radius"],
["fails", "T dies after time"], ["fails", "T dies after time"],
["fails", "4:3 Moment"], ["fails", "4:3 Moment"],
["fails", "CT forgot defuser"], ["fails", "CT forgot defuser"],
["fails", "CS2 is bug free"], ["fails", "CS2 is bug free"],
["fails", "Death while throwing util"], ["fails", "Death while throwing util"],
["fails", "#Chicken Moment"], //["fails", "#Chicken Moment"],
["epic", "Ace"], ["epic", "Ace"],
["epic", "IGL > 15 kills"], ["epic", "IGL > 15 kills"],
["epic", "30 bomb"], ["epic", "30 bomb"],
@ -35,6 +34,7 @@ export const prompts: [Categories, string][] = [
["unexpected", "Tech Timeout"], ["unexpected", "Tech Timeout"],
["unexpected", "Player hiding in smoke"], ["unexpected", "Player hiding in smoke"],
["unexpected", "150 damage with 1 HE"], ["unexpected", "150 damage with 1 HE"],
["unexpected", "2:0 and bye!"],
] ]
export default {}; export default {};