86 lines
1.6 KiB
C++
86 lines
1.6 KiB
C++
#pragma once
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
// Actually useful bases
|
|
static const std::vector<std::string> BASE_2 = { "0","1" };
|
|
static const std::vector<std::string> BASE_8 = { "0","1","2","3","4","5","6","7"};
|
|
static const std::vector<std::string> BASE_10 = { "0","1","2","3","4","5","6","7","8","9" };
|
|
static const std::vector<std::string> BASE_64 = { "A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","+","/" };
|
|
|
|
// Fun bases
|
|
static const std::vector<std::string> BASE_UWU = {
|
|
"uwu",
|
|
"UwU",
|
|
"<3",
|
|
":3",
|
|
"^.^",
|
|
"^_^",
|
|
"devewopa",
|
|
"cutieee",
|
|
"cutewr",
|
|
"whiiiich",
|
|
"^^",
|
|
"XD",
|
|
"XDD",
|
|
"XDDD",
|
|
"xD",
|
|
"xDD",
|
|
"xDDD",
|
|
"masta",
|
|
"mastaaaa",
|
|
"hiiiii",
|
|
"hewwo",
|
|
"soopa",
|
|
"doopa",
|
|
"favowite",
|
|
"kawaii",
|
|
"rawr",
|
|
"keewl",
|
|
"keeeewl",
|
|
":p",
|
|
"Owww",
|
|
"Awww",
|
|
"haaaai",
|
|
"haaaay",
|
|
"heeeey",
|
|
"heeeei",
|
|
"senpaiiii",
|
|
"senpaiiiw",
|
|
"sewnpaiii",
|
|
":o",
|
|
"(*^.^*)",
|
|
"(*^_^*)",
|
|
"i",
|
|
"nyeed",
|
|
"awe",
|
|
"youuu",
|
|
"twe",
|
|
"best",
|
|
"ruff",
|
|
"me",
|
|
"nyeko",
|
|
"eughh"
|
|
};
|
|
|
|
// Source: https://lakinkonieczny.wordpress.com/2012/12/06/dialogue-noises-agh-ugh-shh-and-so-much-more/
|
|
static const std::vector<std::string> BASE_UGH = {
|
|
"Agh!",
|
|
"Ugh",
|
|
"Shh!",
|
|
"Pft!",
|
|
"Aah!",
|
|
"Uaah!",
|
|
"Gah!",
|
|
"Grr...",
|
|
"Duh!",
|
|
"Psh!",
|
|
"Ah...",
|
|
"Er-",
|
|
"Huh...?",
|
|
"Uh-huh...",
|
|
"Nu-uh...",
|
|
"Bah!",
|
|
"Wha-?"
|
|
};
|