Skip to content

Instantly share code, notes, and snippets.

@Quit
Created January 7, 2014 18:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Quit/07f98db3b4742c4b2441 to your computer and use it in GitHub Desktop.
Save Quit/07f98db3b4742c4b2441 to your computer and use it in GitHub Desktop.
json format for the upcoming rp_extendednames (or whatever I'll call it)
{
"first_names" : {
"multipart" : true,
"male" : [
{
"chance" : 100,
"list" : [
"first name, first part",
"goes here"
]
},
{
"chance" : 100,
"list" : [
"first name, second part",
"goes here"
]
}
],
"female" : [
{
"chance" : 100,
"list" : [
]
},
{
"chance": 100,
"list" : [
]
}
]
},
"surnames" : {
"multipart" : true,
"_default" : [
{
"chance" : 100,
"list": [
"surname, first part",
"goes here"
]
},
{
"chance" : 100,
"list" : [
"surname, second part",
"goes here"
]
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment