2015-12-27 01:40:36 +00:00
|
|
|
export const MAX_HEALTH = 50;
|
|
|
|
|
export const MAX_LEVEL = 100;
|
|
|
|
|
export const MAX_STAT_POINTS = MAX_LEVEL;
|
2019-07-12 15:13:07 +00:00
|
|
|
export const ATTRIBUTES = ['str', 'int', 'con', 'per'];
|
2017-04-25 22:13:07 +00:00
|
|
|
export const MAX_INCENTIVES = 500;
|
2016-06-07 14:14:19 +00:00
|
|
|
|
2016-06-20 01:54:30 +00:00
|
|
|
export const TAVERN_ID = '00000000-0000-4000-A000-000000000000';
|
|
|
|
|
export const LARGE_GROUP_COUNT_MESSAGE_CUTOFF = 5000;
|
2017-09-14 19:53:27 +00:00
|
|
|
export const MAX_SUMMARY_SIZE_FOR_GUILDS = 250;
|
2017-08-22 20:39:45 +00:00
|
|
|
export const MAX_SUMMARY_SIZE_FOR_CHALLENGES = 250;
|
|
|
|
|
export const MIN_SHORTNAME_SIZE_FOR_CHALLENGES = 3;
|
2020-03-04 10:49:14 +00:00
|
|
|
export const MAX_MESSAGE_LENGTH = 3000;
|
2016-09-28 10:11:10 +00:00
|
|
|
|
2019-07-30 17:09:42 +00:00
|
|
|
export const CHAT_FLAG_LIMIT_FOR_HIDING = 2; // hide posts that have this many flags
|
|
|
|
|
export const CHAT_FLAG_FROM_MOD = 5; // a flag from a moderator counts as this many flags
|
2019-10-09 14:51:17 +00:00
|
|
|
// a shadow-muted user's post starts with this many flags
|
|
|
|
|
export const CHAT_FLAG_FROM_SHADOW_MUTE = 10;
|
2019-07-30 17:09:42 +00:00
|
|
|
// @TODO use those constants to replace hard-coded numbers
|
|
|
|
|
|
2016-09-28 10:11:10 +00:00
|
|
|
export const SUPPORTED_SOCIAL_NETWORKS = [
|
2019-10-08 14:57:10 +00:00
|
|
|
{ key: 'facebook', name: 'Facebook' },
|
|
|
|
|
{ key: 'google', name: 'Google' },
|
2020-04-08 16:44:30 +00:00
|
|
|
{ key: 'apple', name: 'Apple' },
|
2016-09-28 10:11:10 +00:00
|
|
|
];
|
2017-03-11 18:42:50 +00:00
|
|
|
|
2017-03-26 19:23:19 +00:00
|
|
|
export const GUILDS_PER_PAGE = 30; // number of guilds to return per page when using pagination
|
|
|
|
|
|
2017-04-11 18:54:30 +00:00
|
|
|
export const PARTY_LIMIT_MEMBERS = 30;
|
2019-10-07 14:55:55 +00:00
|
|
|
|
2019-12-18 18:02:15 +00:00
|
|
|
export const MINIMUM_PASSWORD_LENGTH = 8;
|
2020-04-08 16:44:30 +00:00
|
|
|
|
2019-10-07 14:55:55 +00:00
|
|
|
export const TRANSFORMATION_DEBUFFS_LIST = {
|
|
|
|
|
snowball: 'salt',
|
|
|
|
|
spookySparkles: 'opaquePotion',
|
|
|
|
|
shinySeed: 'petalFreePotion',
|
|
|
|
|
seafoam: 'sand',
|
|
|
|
|
};
|