implemented different arm colors based on the neomoji
175
neomojimixer.js
|
@ -6,11 +6,20 @@ let body = [];
|
|||
let mouth = [];
|
||||
let arms = [];
|
||||
|
||||
//FOr all the different colours of the arms there will be each a own arraz
|
||||
let arms_orange = [];
|
||||
let arms_blue = [];
|
||||
let arms_lightgrey = [];
|
||||
let arms_red = [];
|
||||
let arms_white = [];
|
||||
let arms_yellow = [];
|
||||
|
||||
//Index to easily find when to roll back to the first/last element in the list
|
||||
let inex_eyes = 0;
|
||||
let index_body = 0;
|
||||
let index_mouth = 0;
|
||||
let index_arms = 0;
|
||||
let index_color = 0;
|
||||
|
||||
//shotnames for HTML elements to interact with
|
||||
|
||||
|
@ -56,6 +65,9 @@ function loadParts(parts) {
|
|||
parts.type.mouth.forEach(fillArrayMouth);
|
||||
parts.type.arms.forEach(fillArrayArms);
|
||||
|
||||
//find the indexes of each part of the corresponding color and write those into the color arrays
|
||||
fillArraysArms();
|
||||
|
||||
//Randomize initial view
|
||||
randomize();
|
||||
|
||||
|
@ -80,36 +92,78 @@ function loadParts(parts) {
|
|||
}
|
||||
|
||||
function fillArrayEyes(item){
|
||||
var name = item.name;
|
||||
var url = item.url;
|
||||
let name = item.name;
|
||||
let url = item.url;
|
||||
eyes.push ([name, url]); //Two dimensional array, Second dimension holds name on index 0 and url at index 1
|
||||
}
|
||||
|
||||
function fillArrayBody(item){
|
||||
var name = item.name;
|
||||
var url = item.url;
|
||||
body.push ([name, url]); //Two dimensional array, Second dimension holds name on index 0 and url at index 1
|
||||
let name = item.name;
|
||||
let url = item.url;
|
||||
let color = item.color;
|
||||
body.push ([name, url, color]); //Two dimensional array, Second dimension holds name on index 0 and url at index 1
|
||||
}
|
||||
|
||||
function fillArrayMouth(item){
|
||||
var name = item.name;
|
||||
var url = item.url;
|
||||
let name = item.name;
|
||||
let url = item.url;
|
||||
mouth.push ([name, url]); //Two dimensional array, Second dimension holds name on index 0 and url at index 1
|
||||
}
|
||||
|
||||
function fillArrayArms(item){
|
||||
var name = item.name;
|
||||
var url = item.url;
|
||||
arms.push ([name, url]); //Two dimensional array, Second dimension holds name on index 0 and url at index 1
|
||||
let name = item.name;
|
||||
let url = item.url;
|
||||
let color = item.color;
|
||||
arms.push ([name, url, color]); //Two dimensional array, Second dimension holds name on index 0 and url at index 1
|
||||
}
|
||||
|
||||
function fillArraysArms(){
|
||||
for (let i=0; i<arms.length; i++){
|
||||
if (arms[i][2] == "blue" || arms[i][2] == ""){
|
||||
arms_blue.push(i);
|
||||
}
|
||||
|
||||
if (arms[i][2] == "lightgrey" || arms[i][2] == ""){
|
||||
arms_lightgrey.push(i);
|
||||
}
|
||||
|
||||
if (arms[i][2] == "orange" || arms[i][2] == ""){
|
||||
arms_orange.push(i);
|
||||
}
|
||||
|
||||
if (arms[i][2] == "red" || arms[i][2] == ""){
|
||||
arms_red.push(i);
|
||||
}
|
||||
|
||||
if (arms[i][2] == "white" || arms[i][2] == ""){
|
||||
arms_white.push(i);
|
||||
}
|
||||
|
||||
if (arms[i][2] == "yellow" || arms[i][2] == ""){
|
||||
arms_yellow.push(i);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
function onClick_body_next(){
|
||||
index_body++;
|
||||
|
||||
if (index_body == body.length) {index_body = 0;} //check if index is too big for the array
|
||||
|
||||
body_image.src = "." + body[index_body][1]; //Change URL of picture
|
||||
body_name.innerHTML = body[index_body][0]; //Change name in controls
|
||||
if (body[index_body][2] == "blue"){index_arms = arms_blue[index_color];}
|
||||
else if (body[index_body][2] == "lightgrey"){index_arms = arms_lightgrey[index_color];}
|
||||
else if (body[index_body][2] == "orange"){index_arms = arms_orange[index_color];}
|
||||
else if (body[index_body][2] == "red"){index_arms = arms_red[index_color];}
|
||||
else if (body[index_body][2] == "white"){index_arms = arms_white[index_color];}
|
||||
else if (body[index_body][2] == "yellow"){index_arms = arms_yellow[index_color];}
|
||||
|
||||
body_image.src = "." + body[index_body][1]; //Change URL of body picture
|
||||
body_name.innerHTML = body[index_body][0]; //Change body name in controls
|
||||
|
||||
arms_image.src = "." + arms[index_arms][1]; //Change URL of arms picture
|
||||
arms_name.innerHTML = arms[index_arms][0]; //Change arms name in controls
|
||||
}
|
||||
|
||||
function onClick_body_prev(){
|
||||
|
@ -117,8 +171,18 @@ function onClick_body_prev(){
|
|||
|
||||
if (index_body < 0) {index_body = (body.length-1);} //check if index is too big for the array
|
||||
|
||||
body_image.src = "." + body[index_body][1]; //Change URL of picture
|
||||
body_name.innerHTML = body[index_body][0]; //Change name in controls
|
||||
if (body[index_body][2] == "blue"){index_arms = arms_blue[index_color];}
|
||||
else if (body[index_body][2] == "lightgrey"){index_arms = arms_lightgrey[index_color];}
|
||||
else if (body[index_body][2] == "orange"){index_arms = arms_orange[index_color];}
|
||||
else if (body[index_body][2] == "red"){index_arms = arms_red[index_color];}
|
||||
else if (body[index_body][2] == "white"){index_arms = arms_white[index_color];}
|
||||
else if (body[index_body][2] == "yellow"){index_arms = arms_yellow[index_color];}
|
||||
|
||||
body_image.src = "." + body[index_body][1]; //Change URL of body picture
|
||||
body_name.innerHTML = body[index_body][0]; //Change body name in controls
|
||||
|
||||
arms_image.src = "." + arms[index_arms][1]; //Change URL of arms picture
|
||||
arms_name.innerHTML = arms[index_arms][0]; //Change arms name in controls
|
||||
}
|
||||
|
||||
function onClick_eyes_next(){
|
||||
|
@ -158,18 +222,64 @@ function onClick_mouth_prev(){
|
|||
}
|
||||
|
||||
function onClick_arms_next(){
|
||||
index_arms++;
|
||||
index_color++;
|
||||
|
||||
if (index_arms == arms.length) {index_arms = 0;} //check if index is too big for the array
|
||||
if (body[index_body][2] == "blue"){
|
||||
if (index_color == arms_blue.length) {index_color = 0;}
|
||||
index_arms = arms_blue[index_color];
|
||||
}
|
||||
else if (body[index_body][2] == "lightgrey"){
|
||||
if (index_color == arms_lightgrey.length) {index_color = 0;}
|
||||
index_arms = arms_lightgrey[index_color];
|
||||
}
|
||||
else if (body[index_body][2] == "orange"){
|
||||
if (index_color == arms_orange.length) {index_color = 0;}
|
||||
index_arms = arms_orange[index_color];
|
||||
}
|
||||
else if (body[index_body][2] == "red"){
|
||||
if (index_color == arms_red.length) {index_color = 0;}
|
||||
index_arms = arms_red[index_color];
|
||||
}
|
||||
else if (body[index_body][2] == "white"){
|
||||
if (index_color == arms_white.length) {index_color = 0;}
|
||||
index_arms = arms_white[index_color];
|
||||
}
|
||||
else if (body[index_body][2] == "yellow"){
|
||||
if (index_color == arms_yellow.length) {index_color = 0;}
|
||||
index_arms = arms_yellow[index_color];
|
||||
}
|
||||
|
||||
arms_image.src = "." + arms[index_arms][1]; //Change URL of picture
|
||||
arms_name.innerHTML = arms[index_arms][0]; //Change name in controls
|
||||
}
|
||||
|
||||
function onClick_arms_prev(){
|
||||
index_arms--;
|
||||
index_color--;
|
||||
|
||||
if (index_arms < 0) {index_arms = (arms.length-1);} //check if index is too big for the array
|
||||
if (body[index_body][2] == "blue"){
|
||||
if (index_color < 0) {index_color = arms_blue.length-1;}
|
||||
index_arms = arms_blue[index_color];
|
||||
}
|
||||
else if (body[index_body][2] == "lightgrey"){
|
||||
if (index_color < 0) {index_color = arms_lightgrey.length-1;}
|
||||
index_arms = arms_lightgrey[index_color];
|
||||
}
|
||||
else if (body[index_body][2] == "orange"){
|
||||
if (index_color < 0) {index_color = arms_orange.length-1;}
|
||||
index_arms = arms_orange[index_color];
|
||||
}
|
||||
else if (body[index_body][2] == "red"){
|
||||
if (index_color < 0) {index_color = arms_red.length-1;}
|
||||
index_arms = arms_red[index_color];
|
||||
}
|
||||
else if (body[index_body][2] == "white"){
|
||||
if (index_color < 0) {index_color = arms_white.length-1;}
|
||||
index_arms = arms_white[index_color];
|
||||
}
|
||||
else if (body[index_body][2] == "yellow"){
|
||||
if (index_color < 0) {index_color = arms_yellow.length-1;}
|
||||
index_arms = arms_yellow[index_color];
|
||||
}
|
||||
|
||||
arms_image.src = "." + arms[index_arms][1]; //Change URL of picture
|
||||
arms_name.innerHTML = arms[index_arms][0]; //Change name in controls
|
||||
|
@ -179,7 +289,34 @@ function randomize(){ //Randomize which parts are shown
|
|||
index_body = Math.floor(Math.random() * body.length);
|
||||
index_eyes = Math.floor(Math.random() * eyes.length);
|
||||
index_mouth = Math.floor(Math.random() * mouth.length);
|
||||
index_arms = Math.floor(Math.random() * arms.length);
|
||||
index_arms = 0;
|
||||
|
||||
//Determine what color the body has and chose the arms color in the same way
|
||||
//Basically it does a random on the arms array and returns an index number with the right color for that body
|
||||
if (body[index_body][2] == "blue"){
|
||||
index_color = Math.floor(Math.random() * arms_blue.length)
|
||||
index_arms = arms_blue[index_color];
|
||||
}
|
||||
else if (body[index_body][2] == "lightgrey"){
|
||||
index_color = Math.floor(Math.random() * arms_lightgrey.length)
|
||||
index_arms = arms_lightgrey[index_color];
|
||||
}
|
||||
else if (body[index_body][2] == "orange"){
|
||||
index_color = Math.floor(Math.random() * arms_orange.length)
|
||||
index_arms = arms_orange[index_color];
|
||||
}
|
||||
else if (body[index_body][2] == "red"){
|
||||
index_color = Math.floor(Math.random() * arms_red.length)
|
||||
index_arms = arms_red[index_color];
|
||||
}
|
||||
else if (body[index_body][2] == "white"){
|
||||
index_color = Math.floor(Math.random() * arms_white.length)
|
||||
index_arms = arms_white[index_color];
|
||||
}
|
||||
else if (body[index_body][2] == "yellow"){
|
||||
index_color = Math.floor(Math.random() * arms_yellow.length)
|
||||
index_arms = arms_yellow[index_color];
|
||||
}
|
||||
|
||||
body_image.src = "." + body[index_body][1];
|
||||
eyes_image.src = "." + eyes[index_eyes][1];
|
||||
|
|
258
parts.json
|
@ -39,32 +39,32 @@
|
|||
{"name": "neofox_comfy","url": "/parts/neofox_comfy.png", "color": "orange"},
|
||||
{"name": "neofox_trans","url": "/parts/neofox_trans.png", "color": "orange"},
|
||||
{"name": "neofox_angel","url": "/parts/neofox_angel.png", "color": "orange"},
|
||||
{"name": "neofox_devil","url": "/parts/neofox_devil.png", "color": "orange"},
|
||||
{"name": "neofox_devil","url": "/parts/neofox_devil.png", "color": "red"},
|
||||
{"name": "neofox_police","url": "/parts/neofox_police.png", "color": "orange"},
|
||||
{"name": "neofox_rainbow","url": "/parts/neofox_rainbow.png", "color": "orange"},
|
||||
{"name": "neofox_santa","url": "/parts/neofox_santa.png", "color": "orange"},
|
||||
{"name": "neofox_devil_floof","url": "/parts/neofox_devil_floof.png", "color": "orange"},
|
||||
{"name": "neofox_devil_floof","url": "/parts/neofox_devil_floof.png", "color": "red"},
|
||||
{"name": "neofox_mask","url": "/parts/neofox_mask.png", "color": "orange"},
|
||||
{"name": "neocat","url": "/parts/neocat.png", "color": "orange"},
|
||||
{"name": "neocat_comfy","url": "/parts/neocat_comfy.png", "color": "orange"},
|
||||
{"name": "neocat_floof","url": "/parts/neocat_floof.png", "color": "orange"},
|
||||
{"name": "neocat_devil","url": "/parts/neocat_devil.png", "color": "orange"},
|
||||
{"name": "neocat_devil_floof","url": "/parts/neocat_devil_floof.png", "color": "orange"},
|
||||
{"name": "neocat_rainbow","url": "/parts/neocat_rainbow.png", "color": "orange"},
|
||||
{"name": "neocat_police","url": "/parts/neocat_police.png", "color": "orange"},
|
||||
{"name": "neocat_santa","url": "/parts/neocat_santa.png", "color": "orange"},
|
||||
{"name": "neocat_mask","url": "/parts/neocat_mask.png", "color": "orange"},
|
||||
{"name": "neocat","url": "/parts/neocat.png", "color": "yellow"},
|
||||
{"name": "neocat_comfy","url": "/parts/neocat_comfy.png", "color": "yellow"},
|
||||
{"name": "neocat_floof","url": "/parts/neocat_floof.png", "color": "yellow"},
|
||||
{"name": "neocat_devil","url": "/parts/neocat_devil.png", "color": "red"},
|
||||
{"name": "neocat_devil_floof","url": "/parts/neocat_devil_floof.png", "color": "red"},
|
||||
{"name": "neocat_rainbow","url": "/parts/neocat_rainbow.png", "color": "yellow"},
|
||||
{"name": "neocat_police","url": "/parts/neocat_police.png", "color": "yellow"},
|
||||
{"name": "neocat_santa","url": "/parts/neocat_santa.png", "color": "yellow"},
|
||||
{"name": "neocat_mask","url": "/parts/neocat_mask.png", "color": "yellow"},
|
||||
{"name": "neoredpanda","url": "/parts/neoredpanda.png", "color": "orange"},
|
||||
{"name": "neopossum","url": "/parts/neopossum.png", "color": "orange"},
|
||||
{"name": "neopossum_angel","url": "/parts/neopossum_angel.png", "color": "orange"},
|
||||
{"name": "neopossum_foxmask","url": "/parts/neopossum_foxmask.png", "color": "orange"},
|
||||
{"name": "neopossum_catmask","url": "/parts/neopossum_catmask.png", "color": "orange"},
|
||||
{"name": "neopossum_comfy","url": "/parts/neopossum_comfy.png", "color": "orange"},
|
||||
{"name": "neopossum_devil","url": "/parts/neopossum_devil.png", "color": "orange"},
|
||||
{"name": "neopossum_devil_floof","url": "/parts/neopossum_devil_floof.png", "color": "orange"},
|
||||
{"name": "neopossum_rainbow","url": "/parts/neopossum_rainbow.png", "color": "orange"},
|
||||
{"name": "neorat","url": "/parts/neorat.png", "color": "orange"},
|
||||
{"name": "neorat_frozen","url": "/parts/neorat_frozen.png", "color": "orange"},
|
||||
{"name": "neopossum","url": "/parts/neopossum.png", "color": "lightgrey"},
|
||||
{"name": "neopossum_angel","url": "/parts/neopossum_angel.png", "color": "lightgrey"},
|
||||
{"name": "neopossum_foxmask","url": "/parts/neopossum_foxmask.png", "color": "lightgrey"},
|
||||
{"name": "neopossum_catmask","url": "/parts/neopossum_catmask.png", "color": "lightgrey"},
|
||||
{"name": "neopossum_comfy","url": "/parts/neopossum_comfy.png", "color": "lightgrey"},
|
||||
{"name": "neopossum_devil","url": "/parts/neopossum_devil.png", "color": "red"},
|
||||
{"name": "neopossum_devil_floof","url": "/parts/neopossum_devil_floof.png", "color": "red"},
|
||||
{"name": "neopossum_rainbow","url": "/parts/neopossum_rainbow.png", "color": "lightgrey"},
|
||||
{"name": "neorat","url": "/parts/neorat.png", "color": "white"},
|
||||
{"name": "neorat_frozen","url": "/parts/neorat_frozen.png", "color": "blue"},
|
||||
{"name": "neofox","url": "/parts/neofox.png", "color": "orange"}
|
||||
],
|
||||
"mouth": [
|
||||
|
@ -94,38 +94,194 @@
|
|||
{"name": "blank", "url": "/parts/blank.png"}
|
||||
],
|
||||
"arms": [
|
||||
{"name": "hide","url": "/parts/arms_hide.png", "color": "orange"},
|
||||
{"name": "aww","url": "/parts/arms_aww.png", "color": "orange"},
|
||||
{"name": "pleading","url": "/parts/arms_pleading.png", "color": "orange"},
|
||||
{"name": "reach","url": "/parts/arms_reach.png", "color": "orange"},
|
||||
{"name": "3c","url": "/parts/arms_3c.png", "color": "orange"},
|
||||
{"name": "facepalm","url": "/parts/arms_facepalm.png", "color": "orange"},
|
||||
{"name": "mug","url": "/parts/arms_mug.png", "color": "orange"},
|
||||
{"name": "knife","url": "/parts/arms_knife.png", "color": "orange"},
|
||||
{"name": "phone","url": "/parts/arms_phone.png", "color": "orange"},
|
||||
{"name": "fingerguns","url": "/parts/arms_fingerguns.png", "color": "orange"},
|
||||
{"name": "science","url": "/parts/arms_science.png", "color": "orange"},
|
||||
{"name": "sign_no","url": "/parts/arms_sign_no.png", "color": "orange"},
|
||||
{"name": "sign_aaa","url": "/parts/arms_sign_aaa.png", "color": "orange"},
|
||||
{"name": "sign_nya","url": "/parts/arms_sign_nya.png", "color": "orange"},
|
||||
{"name": "sign_thx","url": "/parts/arms_sign_thx.png", "color": "orange"},
|
||||
{"name": "sign_yes","url": "/parts/arms_sign_yes.png", "color": "orange"},
|
||||
{"name": "sign_yip","url": "/parts/arms_sign_yip.png", "color": "orange"},
|
||||
{"name": "sign_boobs","url": "/parts/arms_sign_boobs.png", "color": "orange"},
|
||||
{"name": "sign_butts","url": "/parts/arms_sign_butts.png", "color": "orange"},
|
||||
{"name": "sign_heart","url": "/parts/arms_heart.png", "color": "orange"},
|
||||
{"name": "solder","url": "/parts/arms_solder.png", "color": "orange"},
|
||||
{"name": "redlos","url": "/parts/arms_redlos.png", "color": "orange"},
|
||||
{"name": "think","url": "/parts/arms_think.png", "color": "orange"},
|
||||
{"name": "sweat","url": "/parts/arms_sweat.png", "color": "orange"},
|
||||
{"name": "verified","url": "/parts/arms_verified.png", "color": "orange"},
|
||||
{"name": "shocked","url": "/parts/arms_shocked.png", "color": "orange"},
|
||||
{"name": "thumbsdown","url": "/parts/arms_thumbsdown.png", "color": "orange"},
|
||||
{"name": "thumbsup","url": "/parts/arms_thumbsup.png", "color": "orange"},
|
||||
{"name": "book","url": "/parts/arms_book.png", "color": "orange"},
|
||||
{"name": "hide","url": "/parts/arms_hide_orange.png", "color": "orange"},
|
||||
{"name": "aww","url": "/parts/arms_aww_orange.png", "color": "orange"},
|
||||
{"name": "pleading","url": "/parts/arms_pleading_orange.png", "color": "orange"},
|
||||
{"name": "reach","url": "/parts/arms_reach_orange.png", "color": "orange"},
|
||||
{"name": "3c","url": "/parts/arms_3c_orange.png", "color": "orange"},
|
||||
{"name": "facepalm","url": "/parts/arms_facepalm_orange.png", "color": "orange"},
|
||||
{"name": "mug","url": "/parts/arms_mug_orange.png", "color": "orange"},
|
||||
{"name": "knife","url": "/parts/arms_knife_orange.png", "color": "orange"},
|
||||
{"name": "phone","url": "/parts/arms_phone_orange.png", "color": "orange"},
|
||||
{"name": "fingerguns","url": "/parts/arms_fingerguns_orange.png", "color": "orange"},
|
||||
{"name": "science","url": "/parts/arms_science_orange.png", "color": "orange"},
|
||||
{"name": "sign_no","url": "/parts/arms_sign_no_orange.png", "color": "orange"},
|
||||
{"name": "sign_aaa","url": "/parts/arms_sign_aaa_orange.png", "color": "orange"},
|
||||
{"name": "sign_nya","url": "/parts/arms_sign_nya_orange.png", "color": "orange"},
|
||||
{"name": "sign_thx","url": "/parts/arms_sign_thx_orange.png", "color": "orange"},
|
||||
{"name": "sign_yes","url": "/parts/arms_sign_yes_orange.png", "color": "orange"},
|
||||
{"name": "sign_yip","url": "/parts/arms_sign_yip_orange.png", "color": "orange"},
|
||||
{"name": "sign_boobs","url": "/parts/arms_sign_boobs_orange.png", "color": "orange"},
|
||||
{"name": "sign_butts","url": "/parts/arms_sign_butts_orange.png", "color": "orange"},
|
||||
{"name": "sign_heart","url": "/parts/arms_heart_orange.png", "color": "orange"},
|
||||
{"name": "solder","url": "/parts/arms_solder_orange.png", "color": "orange"},
|
||||
{"name": "redlos","url": "/parts/arms_redlos_orange.png", "color": "orange"},
|
||||
{"name": "think","url": "/parts/arms_think_orange.png", "color": "orange"},
|
||||
{"name": "sweat","url": "/parts/arms_sweat_orange.png", "color": "orange"},
|
||||
{"name": "verified","url": "/parts/arms_verified_orange.png", "color": "orange"},
|
||||
{"name": "shocked","url": "/parts/arms_shocked_orange.png", "color": "orange"},
|
||||
{"name": "thumbsdown","url": "/parts/arms_thumbsdown_orange.png", "color": "orange"},
|
||||
{"name": "thumbsup","url": "/parts/arms_thumbsup_orange.png", "color": "orange"},
|
||||
{"name": "book","url": "/parts/arms_book_orange.png", "color": "orange"},
|
||||
{"name": "hold_burger","url": "/parts/arms_hold_burger_orange.png", "color": "orange"},
|
||||
{"name": "hungry","url": "/parts/arms_hungry_orange.png", "color": "orange"},
|
||||
{"name": "hide","url": "/parts/arms_hide_blue.png", "color": "blue"},
|
||||
{"name": "aww","url": "/parts/arms_aww_blue.png", "color": "blue"},
|
||||
{"name": "pleading","url": "/parts/arms_pleading_blue.png", "color": "blue"},
|
||||
{"name": "reach","url": "/parts/arms_reach_blue.png", "color": "blue"},
|
||||
{"name": "3c","url": "/parts/arms_3c_blue.png", "color": "blue"},
|
||||
{"name": "facepalm","url": "/parts/arms_facepalm_blue.png", "color": "blue"},
|
||||
{"name": "mug","url": "/parts/arms_mug_blue.png", "color": "blue"},
|
||||
{"name": "knife","url": "/parts/arms_knife_blue.png", "color": "blue"},
|
||||
{"name": "phone","url": "/parts/arms_phone_blue.png", "color": "blue"},
|
||||
{"name": "fingerguns","url": "/parts/arms_fingerguns_blue.png", "color": "blue"},
|
||||
{"name": "science","url": "/parts/arms_science_blue.png", "color": "blue"},
|
||||
{"name": "sign_no","url": "/parts/arms_sign_no_blue.png", "color": "blue"},
|
||||
{"name": "sign_aaa","url": "/parts/arms_sign_aaa_blue.png", "color": "blue"},
|
||||
{"name": "sign_nya","url": "/parts/arms_sign_nya_blue.png", "color": "blue"},
|
||||
{"name": "sign_thx","url": "/parts/arms_sign_thx_blue.png", "color": "blue"},
|
||||
{"name": "sign_yes","url": "/parts/arms_sign_yes_blue.png", "color": "blue"},
|
||||
{"name": "sign_yip","url": "/parts/arms_sign_yip_blue.png", "color": "blue"},
|
||||
{"name": "sign_boobs","url": "/parts/arms_sign_boobs_blue.png", "color": "blue"},
|
||||
{"name": "sign_butts","url": "/parts/arms_sign_butts_blue.png", "color": "blue"},
|
||||
{"name": "sign_heart","url": "/parts/arms_heart_blue.png", "color": "blue"},
|
||||
{"name": "solder","url": "/parts/arms_solder_blue.png", "color": "blue"},
|
||||
{"name": "redlos","url": "/parts/arms_redlos_blue.png", "color": "blue"},
|
||||
{"name": "think","url": "/parts/arms_think_blue.png", "color": "blue"},
|
||||
{"name": "sweat","url": "/parts/arms_sweat_blue.png", "color": "blue"},
|
||||
{"name": "verified","url": "/parts/arms_verified_blue.png", "color": "blue"},
|
||||
{"name": "shocked","url": "/parts/arms_shocked_blue.png", "color": "blue"},
|
||||
{"name": "thumbsdown","url": "/parts/arms_thumbsdown_blue.png", "color": "blue"},
|
||||
{"name": "thumbsup","url": "/parts/arms_thumbsup_blue.png", "color": "blue"},
|
||||
{"name": "book","url": "/parts/arms_book_blue.png", "color": "blue"},
|
||||
{"name": "hold_burger","url": "/parts/arms_hold_burger_blue.png", "color": "blue"},
|
||||
{"name": "hungry","url": "/parts/arms_hungry_blue.png", "color": "blue"},
|
||||
{"name": "hide","url": "/parts/arms_hide_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "aww","url": "/parts/arms_aww_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "pleading","url": "/parts/arms_pleading_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "reach","url": "/parts/arms_reach_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "3c","url": "/parts/arms_3c_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "facepalm","url": "/parts/arms_facepalm_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "mug","url": "/parts/arms_mug_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "knife","url": "/parts/arms_knife_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "phone","url": "/parts/arms_phone_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "fingerguns","url": "/parts/arms_fingerguns_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "science","url": "/parts/arms_science_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "sign_no","url": "/parts/arms_sign_no_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "sign_aaa","url": "/parts/arms_sign_aaa_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "sign_nya","url": "/parts/arms_sign_nya_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "sign_thx","url": "/parts/arms_sign_thx_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "sign_yes","url": "/parts/arms_sign_yes_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "sign_yip","url": "/parts/arms_sign_yip_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "sign_boobs","url": "/parts/arms_sign_boobs_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "sign_butts","url": "/parts/arms_sign_butts_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "sign_heart","url": "/parts/arms_heart_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "solder","url": "/parts/arms_solder_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "redlos","url": "/parts/arms_redlos_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "think","url": "/parts/arms_think_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "sweat","url": "/parts/arms_sweat_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "verified","url": "/parts/arms_verified_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "shocked","url": "/parts/arms_shocked_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "thumbsdown","url": "/parts/arms_thumbsdown_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "thumbsup","url": "/parts/arms_thumbsup_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "book","url": "/parts/arms_book_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "hold_burger","url": "/parts/arms_hold_burger_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "hungry","url": "/parts/arms_hungry_lightgrey.png", "color": "lightgrey"},
|
||||
{"name": "hide","url": "/parts/arms_hide_red.png", "color": "red"},
|
||||
{"name": "aww","url": "/parts/arms_aww_red.png", "color": "red"},
|
||||
{"name": "pleading","url": "/parts/arms_pleading_red.png", "color": "red"},
|
||||
{"name": "reach","url": "/parts/arms_reach_red.png", "color": "red"},
|
||||
{"name": "3c","url": "/parts/arms_3c_red.png", "color": "red"},
|
||||
{"name": "facepalm","url": "/parts/arms_facepalm_red.png", "color": "red"},
|
||||
{"name": "mug","url": "/parts/arms_mug_red.png", "color": "red"},
|
||||
{"name": "knife","url": "/parts/arms_knife_red.png", "color": "red"},
|
||||
{"name": "phone","url": "/parts/arms_phone_red.png", "color": "red"},
|
||||
{"name": "fingerguns","url": "/parts/arms_fingerguns_red.png", "color": "red"},
|
||||
{"name": "science","url": "/parts/arms_science_red.png", "color": "red"},
|
||||
{"name": "sign_no","url": "/parts/arms_sign_no_red.png", "color": "red"},
|
||||
{"name": "sign_aaa","url": "/parts/arms_sign_aaa_red.png", "color": "red"},
|
||||
{"name": "sign_nya","url": "/parts/arms_sign_nya_red.png", "color": "red"},
|
||||
{"name": "sign_thx","url": "/parts/arms_sign_thx_red.png", "color": "red"},
|
||||
{"name": "sign_yes","url": "/parts/arms_sign_yes_red.png", "color": "red"},
|
||||
{"name": "sign_yip","url": "/parts/arms_sign_yip_red.png", "color": "red"},
|
||||
{"name": "sign_boobs","url": "/parts/arms_sign_boobs_red.png", "color": "red"},
|
||||
{"name": "sign_butts","url": "/parts/arms_sign_butts_red.png", "color": "red"},
|
||||
{"name": "sign_heart","url": "/parts/arms_heart_red.png", "color": "red"},
|
||||
{"name": "solder","url": "/parts/arms_solder_red.png", "color": "red"},
|
||||
{"name": "redlos","url": "/parts/arms_redlos_red.png", "color": "red"},
|
||||
{"name": "think","url": "/parts/arms_think_red.png", "color": "red"},
|
||||
{"name": "sweat","url": "/parts/arms_sweat_red.png", "color": "red"},
|
||||
{"name": "verified","url": "/parts/arms_verified_red.png", "color": "red"},
|
||||
{"name": "shocked","url": "/parts/arms_shocked_red.png", "color": "red"},
|
||||
{"name": "thumbsdown","url": "/parts/arms_thumbsdown_red.png", "color": "red"},
|
||||
{"name": "thumbsup","url": "/parts/arms_thumbsup_red.png", "color": "red"},
|
||||
{"name": "book","url": "/parts/arms_book_red.png", "color": "red"},
|
||||
{"name": "hold_burger","url": "/parts/arms_hold_burger_red.png", "color": "red"},
|
||||
{"name": "hungry","url": "/parts/arms_hungry_red.png", "color": "red"},
|
||||
{"name": "hide","url": "/parts/arms_hide_white.png", "color": "white"},
|
||||
{"name": "aww","url": "/parts/arms_aww_white.png", "color": "white"},
|
||||
{"name": "pleading","url": "/parts/arms_pleading_white.png", "color": "white"},
|
||||
{"name": "reach","url": "/parts/arms_reach_white.png", "color": "white"},
|
||||
{"name": "3c","url": "/parts/arms_3c_white.png", "color": "white"},
|
||||
{"name": "facepalm","url": "/parts/arms_facepalm_white.png", "color": "white"},
|
||||
{"name": "mug","url": "/parts/arms_mug_white.png", "color": "white"},
|
||||
{"name": "knife","url": "/parts/arms_knife_white.png", "color": "white"},
|
||||
{"name": "phone","url": "/parts/arms_phone_white.png", "color": "white"},
|
||||
{"name": "fingerguns","url": "/parts/arms_fingerguns_white.png", "color": "white"},
|
||||
{"name": "science","url": "/parts/arms_science_white.png", "color": "white"},
|
||||
{"name": "sign_no","url": "/parts/arms_sign_no_white.png", "color": "white"},
|
||||
{"name": "sign_aaa","url": "/parts/arms_sign_aaa_white.png", "color": "white"},
|
||||
{"name": "sign_nya","url": "/parts/arms_sign_nya_white.png", "color": "white"},
|
||||
{"name": "sign_thx","url": "/parts/arms_sign_thx_white.png", "color": "white"},
|
||||
{"name": "sign_yes","url": "/parts/arms_sign_yes_white.png", "color": "white"},
|
||||
{"name": "sign_yip","url": "/parts/arms_sign_yip_white.png", "color": "white"},
|
||||
{"name": "sign_boobs","url": "/parts/arms_sign_boobs_white.png", "color": "white"},
|
||||
{"name": "sign_butts","url": "/parts/arms_sign_butts_white.png", "color": "white"},
|
||||
{"name": "sign_heart","url": "/parts/arms_heart_white.png", "color": "white"},
|
||||
{"name": "solder","url": "/parts/arms_solder_white.png", "color": "white"},
|
||||
{"name": "redlos","url": "/parts/arms_redlos_white.png", "color": "white"},
|
||||
{"name": "think","url": "/parts/arms_think_white.png", "color": "white"},
|
||||
{"name": "sweat","url": "/parts/arms_sweat_white.png", "color": "white"},
|
||||
{"name": "verified","url": "/parts/arms_verified_white.png", "color": "white"},
|
||||
{"name": "shocked","url": "/parts/arms_shocked_white.png", "color": "white"},
|
||||
{"name": "thumbsdown","url": "/parts/arms_thumbsdown_white.png", "color": "white"},
|
||||
{"name": "thumbsup","url": "/parts/arms_thumbsup_white.png", "color": "white"},
|
||||
{"name": "book","url": "/parts/arms_book_white.png", "color": "white"},
|
||||
{"name": "hold_burger","url": "/parts/arms_hold_burger_white.png", "color": "white"},
|
||||
{"name": "hungry","url": "/parts/arms_hungry_white.png", "color": "white"},
|
||||
{"name": "hide","url": "/parts/arms_hide_yellow.png", "color": "yellow"},
|
||||
{"name": "aww","url": "/parts/arms_aww_yellow.png", "color": "yellow"},
|
||||
{"name": "pleading","url": "/parts/arms_pleading_yellow.png", "color": "yellow"},
|
||||
{"name": "reach","url": "/parts/arms_reach_yellow.png", "color": "yellow"},
|
||||
{"name": "3c","url": "/parts/arms_3c_yellow.png", "color": "yellow"},
|
||||
{"name": "facepalm","url": "/parts/arms_facepalm_yellow.png", "color": "yellow"},
|
||||
{"name": "mug","url": "/parts/arms_mug_yellow.png", "color": "yellow"},
|
||||
{"name": "knife","url": "/parts/arms_knife_yellow.png", "color": "yellow"},
|
||||
{"name": "phone","url": "/parts/arms_phone_yellow.png", "color": "yellow"},
|
||||
{"name": "fingerguns","url": "/parts/arms_fingerguns_yellow.png", "color": "yellow"},
|
||||
{"name": "science","url": "/parts/arms_science_yellow.png", "color": "yellow"},
|
||||
{"name": "sign_no","url": "/parts/arms_sign_no_yellow.png", "color": "yellow"},
|
||||
{"name": "sign_aaa","url": "/parts/arms_sign_aaa_yellow.png", "color": "yellow"},
|
||||
{"name": "sign_nya","url": "/parts/arms_sign_nya_yellow.png", "color": "yellow"},
|
||||
{"name": "sign_thx","url": "/parts/arms_sign_thx_yellow.png", "color": "yellow"},
|
||||
{"name": "sign_yes","url": "/parts/arms_sign_yes_yellow.png", "color": "yellow"},
|
||||
{"name": "sign_yip","url": "/parts/arms_sign_yip_yellow.png", "color": "yellow"},
|
||||
{"name": "sign_boobs","url": "/parts/arms_sign_boobs_yellow.png", "color": "yellow"},
|
||||
{"name": "sign_butts","url": "/parts/arms_sign_butts_yellow.png", "color": "yellow"},
|
||||
{"name": "sign_heart","url": "/parts/arms_heart_yellow.png", "color": "yellow"},
|
||||
{"name": "solder","url": "/parts/arms_solder_yellow.png", "color": "yellow"},
|
||||
{"name": "redlos","url": "/parts/arms_redlos_yellow.png", "color": "yellow"},
|
||||
{"name": "think","url": "/parts/arms_think_yellow.png", "color": "yellow"},
|
||||
{"name": "sweat","url": "/parts/arms_sweat_yellow.png", "color": "yellow"},
|
||||
{"name": "verified","url": "/parts/arms_verified_yellow.png", "color": "yellow"},
|
||||
{"name": "shocked","url": "/parts/arms_shocked_yellow.png", "color": "yellow"},
|
||||
{"name": "thumbsdown","url": "/parts/arms_thumbsdown_yellow.png", "color": "yellow"},
|
||||
{"name": "thumbsup","url": "/parts/arms_thumbsup_yellow.png", "color": "yellow"},
|
||||
{"name": "book","url": "/parts/arms_book_yellow.png", "color": "yellow"},
|
||||
{"name": "hold_burger","url": "/parts/arms_hold_burger_yellow.png", "color": "yellow"},
|
||||
{"name": "hungry","url": "/parts/arms_hungry_yellow.png", "color": "yellow"},
|
||||
{"name": "boop","url": "/parts/arms_boop.png", "color": ""},
|
||||
{"name": "sip","url": "/parts/arms_sip.png", "color": ""},
|
||||
{"name": "hold_burger","url": "/parts/arms_hold_burger.png", "color": "orange"},
|
||||
{"name": "blank", "url": "/parts/blank.png", "color": ""}
|
||||
]
|
||||
}
|
||||
|
|
After Width: | Height: | Size: 6.2 KiB |
After Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 6.2 KiB |
After Width: | Height: | Size: 6.0 KiB |
After Width: | Height: | Size: 6.0 KiB |
After Width: | Height: | Size: 6.3 KiB |
After Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.3 KiB |
After Width: | Height: | Size: 6.3 KiB |
After Width: | Height: | Size: 6.4 KiB |
After Width: | Height: | Size: 6.3 KiB |
After Width: | Height: | Size: 8.8 KiB |
After Width: | Height: | Size: 8.8 KiB |
Before Width: | Height: | Size: 8.7 KiB After Width: | Height: | Size: 8.7 KiB |
After Width: | Height: | Size: 8.8 KiB |
After Width: | Height: | Size: 8.8 KiB |
After Width: | Height: | Size: 8.8 KiB |
After Width: | Height: | Size: 6.8 KiB |
After Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
After Width: | Height: | Size: 6.8 KiB |
After Width: | Height: | Size: 6.8 KiB |
After Width: | Height: | Size: 6.8 KiB |
After Width: | Height: | Size: 7.1 KiB |
After Width: | Height: | Size: 7.1 KiB |
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 7.0 KiB |
After Width: | Height: | Size: 7.1 KiB |
After Width: | Height: | Size: 7.1 KiB |
After Width: | Height: | Size: 7.1 KiB |
After Width: | Height: | Size: 9.7 KiB |
After Width: | Height: | Size: 9.7 KiB |
Before Width: | Height: | Size: 9.8 KiB After Width: | Height: | Size: 9.8 KiB |
After Width: | Height: | Size: 9.7 KiB |
After Width: | Height: | Size: 9.7 KiB |
After Width: | Height: | Size: 9.7 KiB |
After Width: | Height: | Size: 9.5 KiB |
After Width: | Height: | Size: 9.5 KiB |
Before Width: | Height: | Size: 9.7 KiB After Width: | Height: | Size: 9.7 KiB |
After Width: | Height: | Size: 9.4 KiB |
After Width: | Height: | Size: 9.5 KiB |
After Width: | Height: | Size: 9.5 KiB |
After Width: | Height: | Size: 9.3 KiB |
After Width: | Height: | Size: 9.3 KiB |
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 9.2 KiB |
After Width: | Height: | Size: 9.3 KiB |
After Width: | Height: | Size: 9.2 KiB |
After Width: | Height: | Size: 9.3 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 9.2 KiB |
After Width: | Height: | Size: 9.2 KiB |
Before Width: | Height: | Size: 9.1 KiB After Width: | Height: | Size: 9.1 KiB |
After Width: | Height: | Size: 9.2 KiB |
After Width: | Height: | Size: 9.2 KiB |
After Width: | Height: | Size: 9.2 KiB |
After Width: | Height: | Size: 6.9 KiB |
After Width: | Height: | Size: 6.9 KiB |
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 6.7 KiB |
After Width: | Height: | Size: 6.9 KiB |
After Width: | Height: | Size: 6.8 KiB |
After Width: | Height: | Size: 6.9 KiB |
After Width: | Height: | Size: 7.0 KiB |
After Width: | Height: | Size: 7.0 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
After Width: | Height: | Size: 7.0 KiB |
After Width: | Height: | Size: 7.0 KiB |
After Width: | Height: | Size: 7.0 KiB |
After Width: | Height: | Size: 7.3 KiB |
After Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 7.1 KiB |
After Width: | Height: | Size: 7.2 KiB |
After Width: | Height: | Size: 7.2 KiB |
After Width: | Height: | Size: 7.2 KiB |
After Width: | Height: | Size: 7.8 KiB |
After Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 7.8 KiB After Width: | Height: | Size: 7.8 KiB |
After Width: | Height: | Size: 7.8 KiB |
After Width: | Height: | Size: 7.8 KiB |
After Width: | Height: | Size: 7.8 KiB |
After Width: | Height: | Size: 8.8 KiB |
After Width: | Height: | Size: 8.8 KiB |
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
After Width: | Height: | Size: 8.9 KiB |
After Width: | Height: | Size: 8.8 KiB |
After Width: | Height: | Size: 8.8 KiB |
After Width: | Height: | Size: 9.7 KiB |
After Width: | Height: | Size: 9.7 KiB |
Before Width: | Height: | Size: 9.5 KiB After Width: | Height: | Size: 9.5 KiB |
After Width: | Height: | Size: 9.7 KiB |
After Width: | Height: | Size: 9.7 KiB |
After Width: | Height: | Size: 9.7 KiB |
After Width: | Height: | Size: 8.2 KiB |
After Width: | Height: | Size: 8.2 KiB |