poppy-client/shared/catalog.lua

32 lines
1.4 KiB
Lua

local catalog = {}
catalog.firstNames = { "Herbert", "Thorben", "Martin", "Heinrich", "Dietrich",
"Markus", "Florian", "Helmut", "Willhelm", "Fritz", "Gustav", "Konrad",
"Berta", "Charlotte", "Hildegard", "Lieselotte", "Gudrun", "Giesela",
"Margarete", "Antonia", "Friederike", "Clotilde", "Marlies", "Hedwig",
"Agathe" }
catalog.surNames = { "Müller", "Schmidt", "Meier", "Bauer", "Werner",
"Schumacher", "Bergmann", "Eisenhauer", "Heisenberg" }
catalog.pastelColors = {
{234/255, 155/255, 254/255, .6}, --pinkish
{156/255, 154/255, 251/255, .6}, --blueish
{242/255, 228/255, 148/255, .6}, --orange yellowish
{255/255, 156/255, 182/255, .6}, --magenta/orange
{145/255, 237/255, 216/255, .6} --turqoise
}
catalog.buttonColors = {
blue = { {50/255, 65/255, 98/255}, {125/255, 151/255, 208/255}, {1, 1, 1}},
pink = { {208/255, 37/255, 134/255}, {241/255, 109/255, 184/255}, {1, 1, 1}},
green = {{30/255,183/255,127/255},{109/255,241/255,193/255}, {1,1,1}},
blueTranslucent = { {50/255, 65/255, 98/255, .7}, {125/255, 151/255, 208/255, .7}, {1, 1, 1, .9}},
pinkTranslucent = { {208/255, 37/255, 134/255, .7}, {241/255, 109/255, 184/255, .7}, {1, 1, 1, .9}},
greenTranslucent = {{30/255,183/255,127/255, .7},{109/255,241/255,193/255, .7}, {1,1,1, .9}},
grayTranslucent = {{.1,.1,.1, .7}, {1,1,1, .7}, {1,1,1, .9}}
}
catalog.default = {
avatar = "textures/player/noriko/liz.png",
}
return catalog