stonelog/prefixes.go
Rene Nochebuena 9e730f3a5d
Some checks failed
Go CI/CD / go-ci (push) Has been cancelled
initial commit
2025-04-09 02:39:25 -06:00

51 lines
1.0 KiB
Go

package stonelog
var (
stoneTracePrefixes = []string{
"Science traces",
"Lab sensors detect",
"Microscope focus on",
"Quantum scanner active:",
"Data particles observed:",
}
stoneDebugPrefixes = []string{
"Hypothesis forming:",
"Analyzing data patterns:",
"Debugging quantum fluctuations:",
"Lab notes:",
"Testing variables:",
}
stoneInfoPrefixes = []string{
"Experiment successful:",
"Lab results:",
"Scientific consensus:",
"Discovery logged:",
"Theory proven:",
}
stoneWarnPrefixes = []string{
"Anomaly detected:",
"Risk probability increased:",
"System instability suspected:",
"Contamination warning:",
"Resource depletion imminent:",
}
stoneErrorPrefixes = []string{
"Critical malfunction:",
"Lab accident reported:",
"Data corruption confirmed:",
"System collapse:",
"Hypothesis disproven:",
}
stonePanicPrefixes = []string{
"¡¡¡CATASTROPHIC FAILURE!!!",
"Emergency protocol FAILED:",
"LEAVE THE LAB!",
"¡¡¡IMMINENT NUCLEAR FUSION!!!",
}
)