-
Notifications
You must be signed in to change notification settings - Fork 0
/
NameGenerator.cs
145 lines (137 loc) · 3.19 KB
/
NameGenerator.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
using System;
using System.Collections.Generic;
namespace LD56;
public static class NameGenerator
{
static readonly List<string> animals = new()
{
"kitten",
"puppy",
"bunny",
"hamster",
"duckling",
"chick",
"foal",
"calf",
"fawn",
"cub",
"lamb",
"piglet",
"mouse",
"gerbil",
"guinea",
"hedgehog",
"chinchilla",
"koala",
"otter",
"ferret",
"panda",
"squirrel",
"racoon",
"penguin",
"seal",
"sloth",
"feline",
"canary",
"sparrow",
"owl",
"bat",
"goat",
"pika",
"vole",
"mole",
"weasel",
"stoat",
"badger",
"meerkat",
"shrew",
"gecko",
"frog",
"toad",
"turtle",
"newt",
"dormouse",
"lemur",
"possum",
"koala",
"beaver",
"legionaire"
};
private static readonly List<string> robotAdjectives =
[
"Intelligent", "Autonomous", "Efficient", "Precise", "Advanced", "Adaptive",
"Responsive", "Futuristic", "Programmable", "Analytical", "Powerful",
"Innovative", "Interactive", "Agile", "Synthetic", "Mechanical", "Sleek",
"Fast", "Reliable", "Intuitive", "Sophisticated", "Networked", "Cognitive",
"Automated", "Dynamic", "Flexible", "Versatile", "Predictive", "Smart",
"Logical", "Systematic", "Proactive", "Streamlined", "Modular", "Robust",
"Compact", "Precautionary", "Scalable", "Computational", "Immersive",
"Optimized", "Seamless", "Durable", "Strategic", "Integrated", "Responsive",
"Conscious", "Connected", "Algorithmic", "Self-learning"
];
static readonly List<string> tinyAdjectives = new()
{
"adorable",
"tiny",
"fluffy",
"cuddly",
"playful",
"charming",
"petite",
"precious",
"sweet",
"dainty",
"lovable",
"delicate",
"wee",
"miniature",
"soft",
"snuggly",
"cute",
"endearing",
"little",
"small",
"mini",
"baby",
"innocent",
"gentle",
"light",
"darling",
"bouncy",
"squeaky",
"fuzzy",
"whimsical",
"plush",
"chubby",
"curious",
"nimble",
"happy",
"angelic",
"joyful",
"frisky",
"friendly",
"warm",
"bright",
"sprightly",
"spunky",
"teensy",
"bubbly",
"jolly",
"rotund",
"plump",
"perky",
"legendary"
};
public static string RandomName()
{
var random = new Random();
return tinyAdjectives[random.Next(0, tinyAdjectives.Count)] + " " +
animals[random.Next(0, animals.Count)];
}
public static string RandomAIName()
{
var random = new Random();
return robotAdjectives[random.Next(0, tinyAdjectives.Count)] + " " +
animals[random.Next(0, animals.Count)];
}
}