Added prettier (#661)
* Added prettier * Added prettier * Added prettier
This commit is contained in:
@@ -2,93 +2,96 @@
|
||||
|
||||
/** Array of the names of all fortune cookies obtainable from the ticker */
|
||||
export const Fortunes = [
|
||||
'Fortune #001',
|
||||
'Fortune #002',
|
||||
'Fortune #003',
|
||||
'Fortune #004',
|
||||
'Fortune #005',
|
||||
'Fortune #006',
|
||||
'Fortune #007',
|
||||
'Fortune #008',
|
||||
'Fortune #009',
|
||||
'Fortune #010',
|
||||
'Fortune #011',
|
||||
'Fortune #012',
|
||||
'Fortune #013',
|
||||
'Fortune #014',
|
||||
'Fortune #015',
|
||||
'Fortune #016',
|
||||
'Fortune #017',
|
||||
'Fortune #018',
|
||||
'Fortune #100',
|
||||
'Fortune #101',
|
||||
'Fortune #102',
|
||||
'Fortune #103',
|
||||
'Fortune #104',
|
||||
'Fortune #001',
|
||||
'Fortune #002',
|
||||
'Fortune #003',
|
||||
'Fortune #004',
|
||||
'Fortune #005',
|
||||
'Fortune #006',
|
||||
'Fortune #007',
|
||||
'Fortune #008',
|
||||
'Fortune #009',
|
||||
'Fortune #010',
|
||||
'Fortune #011',
|
||||
'Fortune #012',
|
||||
'Fortune #013',
|
||||
'Fortune #014',
|
||||
'Fortune #015',
|
||||
'Fortune #016',
|
||||
'Fortune #017',
|
||||
'Fortune #018',
|
||||
'Fortune #100',
|
||||
'Fortune #101',
|
||||
'Fortune #102',
|
||||
'Fortune #103',
|
||||
'Fortune #104',
|
||||
];
|
||||
|
||||
/** Array of the names of all Halloween cookies */
|
||||
export const HalloCookies = [
|
||||
'Skull cookies',
|
||||
'Ghost cookies',
|
||||
'Bat cookies',
|
||||
'Slime cookies',
|
||||
'Pumpkin cookies',
|
||||
'Eyeball cookies',
|
||||
'Spider cookies',
|
||||
'Skull cookies',
|
||||
'Ghost cookies',
|
||||
'Bat cookies',
|
||||
'Slime cookies',
|
||||
'Pumpkin cookies',
|
||||
'Eyeball cookies',
|
||||
'Spider cookies',
|
||||
];
|
||||
|
||||
/** Array of the names of all Christmas cookies */
|
||||
export const ChristCookies = ['Christmas tree biscuits',
|
||||
'Snowflake biscuits',
|
||||
'Snowman biscuits',
|
||||
'Holly biscuits',
|
||||
'Candy cane biscuits',
|
||||
'Bell biscuits',
|
||||
'Present biscuits',
|
||||
export const ChristCookies = [
|
||||
'Christmas tree biscuits',
|
||||
'Snowflake biscuits',
|
||||
'Snowman biscuits',
|
||||
'Holly biscuits',
|
||||
'Candy cane biscuits',
|
||||
'Bell biscuits',
|
||||
'Present biscuits',
|
||||
];
|
||||
|
||||
/** Array of the names of all Valentine cookies */
|
||||
export const ValCookies = ['Pure heart biscuits',
|
||||
'Ardent heart biscuits',
|
||||
'Sour heart biscuits',
|
||||
'Weeping heart biscuits',
|
||||
'Golden heart biscuits',
|
||||
'Eternal heart biscuits',
|
||||
'Prism heart biscuits',
|
||||
export const ValCookies = [
|
||||
'Pure heart biscuits',
|
||||
'Ardent heart biscuits',
|
||||
'Sour heart biscuits',
|
||||
'Weeping heart biscuits',
|
||||
'Golden heart biscuits',
|
||||
'Eternal heart biscuits',
|
||||
'Prism heart biscuits',
|
||||
];
|
||||
|
||||
/** Array of the names of all plant drops */
|
||||
export const PlantDrops = ['Elderwort biscuits',
|
||||
'Bakeberry cookies',
|
||||
'Duketater cookies',
|
||||
'Green yeast digestives',
|
||||
'Wheat slims',
|
||||
'Fern tea',
|
||||
'Ichor syrup',
|
||||
export const PlantDrops = [
|
||||
'Elderwort biscuits',
|
||||
'Bakeberry cookies',
|
||||
'Duketater cookies',
|
||||
'Green yeast digestives',
|
||||
'Wheat slims',
|
||||
'Fern tea',
|
||||
'Ichor syrup',
|
||||
];
|
||||
|
||||
/** All possible effects plants and other items can have with a display-title */
|
||||
export const Effects = {
|
||||
buildingCost: 'Building prices',
|
||||
click: 'Cookies per click',
|
||||
cps: 'Total CPS',
|
||||
cursorCps: 'Cursor CPS',
|
||||
goldenCookieDur: 'Golden cookie duration',
|
||||
goldenCookieEffDur: 'Golden cookie effect duration',
|
||||
goldenCookieFreq: 'Golden cookie frequency',
|
||||
goldenCookieGain: 'Golden cookie gains',
|
||||
grandmaCps: 'Grandma CPS',
|
||||
itemDrops: 'Random item drop chance',
|
||||
milk: 'Effect from milk',
|
||||
reindeerDur: 'Reindeer duration',
|
||||
reindeerFreq: 'Reindeer frequency',
|
||||
reindeerGain: 'Reindeer gains',
|
||||
upgradeCost: 'Upgrade prices',
|
||||
wrathCookieDur: 'Wrath cookie duration',
|
||||
wrathCookieEffDur: 'Wrath cookie effect duration',
|
||||
wrathCookieFreq: 'Wrath cookie frequency',
|
||||
wrathCookieGain: 'Wrath cookie gains',
|
||||
wrinklerEat: 'Wrinkler ',
|
||||
wrinklerSpawn: 'Wrinkler spawn frequency',
|
||||
buildingCost: 'Building prices',
|
||||
click: 'Cookies per click',
|
||||
cps: 'Total CPS',
|
||||
cursorCps: 'Cursor CPS',
|
||||
goldenCookieDur: 'Golden cookie duration',
|
||||
goldenCookieEffDur: 'Golden cookie effect duration',
|
||||
goldenCookieFreq: 'Golden cookie frequency',
|
||||
goldenCookieGain: 'Golden cookie gains',
|
||||
grandmaCps: 'Grandma CPS',
|
||||
itemDrops: 'Random item drop chance',
|
||||
milk: 'Effect from milk',
|
||||
reindeerDur: 'Reindeer duration',
|
||||
reindeerFreq: 'Reindeer frequency',
|
||||
reindeerGain: 'Reindeer gains',
|
||||
upgradeCost: 'Upgrade prices',
|
||||
wrathCookieDur: 'Wrath cookie duration',
|
||||
wrathCookieEffDur: 'Wrath cookie effect duration',
|
||||
wrathCookieFreq: 'Wrath cookie frequency',
|
||||
wrathCookieGain: 'Wrath cookie gains',
|
||||
wrinklerEat: 'Wrinkler ',
|
||||
wrinklerSpawn: 'Wrinkler spawn frequency',
|
||||
};
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/** Data related directly to Cookie Monster */
|
||||
|
||||
export const VersionMajor = '2.031';
|
||||
export const VersionMinor = '6';
|
||||
export const VersionMinor = '5';
|
||||
|
||||
/** Information about Cookie Monster to be displayed in the info section */
|
||||
export const ModDescription = `<div class="listing">
|
||||
|
||||
@@ -1,148 +1,141 @@
|
||||
/** Data related directly to the scales used by Cookie Monster */
|
||||
|
||||
/** Array of abbreviations used in the "Metric" scale */
|
||||
export const metric = ['',
|
||||
'',
|
||||
'M',
|
||||
'G',
|
||||
'T',
|
||||
'P',
|
||||
'E',
|
||||
'Z',
|
||||
'Y',
|
||||
];
|
||||
export const metric = ['', '', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y'];
|
||||
|
||||
/** Array of abbreviations used in the "Short" scale */
|
||||
export const shortScale = ['',
|
||||
'',
|
||||
'M',
|
||||
'B',
|
||||
'Tr',
|
||||
'Quadr',
|
||||
'Quint',
|
||||
'Sext',
|
||||
'Sept',
|
||||
'Oct',
|
||||
'Non',
|
||||
'Dec',
|
||||
'Undec',
|
||||
'Duodec',
|
||||
'Tredec',
|
||||
'Quattuordec',
|
||||
'Quindec',
|
||||
'Sexdec',
|
||||
'Septendec',
|
||||
'Octodec',
|
||||
'Novemdec',
|
||||
'Vigint',
|
||||
'Unvigint',
|
||||
'Duovigint',
|
||||
'Trevigint',
|
||||
'Quattuorvigint',
|
||||
export const shortScale = [
|
||||
'',
|
||||
'',
|
||||
'M',
|
||||
'B',
|
||||
'Tr',
|
||||
'Quadr',
|
||||
'Quint',
|
||||
'Sext',
|
||||
'Sept',
|
||||
'Oct',
|
||||
'Non',
|
||||
'Dec',
|
||||
'Undec',
|
||||
'Duodec',
|
||||
'Tredec',
|
||||
'Quattuordec',
|
||||
'Quindec',
|
||||
'Sexdec',
|
||||
'Septendec',
|
||||
'Octodec',
|
||||
'Novemdec',
|
||||
'Vigint',
|
||||
'Unvigint',
|
||||
'Duovigint',
|
||||
'Trevigint',
|
||||
'Quattuorvigint',
|
||||
];
|
||||
|
||||
/** Array of abbreviations used in the "Abbreviated Short" scale */
|
||||
export const shortScaleAbbreviated = ['',
|
||||
'K',
|
||||
'M',
|
||||
'B',
|
||||
'T',
|
||||
'Qa',
|
||||
'Qi',
|
||||
'Sx',
|
||||
'Sp',
|
||||
'Oc',
|
||||
'No',
|
||||
'De',
|
||||
'UDe',
|
||||
'DDe',
|
||||
'TDe',
|
||||
'QaDe',
|
||||
'QiDe',
|
||||
'SxDe',
|
||||
'SpDe',
|
||||
'ODe',
|
||||
'NDe',
|
||||
'Vi',
|
||||
'UVi',
|
||||
'DVi',
|
||||
'TVi',
|
||||
'QaVi',
|
||||
'QiVi',
|
||||
'SxVi',
|
||||
'SpVi',
|
||||
'OVi',
|
||||
'NVi',
|
||||
'Tr',
|
||||
'UTr',
|
||||
'DTr',
|
||||
'TTr',
|
||||
'QaTr',
|
||||
'QiTr',
|
||||
'SxTr',
|
||||
'SpTr',
|
||||
'OTr',
|
||||
'NTr',
|
||||
'Qaa',
|
||||
'UQa',
|
||||
'DQa',
|
||||
'TQa',
|
||||
'QaQa',
|
||||
'QiQa',
|
||||
'SxQa',
|
||||
'SpQa',
|
||||
'OQa',
|
||||
'NQa',
|
||||
'Qia',
|
||||
'UQi',
|
||||
'DQi',
|
||||
'TQi',
|
||||
'QaQi',
|
||||
'QiQi',
|
||||
'SxQi',
|
||||
'SpQi',
|
||||
'OQi',
|
||||
'NQi',
|
||||
'Sxa',
|
||||
'USx',
|
||||
'DSx',
|
||||
'TSx',
|
||||
'QaSx',
|
||||
'QiSx',
|
||||
'SxSx',
|
||||
'SpSx',
|
||||
'OSx',
|
||||
'NSx',
|
||||
'Spa',
|
||||
'USp',
|
||||
'DSp',
|
||||
'TSp',
|
||||
'QaSp',
|
||||
'QiSp',
|
||||
'SxSp',
|
||||
'SpSp',
|
||||
'OSp',
|
||||
'NSp',
|
||||
'Oco',
|
||||
'UOc',
|
||||
'DOc',
|
||||
'TOc',
|
||||
'QaOc',
|
||||
'QiOc',
|
||||
'SxOc',
|
||||
'SpOc',
|
||||
'OOc',
|
||||
'NOc',
|
||||
'Noa',
|
||||
'UNo',
|
||||
'DNo',
|
||||
'TNo',
|
||||
'QaNo',
|
||||
'QiNo',
|
||||
'SxNo',
|
||||
'SpNo',
|
||||
'ONo',
|
||||
'NNo',
|
||||
'Ct',
|
||||
'UCt',
|
||||
export const shortScaleAbbreviated = [
|
||||
'',
|
||||
'K',
|
||||
'M',
|
||||
'B',
|
||||
'T',
|
||||
'Qa',
|
||||
'Qi',
|
||||
'Sx',
|
||||
'Sp',
|
||||
'Oc',
|
||||
'No',
|
||||
'De',
|
||||
'UDe',
|
||||
'DDe',
|
||||
'TDe',
|
||||
'QaDe',
|
||||
'QiDe',
|
||||
'SxDe',
|
||||
'SpDe',
|
||||
'ODe',
|
||||
'NDe',
|
||||
'Vi',
|
||||
'UVi',
|
||||
'DVi',
|
||||
'TVi',
|
||||
'QaVi',
|
||||
'QiVi',
|
||||
'SxVi',
|
||||
'SpVi',
|
||||
'OVi',
|
||||
'NVi',
|
||||
'Tr',
|
||||
'UTr',
|
||||
'DTr',
|
||||
'TTr',
|
||||
'QaTr',
|
||||
'QiTr',
|
||||
'SxTr',
|
||||
'SpTr',
|
||||
'OTr',
|
||||
'NTr',
|
||||
'Qaa',
|
||||
'UQa',
|
||||
'DQa',
|
||||
'TQa',
|
||||
'QaQa',
|
||||
'QiQa',
|
||||
'SxQa',
|
||||
'SpQa',
|
||||
'OQa',
|
||||
'NQa',
|
||||
'Qia',
|
||||
'UQi',
|
||||
'DQi',
|
||||
'TQi',
|
||||
'QaQi',
|
||||
'QiQi',
|
||||
'SxQi',
|
||||
'SpQi',
|
||||
'OQi',
|
||||
'NQi',
|
||||
'Sxa',
|
||||
'USx',
|
||||
'DSx',
|
||||
'TSx',
|
||||
'QaSx',
|
||||
'QiSx',
|
||||
'SxSx',
|
||||
'SpSx',
|
||||
'OSx',
|
||||
'NSx',
|
||||
'Spa',
|
||||
'USp',
|
||||
'DSp',
|
||||
'TSp',
|
||||
'QaSp',
|
||||
'QiSp',
|
||||
'SxSp',
|
||||
'SpSp',
|
||||
'OSp',
|
||||
'NSp',
|
||||
'Oco',
|
||||
'UOc',
|
||||
'DOc',
|
||||
'TOc',
|
||||
'QaOc',
|
||||
'QiOc',
|
||||
'SxOc',
|
||||
'SpOc',
|
||||
'OOc',
|
||||
'NOc',
|
||||
'Noa',
|
||||
'UNo',
|
||||
'DNo',
|
||||
'TNo',
|
||||
'QaNo',
|
||||
'QiNo',
|
||||
'SxNo',
|
||||
'SpNo',
|
||||
'ONo',
|
||||
'NNo',
|
||||
'Ct',
|
||||
'UCt',
|
||||
];
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
|
||||
/** Display titles of the headers of the Cookie Monster settings section */
|
||||
export const ConfigGroups = {
|
||||
BarsColors: 'Bars/Colors',
|
||||
Calculation: 'Calculation',
|
||||
Notification: 'Notification',
|
||||
Tooltip: 'Tooltips and additional insights',
|
||||
Statistics: 'Statistics',
|
||||
Notation: 'Notation',
|
||||
Miscellaneous: 'Miscellaneous',
|
||||
BarsColors: 'Bars/Colors',
|
||||
Calculation: 'Calculation',
|
||||
Notification: 'Notification',
|
||||
Tooltip: 'Tooltips and additional insights',
|
||||
Statistics: 'Statistics',
|
||||
Notation: 'Notation',
|
||||
Miscellaneous: 'Miscellaneous',
|
||||
};
|
||||
|
||||
/** Display titles of the headers of the notification section of the Cookie Monster settings */
|
||||
export const ConfigGroupsNotification = {
|
||||
NotificationGeneral: 'General Notifications',
|
||||
NotificationGC: 'Golden Cookie',
|
||||
NotificationFC: 'Fortune Cookie',
|
||||
NotificationSea: 'Season Special',
|
||||
NotificationGard: 'Garden Tick',
|
||||
NotificationMagi: 'Full Magic Bar',
|
||||
NotificationWrink: 'Wrinkler',
|
||||
NotificationWrinkMax: 'Maximum Wrinklers',
|
||||
NotificationGeneral: 'General Notifications',
|
||||
NotificationGC: 'Golden Cookie',
|
||||
NotificationFC: 'Fortune Cookie',
|
||||
NotificationSea: 'Season Special',
|
||||
NotificationGard: 'Garden Tick',
|
||||
NotificationMagi: 'Full Magic Bar',
|
||||
NotificationWrink: 'Wrinkler',
|
||||
NotificationWrinkMax: 'Maximum Wrinklers',
|
||||
};
|
||||
|
||||
@@ -3,52 +3,52 @@
|
||||
|
||||
/** The basic setting class */
|
||||
export class Setting {
|
||||
constructor(type, group) {
|
||||
this.type = type;
|
||||
this.group = group;
|
||||
}
|
||||
constructor(type, group) {
|
||||
this.type = type;
|
||||
this.group = group;
|
||||
}
|
||||
}
|
||||
|
||||
/** The standard toggle setting class */
|
||||
export class SettingStandard extends Setting {
|
||||
constructor(type, group, label, desc, toggle, func = null) {
|
||||
super(type, group);
|
||||
this.label = label;
|
||||
this.desc = desc;
|
||||
this.toggle = toggle;
|
||||
if (func) {
|
||||
this.func = func;
|
||||
}
|
||||
}
|
||||
constructor(type, group, label, desc, toggle, func = null) {
|
||||
super(type, group);
|
||||
this.label = label;
|
||||
this.desc = desc;
|
||||
this.toggle = toggle;
|
||||
if (func) {
|
||||
this.func = func;
|
||||
}
|
||||
}
|
||||
}
|
||||
/** The colour picker setting class */
|
||||
export class SettingColours extends Setting {
|
||||
constructor(type, group, desc, func) {
|
||||
super(type, group);
|
||||
this.desc = desc;
|
||||
this.func = func;
|
||||
}
|
||||
constructor(type, group, desc, func) {
|
||||
super(type, group);
|
||||
this.desc = desc;
|
||||
this.func = func;
|
||||
}
|
||||
}
|
||||
|
||||
/** The volume level setting class */
|
||||
export class SettingVolume extends Setting {
|
||||
constructor(type, group, label, desc) {
|
||||
super(type, group);
|
||||
this.label = label;
|
||||
this.desc = desc;
|
||||
for (let i = 0; i < 101; i++) {
|
||||
this.label[i] = `${i}%`;
|
||||
}
|
||||
}
|
||||
constructor(type, group, label, desc) {
|
||||
super(type, group);
|
||||
this.label = label;
|
||||
this.desc = desc;
|
||||
for (let i = 0; i < 101; i++) {
|
||||
this.label[i] = `${i}%`;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/** The number input setting class */
|
||||
export class SettingInputNumber extends Setting {
|
||||
constructor(type, group, label, desc, min, max) {
|
||||
super(type, group);
|
||||
this.label = label;
|
||||
this.desc = desc;
|
||||
this.min = min;
|
||||
this.max = max;
|
||||
}
|
||||
constructor(type, group, label, desc, min, max) {
|
||||
super(type, group);
|
||||
this.label = label;
|
||||
this.desc = desc;
|
||||
this.min = min;
|
||||
this.max = max;
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,97 +1,133 @@
|
||||
/** This array describes all default settings */
|
||||
const ConfigDefault = {
|
||||
BotBar: 1,
|
||||
TimerBar: 1,
|
||||
TimerBarPos: 0,
|
||||
TimerBarOverlay: 2,
|
||||
BuildColor: 1,
|
||||
BulkBuildColor: 0,
|
||||
UpBarColor: 1,
|
||||
UpgradeBarFixedPos: 1,
|
||||
CalcWrink: 0,
|
||||
CPSMode: 1,
|
||||
AvgCPSHist: 3,
|
||||
AvgClicksHist: 0,
|
||||
ColorPPBulkMode: 1,
|
||||
PPExcludeTop: 0,
|
||||
PPSecondsLowerLimit: 0,
|
||||
PPOnlyConsiderBuyable: 0,
|
||||
ToolWarnBon: 0,
|
||||
Title: 1,
|
||||
GeneralSound: 1,
|
||||
GCNotification: 0,
|
||||
GCFlash: 1,
|
||||
GCSound: 1,
|
||||
GCVolume: 100,
|
||||
GCSoundURL: 'https://freesound.org/data/previews/66/66717_931655-lq.mp3',
|
||||
FortuneNotification: 0,
|
||||
FortuneFlash: 1,
|
||||
FortuneSound: 1,
|
||||
FortuneVolume: 100,
|
||||
FortuneSoundURL: 'https://freesound.org/data/previews/174/174027_3242494-lq.mp3',
|
||||
SeaNotification: 0,
|
||||
SeaFlash: 1,
|
||||
SeaSound: 1,
|
||||
SeaVolume: 100,
|
||||
SeaSoundURL: 'https://www.freesound.org/data/previews/121/121099_2193266-lq.mp3',
|
||||
GardFlash: 1,
|
||||
GardSound: 1,
|
||||
GardVolume: 100,
|
||||
GardSoundURL: 'https://freesound.org/data/previews/103/103046_861714-lq.mp3',
|
||||
MagicNotification: 0,
|
||||
MagicFlash: 1,
|
||||
MagicSound: 1,
|
||||
MagicVolume: 100,
|
||||
MagicSoundURL: 'https://freesound.org/data/previews/221/221683_1015240-lq.mp3',
|
||||
WrinklerNotification: 0,
|
||||
WrinklerFlash: 1,
|
||||
WrinklerSound: 1,
|
||||
WrinklerVolume: 100,
|
||||
WrinklerSoundURL: 'https://freesound.org/data/previews/124/124186_8043-lq.mp3',
|
||||
WrinklerMaxNotification: 0,
|
||||
WrinklerMaxFlash: 1,
|
||||
WrinklerMaxSound: 1,
|
||||
WrinklerMaxVolume: 100,
|
||||
WrinklerMaxSoundURL: 'https://freesound.org/data/previews/152/152743_15663-lq.mp3',
|
||||
TooltipBuildUpgrade: 1,
|
||||
TooltipAmor: 0,
|
||||
ToolWarnLucky: 1,
|
||||
ToolWarnLuckyFrenzy: 1,
|
||||
ToolWarnConjure: 1,
|
||||
ToolWarnConjureFrenzy: 1,
|
||||
ToolWarnEdifice: 1,
|
||||
ToolWarnUser: 0,
|
||||
ToolWarnPos: 1,
|
||||
TooltipGrim: 1,
|
||||
TooltipWrink: 1,
|
||||
TooltipLump: 1,
|
||||
TooltipPlots: 1,
|
||||
DragonAuraInfo: 1,
|
||||
TooltipAscendButton: 1,
|
||||
Stats: 1,
|
||||
MissingUpgrades: 1,
|
||||
UpStats: 1,
|
||||
TimeFormat: 0,
|
||||
DetailedTime: 1,
|
||||
GrimoireBar: 1,
|
||||
HeavenlyChipsTarget: 1,
|
||||
ShowMissedGC: 1,
|
||||
Scale: 2,
|
||||
ScaleDecimals: 2,
|
||||
ScaleSeparator: 0,
|
||||
ScaleCutoff: 999999,
|
||||
Colors: {
|
||||
Blue: '#4bb8f0', Green: '#00ff00', Yellow: '#ffff00', Orange: '#ff7f00', Red: '#ff0000', Purple: '#ff00ff', Gray: '#b3b3b3', Pink: '#ff1493', Brown: '#8b4513',
|
||||
},
|
||||
SortBuildings: 0,
|
||||
SortUpgrades: 0,
|
||||
GCTimer: 1,
|
||||
Favicon: 1,
|
||||
WrinklerButtons: 1,
|
||||
BulkBuyBlock: 0,
|
||||
Header: {
|
||||
BarsColors: 1, Calculation: 1, Notification: 1, NotificationGeneral: 1, NotificationGC: 1, NotificationFC: 1, NotificationSea: 1, NotificationGard: 1, NotificationMagi: 1, NotificationWrink: 1, NotificationWrinkMax: 1, Tooltip: 1, Statistics: 1, Notation: 1, Miscellaneous: 1, Lucky: 1, Chain: 1, Spells: 1, Garden: 1, Prestige: 1, Wrink: 1, Sea: 1, Misc: 1, InfoTab: 1,
|
||||
},
|
||||
BotBar: 1,
|
||||
TimerBar: 1,
|
||||
TimerBarPos: 0,
|
||||
TimerBarOverlay: 2,
|
||||
BuildColor: 1,
|
||||
BulkBuildColor: 0,
|
||||
UpBarColor: 1,
|
||||
UpgradeBarFixedPos: 1,
|
||||
CalcWrink: 0,
|
||||
CPSMode: 1,
|
||||
AvgCPSHist: 3,
|
||||
AvgClicksHist: 0,
|
||||
ColorPPBulkMode: 1,
|
||||
PPExcludeTop: 0,
|
||||
PPSecondsLowerLimit: 0,
|
||||
PPOnlyConsiderBuyable: 0,
|
||||
ToolWarnBon: 0,
|
||||
Title: 1,
|
||||
GeneralSound: 1,
|
||||
GCNotification: 0,
|
||||
GCFlash: 1,
|
||||
GCSound: 1,
|
||||
GCVolume: 100,
|
||||
GCSoundURL: 'https://freesound.org/data/previews/66/66717_931655-lq.mp3',
|
||||
FortuneNotification: 0,
|
||||
FortuneFlash: 1,
|
||||
FortuneSound: 1,
|
||||
FortuneVolume: 100,
|
||||
FortuneSoundURL:
|
||||
'https://freesound.org/data/previews/174/174027_3242494-lq.mp3',
|
||||
SeaNotification: 0,
|
||||
SeaFlash: 1,
|
||||
SeaSound: 1,
|
||||
SeaVolume: 100,
|
||||
SeaSoundURL:
|
||||
'https://www.freesound.org/data/previews/121/121099_2193266-lq.mp3',
|
||||
GardFlash: 1,
|
||||
GardSound: 1,
|
||||
GardVolume: 100,
|
||||
GardSoundURL: 'https://freesound.org/data/previews/103/103046_861714-lq.mp3',
|
||||
MagicNotification: 0,
|
||||
MagicFlash: 1,
|
||||
MagicSound: 1,
|
||||
MagicVolume: 100,
|
||||
MagicSoundURL:
|
||||
'https://freesound.org/data/previews/221/221683_1015240-lq.mp3',
|
||||
WrinklerNotification: 0,
|
||||
WrinklerFlash: 1,
|
||||
WrinklerSound: 1,
|
||||
WrinklerVolume: 100,
|
||||
WrinklerSoundURL:
|
||||
'https://freesound.org/data/previews/124/124186_8043-lq.mp3',
|
||||
WrinklerMaxNotification: 0,
|
||||
WrinklerMaxFlash: 1,
|
||||
WrinklerMaxSound: 1,
|
||||
WrinklerMaxVolume: 100,
|
||||
WrinklerMaxSoundURL:
|
||||
'https://freesound.org/data/previews/152/152743_15663-lq.mp3',
|
||||
TooltipBuildUpgrade: 1,
|
||||
TooltipAmor: 0,
|
||||
ToolWarnLucky: 1,
|
||||
ToolWarnLuckyFrenzy: 1,
|
||||
ToolWarnConjure: 1,
|
||||
ToolWarnConjureFrenzy: 1,
|
||||
ToolWarnEdifice: 1,
|
||||
ToolWarnUser: 0,
|
||||
ToolWarnPos: 1,
|
||||
TooltipGrim: 1,
|
||||
TooltipWrink: 1,
|
||||
TooltipLump: 1,
|
||||
TooltipPlots: 1,
|
||||
DragonAuraInfo: 1,
|
||||
TooltipAscendButton: 1,
|
||||
Stats: 1,
|
||||
MissingUpgrades: 1,
|
||||
UpStats: 1,
|
||||
TimeFormat: 0,
|
||||
DetailedTime: 1,
|
||||
GrimoireBar: 1,
|
||||
HeavenlyChipsTarget: 1,
|
||||
ShowMissedGC: 1,
|
||||
Scale: 2,
|
||||
ScaleDecimals: 2,
|
||||
ScaleSeparator: 0,
|
||||
ScaleCutoff: 999999,
|
||||
Colors: {
|
||||
Blue: '#4bb8f0',
|
||||
Green: '#00ff00',
|
||||
Yellow: '#ffff00',
|
||||
Orange: '#ff7f00',
|
||||
Red: '#ff0000',
|
||||
Purple: '#ff00ff',
|
||||
Gray: '#b3b3b3',
|
||||
Pink: '#ff1493',
|
||||
Brown: '#8b4513',
|
||||
},
|
||||
SortBuildings: 0,
|
||||
SortUpgrades: 0,
|
||||
GCTimer: 1,
|
||||
Favicon: 1,
|
||||
WrinklerButtons: 1,
|
||||
BulkBuyBlock: 0,
|
||||
Header: {
|
||||
BarsColors: 1,
|
||||
Calculation: 1,
|
||||
Notification: 1,
|
||||
NotificationGeneral: 1,
|
||||
NotificationGC: 1,
|
||||
NotificationFC: 1,
|
||||
NotificationSea: 1,
|
||||
NotificationGard: 1,
|
||||
NotificationMagi: 1,
|
||||
NotificationWrink: 1,
|
||||
NotificationWrinkMax: 1,
|
||||
Tooltip: 1,
|
||||
Statistics: 1,
|
||||
Notation: 1,
|
||||
Miscellaneous: 1,
|
||||
Lucky: 1,
|
||||
Chain: 1,
|
||||
Spells: 1,
|
||||
Garden: 1,
|
||||
Prestige: 1,
|
||||
Wrink: 1,
|
||||
Sea: 1,
|
||||
Misc: 1,
|
||||
InfoTab: 1,
|
||||
},
|
||||
};
|
||||
|
||||
export default ConfigDefault;
|
||||
|
||||
Reference in New Issue
Block a user