old client structure

This commit is contained in:
Matteo Pagliazzi
2019-10-01 11:44:38 +02:00
parent 5b61f65711
commit b44fbdcb14
906 changed files with 44 additions and 44 deletions

View File

@@ -0,0 +1,51 @@
export function getDropClass ({type, key}) {
let dropClass = '';
if (type) {
switch (type) {
case 'Egg':
dropClass = `Pet_Egg_${key}`;
break;
case 'HatchingPotion':
dropClass = `Pet_HatchingPotion_${key}`;
break;
case 'Food':
case 'food':
dropClass = `Pet_Food_${key}`;
break;
case 'armor':
case 'back':
case 'body':
case 'eyewear':
case 'head':
case 'headAccessory':
case 'shield':
case 'weapon':
case 'gear':
dropClass = `shop_${key}`;
break;
default:
dropClass = 'glyphicon glyphicon-gift';
}
}
return dropClass;
}
export function getSign (number) {
let sign = '+';
if (number && number < 0) {
sign = '-';
}
return sign;
}
export function round (number, nDigits) {
return Math.abs(number.toFixed(nDigits || 1));
}
export function getXPMessage (val) {
return `${getSign(val)} ${round(val)}`;
}