157 lines
2.0 KiB
Go
157 lines
2.0 KiB
Go
package words
|
|
|
|
// This is a list of synonyms for "team". They're a special subset of objects.
|
|
|
|
func TeamSamples() []string {
|
|
return TeamSamplesWithSize(sampleSize)
|
|
}
|
|
|
|
func TeamSamplesWithSize(size int) []string {
|
|
return randomSample(Teams, size)
|
|
}
|
|
|
|
func TeamPairs() []string {
|
|
return TeamPairsWithSize(sampleSize)
|
|
}
|
|
|
|
func TeamPairsWithSize(size int) []string {
|
|
return pairs(randomSample(Predicates, size), randomSample(Teams, size))
|
|
}
|
|
|
|
var (
|
|
Teams = []string{
|
|
"aerie",
|
|
"alliance",
|
|
"assembly",
|
|
"bale",
|
|
"band",
|
|
"barrel",
|
|
"batch",
|
|
"bed",
|
|
"bevy",
|
|
"board",
|
|
"brood",
|
|
"building",
|
|
"bunch",
|
|
"business",
|
|
"cackle",
|
|
"camp",
|
|
"cast",
|
|
"catch",
|
|
"cauldron",
|
|
"charm",
|
|
"chattering",
|
|
"chime",
|
|
"choir",
|
|
"circle",
|
|
"clan",
|
|
"class",
|
|
"clattering",
|
|
"cloud",
|
|
"clowder",
|
|
"club",
|
|
"cluster",
|
|
"coalition",
|
|
"colony",
|
|
"combination",
|
|
"committee",
|
|
"company",
|
|
"conglomerate",
|
|
"congregation",
|
|
"congress",
|
|
"conspiracy",
|
|
"convocation",
|
|
"corporation",
|
|
"coven",
|
|
"crew",
|
|
"culture",
|
|
"dazzle",
|
|
"descent",
|
|
"doctrine",
|
|
"drift",
|
|
"drove",
|
|
"exaltation",
|
|
"faction",
|
|
"faculty",
|
|
"family",
|
|
"flight",
|
|
"fling",
|
|
"flock",
|
|
"flush",
|
|
"gaggle",
|
|
"galaxy",
|
|
"game",
|
|
"gathering",
|
|
"gobble",
|
|
"group",
|
|
"gulp",
|
|
"herd",
|
|
"hive",
|
|
"intrigue",
|
|
"jury",
|
|
"kettle",
|
|
"kit",
|
|
"knot",
|
|
"labor",
|
|
"lamentation",
|
|
"league",
|
|
"lease",
|
|
"lineup",
|
|
"litter",
|
|
"murmuration",
|
|
"mustering",
|
|
"nest",
|
|
"orchestra",
|
|
"order",
|
|
"organization",
|
|
"ostentation",
|
|
"outfit",
|
|
"pace",
|
|
"pack",
|
|
"pandemonium",
|
|
"parade",
|
|
"parliament",
|
|
"party",
|
|
"phalanx",
|
|
"piteousness",
|
|
"pod",
|
|
"posse",
|
|
"prickle",
|
|
"pride",
|
|
"quiver",
|
|
"raffle",
|
|
"romp",
|
|
"rookery",
|
|
"sawt",
|
|
"school",
|
|
"scoop",
|
|
"scream",
|
|
"scury",
|
|
"sedge",
|
|
"sentence",
|
|
"shadow",
|
|
"shiver",
|
|
"shrewdness",
|
|
"sleuth",
|
|
"sloth",
|
|
"squad",
|
|
"staff",
|
|
"suit",
|
|
"swarm",
|
|
"team",
|
|
"thunder",
|
|
"tower",
|
|
"troop",
|
|
"troupe",
|
|
"trust",
|
|
"unit",
|
|
"venue",
|
|
"whisp",
|
|
"whiting",
|
|
"wisdom",
|
|
"zeal",
|
|
}
|
|
|
|
teamsLen = len(Teams)
|
|
)
|